aws-sdk-quicksight 1.165.0 → 1.167.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.
data/sig/errors.rbs CHANGED
@@ -50,6 +50,10 @@ module Aws
50
50
  def message: () -> ::String
51
51
  def request_id: () -> ::String
52
52
  end
53
+ class InvalidParameterException < ::Aws::Errors::ServiceError
54
+ def message: () -> ::String
55
+ def request_id: () -> ::String
56
+ end
53
57
  class InvalidParameterValueException < ::Aws::Errors::ServiceError
54
58
  def message: () -> ::String
55
59
  def request_id: () -> ::String
data/sig/types.rbs CHANGED
@@ -863,6 +863,8 @@ module Aws::QuickSight
863
863
  attr_accessor value_axis: Types::AxisDisplayOptions
864
864
  attr_accessor value_label_options: Types::ChartAxisLabelOptions
865
865
  attr_accessor color_label_options: Types::ChartAxisLabelOptions
866
+ attr_accessor default_series_settings: Types::BarChartDefaultSeriesSettings
867
+ attr_accessor series: ::Array[Types::BarSeriesItem]
866
868
  attr_accessor legend: Types::LegendOptions
867
869
  attr_accessor data_labels: Types::DataLabelOptions
868
870
  attr_accessor tooltip: Types::TooltipOptions
@@ -872,11 +874,23 @@ module Aws::QuickSight
872
874
  SENSITIVE: []
873
875
  end
874
876
 
877
+ class BarChartDefaultSeriesSettings
878
+ attr_accessor decal_settings: Types::DecalSettings
879
+ attr_accessor border_settings: Types::BorderSettings
880
+ SENSITIVE: []
881
+ end
882
+
875
883
  class BarChartFieldWells
876
884
  attr_accessor bar_chart_aggregated_field_wells: Types::BarChartAggregatedFieldWells
877
885
  SENSITIVE: []
878
886
  end
879
887
 
888
+ class BarChartSeriesSettings
889
+ attr_accessor decal_settings: Types::DecalSettings
890
+ attr_accessor border_settings: Types::BorderSettings
891
+ SENSITIVE: []
892
+ end
893
+
880
894
  class BarChartSortConfiguration
881
895
  attr_accessor category_sort: ::Array[Types::FieldSortOptions]
882
896
  attr_accessor category_items_limit: Types::ItemsLimitConfiguration
@@ -898,6 +912,12 @@ module Aws::QuickSight
898
912
  SENSITIVE: []
899
913
  end
900
914
 
915
+ class BarSeriesItem
916
+ attr_accessor field_bar_series_item: Types::FieldBarSeriesItem
917
+ attr_accessor data_field_bar_series_item: Types::DataFieldBarSeriesItem
918
+ SENSITIVE: []
919
+ end
920
+
901
921
  class BasicAuthConnectionMetadata
902
922
  attr_accessor base_endpoint: ::String
903
923
  attr_accessor username: ::String
@@ -1007,6 +1027,13 @@ module Aws::QuickSight
1007
1027
  SENSITIVE: []
1008
1028
  end
1009
1029
 
1030
+ class BorderSettings
1031
+ attr_accessor border_visibility: ("HIDDEN" | "VISIBLE")
1032
+ attr_accessor border_width: ::String
1033
+ attr_accessor border_color: ::String
1034
+ SENSITIVE: []
1035
+ end
1036
+
1010
1037
  class BorderStyle
1011
1038
  attr_accessor color: ::String
1012
1039
  attr_accessor show: bool
@@ -1193,6 +1220,7 @@ module Aws::QuickSight
1193
1220
  attr_accessor chat_agent: ("DENY")
1194
1221
  attr_accessor create_chat_agents: ("DENY")
1195
1222
  attr_accessor research: ("DENY")
1223
+ attr_accessor self_upgrade_user_role: ("DENY")
1196
1224
  SENSITIVE: []
1197
1225
  end
1198
1226
 
@@ -1342,6 +1370,7 @@ module Aws::QuickSight
1342
1370
  attr_accessor format_configuration: Types::FormatConfiguration
