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
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
|
|
@@ -1342,6 +1369,7 @@ module Aws::QuickSight
|
|
|
1342
1369
|
attr_accessor format_configuration: Types::FormatConfiguration
|
|
1343
1370
|
attr_accessor role: ("DIMENSION" | "MEASURE")
|
|
1344
1371
|
attr_accessor colors_configuration: Types::ColorsConfiguration
|
|
1372
|
+
attr_accessor decal_settings_configuration: Types::DecalSettingsConfiguration
|
|
1345
1373
|
SENSITIVE: []
|
|
1346
1374
|
end
|
|
1347
1375
|
|
|
@@ -1440,6 +1468,8 @@ module Aws::QuickSight
|
|
|
1440
1468
|
attr_accessor secondary_y_axis_label_options: Types::ChartAxisLabelOptions
|
|
1441
1469
|
attr_accessor single_axis_options: Types::SingleAxisOptions
|
|
1442
1470
|
attr_accessor color_label_options: Types::ChartAxisLabelOptions
|
|
1471
|
+
attr_accessor default_series_settings: Types::ComboChartDefaultSeriesSettings
|
|
1472
|
+
attr_accessor series: ::Array[Types::ComboSeriesItem]
|
|
1443
1473
|
attr_accessor legend: Types::LegendOptions
|
|
1444
1474
|
attr_accessor bar_data_labels: Types::DataLabelOptions
|
|
1445
1475
|
attr_accessor line_data_labels: Types::DataLabelOptions
|
|
@@ -1450,11 +1480,27 @@ module Aws::QuickSight
|
|
|
1450
1480
|
SENSITIVE: []
|
|
1451
1481
|
end
|
|
1452
1482
|
|
|
1483
|
+
class ComboChartDefaultSeriesSettings
|
|
1484
|
+
attr_accessor line_style_settings: Types::LineChartLineStyleSettings
|
|
1485
|
+
attr_accessor marker_style_settings: Types::LineChartMarkerStyleSettings
|
|
1486
|
+
attr_accessor decal_settings: Types::DecalSettings
|
|
1487
|
+
attr_accessor border_settings: Types::BorderSettings
|
|
1488
|
+
SENSITIVE: []
|
|
1489
|
+
end
|
|
1490
|
+
|
|
1453
1491
|
class ComboChartFieldWells
|
|
1454
1492
|
attr_accessor combo_chart_aggregated_field_wells: Types::ComboChartAggregatedFieldWells
|
|
1455
1493
|
SENSITIVE: []
|
|
1456
1494
|
end
|
|
1457
1495
|
|
|
1496
|
+
class ComboChartSeriesSettings
|
|
1497
|
+
attr_accessor line_style_settings: Types::LineChartLineStyleSettings
|
|
1498
|
+
attr_accessor marker_style_settings: Types::LineChartMarkerStyleSettings
|
|
1499
|
+
attr_accessor decal_settings: Types::DecalSettings
|
|
1500
|
+
attr_accessor border_settings: Types::BorderSettings
|
|
1501
|
+
SENSITIVE: []
|
|
1502
|
+
end
|
|
1503
|
+
|
|
1458
1504
|
class ComboChartSortConfiguration
|
|
1459
1505
|
attr_accessor category_sort: ::Array[Types::FieldSortOptions]
|
|
1460
1506
|
attr_accessor category_items_limit: Types::ItemsLimitConfiguration
|
|
@@ -1474,6 +1520,12 @@ module Aws::QuickSight
|
|
|
1474
1520
|
SENSITIVE: []
|
|
1475
1521
|
end
|
|
1476
1522
|
|
|
1523
|
+
class ComboSeriesItem
|
|
1524
|
+
attr_accessor field_combo_series_item: Types::FieldComboSeriesItem
|
|
1525
|
+
attr_accessor data_field_combo_series_item: Types::DataFieldComboSeriesItem
|
|
1526
|
+
SENSITIVE: []
|
|
1527
|
+
end
|
|
1528
|
+
|
|
1477
1529
|
class ComparativeOrder
|
|
1478
1530
|
attr_accessor use_ordering: ("GREATER_IS_BETTER" | "LESSER_IS_BETTER" | "SPECIFIED")
|
|
1479
1531
|
attr_accessor specifed_order: ::Array[::String]
|
|
@@ -1603,6 +1655,12 @@ module Aws::QuickSight
|
|
|
1603
1655
|
SENSITIVE: []
|
|
1604
1656
|
end
|
|
1605
1657
|
|
|
1658
|
+
class Coordinate
|
|
1659
|
+
attr_accessor latitude: ::Float
|
|
1660
|
+
attr_accessor longitude: ::Float
|
|
1661
|
+
SENSITIVE: []
|
|
1662
|
+
end
|
|
1663
|
+
|
|
1606
1664
|
class CreateAccountCustomizationRequest
|
|
1607
1665
|
attr_accessor aws_account_id: ::String
|
|
1608
1666
|
attr_accessor namespace: ::String
|
|
@@ -2262,6 +2320,11 @@ module Aws::QuickSight
|
|
|
2262
2320
|
SENSITIVE: []
|
|
2263
2321
|
end
|
|
2264
2322
|
|
|
2323
|
+
class DashboardCustomizationVisualOptions
|
|
2324
|
+
attr_accessor fields_configuration: Types::VisualCustomizationFieldsConfiguration
|
|
2325
|
+
SENSITIVE: []
|
|
2326
|
+
end
|
|
2327
|
+
|
|
2265
2328
|
class DashboardError
|
|
2266
2329
|
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
2330
|
attr_accessor message: ::String
|
|
@@ -2404,6 +2467,20 @@ module Aws::QuickSight
|
|
|
2404
2467
|
SENSITIVE: []
|
|
2405
2468
|
end
|
|
2406
2469
|
|
|
2470
|
+
class DataFieldBarSeriesItem
|
|
2471
|
+
attr_accessor field_id: ::String
|
|
2472
|
+
attr_accessor field_value: ::String
|
|
2473
|
+
attr_accessor settings: Types::BarChartSeriesSettings
|
|
2474
|
+
SENSITIVE: [:field_value]
|
|
2475
|
+
end
|
|
2476
|
+
|
|
2477
|
+
class DataFieldComboSeriesItem
|
|
2478
|
+
attr_accessor field_id: ::String
|
|
2479
|
+
attr_accessor field_value: ::String
|
|
2480
|
+
attr_accessor settings: Types::ComboChartSeriesSettings
|
|
2481
|
+
SENSITIVE: [:field_value]
|
|
2482
|
+
end
|
|
2483
|
+
|
|
2407
2484
|
class DataFieldSeriesItem
|
|
2408
2485
|
attr_accessor field_id: ::String
|
|
2409
2486
|
attr_accessor field_value: ::String
|
|
@@ -2709,6 +2786,7 @@ module Aws::QuickSight
|
|
|
2709
2786
|
attr_accessor credential_pair: Types::CredentialPair
|
|
2710
2787
|
attr_accessor copy_source_arn: ::String
|
|
2711
2788
|
attr_accessor secret_arn: ::String
|
|
2789
|
+
attr_accessor key_pair_credentials: Types::KeyPairCredentials
|
|
2712
2790
|
attr_accessor web_proxy_credentials: Types::WebProxyCredentials
|
|
2713
2791
|
SENSITIVE: []
|
|
2714
2792
|
end
|
|
@@ -2895,6 +2973,20 @@ module Aws::QuickSight
|
|
|
2895
2973
|
SENSITIVE: [:custom_value]
|
|
2896
2974
|
end
|
|
2897
2975
|
|
|
2976
|
+
class DecalSettings
|
|
2977
|
+
attr_accessor element_value: ::String
|
|
2978
|
+
attr_accessor decal_visibility: ("HIDDEN" | "VISIBLE")
|
|
2979
|
+
attr_accessor decal_color: ::String
|
|
2980
|
+
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")
|
|
2981
|
+
attr_accessor decal_style_type: ("Manual" | "Auto")
|
|
2982
|
+
SENSITIVE: []
|
|
2983
|
+
end
|
|
2984
|
+
|
|
2985
|
+
class DecalSettingsConfiguration
|
|
2986
|
+
attr_accessor custom_decal_settings: ::Array[Types::DecalSettings]
|
|
2987
|
+
SENSITIVE: []
|
|
2988
|
+
end
|
|
2989
|
+
|
|
2898
2990
|
class DecimalDatasetParameter
|
|
2899
2991
|
attr_accessor id: ::String
|
|
2900
2992
|
attr_accessor name: ::String
|
|
@@ -4466,6 +4558,12 @@ module Aws::QuickSight
|
|
|
4466
4558
|
SENSITIVE: []
|
|
4467
4559
|
end
|
|
4468
4560
|
|
|
4561
|
+
class FieldBarSeriesItem
|
|
4562
|
+
attr_accessor field_id: ::String
|
|
4563
|
+
attr_accessor settings: Types::BarChartSeriesSettings
|
|
4564
|
+
SENSITIVE: []
|
|
4565
|
+
end
|
|
4566
|
+
|
|
4469
4567
|
class FieldBasedTooltip
|
|
4470
4568
|
attr_accessor aggregation_visibility: ("HIDDEN" | "VISIBLE")
|
|
4471
4569
|
attr_accessor tooltip_title_type: ("NONE" | "PRIMARY_VALUE")
|
|
@@ -4473,6 +4571,12 @@ module Aws::QuickSight
|
|
|
4473
4571
|
SENSITIVE: []
|
|
4474
4572
|
end
|
|
4475
4573
|
|
|
4574
|
+
class FieldComboSeriesItem
|
|
4575
|
+
attr_accessor field_id: ::String
|
|
4576
|
+
attr_accessor settings: Types::ComboChartSeriesSettings
|
|
4577
|
+
SENSITIVE: []
|
|
4578
|
+
end
|
|
4579
|
+
|
|
4476
4580
|
class FieldFolder
|
|
4477
4581
|
attr_accessor description: ::String
|
|
4478
4582
|
attr_accessor columns: ::Array[::String]
|
|
@@ -4564,6 +4668,7 @@ module Aws::QuickSight
|
|
|
4564
4668
|
attr_accessor column_hierarchies: ::Array[Types::ColumnHierarchy]
|
|
4565
4669
|
attr_accessor actions: ::Array[Types::VisualCustomAction]
|
|
4566
4670
|
attr_accessor visual_content_alt_text: ::String
|
|
4671
|
+
attr_accessor geocoding_preferences: ::Array[Types::GeocodePreference]
|
|
4567
4672
|
SENSITIVE: []
|
|
4568
4673
|
end
|
|
4569
4674
|
|
|
@@ -5086,6 +5191,35 @@ module Aws::QuickSight
|
|
|
5086
5191
|
SENSITIVE: []
|
|
5087
5192
|
end
|
|
5088
5193
|
|
|
5194
|
+
class GeocodePreference
|
|
5195
|
+
attr_accessor request_key: Types::GeocoderHierarchy
|
|
5196
|
+
attr_accessor preference: Types::GeocodePreferenceValue
|
|
5197
|
+
SENSITIVE: []
|
|
5198
|
+
end
|
|
5199
|
+
|
|
5200
|
+
class GeocodePreferenceValue
|
|
5201
|
+
attr_accessor geocoder_hierarchy: Types::GeocoderHierarchy
|
|
5202
|
+
attr_accessor coordinate: Types::Coordinate
|
|
5203
|
+
attr_accessor unknown: untyped
|
|
5204
|
+
SENSITIVE: []
|
|
5205
|
+
|
|
5206
|
+
class GeocoderHierarchy < GeocodePreferenceValue
|
|
5207
|
+
end
|
|
5208
|
+
class Coordinate < GeocodePreferenceValue
|
|
5209
|
+
end
|
|
5210
|
+
class Unknown < GeocodePreferenceValue
|
|
5211
|
+
end
|
|
5212
|
+
end
|
|
5213
|
+
|
|
5214
|
+
class GeocoderHierarchy
|
|
5215
|
+
attr_accessor country: ::String
|
|
5216
|
+
attr_accessor state: ::String
|
|
5217
|
+
attr_accessor county: ::String
|
|
5218
|
+
attr_accessor city: ::String
|
|
5219
|
+
attr_accessor post_code: ::String
|
|
5220
|
+
SENSITIVE: []
|
|
5221
|
+
end
|
|
5222
|
+
|
|
5089
5223
|
class GeospatialCategoricalColor
|
|
5090
5224
|
attr_accessor category_data_colors: ::Array[Types::GeospatialCategoricalDataColor]
|
|
5091
5225
|
attr_accessor null_data_visibility: ("HIDDEN" | "VISIBLE")
|
|
@@ -5275,6 +5409,7 @@ module Aws::QuickSight
|
|
|
5275
5409
|
attr_accessor column_hierarchies: ::Array[Types::ColumnHierarchy]
|
|
5276
5410
|
attr_accessor actions: ::Array[Types::VisualCustomAction]
|
|
5277
5411
|
attr_accessor visual_content_alt_text: ::String
|
|
5412
|
+
attr_accessor geocoding_preferences: ::Array[Types::GeocodePreference]
|
|
5278
5413
|
SENSITIVE: []
|
|
5279
5414
|
end
|
|
5280
5415
|
|
|
@@ -5398,6 +5533,21 @@ module Aws::QuickSight
|
|
|
5398
5533
|
SENSITIVE: []
|
|
5399
5534
|
end
|
|
5400
5535
|
|
|
5536
|
+
class GetIdentityContextRequest
|
|
5537
|
+
attr_accessor aws_account_id: ::String
|
|
5538
|
+
attr_accessor user_identifier: Types::UserIdentifier
|
|
5539
|
+
attr_accessor namespace: ::String
|
|
5540
|
+
attr_accessor session_expires_at: ::Time
|
|
5541
|
+
SENSITIVE: []
|
|
5542
|
+
end
|
|
5543
|
+
|
|
5544
|
+
class GetIdentityContextResponse
|
|
5545
|
+
attr_accessor status: ::Integer
|
|
5546
|
+
attr_accessor request_id: ::String
|
|
5547
|
+
attr_accessor context: ::String
|
|
5548
|
+
SENSITIVE: []
|
|
5549
|
+
end
|
|
5550
|
+
|
|
5401
5551
|
class GetSessionEmbedUrlRequest
|
|
5402
5552
|
attr_accessor aws_account_id: ::String
|
|
5403
5553
|
attr_accessor entry_point: ::String
|
|
@@ -6005,6 +6155,13 @@ module Aws::QuickSight
|
|
|
6005
6155
|
SENSITIVE: []
|
|
6006
6156
|
end
|
|
6007
6157
|
|
|
6158
|
+
class KeyPairCredentials
|
|
6159
|
+
attr_accessor key_pair_username: ::String
|
|
6160
|
+
attr_accessor private_key: ::String
|
|
6161
|
+
attr_accessor private_key_passphrase: ::String
|
|
6162
|
+
SENSITIVE: [:private_key, :private_key_passphrase]
|
|
6163
|
+
end
|
|
6164
|
+
|
|
6008
6165
|
class LabelOptions
|
|
6009
6166
|
attr_accessor visibility: ("HIDDEN" | "VISIBLE")
|
|
6010
6167
|
attr_accessor font_configuration: Types::FontConfiguration
|
|
@@ -6105,6 +6262,7 @@ module Aws::QuickSight
|
|
|
6105
6262
|
attr_accessor axis_binding: ("PRIMARY_YAXIS" | "SECONDARY_YAXIS")
|
|
6106
6263
|
attr_accessor line_style_settings: Types::LineChartLineStyleSettings
|
|
6107
6264
|
attr_accessor marker_style_settings: Types::LineChartMarkerStyleSettings
|
|
6265
|
+
attr_accessor decal_settings: Types::DecalSettings
|
|
6108
6266
|
SENSITIVE: []
|
|
6109
6267
|
end
|
|
6110
6268
|
|
|
@@ -6132,6 +6290,7 @@ module Aws::QuickSight
|
|
|
6132
6290
|
class LineChartSeriesSettings
|
|
6133
6291
|
attr_accessor line_style_settings: Types::LineChartLineStyleSettings
|
|
6134
6292
|
attr_accessor marker_style_settings: Types::LineChartMarkerStyleSettings
|
|
6293
|
+
attr_accessor decal_settings: Types::DecalSettings
|
|
6135
6294
|
SENSITIVE: []
|
|
6136
6295
|
end
|
|
6137
6296
|
|
|
@@ -7392,6 +7551,7 @@ module Aws::QuickSight
|
|
|
7392
7551
|
attr_accessor total_options: Types::PivotTableTotalOptions
|
|
7393
7552
|
attr_accessor field_options: Types::PivotTableFieldOptions
|
|
7394
7553
|
attr_accessor paginated_report_options: Types::PivotTablePaginatedReportOptions
|
|
7554
|
+
attr_accessor dashboard_customization_visual_options: Types::DashboardCustomizationVisualOptions
|
|
7395
7555
|
attr_accessor interactions: Types::VisualInteractionOptions
|
|
7396
7556
|
SENSITIVE: []
|
|
7397
7557
|
end
|
|
@@ -8064,6 +8224,11 @@ module Aws::QuickSight
|
|
|
8064
8224
|
SENSITIVE: []
|
|
8065
8225
|
end
|
|
8066
8226
|
|
|
8227
|
+
class RegisteredUserSnapshotJobResult
|
|
8228
|
+
attr_accessor file_groups: ::Array[Types::SnapshotJobResultFileGroup]
|
|
8229
|
+
SENSITIVE: []
|
|
8230
|
+
end
|
|
8231
|
+
|
|
8067
8232
|
class RelationalTable
|
|
8068
8233
|
attr_accessor data_source_arn: ::String
|
|
8069
8234
|
attr_accessor catalog: ::String
|
|
@@ -8846,6 +9011,7 @@ module Aws::QuickSight
|
|
|
8846
9011
|
|
|
8847
9012
|
class SnapshotJobResult
|
|
8848
9013
|
attr_accessor anonymous_users: ::Array[Types::AnonymousUserSnapshotJobResult]
|
|
9014
|
+
attr_accessor registered_users: ::Array[Types::RegisteredUserSnapshotJobResult]
|
|
8849
9015
|
SENSITIVE: []
|
|
8850
9016
|
end
|
|
8851
9017
|
|
|
@@ -9168,6 +9334,7 @@ module Aws::QuickSight
|
|
|
9168
9334
|
attr_accessor field_options: Types::TableFieldOptions
|
|
9169
9335
|
attr_accessor paginated_report_options: Types::TablePaginatedReportOptions
|
|
9170
9336
|
attr_accessor table_inline_visualizations: ::Array[Types::TableInlineVisualization]
|
|
9337
|
+
attr_accessor dashboard_customization_visual_options: Types::DashboardCustomizationVisualOptions
|
|
9171
9338
|
attr_accessor interactions: Types::VisualInteractionOptions
|
|
9172
9339
|
SENSITIVE: []
|
|
9173
9340
|
end
|
|
@@ -10966,6 +11133,23 @@ module Aws::QuickSight
|
|
|
10966
11133
|
SENSITIVE: []
|
|
10967
11134
|
end
|
|
10968
11135
|
|
|
11136
|
+
class UserIdentifier
|
|
11137
|
+
attr_accessor user_name: ::String
|
|
11138
|
+
attr_accessor email: ::String
|
|
11139
|
+
attr_accessor user_arn: ::String
|
|
11140
|
+
attr_accessor unknown: untyped
|
|
11141
|
+
SENSITIVE: [:user_name, :email]
|
|
11142
|
+
|
|
11143
|
+
class UserName < UserIdentifier
|
|
11144
|
+
end
|
|
11145
|
+
class Email < UserIdentifier
|
|
11146
|
+
end
|
|
11147
|
+
class UserArn < UserIdentifier
|
|
11148
|
+
end
|
|
11149
|
+
class Unknown < UserIdentifier
|
|
11150
|
+
end
|
|
11151
|
+
end
|
|
11152
|
+
|
|
10969
11153
|
class VPCConnection
|
|
10970
11154
|
attr_accessor vpc_connection_id: ::String
|
|
10971
11155
|
attr_accessor arn: ::String
|
|
@@ -11069,6 +11253,12 @@ module Aws::QuickSight
|
|
|
11069
11253
|
SENSITIVE: []
|
|
11070
11254
|
end
|
|
11071
11255
|
|
|
11256
|
+
class VisualCustomizationFieldsConfiguration
|
|
11257
|
+
attr_accessor status: ("ENABLED" | "DISABLED")
|
|
11258
|
+
attr_accessor additional_fields: ::Array[Types::ColumnIdentifier]
|
|
11259
|
+
SENSITIVE: []
|
|
11260
|
+
end
|
|
11261
|
+
|
|
11072
11262
|
class VisualHighlightOperation
|
|
11073
11263
|
attr_accessor trigger: ("DATA_POINT_CLICK" | "DATA_POINT_HOVER" | "NONE")
|
|
11074
11264
|
SENSITIVE: []
|