aws-sdk-quicksight 1.165.0 → 1.166.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +286 -6
- data/lib/aws-sdk-quicksight/client_api.rb +204 -1
- data/lib/aws-sdk-quicksight/types.rb +744 -9
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +1505 -13
- data/sig/types.rbs +190 -0
- metadata +1 -1
|
@@ -256,10 +256,14 @@ module Aws::QuickSight
|
|
|
256
256
|
AxisTickLabelOptions = Shapes::StructureShape.new(name: 'AxisTickLabelOptions')
|
|
257
257
|
BarChartAggregatedFieldWells = Shapes::StructureShape.new(name: 'BarChartAggregatedFieldWells')
|
|
258
258
|
BarChartConfiguration = Shapes::StructureShape.new(name: 'BarChartConfiguration')
|
|
259
|
+
BarChartDefaultSeriesSettings = Shapes::StructureShape.new(name: 'BarChartDefaultSeriesSettings')
|
|
259
260
|
BarChartFieldWells = Shapes::StructureShape.new(name: 'BarChartFieldWells')
|
|
260
261
|
BarChartOrientation = Shapes::StringShape.new(name: 'BarChartOrientation')
|
|
262
|
+
BarChartSeriesSettings = Shapes::StructureShape.new(name: 'BarChartSeriesSettings')
|
|
261
263
|
BarChartSortConfiguration = Shapes::StructureShape.new(name: 'BarChartSortConfiguration')
|
|
262
264
|
BarChartVisual = Shapes::StructureShape.new(name: 'BarChartVisual')
|
|
265
|
+
BarSeriesItem = Shapes::StructureShape.new(name: 'BarSeriesItem')
|
|
266
|
+
BarSeriesItemList = Shapes::ListShape.new(name: 'BarSeriesItemList')
|
|
263
267
|
BarsArrangement = Shapes::StringShape.new(name: 'BarsArrangement')
|
|
264
268
|
BaseMapStyleType = Shapes::StringShape.new(name: 'BaseMapStyleType')
|
|
265
269
|
BasicAuthConnectionMetadata = Shapes::StructureShape.new(name: 'BasicAuthConnectionMetadata')
|
|
@@ -288,6 +292,7 @@ module Aws::QuickSight
|
|
|
288
292
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
289
293
|
BooleanObject = Shapes::BooleanShape.new(name: 'BooleanObject')
|
|
290
294
|
BorderRadius = Shapes::StringShape.new(name: 'BorderRadius')
|
|
295
|
+
BorderSettings = Shapes::StructureShape.new(name: 'BorderSettings')
|
|
291
296
|
BorderStyle = Shapes::StructureShape.new(name: 'BorderStyle')
|
|
292
297
|
BoxPlotAggregatedFieldWells = Shapes::StructureShape.new(name: 'BoxPlotAggregatedFieldWells')
|
|
293
298
|
BoxPlotChartConfiguration = Shapes::StructureShape.new(name: 'BoxPlotChartConfiguration')
|
|
@@ -398,9 +403,13 @@ module Aws::QuickSight
|
|
|
398
403
|
ColumnTooltipItem = Shapes::StructureShape.new(name: 'ColumnTooltipItem')
|
|
399
404
|
ComboChartAggregatedFieldWells = Shapes::StructureShape.new(name: 'ComboChartAggregatedFieldWells')
|
|
400
405
|
ComboChartConfiguration = Shapes::StructureShape.new(name: 'ComboChartConfiguration')
|
|
406
|
+
ComboChartDefaultSeriesSettings = Shapes::StructureShape.new(name: 'ComboChartDefaultSeriesSettings')
|
|
401
407
|
ComboChartFieldWells = Shapes::StructureShape.new(name: 'ComboChartFieldWells')
|
|
408
|
+
ComboChartSeriesSettings = Shapes::StructureShape.new(name: 'ComboChartSeriesSettings')
|
|
402
409
|
ComboChartSortConfiguration = Shapes::StructureShape.new(name: 'ComboChartSortConfiguration')
|
|
403
410
|
ComboChartVisual = Shapes::StructureShape.new(name: 'ComboChartVisual')
|
|
411
|
+
ComboSeriesItem = Shapes::StructureShape.new(name: 'ComboSeriesItem')
|
|
412
|
+
ComboSeriesItemList = Shapes::ListShape.new(name: 'ComboSeriesItemList')
|
|
404
413
|
CommitMode = Shapes::StringShape.new(name: 'CommitMode')
|
|
405
414
|
ComparativeOrder = Shapes::StructureShape.new(name: 'ComparativeOrder')
|
|
406
415
|
ComparisonConfiguration = Shapes::StructureShape.new(name: 'ComparisonConfiguration')
|
|
@@ -435,6 +444,9 @@ module Aws::QuickSight
|
|
|
435
444
|
ContributionAnalysisSortType = Shapes::StringShape.new(name: 'ContributionAnalysisSortType')
|
|
436
445
|
ContributionAnalysisTimeRanges = Shapes::StructureShape.new(name: 'ContributionAnalysisTimeRanges')
|
|
437
446
|
ContributorDimensionList = Shapes::ListShape.new(name: 'ContributorDimensionList')
|
|
447
|
+
Coordinate = Shapes::StructureShape.new(name: 'Coordinate')
|
|
448
|
+
CoordinateLatitudeDouble = Shapes::FloatShape.new(name: 'CoordinateLatitudeDouble')
|
|
449
|
+
CoordinateLongitudeDouble = Shapes::FloatShape.new(name: 'CoordinateLongitudeDouble')
|
|
438
450
|
CopySourceArn = Shapes::StringShape.new(name: 'CopySourceArn')
|
|
439
451
|
CreateAccountCustomizationRequest = Shapes::StructureShape.new(name: 'CreateAccountCustomizationRequest')
|
|
440
452
|
CreateAccountCustomizationResponse = Shapes::StructureShape.new(name: 'CreateAccountCustomizationResponse')
|
|
@@ -521,6 +533,8 @@ module Aws::QuickSight
|
|
|
521
533
|
CustomerManagedKeyUnavailableException = Shapes::StructureShape.new(name: 'CustomerManagedKeyUnavailableException')
|
|
522
534
|
Dashboard = Shapes::StructureShape.new(name: 'Dashboard')
|
|
523
535
|
DashboardBehavior = Shapes::StringShape.new(name: 'DashboardBehavior')
|
|
536
|
+
DashboardCustomizationStatus = Shapes::StringShape.new(name: 'DashboardCustomizationStatus')
|
|
537
|
+
DashboardCustomizationVisualOptions = Shapes::StructureShape.new(name: 'DashboardCustomizationVisualOptions')
|
|
524
538
|
DashboardError = Shapes::StructureShape.new(name: 'DashboardError')
|
|
525
539
|
DashboardErrorList = Shapes::ListShape.new(name: 'DashboardErrorList')
|
|
526
540
|
DashboardErrorType = Shapes::StringShape.new(name: 'DashboardErrorType')
|
|
@@ -546,6 +560,8 @@ module Aws::QuickSight
|
|
|
546
560
|
DataBarsOptions = Shapes::StructureShape.new(name: 'DataBarsOptions')
|
|
547
561
|
DataColor = Shapes::StructureShape.new(name: 'DataColor')
|
|
548
562
|
DataColorPalette = Shapes::StructureShape.new(name: 'DataColorPalette')
|
|
563
|
+
DataFieldBarSeriesItem = Shapes::StructureShape.new(name: 'DataFieldBarSeriesItem')
|
|
564
|
+
DataFieldComboSeriesItem = Shapes::StructureShape.new(name: 'DataFieldComboSeriesItem')
|
|
549
565
|
DataFieldSeriesItem = Shapes::StructureShape.new(name: 'DataFieldSeriesItem')
|
|
550
566
|
DataLabelContent = Shapes::StringShape.new(name: 'DataLabelContent')
|
|
551
567
|
DataLabelOptions = Shapes::StructureShape.new(name: 'DataLabelOptions')
|
|
@@ -664,6 +680,11 @@ module Aws::QuickSight
|
|
|
664
680
|
DayOfTheWeek = Shapes::StringShape.new(name: 'DayOfTheWeek')
|
|
665
681
|
DayOfWeek = Shapes::StringShape.new(name: 'DayOfWeek')
|
|
666
682
|
DbUsername = Shapes::StringShape.new(name: 'DbUsername')
|
|
683
|
+
DecalPatternType = Shapes::StringShape.new(name: 'DecalPatternType')
|
|
684
|
+
DecalSettings = Shapes::StructureShape.new(name: 'DecalSettings')
|
|
685
|
+
DecalSettingsConfiguration = Shapes::StructureShape.new(name: 'DecalSettingsConfiguration')
|
|
686
|
+
DecalSettingsList = Shapes::ListShape.new(name: 'DecalSettingsList')
|
|
687
|
+
DecalStyleType = Shapes::StringShape.new(name: 'DecalStyleType')
|
|
667
688
|
DecimalDatasetParameter = Shapes::StructureShape.new(name: 'DecimalDatasetParameter')
|
|
668
689
|
DecimalDatasetParameterDefaultValue = Shapes::FloatShape.new(name: 'DecimalDatasetParameterDefaultValue')
|
|
669
690
|
DecimalDatasetParameterDefaultValues = Shapes::StructureShape.new(name: 'DecimalDatasetParameterDefaultValues')
|
|
@@ -890,6 +911,7 @@ module Aws::QuickSight
|
|
|
890
911
|
DropDownControlDisplayOptions = Shapes::StructureShape.new(name: 'DropDownControlDisplayOptions')
|
|
891
912
|
DynamicDefaultValue = Shapes::StructureShape.new(name: 'DynamicDefaultValue')
|
|
892
913
|
Edition = Shapes::StringShape.new(name: 'Edition')
|
|
914
|
+
ElementValue = Shapes::StringShape.new(name: 'ElementValue')
|
|
893
915
|
Email = Shapes::StringShape.new(name: 'Email')
|
|
894
916
|
EmbeddingIdentityType = Shapes::StringShape.new(name: 'EmbeddingIdentityType')
|
|
895
917
|
EmbeddingUrl = Shapes::StringShape.new(name: 'EmbeddingUrl')
|
|
@@ -915,7 +937,9 @@ module Aws::QuickSight
|
|
|
915
937
|
Expression = Shapes::StringShape.new(name: 'Expression')
|
|
916
938
|
FailedKeyRegistrationEntries = Shapes::ListShape.new(name: 'FailedKeyRegistrationEntries')
|
|
917
939
|
FailedKeyRegistrationEntry = Shapes::StructureShape.new(name: 'FailedKeyRegistrationEntry')
|
|
940
|
+
FieldBarSeriesItem = Shapes::StructureShape.new(name: 'FieldBarSeriesItem')
|
|
918
941
|
FieldBasedTooltip = Shapes::StructureShape.new(name: 'FieldBasedTooltip')
|
|
942
|
+
FieldComboSeriesItem = Shapes::StructureShape.new(name: 'FieldComboSeriesItem')
|
|
919
943
|
FieldFolder = Shapes::StructureShape.new(name: 'FieldFolder')
|
|
920
944
|
FieldFolderDescription = Shapes::StringShape.new(name: 'FieldFolderDescription')
|
|
921
945
|
FieldFolderMap = Shapes::MapShape.new(name: 'FieldFolderMap')
|
|
@@ -1044,6 +1068,15 @@ module Aws::QuickSight
|
|
|
1044
1068
|
GeoSpatialColumnGroup = Shapes::StructureShape.new(name: 'GeoSpatialColumnGroup')
|
|
1045
1069
|
GeoSpatialCountryCode = Shapes::StringShape.new(name: 'GeoSpatialCountryCode')
|
|
1046
1070
|
GeoSpatialDataRole = Shapes::StringShape.new(name: 'GeoSpatialDataRole')
|
|
1071
|
+
GeocodePreference = Shapes::StructureShape.new(name: 'GeocodePreference')
|
|
1072
|
+
GeocodePreferenceList = Shapes::ListShape.new(name: 'GeocodePreferenceList')
|
|
1073
|
+
GeocodePreferenceValue = Shapes::UnionShape.new(name: 'GeocodePreferenceValue')
|
|
1074
|
+
GeocoderHierarchy = Shapes::StructureShape.new(name: 'GeocoderHierarchy')
|
|
1075
|
+
GeocoderHierarchyCityString = Shapes::StringShape.new(name: 'GeocoderHierarchyCityString')
|
|
1076
|
+
GeocoderHierarchyCountryString = Shapes::StringShape.new(name: 'GeocoderHierarchyCountryString')
|
|
1077
|
+
GeocoderHierarchyCountyString = Shapes::StringShape.new(name: 'GeocoderHierarchyCountyString')
|
|
1078
|
+
GeocoderHierarchyPostCodeString = Shapes::StringShape.new(name: 'GeocoderHierarchyPostCodeString')
|
|
1079
|
+
GeocoderHierarchyStateString = Shapes::StringShape.new(name: 'GeocoderHierarchyStateString')
|
|
1047
1080
|
GeospatialCategoricalColor = Shapes::StructureShape.new(name: 'GeospatialCategoricalColor')
|
|
1048
1081
|
GeospatialCategoricalDataColor = Shapes::StructureShape.new(name: 'GeospatialCategoricalDataColor')
|
|
1049
1082
|
GeospatialCategoricalDataColorList = Shapes::ListShape.new(name: 'GeospatialCategoricalDataColorList')
|
|
@@ -1101,6 +1134,8 @@ module Aws::QuickSight
|
|
|
1101
1134
|
GetFlowMetadataOutput = Shapes::StructureShape.new(name: 'GetFlowMetadataOutput')
|
|
1102
1135
|
GetFlowPermissionsInput = Shapes::StructureShape.new(name: 'GetFlowPermissionsInput')
|
|
1103
1136
|
GetFlowPermissionsOutput = Shapes::StructureShape.new(name: 'GetFlowPermissionsOutput')
|
|
1137
|
+
GetIdentityContextRequest = Shapes::StructureShape.new(name: 'GetIdentityContextRequest')
|
|
1138
|
+
GetIdentityContextResponse = Shapes::StructureShape.new(name: 'GetIdentityContextResponse')
|
|
1104
1139
|
GetSessionEmbedUrlRequest = Shapes::StructureShape.new(name: 'GetSessionEmbedUrlRequest')
|
|
1105
1140
|
GetSessionEmbedUrlResponse = Shapes::StructureShape.new(name: 'GetSessionEmbedUrlResponse')
|
|
1106
1141
|
GlobalTableBorderOptions = Shapes::StructureShape.new(name: 'GlobalTableBorderOptions')
|
|
@@ -1255,6 +1290,7 @@ module Aws::QuickSight
|
|
|
1255
1290
|
KPIVisualLayoutOptions = Shapes::StructureShape.new(name: 'KPIVisualLayoutOptions')
|
|
1256
1291
|
KPIVisualStandardLayout = Shapes::StructureShape.new(name: 'KPIVisualStandardLayout')
|
|
1257
1292
|
KPIVisualStandardLayoutType = Shapes::StringShape.new(name: 'KPIVisualStandardLayoutType')
|
|
1293
|
+
KeyPairCredentials = Shapes::StructureShape.new(name: 'KeyPairCredentials')
|
|
1258
1294
|
KeyRegistration = Shapes::ListShape.new(name: 'KeyRegistration')
|
|
1259
1295
|
LabelOptions = Shapes::StructureShape.new(name: 'LabelOptions')
|
|
1260
1296
|
Latitude = Shapes::FloatShape.new(name: 'Latitude')
|
|
@@ -1588,6 +1624,8 @@ module Aws::QuickSight
|
|
|
1588
1624
|
PrimaryValueDisplayType = Shapes::StringShape.new(name: 'PrimaryValueDisplayType')
|
|
1589
1625
|
Principal = Shapes::StringShape.new(name: 'Principal')
|
|
1590
1626
|
PrincipalList = Shapes::ListShape.new(name: 'PrincipalList')
|
|
1627
|
+
PrivateKey = Shapes::StringShape.new(name: 'PrivateKey')
|
|
1628
|
+
PrivateKeyPassphrase = Shapes::StringShape.new(name: 'PrivateKeyPassphrase')
|
|
1591
1629
|
ProgressBarOptions = Shapes::StructureShape.new(name: 'ProgressBarOptions')
|
|
1592
1630
|
ProjectId = Shapes::StringShape.new(name: 'ProjectId')
|
|
1593
1631
|
ProjectOperation = Shapes::StructureShape.new(name: 'ProjectOperation')
|
|
@@ -1680,6 +1718,8 @@ module Aws::QuickSight
|
|
|
1680
1718
|
RegisteredUserQSearchBarEmbeddingConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserQSearchBarEmbeddingConfiguration')
|
|
1681
1719
|
RegisteredUserQuickChatEmbeddingConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserQuickChatEmbeddingConfiguration')
|
|
1682
1720
|
RegisteredUserQuickSightConsoleEmbeddingConfiguration = Shapes::StructureShape.new(name: 'RegisteredUserQuickSightConsoleEmbeddingConfiguration')
|
|
1721
|
+
RegisteredUserSnapshotJobResult = Shapes::StructureShape.new(name: 'RegisteredUserSnapshotJobResult')
|
|
1722
|
+
RegisteredUserSnapshotJobResultList = Shapes::ListShape.new(name: 'RegisteredUserSnapshotJobResultList')
|
|
1683
1723
|
RelationalTable = Shapes::StructureShape.new(name: 'RelationalTable')
|
|
1684
1724
|
RelationalTableCatalog = Shapes::StringShape.new(name: 'RelationalTableCatalog')
|
|
1685
1725
|
RelationalTableName = Shapes::StringShape.new(name: 'RelationalTableName')
|
|
@@ -2287,6 +2327,7 @@ module Aws::QuickSight
|
|
|
2287
2327
|
UpdateVPCConnectionResponse = Shapes::StructureShape.new(name: 'UpdateVPCConnectionResponse')
|
|
2288
2328
|
UploadSettings = Shapes::StructureShape.new(name: 'UploadSettings')
|
|
2289
2329
|
User = Shapes::StructureShape.new(name: 'User')
|
|
2330
|
+
UserIdentifier = Shapes::UnionShape.new(name: 'UserIdentifier')
|
|
2290
2331
|
UserList = Shapes::ListShape.new(name: 'UserList')
|
|
2291
2332
|
UserName = Shapes::StringShape.new(name: 'UserName')
|
|
2292
2333
|
UserRole = Shapes::StringShape.new(name: 'UserRole')
|
|
@@ -2317,6 +2358,8 @@ module Aws::QuickSight
|
|
|
2317
2358
|
VisualCustomActionOperation = Shapes::StructureShape.new(name: 'VisualCustomActionOperation')
|
|
2318
2359
|
VisualCustomActionOperationList = Shapes::ListShape.new(name: 'VisualCustomActionOperationList')
|
|
2319
2360
|
VisualCustomActionTrigger = Shapes::StringShape.new(name: 'VisualCustomActionTrigger')
|
|
2361
|
+
VisualCustomizationAdditionalFieldsList = Shapes::ListShape.new(name: 'VisualCustomizationAdditionalFieldsList')
|
|
2362
|
+
VisualCustomizationFieldsConfiguration = Shapes::StructureShape.new(name: 'VisualCustomizationFieldsConfiguration')
|
|
2320
2363
|
VisualHighlightOperation = Shapes::StructureShape.new(name: 'VisualHighlightOperation')
|
|
2321
2364
|
VisualHighlightTrigger = Shapes::StringShape.new(name: 'VisualHighlightTrigger')
|
|
2322
2365
|
VisualInteractionOptions = Shapes::StructureShape.new(name: 'VisualInteractionOptions')
|
|
@@ -2372,6 +2415,7 @@ module Aws::QuickSight
|
|
|
2372
2415
|
XpathFields = Shapes::StringShape.new(name: 'XpathFields')
|
|
2373
2416
|
YAxisOptions = Shapes::StructureShape.new(name: 'YAxisOptions')
|
|
2374
2417
|
boolean = Shapes::BooleanShape.new(name: 'boolean')
|
|
2418
|
+
statusCode = Shapes::IntegerShape.new(name: 'statusCode')
|
|
2375
2419
|
|
|
2376
2420
|
APIKeyConnectionMetadata.add_member(:base_endpoint, Shapes::ShapeRef.new(shape: Endpoint, required: true, location_name: "BaseEndpoint"))
|
|
2377
2421
|
APIKeyConnectionMetadata.add_member(:api_key, Shapes::ShapeRef.new(shape: APIKey, required: true, location_name: "ApiKey"))
|
|
@@ -3124,6 +3168,8 @@ module Aws::QuickSight
|
|
|
3124
3168
|
BarChartConfiguration.add_member(:value_axis, Shapes::ShapeRef.new(shape: AxisDisplayOptions, location_name: "ValueAxis"))
|
|
3125
3169
|
BarChartConfiguration.add_member(:value_label_options, Shapes::ShapeRef.new(shape: ChartAxisLabelOptions, location_name: "ValueLabelOptions"))
|
|
3126
3170
|
BarChartConfiguration.add_member(:color_label_options, Shapes::ShapeRef.new(shape: ChartAxisLabelOptions, location_name: "ColorLabelOptions"))
|
|
3171
|
+
BarChartConfiguration.add_member(:default_series_settings, Shapes::ShapeRef.new(shape: BarChartDefaultSeriesSettings, location_name: "DefaultSeriesSettings"))
|
|
3172
|
+
BarChartConfiguration.add_member(:series, Shapes::ShapeRef.new(shape: BarSeriesItemList, location_name: "Series"))
|
|
3127
3173
|
BarChartConfiguration.add_member(:legend, Shapes::ShapeRef.new(shape: LegendOptions, location_name: "Legend"))
|
|
3128
3174
|
BarChartConfiguration.add_member(:data_labels, Shapes::ShapeRef.new(shape: DataLabelOptions, location_name: "DataLabels"))
|
|
3129
3175
|
BarChartConfiguration.add_member(:tooltip, Shapes::ShapeRef.new(shape: TooltipOptions, location_name: "Tooltip"))
|
|
@@ -3132,9 +3178,17 @@ module Aws::QuickSight
|
|
|
3132
3178
|
BarChartConfiguration.add_member(:interactions, Shapes::ShapeRef.new(shape: VisualInteractionOptions, location_name: "Interactions"))
|
|
3133
3179
|
BarChartConfiguration.struct_class = Types::BarChartConfiguration
|
|
3134
3180
|
|
|
3181
|
+
BarChartDefaultSeriesSettings.add_member(:decal_settings, Shapes::ShapeRef.new(shape: DecalSettings, location_name: "DecalSettings"))
|
|
3182
|
+
BarChartDefaultSeriesSettings.add_member(:border_settings, Shapes::ShapeRef.new(shape: BorderSettings, location_name: "BorderSettings"))
|
|
3183
|
+
BarChartDefaultSeriesSettings.struct_class = Types::BarChartDefaultSeriesSettings
|
|
3184
|
+
|
|
3135
3185
|
BarChartFieldWells.add_member(:bar_chart_aggregated_field_wells, Shapes::ShapeRef.new(shape: BarChartAggregatedFieldWells, location_name: "BarChartAggregatedFieldWells"))
|
|
3136
3186
|
BarChartFieldWells.struct_class = Types::BarChartFieldWells
|
|
3137
3187
|
|
|
3188
|
+
BarChartSeriesSettings.add_member(:decal_settings, Shapes::ShapeRef.new(shape: DecalSettings, location_name: "DecalSettings"))
|
|
3189
|
+
BarChartSeriesSettings.add_member(:border_settings, Shapes::ShapeRef.new(shape: BorderSettings, location_name: "BorderSettings"))
|
|
3190
|
+
BarChartSeriesSettings.struct_class = Types::BarChartSeriesSettings
|
|
3191
|
+
|
|
3138
3192
|
BarChartSortConfiguration.add_member(:category_sort, Shapes::ShapeRef.new(shape: FieldSortOptionsList, location_name: "CategorySort"))
|
|
3139
3193
|
BarChartSortConfiguration.add_member(:category_items_limit, Shapes::ShapeRef.new(shape: ItemsLimitConfiguration, location_name: "CategoryItemsLimit"))
|
|
3140
3194
|
BarChartSortConfiguration.add_member(:color_sort, Shapes::ShapeRef.new(shape: FieldSortOptionsList, location_name: "ColorSort"))
|
|
@@ -3152,6 +3206,12 @@ module Aws::QuickSight
|
|
|
3152
3206
|
BarChartVisual.add_member(:visual_content_alt_text, Shapes::ShapeRef.new(shape: LongPlainText, location_name: "VisualContentAltText"))
|
|
3153
3207
|
BarChartVisual.struct_class = Types::BarChartVisual
|
|
3154
3208
|
|
|
3209
|
+
BarSeriesItem.add_member(:field_bar_series_item, Shapes::ShapeRef.new(shape: FieldBarSeriesItem, location_name: "FieldBarSeriesItem"))
|
|
3210
|
+
BarSeriesItem.add_member(:data_field_bar_series_item, Shapes::ShapeRef.new(shape: DataFieldBarSeriesItem, location_name: "DataFieldBarSeriesItem"))
|
|
3211
|
+
BarSeriesItem.struct_class = Types::BarSeriesItem
|
|
3212
|
+
|
|
3213
|
+
BarSeriesItemList.member = Shapes::ShapeRef.new(shape: BarSeriesItem)
|
|
3214
|
+
|
|
3155
3215
|
BasicAuthConnectionMetadata.add_member(:base_endpoint, Shapes::ShapeRef.new(shape: Endpoint, required: true, location_name: "BaseEndpoint"))
|
|
3156
3216
|
BasicAuthConnectionMetadata.add_member(:username, Shapes::ShapeRef.new(shape: ActionUserName, required: true, location_name: "Username"))
|
|
3157
3217
|
BasicAuthConnectionMetadata.add_member(:password, Shapes::ShapeRef.new(shape: ActionPassword, required: true, location_name: "Password"))
|
|
@@ -3235,6 +3295,11 @@ module Aws::QuickSight
|
|
|
3235
3295
|
BookmarksConfigurations.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Enabled"))
|
|
3236
3296
|
BookmarksConfigurations.struct_class = Types::BookmarksConfigurations
|
|
3237
3297
|
|
|
3298
|
+
BorderSettings.add_member(:border_visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "BorderVisibility"))
|
|
3299
|
+
BorderSettings.add_member(:border_width, Shapes::ShapeRef.new(shape: PixelLength, location_name: "BorderWidth"))
|
|
3300
|
+
BorderSettings.add_member(:border_color, Shapes::ShapeRef.new(shape: HexColorWithTransparency, location_name: "BorderColor"))
|
|
3301
|
+
BorderSettings.struct_class = Types::BorderSettings
|
|
3302
|
+
|
|
3238
3303
|
BorderStyle.add_member(:color, Shapes::ShapeRef.new(shape: Color, location_name: "Color"))
|
|
3239
3304
|
BorderStyle.add_member(:show, Shapes::ShapeRef.new(shape: Boolean, location_name: "Show", metadata: {"box" => true}))
|
|
3240
3305
|
BorderStyle.add_member(:width, Shapes::ShapeRef.new(shape: Width, location_name: "Width"))
|
|
@@ -3512,6 +3577,7 @@ module Aws::QuickSight
|
|
|
3512
3577
|
ColumnConfiguration.add_member(:format_configuration, Shapes::ShapeRef.new(shape: FormatConfiguration, location_name: "FormatConfiguration"))
|
|
3513
3578
|
ColumnConfiguration.add_member(:role, Shapes::ShapeRef.new(shape: ColumnRole, location_name: "Role"))
|
|
3514
3579
|
ColumnConfiguration.add_member(:colors_configuration, Shapes::ShapeRef.new(shape: ColorsConfiguration, location_name: "ColorsConfiguration"))
|
|
3580
|
+
ColumnConfiguration.add_member(:decal_settings_configuration, Shapes::ShapeRef.new(shape: DecalSettingsConfiguration, location_name: "DecalSettingsConfiguration"))
|
|
3515
3581
|
ColumnConfiguration.struct_class = Types::ColumnConfiguration
|
|
3516
3582
|
|
|
3517
3583
|
ColumnConfigurationList.member = Shapes::ShapeRef.new(shape: ColumnConfiguration)
|
|
@@ -3606,6 +3672,8 @@ module Aws::QuickSight
|
|
|
3606
3672
|
ComboChartConfiguration.add_member(:secondary_y_axis_label_options, Shapes::ShapeRef.new(shape: ChartAxisLabelOptions, location_name: "SecondaryYAxisLabelOptions"))
|
|
3607
3673
|
ComboChartConfiguration.add_member(:single_axis_options, Shapes::ShapeRef.new(shape: SingleAxisOptions, location_name: "SingleAxisOptions"))
|
|
3608
3674
|
ComboChartConfiguration.add_member(:color_label_options, Shapes::ShapeRef.new(shape: ChartAxisLabelOptions, location_name: "ColorLabelOptions"))
|
|
3675
|
+
ComboChartConfiguration.add_member(:default_series_settings, Shapes::ShapeRef.new(shape: ComboChartDefaultSeriesSettings, location_name: "DefaultSeriesSettings"))
|
|
3676
|
+
ComboChartConfiguration.add_member(:series, Shapes::ShapeRef.new(shape: ComboSeriesItemList, location_name: "Series"))
|
|
3609
3677
|
ComboChartConfiguration.add_member(:legend, Shapes::ShapeRef.new(shape: LegendOptions, location_name: "Legend"))
|
|
3610
3678
|
ComboChartConfiguration.add_member(:bar_data_labels, Shapes::ShapeRef.new(shape: DataLabelOptions, location_name: "BarDataLabels"))
|
|
3611
3679
|
ComboChartConfiguration.add_member(:line_data_labels, Shapes::ShapeRef.new(shape: DataLabelOptions, location_name: "LineDataLabels"))
|
|
@@ -3615,9 +3683,21 @@ module Aws::QuickSight
|
|
|
3615
3683
|
ComboChartConfiguration.add_member(:interactions, Shapes::ShapeRef.new(shape: VisualInteractionOptions, location_name: "Interactions"))
|
|
3616
3684
|
ComboChartConfiguration.struct_class = Types::ComboChartConfiguration
|
|
3617
3685
|
|
|
3686
|
+
ComboChartDefaultSeriesSettings.add_member(:line_style_settings, Shapes::ShapeRef.new(shape: LineChartLineStyleSettings, location_name: "LineStyleSettings"))
|
|
3687
|
+
ComboChartDefaultSeriesSettings.add_member(:marker_style_settings, Shapes::ShapeRef.new(shape: LineChartMarkerStyleSettings, location_name: "MarkerStyleSettings"))
|
|
3688
|
+
ComboChartDefaultSeriesSettings.add_member(:decal_settings, Shapes::ShapeRef.new(shape: DecalSettings, location_name: "DecalSettings"))
|
|
3689
|
+
ComboChartDefaultSeriesSettings.add_member(:border_settings, Shapes::ShapeRef.new(shape: BorderSettings, location_name: "BorderSettings"))
|
|
3690
|
+
ComboChartDefaultSeriesSettings.struct_class = Types::ComboChartDefaultSeriesSettings
|
|
3691
|
+
|
|
3618
3692
|
ComboChartFieldWells.add_member(:combo_chart_aggregated_field_wells, Shapes::ShapeRef.new(shape: ComboChartAggregatedFieldWells, location_name: "ComboChartAggregatedFieldWells"))
|
|
3619
3693
|
ComboChartFieldWells.struct_class = Types::ComboChartFieldWells
|
|
3620
3694
|
|
|
3695
|
+
ComboChartSeriesSettings.add_member(:line_style_settings, Shapes::ShapeRef.new(shape: LineChartLineStyleSettings, location_name: "LineStyleSettings"))
|
|
3696
|
+
ComboChartSeriesSettings.add_member(:marker_style_settings, Shapes::ShapeRef.new(shape: LineChartMarkerStyleSettings, location_name: "MarkerStyleSettings"))
|
|
3697
|
+
ComboChartSeriesSettings.add_member(:decal_settings, Shapes::ShapeRef.new(shape: DecalSettings, location_name: "DecalSettings"))
|
|
3698
|
+
ComboChartSeriesSettings.add_member(:border_settings, Shapes::ShapeRef.new(shape: BorderSettings, location_name: "BorderSettings"))
|
|
3699
|
+
ComboChartSeriesSettings.struct_class = Types::ComboChartSeriesSettings
|
|
3700
|
+
|
|
3621
3701
|
ComboChartSortConfiguration.add_member(:category_sort, Shapes::ShapeRef.new(shape: FieldSortOptionsList, location_name: "CategorySort"))
|
|
3622
3702
|
ComboChartSortConfiguration.add_member(:category_items_limit, Shapes::ShapeRef.new(shape: ItemsLimitConfiguration, location_name: "CategoryItemsLimit"))
|
|
3623
3703
|
ComboChartSortConfiguration.add_member(:color_sort, Shapes::ShapeRef.new(shape: FieldSortOptionsList, location_name: "ColorSort"))
|
|
@@ -3633,6 +3713,12 @@ module Aws::QuickSight
|
|
|
3633
3713
|
ComboChartVisual.add_member(:visual_content_alt_text, Shapes::ShapeRef.new(shape: LongPlainText, location_name: "VisualContentAltText"))
|
|
3634
3714
|
ComboChartVisual.struct_class = Types::ComboChartVisual
|
|
3635
3715
|
|
|
3716
|
+
ComboSeriesItem.add_member(:field_combo_series_item, Shapes::ShapeRef.new(shape: FieldComboSeriesItem, location_name: "FieldComboSeriesItem"))
|
|
3717
|
+
ComboSeriesItem.add_member(:data_field_combo_series_item, Shapes::ShapeRef.new(shape: DataFieldComboSeriesItem, location_name: "DataFieldComboSeriesItem"))
|
|
3718
|
+
ComboSeriesItem.struct_class = Types::ComboSeriesItem
|
|
3719
|
+
|
|
3720
|
+
ComboSeriesItemList.member = Shapes::ShapeRef.new(shape: ComboSeriesItem)
|
|
3721
|
+
|
|
3636
3722
|
ComparativeOrder.add_member(:use_ordering, Shapes::ShapeRef.new(shape: ColumnOrderingType, location_name: "UseOrdering"))
|
|
3637
3723
|
ComparativeOrder.add_member(:specifed_order, Shapes::ShapeRef.new(shape: StringList, location_name: "SpecifedOrder"))
|
|
3638
3724
|
ComparativeOrder.add_member(:treat_undefined_specified_values, Shapes::ShapeRef.new(shape: UndefinedSpecifiedValueType, location_name: "TreatUndefinedSpecifiedValues"))
|
|
@@ -3730,6 +3816,10 @@ module Aws::QuickSight
|
|
|
3730
3816
|
|
|
3731
3817
|
ContributorDimensionList.member = Shapes::ShapeRef.new(shape: ColumnIdentifier)
|
|
3732
3818
|
|
|
3819
|
+
Coordinate.add_member(:latitude, Shapes::ShapeRef.new(shape: CoordinateLatitudeDouble, required: true, location_name: "Latitude"))
|
|
3820
|
+
Coordinate.add_member(:longitude, Shapes::ShapeRef.new(shape: CoordinateLongitudeDouble, required: true, location_name: "Longitude"))
|
|
3821
|
+
Coordinate.struct_class = Types::Coordinate
|
|
3822
|
+
|
|
3733
3823
|
CreateAccountCustomizationRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
|
3734
3824
|
CreateAccountCustomizationRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, location: "querystring", location_name: "namespace"))
|
|
3735
3825
|
CreateAccountCustomizationRequest.add_member(:account_customization, Shapes::ShapeRef.new(shape: AccountCustomization, required: true, location_name: "AccountCustomization"))
|
|
@@ -4253,6 +4343,9 @@ module Aws::QuickSight
|
|
|
4253
4343
|
Dashboard.add_member(:link_entities, Shapes::ShapeRef.new(shape: LinkEntityArnList, location_name: "LinkEntities"))
|
|
4254
4344
|
Dashboard.struct_class = Types::Dashboard
|
|
4255
4345
|
|
|
4346
|
+
DashboardCustomizationVisualOptions.add_member(:fields_configuration, Shapes::ShapeRef.new(shape: VisualCustomizationFieldsConfiguration, location_name: "FieldsConfiguration"))
|
|
4347
|
+
DashboardCustomizationVisualOptions.struct_class = Types::DashboardCustomizationVisualOptions
|
|
4348
|
+
|
|
4256
4349
|
DashboardError.add_member(:type, Shapes::ShapeRef.new(shape: DashboardErrorType, location_name: "Type"))
|
|
4257
4350
|
DashboardError.add_member(:message, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "Message"))
|
|
4258
4351
|
DashboardError.add_member(:violated_entities, Shapes::ShapeRef.new(shape: EntityList, location_name: "ViolatedEntities"))
|
|
@@ -4371,6 +4464,16 @@ module Aws::QuickSight
|
|
|
4371
4464
|
DataColorPalette.add_member(:empty_fill_color, Shapes::ShapeRef.new(shape: HexColor, location_name: "EmptyFillColor"))
|
|
4372
4465
|
DataColorPalette.struct_class = Types::DataColorPalette
|
|
4373
4466
|
|
|
4467
|
+
DataFieldBarSeriesItem.add_member(:field_id, Shapes::ShapeRef.new(shape: FieldId, required: true, location_name: "FieldId"))
|
|
4468
|
+
DataFieldBarSeriesItem.add_member(:field_value, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "FieldValue"))
|
|
4469
|
+
DataFieldBarSeriesItem.add_member(:settings, Shapes::ShapeRef.new(shape: BarChartSeriesSettings, location_name: "Settings"))
|
|
4470
|
+
DataFieldBarSeriesItem.struct_class = Types::DataFieldBarSeriesItem
|
|
4471
|
+
|
|
4472
|
+
DataFieldComboSeriesItem.add_member(:field_id, Shapes::ShapeRef.new(shape: FieldId, required: true, location_name: "FieldId"))
|
|
4473
|
+
DataFieldComboSeriesItem.add_member(:field_value, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "FieldValue"))
|
|
4474
|
+
DataFieldComboSeriesItem.add_member(:settings, Shapes::ShapeRef.new(shape: ComboChartSeriesSettings, location_name: "Settings"))
|
|
4475
|
+
DataFieldComboSeriesItem.struct_class = Types::DataFieldComboSeriesItem
|
|
4476
|
+
|
|
4374
4477
|
DataFieldSeriesItem.add_member(:field_id, Shapes::ShapeRef.new(shape: FieldId, required: true, location_name: "FieldId"))
|
|
4375
4478
|
DataFieldSeriesItem.add_member(:field_value, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "FieldValue"))
|
|
4376
4479
|
DataFieldSeriesItem.add_member(:axis_binding, Shapes::ShapeRef.new(shape: AxisBinding, required: true, location_name: "AxisBinding"))
|
|
@@ -4615,6 +4718,7 @@ module Aws::QuickSight
|
|
|
4615
4718
|
DataSourceCredentials.add_member(:credential_pair, Shapes::ShapeRef.new(shape: CredentialPair, location_name: "CredentialPair"))
|
|
4616
4719
|
DataSourceCredentials.add_member(:copy_source_arn, Shapes::ShapeRef.new(shape: CopySourceArn, location_name: "CopySourceArn"))
|
|
4617
4720
|
DataSourceCredentials.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretArn, location_name: "SecretArn"))
|
|
4721
|
+
DataSourceCredentials.add_member(:key_pair_credentials, Shapes::ShapeRef.new(shape: KeyPairCredentials, location_name: "KeyPairCredentials"))
|
|
4618
4722
|
DataSourceCredentials.add_member(:web_proxy_credentials, Shapes::ShapeRef.new(shape: WebProxyCredentials, location_name: "WebProxyCredentials"))
|
|
4619
4723
|
DataSourceCredentials.struct_class = Types::DataSourceCredentials
|
|
4620
4724
|
|
|
@@ -4778,6 +4882,18 @@ module Aws::QuickSight
|
|
|
4778
4882
|
DateTimeValueWhenUnsetConfiguration.add_member(:custom_value, Shapes::ShapeRef.new(shape: SensitiveTimestamp, location_name: "CustomValue"))
|
|
4779
4883
|
DateTimeValueWhenUnsetConfiguration.struct_class = Types::DateTimeValueWhenUnsetConfiguration
|
|
4780
4884
|
|
|
4885
|
+
DecalSettings.add_member(:element_value, Shapes::ShapeRef.new(shape: ElementValue, location_name: "ElementValue"))
|
|
4886
|
+
DecalSettings.add_member(:decal_visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "DecalVisibility"))
|
|
4887
|
+
DecalSettings.add_member(:decal_color, Shapes::ShapeRef.new(shape: HexColorWithTransparency, location_name: "DecalColor"))
|
|
4888
|
+
DecalSettings.add_member(:decal_pattern_type, Shapes::ShapeRef.new(shape: DecalPatternType, location_name: "DecalPatternType"))
|
|
4889
|
+
DecalSettings.add_member(:decal_style_type, Shapes::ShapeRef.new(shape: DecalStyleType, location_name: "DecalStyleType"))
|
|
4890
|
+
DecalSettings.struct_class = Types::DecalSettings
|
|
4891
|
+
|
|
4892
|
+
DecalSettingsConfiguration.add_member(:custom_decal_settings, Shapes::ShapeRef.new(shape: DecalSettingsList, location_name: "CustomDecalSettings"))
|
|
4893
|
+
DecalSettingsConfiguration.struct_class = Types::DecalSettingsConfiguration
|
|
4894
|
+
|
|
4895
|
+
DecalSettingsList.member = Shapes::ShapeRef.new(shape: DecalSettings)
|
|
4896
|
+
|
|
4781
4897
|
DecimalDatasetParameter.add_member(:id, Shapes::ShapeRef.new(shape: DatasetParameterId, required: true, location_name: "Id"))
|
|
4782
4898
|
DecimalDatasetParameter.add_member(:name, Shapes::ShapeRef.new(shape: DatasetParameterName, required: true, location_name: "Name"))
|
|
4783
4899
|
DecimalDatasetParameter.add_member(:value_type, Shapes::ShapeRef.new(shape: DatasetParameterValueType, required: true, location_name: "ValueType"))
|
|
@@ -5932,11 +6048,19 @@ module Aws::QuickSight
|
|
|
5932
6048
|
FailedKeyRegistrationEntry.add_member(:sender_fault, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "SenderFault"))
|
|
5933
6049
|
FailedKeyRegistrationEntry.struct_class = Types::FailedKeyRegistrationEntry
|
|
5934
6050
|
|
|
6051
|
+
FieldBarSeriesItem.add_member(:field_id, Shapes::ShapeRef.new(shape: FieldId, required: true, location_name: "FieldId"))
|
|
6052
|
+
FieldBarSeriesItem.add_member(:settings, Shapes::ShapeRef.new(shape: BarChartSeriesSettings, location_name: "Settings"))
|
|
6053
|
+
FieldBarSeriesItem.struct_class = Types::FieldBarSeriesItem
|
|
6054
|
+
|
|
5935
6055
|
FieldBasedTooltip.add_member(:aggregation_visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "AggregationVisibility"))
|
|
5936
6056
|
FieldBasedTooltip.add_member(:tooltip_title_type, Shapes::ShapeRef.new(shape: TooltipTitleType, location_name: "TooltipTitleType"))
|
|
5937
6057
|
FieldBasedTooltip.add_member(:tooltip_fields, Shapes::ShapeRef.new(shape: TooltipItemList, location_name: "TooltipFields"))
|
|
5938
6058
|
FieldBasedTooltip.struct_class = Types::FieldBasedTooltip
|
|
5939
6059
|
|
|
6060
|
+
FieldComboSeriesItem.add_member(:field_id, Shapes::ShapeRef.new(shape: FieldId, required: true, location_name: "FieldId"))
|
|
6061
|
+
FieldComboSeriesItem.add_member(:settings, Shapes::ShapeRef.new(shape: ComboChartSeriesSettings, location_name: "Settings"))
|
|
6062
|
+
FieldComboSeriesItem.struct_class = Types::FieldComboSeriesItem
|
|
6063
|
+
|
|
5940
6064
|
FieldFolder.add_member(:description, Shapes::ShapeRef.new(shape: FieldFolderDescription, location_name: "description"))
|
|
5941
6065
|
FieldFolder.add_member(:columns, Shapes::ShapeRef.new(shape: FolderColumnList, location_name: "columns"))
|
|
5942
6066
|
FieldFolder.struct_class = Types::FieldFolder
|
|
@@ -6014,6 +6138,7 @@ module Aws::QuickSight
|
|
|
6014
6138
|
FilledMapVisual.add_member(:column_hierarchies, Shapes::ShapeRef.new(shape: ColumnHierarchyList, location_name: "ColumnHierarchies"))
|
|
6015
6139
|
FilledMapVisual.add_member(:actions, Shapes::ShapeRef.new(shape: VisualCustomActionList, location_name: "Actions"))
|
|
6016
6140
|
FilledMapVisual.add_member(:visual_content_alt_text, Shapes::ShapeRef.new(shape: LongPlainText, location_name: "VisualContentAltText"))
|
|
6141
|
+
FilledMapVisual.add_member(:geocoding_preferences, Shapes::ShapeRef.new(shape: GeocodePreferenceList, location_name: "GeocodingPreferences"))
|
|
6017
6142
|
FilledMapVisual.struct_class = Types::FilledMapVisual
|
|
6018
6143
|
|
|
6019
6144
|
Filter.add_member(:category_filter, Shapes::ShapeRef.new(shape: CategoryFilter, location_name: "CategoryFilter"))
|
|
@@ -6447,6 +6572,27 @@ module Aws::QuickSight
|
|
|
6447
6572
|
GeoSpatialColumnGroup.add_member(:columns, Shapes::ShapeRef.new(shape: ColumnList, required: true, location_name: "Columns"))
|
|
6448
6573
|
GeoSpatialColumnGroup.struct_class = Types::GeoSpatialColumnGroup
|
|
6449
6574
|
|
|
6575
|
+
GeocodePreference.add_member(:request_key, Shapes::ShapeRef.new(shape: GeocoderHierarchy, required: true, location_name: "RequestKey"))
|
|
6576
|
+
GeocodePreference.add_member(:preference, Shapes::ShapeRef.new(shape: GeocodePreferenceValue, required: true, location_name: "Preference"))
|
|
6577
|
+
GeocodePreference.struct_class = Types::GeocodePreference
|
|
6578
|
+
|
|
6579
|
+
GeocodePreferenceList.member = Shapes::ShapeRef.new(shape: GeocodePreference)
|
|
6580
|
+
|
|
6581
|
+
GeocodePreferenceValue.add_member(:geocoder_hierarchy, Shapes::ShapeRef.new(shape: GeocoderHierarchy, location_name: "GeocoderHierarchy"))
|
|
6582
|
+
GeocodePreferenceValue.add_member(:coordinate, Shapes::ShapeRef.new(shape: Coordinate, location_name: "Coordinate"))
|
|
6583
|
+
GeocodePreferenceValue.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
6584
|
+
GeocodePreferenceValue.add_member_subclass(:geocoder_hierarchy, Types::GeocodePreferenceValue::GeocoderHierarchy)
|
|
6585
|
+
GeocodePreferenceValue.add_member_subclass(:coordinate, Types::GeocodePreferenceValue::Coordinate)
|
|
6586
|
+
GeocodePreferenceValue.add_member_subclass(:unknown, Types::GeocodePreferenceValue::Unknown)
|
|
6587
|
+
GeocodePreferenceValue.struct_class = Types::GeocodePreferenceValue
|
|
6588
|
+
|
|
6589
|
+
GeocoderHierarchy.add_member(:country, Shapes::ShapeRef.new(shape: GeocoderHierarchyCountryString, location_name: "Country"))
|
|
6590
|
+
GeocoderHierarchy.add_member(:state, Shapes::ShapeRef.new(shape: GeocoderHierarchyStateString, location_name: "State"))
|
|
6591
|
+
GeocoderHierarchy.add_member(:county, Shapes::ShapeRef.new(shape: GeocoderHierarchyCountyString, location_name: "County"))
|
|
6592
|
+
GeocoderHierarchy.add_member(:city, Shapes::ShapeRef.new(shape: GeocoderHierarchyCityString, location_name: "City"))
|
|
6593
|
+
GeocoderHierarchy.add_member(:post_code, Shapes::ShapeRef.new(shape: GeocoderHierarchyPostCodeString, location_name: "PostCode"))
|
|
6594
|
+
GeocoderHierarchy.struct_class = Types::GeocoderHierarchy
|
|
6595
|
+
|
|
6450
6596
|
GeospatialCategoricalColor.add_member(:category_data_colors, Shapes::ShapeRef.new(shape: GeospatialCategoricalDataColorList, required: true, location_name: "CategoryDataColors"))
|
|
6451
6597
|
GeospatialCategoricalColor.add_member(:null_data_visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "NullDataVisibility"))
|
|
6452
6598
|
GeospatialCategoricalColor.add_member(:null_data_settings, Shapes::ShapeRef.new(shape: GeospatialNullDataSettings, location_name: "NullDataSettings"))
|
|
@@ -6593,6 +6739,7 @@ module Aws::QuickSight
|
|
|
6593
6739
|
GeospatialMapVisual.add_member(:column_hierarchies, Shapes::ShapeRef.new(shape: ColumnHierarchyList, location_name: "ColumnHierarchies"))
|
|
6594
6740
|
GeospatialMapVisual.add_member(:actions, Shapes::ShapeRef.new(shape: VisualCustomActionList, location_name: "Actions"))
|
|
6595
6741
|
GeospatialMapVisual.add_member(:visual_content_alt_text, Shapes::ShapeRef.new(shape: LongPlainText, location_name: "VisualContentAltText"))
|
|
6742
|
+
GeospatialMapVisual.add_member(:geocoding_preferences, Shapes::ShapeRef.new(shape: GeocodePreferenceList, location_name: "GeocodingPreferences"))
|
|
6596
6743
|
GeospatialMapVisual.struct_class = Types::GeospatialMapVisual
|
|
6597
6744
|
|
|
6598
6745
|
GeospatialNullDataSettings.add_member(:symbol_style, Shapes::ShapeRef.new(shape: GeospatialNullSymbolStyle, required: true, location_name: "SymbolStyle"))
|
|
@@ -6681,6 +6828,17 @@ module Aws::QuickSight
|
|
|
6681
6828
|
GetFlowPermissionsOutput.add_member(:status, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "Status"))
|
|
6682
6829
|
GetFlowPermissionsOutput.struct_class = Types::GetFlowPermissionsOutput
|
|
6683
6830
|
|
|
6831
|
+
GetIdentityContextRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
|
6832
|
+
GetIdentityContextRequest.add_member(:user_identifier, Shapes::ShapeRef.new(shape: UserIdentifier, required: true, location_name: "UserIdentifier"))
|
|
6833
|
+
GetIdentityContextRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, location_name: "Namespace"))
|
|
6834
|
+
GetIdentityContextRequest.add_member(:session_expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "SessionExpiresAt"))
|
|
6835
|
+
GetIdentityContextRequest.struct_class = Types::GetIdentityContextRequest
|
|
6836
|
+
|
|
6837
|
+
GetIdentityContextResponse.add_member(:status, Shapes::ShapeRef.new(shape: statusCode, required: true, location: "statusCode", location_name: "Status"))
|
|
6838
|
+
GetIdentityContextResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RequestId"))
|
|
6839
|
+
GetIdentityContextResponse.add_member(:context, Shapes::ShapeRef.new(shape: String, location_name: "Context"))
|
|
6840
|
+
GetIdentityContextResponse.struct_class = Types::GetIdentityContextResponse
|
|
6841
|
+
|
|
6684
6842
|
GetSessionEmbedUrlRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
|
6685
6843
|
GetSessionEmbedUrlRequest.add_member(:entry_point, Shapes::ShapeRef.new(shape: EntryPoint, location: "querystring", location_name: "entry-point"))
|
|
6686
6844
|
GetSessionEmbedUrlRequest.add_member(:session_lifetime_in_minutes, Shapes::ShapeRef.new(shape: SessionLifetimeInMinutes, location: "querystring", location_name: "session-lifetime"))
|
|
@@ -7164,6 +7322,11 @@ module Aws::QuickSight
|
|
|
7164
7322
|
KPIVisualStandardLayout.add_member(:type, Shapes::ShapeRef.new(shape: KPIVisualStandardLayoutType, required: true, location_name: "Type"))
|
|
7165
7323
|
KPIVisualStandardLayout.struct_class = Types::KPIVisualStandardLayout
|
|
7166
7324
|
|
|
7325
|
+
KeyPairCredentials.add_member(:key_pair_username, Shapes::ShapeRef.new(shape: DbUsername, required: true, location_name: "KeyPairUsername"))
|
|
7326
|
+
KeyPairCredentials.add_member(:private_key, Shapes::ShapeRef.new(shape: PrivateKey, required: true, location_name: "PrivateKey"))
|
|
7327
|
+
KeyPairCredentials.add_member(:private_key_passphrase, Shapes::ShapeRef.new(shape: PrivateKeyPassphrase, location_name: "PrivateKeyPassphrase"))
|
|
7328
|
+
KeyPairCredentials.struct_class = Types::KeyPairCredentials
|
|
7329
|
+
|
|
7167
7330
|
KeyRegistration.member = Shapes::ShapeRef.new(shape: RegisteredCustomerManagedKey)
|
|
7168
7331
|
|
|
7169
7332
|
LabelOptions.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
|
|
@@ -7251,6 +7414,7 @@ module Aws::QuickSight
|
|
|
7251
7414
|
LineChartDefaultSeriesSettings.add_member(:axis_binding, Shapes::ShapeRef.new(shape: AxisBinding, location_name: "AxisBinding"))
|
|
7252
7415
|
LineChartDefaultSeriesSettings.add_member(:line_style_settings, Shapes::ShapeRef.new(shape: LineChartLineStyleSettings, location_name: "LineStyleSettings"))
|
|
7253
7416
|
LineChartDefaultSeriesSettings.add_member(:marker_style_settings, Shapes::ShapeRef.new(shape: LineChartMarkerStyleSettings, location_name: "MarkerStyleSettings"))
|
|
7417
|
+
LineChartDefaultSeriesSettings.add_member(:decal_settings, Shapes::ShapeRef.new(shape: DecalSettings, location_name: "DecalSettings"))
|
|
7254
7418
|
LineChartDefaultSeriesSettings.struct_class = Types::LineChartDefaultSeriesSettings
|
|
7255
7419
|
|
|
7256
7420
|
LineChartFieldWells.add_member(:line_chart_aggregated_field_wells, Shapes::ShapeRef.new(shape: LineChartAggregatedFieldWells, location_name: "LineChartAggregatedFieldWells"))
|
|
@@ -7270,6 +7434,7 @@ module Aws::QuickSight
|
|
|
7270
7434
|
|
|
7271
7435
|
LineChartSeriesSettings.add_member(:line_style_settings, Shapes::ShapeRef.new(shape: LineChartLineStyleSettings, location_name: "LineStyleSettings"))
|
|
7272
7436
|
LineChartSeriesSettings.add_member(:marker_style_settings, Shapes::ShapeRef.new(shape: LineChartMarkerStyleSettings, location_name: "MarkerStyleSettings"))
|
|
7437
|
+
LineChartSeriesSettings.add_member(:decal_settings, Shapes::ShapeRef.new(shape: DecalSettings, location_name: "DecalSettings"))
|
|
7273
7438
|
LineChartSeriesSettings.struct_class = Types::LineChartSeriesSettings
|
|
7274
7439
|
|
|
7275
7440
|
LineChartSortConfiguration.add_member(:category_sort, Shapes::ShapeRef.new(shape: FieldSortOptionsList, location_name: "CategorySort"))
|
|
@@ -8242,6 +8407,7 @@ module Aws::QuickSight
|
|
|
8242
8407
|
PivotTableConfiguration.add_member(:total_options, Shapes::ShapeRef.new(shape: PivotTableTotalOptions, location_name: "TotalOptions"))
|
|
8243
8408
|
PivotTableConfiguration.add_member(:field_options, Shapes::ShapeRef.new(shape: PivotTableFieldOptions, location_name: "FieldOptions"))
|
|
8244
8409
|
PivotTableConfiguration.add_member(:paginated_report_options, Shapes::ShapeRef.new(shape: PivotTablePaginatedReportOptions, location_name: "PaginatedReportOptions"))
|
|
8410
|
+
PivotTableConfiguration.add_member(:dashboard_customization_visual_options, Shapes::ShapeRef.new(shape: DashboardCustomizationVisualOptions, location_name: "DashboardCustomizationVisualOptions"))
|
|
8245
8411
|
PivotTableConfiguration.add_member(:interactions, Shapes::ShapeRef.new(shape: VisualInteractionOptions, location_name: "Interactions"))
|
|
8246
8412
|
PivotTableConfiguration.struct_class = Types::PivotTableConfiguration
|
|
8247
8413
|
|
|
@@ -8752,6 +8918,11 @@ module Aws::QuickSight
|
|
|
8752
8918
|
RegisteredUserQuickSightConsoleEmbeddingConfiguration.add_member(:feature_configurations, Shapes::ShapeRef.new(shape: RegisteredUserConsoleFeatureConfigurations, location_name: "FeatureConfigurations"))
|
|
8753
8919
|
RegisteredUserQuickSightConsoleEmbeddingConfiguration.struct_class = Types::RegisteredUserQuickSightConsoleEmbeddingConfiguration
|
|
8754
8920
|
|
|
8921
|
+
RegisteredUserSnapshotJobResult.add_member(:file_groups, Shapes::ShapeRef.new(shape: SnapshotJobResultFileGroupList, location_name: "FileGroups"))
|
|
8922
|
+
RegisteredUserSnapshotJobResult.struct_class = Types::RegisteredUserSnapshotJobResult
|
|
8923
|
+
|
|
8924
|
+
RegisteredUserSnapshotJobResultList.member = Shapes::ShapeRef.new(shape: RegisteredUserSnapshotJobResult)
|
|
8925
|
+
|
|
8755
8926
|
RelationalTable.add_member(:data_source_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "DataSourceArn"))
|
|
8756
8927
|
RelationalTable.add_member(:catalog, Shapes::ShapeRef.new(shape: RelationalTableCatalog, location_name: "Catalog"))
|
|
8757
8928
|
RelationalTable.add_member(:schema, Shapes::ShapeRef.new(shape: RelationalTableSchema, location_name: "Schema"))
|
|
@@ -9381,6 +9552,7 @@ module Aws::QuickSight
|
|
|
9381
9552
|
SnapshotJobErrorInfo.struct_class = Types::SnapshotJobErrorInfo
|
|
9382
9553
|
|
|
9383
9554
|
SnapshotJobResult.add_member(:anonymous_users, Shapes::ShapeRef.new(shape: AnonymousUserSnapshotJobResultList, location_name: "AnonymousUsers"))
|
|
9555
|
+
SnapshotJobResult.add_member(:registered_users, Shapes::ShapeRef.new(shape: RegisteredUserSnapshotJobResultList, location_name: "RegisteredUsers"))
|
|
9384
9556
|
SnapshotJobResult.struct_class = Types::SnapshotJobResult
|
|
9385
9557
|
|
|
9386
9558
|
SnapshotJobResultErrorInfo.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "ErrorMessage"))
|
|
@@ -9497,7 +9669,7 @@ module Aws::QuickSight
|
|
|
9497
9669
|
StartDashboardSnapshotJobRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
|
9498
9670
|
StartDashboardSnapshotJobRequest.add_member(:dashboard_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location: "uri", location_name: "DashboardId"))
|
|
9499
9671
|
StartDashboardSnapshotJobRequest.add_member(:snapshot_job_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "SnapshotJobId"))
|
|
9500
|
-
StartDashboardSnapshotJobRequest.add_member(:user_configuration, Shapes::ShapeRef.new(shape: SnapshotUserConfiguration,
|
|
9672
|
+
StartDashboardSnapshotJobRequest.add_member(:user_configuration, Shapes::ShapeRef.new(shape: SnapshotUserConfiguration, location_name: "UserConfiguration"))
|
|
9501
9673
|
StartDashboardSnapshotJobRequest.add_member(:snapshot_configuration, Shapes::ShapeRef.new(shape: SnapshotConfiguration, required: true, location_name: "SnapshotConfiguration"))
|
|
9502
9674
|
StartDashboardSnapshotJobRequest.struct_class = Types::StartDashboardSnapshotJobRequest
|
|
9503
9675
|
|
|
@@ -9644,6 +9816,7 @@ module Aws::QuickSight
|
|
|
9644
9816
|
TableConfiguration.add_member(:field_options, Shapes::ShapeRef.new(shape: TableFieldOptions, location_name: "FieldOptions"))
|
|
9645
9817
|
TableConfiguration.add_member(:paginated_report_options, Shapes::ShapeRef.new(shape: TablePaginatedReportOptions, location_name: "PaginatedReportOptions"))
|
|
9646
9818
|
TableConfiguration.add_member(:table_inline_visualizations, Shapes::ShapeRef.new(shape: TableInlineVisualizationList, location_name: "TableInlineVisualizations"))
|
|
9819
|
+
TableConfiguration.add_member(:dashboard_customization_visual_options, Shapes::ShapeRef.new(shape: DashboardCustomizationVisualOptions, location_name: "DashboardCustomizationVisualOptions"))
|
|
9647
9820
|
TableConfiguration.add_member(:interactions, Shapes::ShapeRef.new(shape: VisualInteractionOptions, location_name: "Interactions"))
|
|
9648
9821
|
TableConfiguration.struct_class = Types::TableConfiguration
|
|
9649
9822
|
|
|
@@ -11095,6 +11268,16 @@ module Aws::QuickSight
|
|
|
11095
11268
|
User.add_member(:external_login_id, Shapes::ShapeRef.new(shape: String, location_name: "ExternalLoginId"))
|
|
11096
11269
|
User.struct_class = Types::User
|
|
11097
11270
|
|
|
11271
|
+
UserIdentifier.add_member(:user_name, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "UserName"))
|
|
11272
|
+
UserIdentifier.add_member(:email, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "Email"))
|
|
11273
|
+
UserIdentifier.add_member(:user_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "UserArn"))
|
|
11274
|
+
UserIdentifier.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
11275
|
+
UserIdentifier.add_member_subclass(:user_name, Types::UserIdentifier::UserName)
|
|
11276
|
+
UserIdentifier.add_member_subclass(:email, Types::UserIdentifier::Email)
|
|
11277
|
+
UserIdentifier.add_member_subclass(:user_arn, Types::UserIdentifier::UserArn)
|
|
11278
|
+
UserIdentifier.add_member_subclass(:unknown, Types::UserIdentifier::Unknown)
|
|
11279
|
+
UserIdentifier.struct_class = Types::UserIdentifier
|
|
11280
|
+
|
|
11098
11281
|
UserList.member = Shapes::ShapeRef.new(shape: User)
|
|
11099
11282
|
|
|
11100
11283
|
VPCConnection.add_member(:vpc_connection_id, Shapes::ShapeRef.new(shape: VPCConnectionResourceIdUnrestricted, location_name: "VPCConnectionId"))
|
|
@@ -11186,6 +11369,12 @@ module Aws::QuickSight
|
|
|
11186
11369
|
|
|
11187
11370
|
VisualCustomActionOperationList.member = Shapes::ShapeRef.new(shape: VisualCustomActionOperation)
|
|
11188
11371
|
|
|
11372
|
+
VisualCustomizationAdditionalFieldsList.member = Shapes::ShapeRef.new(shape: ColumnIdentifier)
|
|
11373
|
+
|
|
11374
|
+
VisualCustomizationFieldsConfiguration.add_member(:status, Shapes::ShapeRef.new(shape: DashboardCustomizationStatus, location_name: "Status"))
|
|
11375
|
+
VisualCustomizationFieldsConfiguration.add_member(:additional_fields, Shapes::ShapeRef.new(shape: VisualCustomizationAdditionalFieldsList, location_name: "AdditionalFields"))
|
|
11376
|
+
VisualCustomizationFieldsConfiguration.struct_class = Types::VisualCustomizationFieldsConfiguration
|
|
11377
|
+
|
|
11189
11378
|
VisualHighlightOperation.add_member(:trigger, Shapes::ShapeRef.new(shape: VisualHighlightTrigger, required: true, location_name: "Trigger"))
|
|
11190
11379
|
VisualHighlightOperation.struct_class = Types::VisualHighlightOperation
|
|
11191
11380
|
|
|
@@ -13143,6 +13332,20 @@ module Aws::QuickSight
|
|
|
13143
13332
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
13144
13333
|
end)
|
|
13145
13334
|
|
|
13335
|
+
api.add_operation(:get_identity_context, Seahorse::Model::Operation.new.tap do |o|
|
|
13336
|
+
o.name = "GetIdentityContext"
|
|
13337
|
+
o.http_method = "POST"
|
|
13338
|
+
o.http_request_uri = "/accounts/{AwsAccountId}/identity-context"
|
|
13339
|
+
o.input = Shapes::ShapeRef.new(shape: GetIdentityContextRequest)
|
|
13340
|
+
o.output = Shapes::ShapeRef.new(shape: GetIdentityContextResponse)
|
|
13341
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
13342
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
13343
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
|
13344
|
+
o.errors << Shapes::ShapeRef.new(shape: PreconditionNotMetException)
|
|
13345
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
13346
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
13347
|
+
end)
|
|
13348
|
+
|
|
13146
13349
|
api.add_operation(:get_session_embed_url, Seahorse::Model::Operation.new.tap do |o|
|
|
13147
13350
|
o.name = "GetSessionEmbedUrl"
|
|
13148
13351
|
o.http_method = "GET"
|