1343
1371
  attr_accessor role: ("DIMENSION" | "MEASURE")
1344
1372
  attr_accessor colors_configuration: Types::ColorsConfiguration
1373
+ attr_accessor decal_settings_configuration: Types::DecalSettingsConfiguration
1345
1374
  SENSITIVE: []
1346
1375
  end
1347
1376
 
@@ -1440,6 +1469,8 @@ module Aws::QuickSight
1440
1469
  attr_accessor secondary_y_axis_label_options: Types::ChartAxisLabelOptions
1441
1470
  attr_accessor single_axis_options: Types::SingleAxisOptions
1442
1471
  attr_accessor color_label_options: Types::ChartAxisLabelOptions
1472
+ attr_accessor default_series_settings: Types::ComboChartDefaultSeriesSettings
1473
+ attr_accessor series: ::Array[Types::ComboSeriesItem]
1443
1474
  attr_accessor legend: Types::LegendOptions
1444
1475
  attr_accessor bar_data_labels: Types::DataLabelOptions
1445
1476
  attr_accessor line_data_labels: Types::DataLabelOptions
@@ -1450,11 +1481,27 @@ module Aws::QuickSight
1450
1481
  SENSITIVE: []
1451
1482
  end
1452
1483
 
1484
+ class ComboChartDefaultSeriesSettings
1485
+ attr_accessor line_style_settings: Types::LineChartLineStyleSettings
1486
+ attr_accessor marker_style_settings: Types::LineChartMarkerStyleSettings
1487
+ attr_accessor decal_settings: Types::DecalSettings
1488
+ attr_accessor border_settings: Types::BorderSettings
1489
+ SENSITIVE: []
1490
+ end
1491
+
1453
1492
  class ComboChartFieldWells
1454
1493
  attr_accessor combo_chart_aggregated_field_wells: Types::ComboChartAggregatedFieldWells
1455
1494
  SENSITIVE: []
1456
1495
  end
1457
1496
 
1497
+ class ComboChartSeriesSettings
1498
+ attr_accessor line_style_settings: Types::LineChartLineStyleSettings
1499
+ attr_accessor marker_style_settings: Types::LineChartMarkerStyleSettings
1500
+ attr_accessor decal_settings: Types::DecalSettings
1501
+ attr_accessor border_settings: Types::BorderSettings
1502
+ SENSITIVE: []
1503
+ end
1504
+
1458
1505
  class ComboChartSortConfiguration
1459
1506
  attr_accessor category_sort: ::Array[Types::FieldSortOptions]
1460
1507
  attr_accessor category_items_limit: Types::ItemsLimitConfiguration
@@ -1474,6 +1521,12 @@ module Aws::QuickSight
1474
1521
  SENSITIVE: []
1475
1522
  end
1476
1523
 
1524
+ class ComboSeriesItem
1525
+ attr_accessor field_combo_series_item: Types::FieldComboSeriesItem
1526
+ attr_accessor data_field_combo_series_item: Types::DataFieldComboSeriesItem
1527
+ SENSITIVE: []
1528
+ end
1529
+
1477
1530
  class ComparativeOrder
1478
1531
  attr_accessor use_ordering: ("GREATER_IS_BETTER" | "LESSER_IS_BETTER" | "SPECIFIED")
1479
1532
  attr_accessor specifed_order: ::Array[::String]
@@ -1603,6 +1656,12 @@ module Aws::QuickSight
1603
1656
  SENSITIVE: []
1604
1657
  end
1605
1658
 
1659
+ class Coordinate
1660
+ attr_accessor latitude: ::Float
1661
+ attr_accessor longitude: ::Float
1662
+ SENSITIVE: []
1663
+ end
1664
+
1606
1665
  class CreateAccountCustomizationRequest
1607
1666
  attr_accessor aws_account_id: ::String
1608
1667
  attr_accessor namespace: ::String
@@ -2262,6 +2321,11 @@ module Aws::QuickSight
2262
2321
  SENSITIVE: []
