Skip to content

Commit c69cbc8

Browse files
author
AWS
committed
Amazon QuickSight Update: Add support for PerformanceConfiguration attribute to Dataset entity. Allow PerformanceConfiguration specification in CreateDataset and UpdateDataset APIs.
1 parent 388181c commit c69cbc8

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon QuickSight",
4+
"contributor": "",
5+
"description": "Add support for PerformanceConfiguration attribute to Dataset entity. Allow PerformanceConfiguration specification in CreateDataset and UpdateDataset APIs."
6+
}

services/quicksight/src/main/resources/codegen-resources/service-2.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9255,6 +9255,10 @@
92559255
"FolderArns":{
92569256
"shape":"FolderArnList",
92579257
"documentation":"<p>When you create the dataset, Amazon QuickSight adds the dataset to these folders.</p>"
9258+
},
9259+
"PerformanceConfiguration":{
9260+
"shape":"PerformanceConfiguration",
9261+
"documentation":"<p>The configuration for the performance optimization of the dataset that contains a <code>UniqueKey</code> configuration.</p>"
92589262
}
92599263
}
92609264
},
@@ -11632,6 +11636,10 @@
1163211636
"DatasetParameters":{
1163311637
"shape":"DatasetParameterList",
1163411638
"documentation":"<p>The parameters that are declared in a dataset.</p>"
11639+
},
11640+
"PerformanceConfiguration":{
11641+
"shape":"PerformanceConfiguration",
11642+
"documentation":"<p>The performance optimization configuration of a dataset.</p>"
1163511643
}
1163611644
},
1163711645
"documentation":"<p>Dataset.</p>"
@@ -26127,6 +26135,16 @@
2612726135
"max":100,
2612826136
"min":0
2612926137
},
26138+
"PerformanceConfiguration":{
26139+
"type":"structure",
26140+
"members":{
26141+
"UniqueKeys":{
26142+
"shape":"UniqueKeyList",
26143+
"documentation":"<p>A <code>UniqueKey</code> configuration.</p>"
26144+
}
26145+
},
26146+
"documentation":"<p>The configuration for the performance optimization of the dataset that contains a <code>UniqueKey</code> configuration.</p>"
26147+
},
2613026148
"PeriodOverPeriodComputation":{
2613126149
"type":"structure",
2613226150
"required":["ComputationId"],
@@ -34725,6 +34743,29 @@
3472534743
"type":"string",
3472634744
"pattern":"^[^\\u0000-\\u00FF]$"
3472734745
},
34746+
"UniqueKey":{
34747+
"type":"structure",
34748+
"required":["ColumnNames"],
34749+
"members":{
34750+
"ColumnNames":{
34751+
"shape":"UniqueKeyColumnNameList",
34752+
"documentation":"<p>The name of the column that is referenced in the <code>UniqueKey</code> configuration.</p>"
34753+
}
34754+
},
34755+
"documentation":"<p>A <code>UniqueKey</code> configuration that references a dataset column.</p>"
34756+
},
34757+
"UniqueKeyColumnNameList":{
34758+
"type":"list",
34759+
"member":{"shape":"ColumnName"},
34760+
"max":1,
34761+
"min":1
34762+
},
34763+
"UniqueKeyList":{
34764+
"type":"list",
34765+
"member":{"shape":"UniqueKey"},
34766+
"max":1,
34767+
"min":1
34768+
},
3472834769
"UniqueValuesComputation":{
3472934770
"type":"structure",
3473034771
"required":["ComputationId"],
@@ -35638,6 +35679,10 @@
3563835679
"DatasetParameters":{
3563935680
"shape":"DatasetParameterList",
3564035681
"documentation":"<p>The parameter declarations of the dataset.</p>"
35682+
},
35683+
"PerformanceConfiguration":{
35684+
"shape":"PerformanceConfiguration",
35685+
"documentation":"<p>The configuration for the performance optimization of the dataset that contains a <code>UniqueKey</code> configuration.</p>"
3564135686
}
3564235687
}
3564335688
},

0 commit comments

Comments
 (0)