2263
2322
  end
2264
2323
 
2324
+ class DashboardCustomizationVisualOptions
2325
+ attr_accessor fields_configuration: Types::VisualCustomizationFieldsConfiguration
2326
+ SENSITIVE: []
2327
+ end
2328
+
2265
2329
  class DashboardError
2266
2330
  attr_accessor type: ("ACCESS_DENIED" | "SOURCE_NOT_FOUND" | "DATA_SET_NOT_FOUND" | "INTERNAL_FAILURE" | "PARAMETER_VALUE_INCOMPATIBLE" | "PARAMETER_TYPE_INVALID" | "PARAMETER_NOT_FOUND" | "COLUMN_TYPE_MISMATCH" | "COLUMN_GEOGRAPHIC_ROLE_MISMATCH" | "COLUMN_REPLACEMENT_MISSING")
2267
2331
  attr_accessor message: ::String
@@ -2404,6 +2468,20 @@ module Aws::QuickSight
2404
2468
  SENSITIVE: []
2405
2469
  end
2406
2470
 
2471
+ class DataFieldBarSeriesItem
2472
+ attr_accessor field_id: ::String
2473
+ attr_accessor field_value: ::String
2474
+ attr_accessor settings: Types::BarChartSeriesSettings
2475
+ SENSITIVE: [:field_value]
2476
+ end
2477
+
2478
+ class DataFieldComboSeriesItem
2479
+ attr_accessor field_id: ::String
2480
+ attr_accessor field_value: ::String
2481
+ attr_accessor settings: Types::ComboChartSeriesSettings
2482
+ SENSITIVE: [:field_value]
2483
+ end
2484
+
2407
2485
  class DataFieldSeriesItem
2408
2486
  attr_accessor field_id: ::String
2409
2487
  attr_accessor field_value: ::String
@@ -2709,6 +2787,7 @@ module Aws::QuickSight
2709
2787
  attr_accessor credential_pair: Types::CredentialPair
2710
2788
  attr_accessor copy_source_arn: ::String
2711
2789
  attr_accessor secret_arn: ::String
2790
+ attr_accessor key_pair_credentials: Types::KeyPairCredentials
2712
2791
  attr_accessor web_proxy_credentials: Types::WebProxyCredentials
2713
2792
  SENSITIVE: []
2714
2793
  end
@@ -2895,6 +2974,20 @@ module Aws::QuickSight
2895
2974
  SENSITIVE: [:custom_value]
2896
2975
  end
2897
2976
 
2977
+ class DecalSettings
2978
+ attr_accessor element_value: ::String
2979
+ attr_accessor decal_visibility: ("HIDDEN" | "VISIBLE")
2980
+ attr_accessor decal_color: ::String
2981
+ attr_accessor decal_pattern_type: ("SOLID" | "DIAGONAL_MEDIUM" | "CIRCLE_MEDIUM" | "DIAMOND_GRID_MEDIUM" | "CHECKERBOARD_MEDIUM" | "TRIANGLE_MEDIUM" | "DIAGONAL_OPPOSITE_MEDIUM" | "DIAMOND_MEDIUM" | "DIAGONAL_LARGE" | "CIRCLE_LARGE" | "DIAMOND_GRID_LARGE" | "CHECKERBOARD_LARGE" | "TRIANGLE_LARGE" | "DIAGONAL_OPPOSITE_LARGE" | "DIAMOND_LARGE" | "DIAGONAL_SMALL" | "CIRCLE_SMALL" | "DIAMOND_GRID_SMALL" | "CHECKERBOARD_SMALL" | "TRIANGLE_SMALL" | "DIAGONAL_OPPOSITE_SMALL" | "DIAMOND_SMALL")
2982
+ attr_accessor decal_style_type: ("Manual" | "Auto")
2983
+ SENSITIVE: []
2984
+ end
2985
+
2986
+ class DecalSettingsConfiguration
2987
+ attr_accessor custom_decal_settings: ::Array[Types::DecalSettings]
2988
+ SENSITIVE: []
2989
+ end
2990
+
2898
2991
  class DecimalDatasetParameter
2899
2992
  attr_accessor id: ::String
2900
2993
  attr_accessor name: ::String
@@ -4117,6 +4210,19 @@ module Aws::QuickSight
4117
4210
  SENSITIVE: []
4118
4211
  end
4119
4212
 
4213
+ class DescribeSelfUpgradeConfigurationRequest
4214
+ attr_accessor aws_account_id: ::String
4215
+ attr_accessor namespace: ::String
4216
+ SENSITIVE: []
4217
+ end
4218
+
4219
+ class DescribeSelfUpgradeConfigurationResponse
4220
+ attr_accessor self_upgrade_configuration: Types::SelfUpgradeConfiguration
4221
+ attr_accessor request_id: ::String
4222
+ attr_accessor status: ::Integer
4223
+ SENSITIVE: []
4224
+ end
4225
+
4120
4226
  class DescribeTemplateAliasRequest
4121
4227
  attr_accessor aws_account_id: ::String
4122
4228
  attr_accessor template_id: ::String
@@ -4466,6 +4572,12 @@ module Aws::QuickSight
4466
4572
  SENSITIVE: []
4467
4573
  end
4468
4574
 
4575
+ class FieldBarSeriesItem
4576
+ attr_accessor field_id: ::String
4577
+ attr_accessor settings: Types::BarChartSeriesSettings
4578
+ SENSITIVE: []
4579
+ end
4580
+
4469
4581
  class FieldBasedTooltip
4470
4582
  attr_accessor aggregation_visibility: ("HIDDEN" | "VISIBLE")
4471
4583
  attr_accessor tooltip_title_type: ("NONE" | "PRIMARY_VALUE")
@@ -4473,6 +4585,12 @@ module Aws::QuickSight
4473
4585
  SENSITIVE: []
4474
4586
  end
4475
4587
 
4588
+ class FieldComboSeriesItem
4589
+ attr_accessor field_id: ::String
4590
+ attr_accessor settings: Types::ComboChartSeriesSettings
4591
+ SENSITIVE: []
4592
+ end
4593
+
4476
4594
  class FieldFolder
4477
4595
  attr_accessor description: ::String
4478
4596
  attr_accessor columns: ::Array[::String]
@@ -4564,6 +4682,7 @@ module Aws::QuickSight
4564
4682
  attr_accessor column_hierarchies: ::Array[Types::ColumnHierarchy]
4565
4683
  attr_accessor actions: ::Array[Types::VisualCustomAction]
4566
4684
  attr_accessor visual_content_alt_text: ::String
4685
+ attr_accessor geocoding_preferences: ::Array[Types::GeocodePreference]
4567
4686
  SENSITIVE: []
4568
4687
  end
4569
4688
 
@@ -5086,6 +5205,35 @@ module Aws::QuickSight
5086
5205
  SENSITIVE: []
5087
5206
  end
5088
5207
 
5208
+ class GeocodePreference
5209
+ attr_accessor request_key: Types::GeocoderHierarchy
5210
+ attr_accessor preference: Types::GeocodePreferenceValue
5211
+ SENSITIVE: []
5212
+ end
5213
+
5214
+ class GeocodePreferenceValue
5215
+ attr_accessor geocoder_hierarchy: Types::GeocoderHierarchy
5216
+ attr_accessor coordinate: Types::Coordinate
5217
+ attr_accessor unknown: untyped
5218
+ SENSITIVE: []
5219
+
5220
+ class GeocoderHierarchy < GeocodePreferenceValue
5221
+ end
5222
+ class Coordinate < GeocodePreferenceValue
5223
+ end
5224
+ class Unknown < GeocodePreferenceValue
5225
+ end
5226
+ end
5227
+
5228
+ class GeocoderHierarchy
5229
+ attr_accessor country: ::String
5230
+ attr_accessor state: ::String
5231
+ attr_accessor county: ::String
5232
+ attr_accessor city: ::String
5233
+ attr_accessor post_code: ::String
5234
+ SENSITIVE: []
5235
+ end
5236
+
5089
5237
  class GeospatialCategoricalColor
5090
5238
  attr_accessor category_data_colors: ::Array[Types::GeospatialCategoricalDataColor]
5091
5239
  attr_accessor null_data_visibility: ("HIDDEN" | "VISIBLE")
@@ -5275,6 +5423,7 @@ module Aws::QuickSight
5275
5423
  attr_accessor column_hierarchies: ::Array[Types::ColumnHierarchy]
5276
5424
  attr_accessor actions: ::Array[Types::VisualCustomAction]
5277
5425
  attr_accessor visual_content_alt_text: ::String
5426
+ attr_accessor geocoding_preferences: ::Array[Types::GeocodePreference]
5278
5427
  SENSITIVE: []
5279
5428
  end
5280
5429
 
@@ -5398,6 +5547,21 @@ module Aws::QuickSight
5398
5547
  SENSITIVE: []
5399
5548
  end
5400
5549
 
5550
+ class GetIdentityContextRequest
5551
+ attr_accessor aws_account_id: ::String
5552
+ attr_accessor user_identifier: Types::UserIdentifier
5553
+ attr_accessor namespace: ::String
5554
+ attr_accessor session_expires_at: ::Time
5555
+ SENSITIVE: []
5556
+ end
5557
+
5558
+ class GetIdentityContextResponse
5559
+ attr_accessor status: ::Integer
5560
+ attr_accessor request_id: ::String
5561
+ attr_accessor context: ::String
5562
+ SENSITIVE: []
5563
+ end
5564
+
5401
5565
  class GetSessionEmbedUrlRequest
5402
5566
  attr_accessor aws_account_id: ::String
5403
5567
  attr_accessor entry_point: ::String
@@ -5846,6 +6010,12 @@ module Aws::QuickSight
5846
6010
  SENSITIVE: []
5847
6011
  end
5848
6012
 
6013
+ class InvalidParameterException
6014
+ attr_accessor message: ::String
6015
+ attr_accessor request_id: ::String
6016
+ SENSITIVE: []
6017
+ end
6018
+
5849
6019
  class InvalidParameterValueException
5850
6020
  attr_accessor message: ::String
5851
6021
  attr_accessor request_id: ::String
@@ -6005,6 +6175,13 @@ module Aws::QuickSight
6005
6175
  SENSITIVE: []
6006
6176
  end
6007
6177
 
6178
+ class KeyPairCredentials
6179
+ attr_accessor key_pair_username: ::String
6180
+ attr_accessor private_key: ::String
6181
+ attr_accessor private_key_passphrase: ::String
6182
+ SENSITIVE: [:private_key, :private_key_passphrase]
6183
+ end
6184
+
6008
6185
  class LabelOptions
6009
6186
  attr_accessor visibility: ("HIDDEN" | "VISIBLE")
6010
6187
  attr_accessor font_configuration: Types::FontConfiguration
@@ -6105,6 +6282,7 @@ module Aws::QuickSight
6105
6282
  attr_accessor axis_binding: ("PRIMARY_YAXIS" | "SECONDARY_YAXIS")
6106
6283
  attr_accessor line_style_settings: Types::LineChartLineStyleSettings
6107
6284
  attr_accessor marker_style_settings: Types::LineChartMarkerStyleSettings
6285
+ attr_accessor decal_settings: Types::DecalSettings
6108
6286
  SENSITIVE: []
6109
6287
  end
6110
6288
 
@@ -6132,6 +6310,7 @@ module Aws::QuickSight
6132
6310
  class LineChartSeriesSettings
6133
6311
  attr_accessor line_style_settings: Types::LineChartLineStyleSettings
6134
6312
  attr_accessor marker_style_settings: Types::LineChartMarkerStyleSettings
6313
+ attr_accessor decal_settings: Types::DecalSettings
6135
6314
  SENSITIVE: []
6136
6315
  end
6137
6316
 
@@ -6538,6 +6717,22 @@ module Aws::QuickSight
6538
6717
  SENSITIVE: []
6539
6718
  end
6540
6719
 
6720
+ class ListSelfUpgradesRequest
6721
+ attr_accessor aws_account_id: ::String
6722
+ attr_accessor namespace: ::String
6723
+ attr_accessor next_token: ::String
6724
+ attr_accessor max_results: ::Integer
6725
+ SENSITIVE: []
6726
+ end
6727
+
6728
+ class ListSelfUpgradesResponse
6729
+ attr_accessor self_upgrade_request_details: ::Array[Types::SelfUpgradeRequestDetail]
6730
+ attr_accessor next_token: ::String
6731
+ attr_accessor request_id: ::String
6732
+ attr_accessor status: ::Integer
6733
+ SENSITIVE: []
6734
+ end
6735
+
6541
6736
  class ListTagsForResourceRequest
6542
6737
  attr_accessor resource_arn: ::String
6543
6738
  SENSITIVE: []
@@ -7392,6 +7587,7 @@ module Aws::QuickSight
7392
7587
  attr_accessor total_options: Types::PivotTableTotalOptions
7393
7588
  attr_accessor field_options: Types::PivotTableFieldOptions
7394
7589
  attr_accessor paginated_report_options: Types::PivotTablePaginatedReportOptions
7590
+ attr_accessor dashboard_customization_visual_options: Types::DashboardCustomizationVisualOptions
7395
7591
  attr_accessor interactions: Types::VisualInteractionOptions
7396
7592
  SENSITIVE: []
7397
7593
  end
@@ -8064,6 +8260,11 @@ module Aws::QuickSight
8064
8260
  SENSITIVE: []
8065
8261
  end
8066
8262
 
8263
+ class RegisteredUserSnapshotJobResult
8264
+ attr_accessor file_groups: ::Array[Types::SnapshotJobResultFileGroup]
8265
+ SENSITIVE: []
8266
+ end
8267
+
8067
8268
  class RelationalTable
8068
8269
  attr_accessor data_source_arn: ::String
8069
8270
  attr_accessor catalog: ::String
@@ -8553,6 +8754,24 @@ module Aws::QuickSight
8553
8754
  SENSITIVE: []
8554
8755
  end
8555
8756
 
8757
+ class SelfUpgradeConfiguration
8758
+ attr_accessor self_upgrade_status: ("AUTO_APPROVAL" | "ADMIN_APPROVAL")
8759
+ SENSITIVE: []
8760
+ end
8761
+
8762
+ class SelfUpgradeRequestDetail
8763
+ attr_accessor upgrade_request_id: ::String
8764
+ attr_accessor user_name: ::String
8765
+ attr_accessor original_role: ("ADMIN" | "AUTHOR" | "READER" | "RESTRICTED_AUTHOR" | "RESTRICTED_READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO")
8766
+ attr_accessor requested_role: ("ADMIN" | "AUTHOR" | "READER" | "RESTRICTED_AUTHOR" | "RESTRICTED_READER" | "ADMIN_PRO" | "AUTHOR_PRO" | "READER_PRO")
8767
+ attr_accessor request_note: ::String
8768
+ attr_accessor creation_time: ::Integer
8769
+ attr_accessor request_status: ("PENDING" | "APPROVED" | "DENIED" | "UPDATE_FAILED" | "VERIFY_FAILED")
8770
+ attr_accessor last_update_attempt_time: ::Integer
8771
+ attr_accessor last_update_failure_reason: ::String
8772
+ SENSITIVE: []
8773
+ end
8774
+
8556
8775
  class SemanticEntityType
8557
8776
  attr_accessor type_name: ::String
8558
8777
  attr_accessor sub_type_name: ::String
@@ -8846,6 +9065,7 @@ module Aws::QuickSight
8846
9065
 
8847
9066
  class SnapshotJobResult
8848
9067
  attr_accessor anonymous_users: ::Array[Types::AnonymousUserSnapshotJobResult]
9068
+ attr_accessor registered_users: ::Array[Types::RegisteredUserSnapshotJobResult]
8849
9069
  SENSITIVE: []
8850
9070
  end
8851
9071
 
@@ -9168,6 +9388,7 @@ module Aws::QuickSight
9168
9388
  attr_accessor field_options: Types::TableFieldOptions
9169
9389
  attr_accessor paginated_report_options: Types::TablePaginatedReportOptions
9170
9390
  attr_accessor table_inline_visualizations: ::Array[Types::TableInlineVisualization]
9391
+ attr_accessor dashboard_customization_visual_options: Types::DashboardCustomizationVisualOptions
9171
9392
  attr_accessor interactions: Types::VisualInteractionOptions
9172
9393
  SENSITIVE: []
9173
9394
  end
@@ -10729,6 +10950,34 @@ module Aws::QuickSight
10729
10950
  SENSITIVE: []
10730
10951
  end
10731
10952
 
10953
+ class UpdateSelfUpgradeConfigurationRequest
10954
+ attr_accessor aws_account_id: ::String
10955
+ attr_accessor namespace: ::String
10956
+ attr_accessor self_upgrade_status: ("AUTO_APPROVAL" | "ADMIN_APPROVAL")
10957
+ SENSITIVE: []
10958
+ end
10959
+
10960
+ class UpdateSelfUpgradeConfigurationResponse
10961
+ attr_accessor request_id: ::String
10962
+ attr_accessor status: ::Integer
10963
+ SENSITIVE: []
10964
+ end
10965
+
10966
+ class UpdateSelfUpgradeRequest
10967
+ attr_accessor aws_account_id: ::String
10968
+ attr_accessor namespace: ::String
10969
+ attr_accessor upgrade_request_id: ::String
10970
+ attr_accessor action: ("APPROVE" | "DENY" | "VERIFY")
10971
+ SENSITIVE: []
10972
+ end
10973
+
10974
+ class UpdateSelfUpgradeResponse
10975
+ attr_accessor self_upgrade_request_detail: Types::SelfUpgradeRequestDetail
10976
+ attr_accessor request_id: ::String
10977
+ attr_accessor status: ::Integer
10978
+ SENSITIVE: []
10979
+ end
10980
+
10732
10981
  class UpdateTemplateAliasRequest
10733
10982
  attr_accessor aws_account_id: ::String
10734
10983
  attr_accessor template_id: ::String
@@ -10966,6 +11215,23 @@ module Aws::QuickSight
10966
11215
  SENSITIVE: []
10967
11216
  end
10968
11217
 
11218
+ class UserIdentifier
11219
+ attr_accessor user_name: ::String
11220
+ attr_accessor email: ::String
11221
+ attr_accessor user_arn: ::String
11222
+ attr_accessor unknown: untyped
11223
+ SENSITIVE: [:user_name, :email]
11224
+
11225
+ class UserName < UserIdentifier
11226
+ end
11227
+ class Email < UserIdentifier
11228
+ end
11229
+ class UserArn < UserIdentifier
11230
+ end
11231
+ class Unknown < UserIdentifier
11232
+ end
11233
+ end
11234
+
10969
11235
  class VPCConnection
10970
11236
  attr_accessor vpc_connection_id: ::String
10971
11237
  attr_accessor arn: ::String
@@ -11069,6 +11335,12 @@ module Aws::QuickSight
11069
11335
  SENSITIVE: []
11070
11336
  end
11071
11337
 
11338
+ class VisualCustomizationFieldsConfiguration
11339
+ attr_accessor status: ("ENABLED" | "DISABLED")
11340
+ attr_accessor additional_fields: ::Array[Types::ColumnIdentifier]
11341
+ SENSITIVE: []
11342
+ end
11343
+
11072
11344
  class VisualHighlightOperation
11073
11345
  attr_accessor trigger: ("DATA_POINT_CLICK" | "DATA_POINT_HOVER" | "NONE")
11074
11346
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-quicksight
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.165.0
4
+ version: 1.167.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services