aws-sdk-quicksight 1.162.0 → 1.164.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/types.rbs CHANGED
@@ -107,6 +107,21 @@ module Aws::QuickSight
107
107
  SENSITIVE: []
108
108
  end
109
109
 
110
+ class AggregateOperation
111
+ attr_accessor alias: ::String
112
+ attr_accessor source: Types::TransformOperationSource
113
+ attr_accessor group_by_column_names: ::Array[::String]
114
+ attr_accessor aggregations: ::Array[Types::Aggregation]
115
+ SENSITIVE: []
116
+ end
117
+
118
+ class Aggregation
119
+ attr_accessor aggregation_function: Types::DataPrepAggregationFunction
120
+ attr_accessor new_column_name: ::String
121
+ attr_accessor new_column_id: ::String
122
+ SENSITIVE: []
123
+ end
124
+
110
125
  class AggregationFunction
111
126
  attr_accessor numerical_aggregation_function: Types::NumericalAggregationFunction
112
127
  attr_accessor categorical_aggregation_function: ("COUNT" | "DISTINCT_COUNT")
@@ -276,6 +291,20 @@ module Aws::QuickSight
276
291
  SENSITIVE: []
277
292
  end
278
293
 
294
+ class AppendOperation
295
+ attr_accessor alias: ::String
296
+ attr_accessor first_source: Types::TransformOperationSource
297
+ attr_accessor second_source: Types::TransformOperationSource
298
+ attr_accessor appended_columns: ::Array[Types::AppendedColumn]
299
+ SENSITIVE: []
300
+ end
301
+
302
+ class AppendedColumn
303
+ attr_accessor column_name: ::String
304
+ attr_accessor new_column_id: ::String
305
+ SENSITIVE: []
306
+ end
307
+
279
308
  class ApplicationTheme
280
309
  attr_accessor brand_color_palette: Types::BrandColorPalette
281
310
  attr_accessor contextual_accent_palette: Types::ContextualAccentPalette
@@ -979,7 +1008,9 @@ module Aws::QuickSight
979
1008
  end
980
1009
 
981
1010
  class BorderStyle
1011
+ attr_accessor color: ::String
982
1012
  attr_accessor show: bool
1013
+ attr_accessor width: ::String
983
1014
  SENSITIVE: []
984
1015
  end
985
1016
 
@@ -1184,6 +1215,13 @@ module Aws::QuickSight
1184
1215
  SENSITIVE: []
1185
1216
  end
1186
1217
 
1218
+ class CastColumnTypesOperation
1219
+ attr_accessor alias: ::String
1220
+ attr_accessor source: Types::TransformOperationSource
1221
+ attr_accessor cast_column_type_operations: ::Array[Types::CastColumnTypeOperation]
1222
+ SENSITIVE: []
1223
+ end
1224
+
1187
1225
  class CategoricalDimensionField
1188
1226
  attr_accessor field_id: ::String
1189
1227
  attr_accessor column: Types::ColumnIdentifier
@@ -1367,6 +1405,12 @@ module Aws::QuickSight
1367
1405
  SENSITIVE: []
1368
1406
  end
1369
1407
 
1408
+ class ColumnToUnpivot
1409
+ attr_accessor column_name: ::String
1410
+ attr_accessor new_value: ::String
1411
+ SENSITIVE: []
1412
+ end
1413
+
1370
1414
  class ColumnTooltipItem
1371
1415
  attr_accessor column: Types::ColumnIdentifier
1372
1416
  attr_accessor label: ::String
@@ -1669,6 +1713,8 @@ module Aws::QuickSight
1669
1713
  end
1670
1714
 
1671
1715
  class CreateColumnsOperation
1716
+ attr_accessor alias: ::String
1717
+ attr_accessor source: Types::TransformOperationSource
1672
1718
  attr_accessor columns: ::Array[Types::CalculatedColumn]
1673
1719
  SENSITIVE: []
1674
1720
  end
@@ -1736,6 +1782,8 @@ module Aws::QuickSight
1736
1782
  attr_accessor folder_arns: ::Array[::String]
1737
1783
  attr_accessor performance_configuration: Types::PerformanceConfiguration
1738
1784
  attr_accessor use_as: ("RLS_RULES")
1785
+ attr_accessor data_prep_configuration: Types::DataPrepConfiguration
1786
+ attr_accessor semantic_model_configuration: Types::SemanticModelConfiguration
1739
1787
  SENSITIVE: []
1740
1788
  end
1741
1789
 
@@ -2187,7 +2235,7 @@ module Aws::QuickSight
2187
2235
  attr_accessor name: ::String
2188
2236
  attr_accessor sql_query: ::String
2189
2237
  attr_accessor columns: ::Array[Types::InputColumn]
2190
- SENSITIVE: []
2238
+ SENSITIVE: [:sql_query]
2191
2239
  end
2192
2240
 
2193
2241
  class CustomValuesConfiguration
@@ -2434,6 +2482,32 @@ module Aws::QuickSight
2434
2482
  SENSITIVE: []
2435
2483
  end
2436
2484
 
2485
+ class DataPrepAggregationFunction
2486
+ attr_accessor simple_aggregation: Types::DataPrepSimpleAggregationFunction
2487
+ attr_accessor list_aggregation: Types::DataPrepListAggregationFunction
2488
+ SENSITIVE: []
2489
+ end
2490
+
2491
+ class DataPrepConfiguration
2492
+ attr_accessor source_table_map: ::Hash[::String, Types::SourceTable]
2493
+ attr_accessor transform_step_map: ::Hash[::String, Types::TransformStep]
2494
+ attr_accessor destination_table_map: ::Hash[::String, Types::DestinationTable]
2495
+ SENSITIVE: []
2496
+ end
2497
+
2498
+ class DataPrepListAggregationFunction
2499
+ attr_accessor input_column_name: ::String
2500
+ attr_accessor separator: ::String
2501
+ attr_accessor distinct: bool
2502
+ SENSITIVE: []
2503
+ end
2504
+
2505
+ class DataPrepSimpleAggregationFunction
2506
+ attr_accessor input_column_name: ::String
2507
+ attr_accessor function_type: ("COUNT" | "DISTINCT_COUNT" | "SUM" | "AVERAGE" | "MAX" | "MIN")
2508
+ SENSITIVE: []
2509
+ end
2510
+
2437
2511
  class DataQAEnabledOption
2438
2512
  attr_accessor availability_status: ("ENABLED" | "DISABLED")
2439
2513
  SENSITIVE: []
@@ -2464,6 +2538,14 @@ module Aws::QuickSight
2464
2538
  attr_accessor dataset_parameters: ::Array[Types::DatasetParameter]
2465
2539
  attr_accessor performance_configuration: Types::PerformanceConfiguration
2466
2540
  attr_accessor use_as: ("RLS_RULES")
2541
+ attr_accessor data_prep_configuration: Types::DataPrepConfiguration
2542
+ attr_accessor semantic_model_configuration: Types::SemanticModelConfiguration
2543
+ SENSITIVE: []
2544
+ end
2545
+
2546
+ class DataSetColumnIdMapping
2547
+ attr_accessor source_column_id: ::String
2548
+ attr_accessor target_column_id: ::String
2467
2549
  SENSITIVE: []
2468
2550
  end
2469
2551
 
@@ -2474,12 +2556,64 @@ module Aws::QuickSight
2474
2556
  SENSITIVE: []
2475
2557
  end
2476
2558
 
2559
+ class DataSetDateComparisonFilterCondition
2560
+ attr_accessor operator: ("BEFORE" | "BEFORE_OR_EQUALS_TO" | "AFTER" | "AFTER_OR_EQUALS_TO")
2561
+ attr_accessor value: Types::DataSetDateFilterValue
2562
+ SENSITIVE: []
2563
+ end
2564
+
2565
+ class DataSetDateFilterCondition
2566
+ attr_accessor column_name: ::String
2567
+ attr_accessor comparison_filter_condition: Types::DataSetDateComparisonFilterCondition
2568
+ attr_accessor range_filter_condition: Types::DataSetDateRangeFilterCondition
2569
+ SENSITIVE: []
2570
+ end
2571
+
2572
+ class DataSetDateFilterValue
2573
+ attr_accessor static_value: ::Time
2574
+ SENSITIVE: [:static_value]
2575
+ end
2576
+
2577
+ class DataSetDateRangeFilterCondition
2578
+ attr_accessor range_minimum: Types::DataSetDateFilterValue
2579
+ attr_accessor range_maximum: Types::DataSetDateFilterValue
2580
+ attr_accessor include_minimum: bool
2581
+ attr_accessor include_maximum: bool
2582
+ SENSITIVE: []
2583
+ end
2584
+
2477
2585
  class DataSetIdentifierDeclaration
2478
2586
  attr_accessor identifier: ::String
2479
2587
  attr_accessor data_set_arn: ::String
2480
2588
  SENSITIVE: []
2481
2589
  end
2482
2590
 
2591
+ class DataSetNumericComparisonFilterCondition
2592
+ attr_accessor operator: ("EQUALS" | "DOES_NOT_EQUAL" | "GREATER_THAN" | "GREATER_THAN_OR_EQUALS_TO" | "LESS_THAN" | "LESS_THAN_OR_EQUALS_TO")
2593
+ attr_accessor value: Types::DataSetNumericFilterValue
2594
+ SENSITIVE: []
2595
+ end
2596
+
2597
+ class DataSetNumericFilterCondition
2598
+ attr_accessor column_name: ::String
2599
+ attr_accessor comparison_filter_condition: Types::DataSetNumericComparisonFilterCondition
2600
+ attr_accessor range_filter_condition: Types::DataSetNumericRangeFilterCondition
2601
+ SENSITIVE: []
2602
+ end
2603
+
2604
+ class DataSetNumericFilterValue
2605
+ attr_accessor static_value: ::Float
2606
+ SENSITIVE: [:static_value]
2607
+ end
2608
+
2609
+ class DataSetNumericRangeFilterCondition
2610
+ attr_accessor range_minimum: Types::DataSetNumericFilterValue
2611
+ attr_accessor range_maximum: Types::DataSetNumericFilterValue
2612
+ attr_accessor include_minimum: bool
2613
+ attr_accessor include_maximum: bool
2614
+ SENSITIVE: []
2615
+ end
2616
+
2483
2617
  class DataSetReference
2484
2618
  attr_accessor data_set_placeholder: ::String
2485
2619
  attr_accessor data_set_arn: ::String
@@ -2504,6 +2638,35 @@ module Aws::QuickSight
2504
2638
  SENSITIVE: []
2505
2639
  end
2506
2640
 
2641
+ class DataSetStringComparisonFilterCondition
2642
+ attr_accessor operator: ("EQUALS" | "DOES_NOT_EQUAL" | "CONTAINS" | "DOES_NOT_CONTAIN" | "STARTS_WITH" | "ENDS_WITH")
2643
+ attr_accessor value: Types::DataSetStringFilterValue
2644
+ SENSITIVE: []
2645
+ end
2646
+
2647
+ class DataSetStringFilterCondition
2648
+ attr_accessor column_name: ::String
2649
+ attr_accessor comparison_filter_condition: Types::DataSetStringComparisonFilterCondition
2650
+ attr_accessor list_filter_condition: Types::DataSetStringListFilterCondition
2651
+ SENSITIVE: []
2652
+ end
2653
+
2654
+ class DataSetStringFilterValue
2655
+ attr_accessor static_value: ::String
2656
+ SENSITIVE: [:static_value]
2657
+ end
2658
+
2659
+ class DataSetStringListFilterCondition
2660
+ attr_accessor operator: ("INCLUDE" | "EXCLUDE")
2661
+ attr_accessor values: Types::DataSetStringListFilterValue
2662
+ SENSITIVE: []
2663
+ end
2664
+
2665
+ class DataSetStringListFilterValue
2666
+ attr_accessor static_values: ::Array[::String]
2667
+ SENSITIVE: []
2668
+ end
2669
+
2507
2670
  class DataSetSummary
2508
2671
  attr_accessor arn: ::String
2509
2672
  attr_accessor data_set_id: ::String
@@ -2512,6 +2675,7 @@ module Aws::QuickSight
2512
2675
  attr_accessor last_updated_time: ::Time
2513
2676
  attr_accessor import_mode: ("SPICE" | "DIRECT_QUERY")
2514
2677
  attr_accessor row_level_permission_data_set: Types::RowLevelPermissionDataSet
2678
+ attr_accessor row_level_permission_data_set_map: ::Hash[::String, Types::RowLevelPermissionDataSet]
2515
2679
  attr_accessor row_level_permission_tag_configuration_applied: bool
2516
2680
  attr_accessor column_level_permission_rules_applied: bool
2517
2681
  attr_accessor use_as: ("RLS_RULES")
@@ -4159,6 +4323,17 @@ module Aws::QuickSight
4159
4323
  SENSITIVE: []
4160
4324
  end
4161
4325
 
4326
+ class DestinationTable
4327
+ attr_accessor alias: ::String
4328
+ attr_accessor source: Types::DestinationTableSource
4329
+ SENSITIVE: []
4330
+ end
4331
+
4332
+ class DestinationTableSource
4333
+ attr_accessor transform_operation_id: ::String
4334
+ SENSITIVE: []
4335
+ end
4336
+
4162
4337
  class DimensionField
4163
4338
  attr_accessor numerical_dimension_field: Types::NumericalDimensionField
4164
4339
  attr_accessor categorical_dimension_field: Types::CategoricalDimensionField
@@ -4482,6 +4657,9 @@ module Aws::QuickSight
4482
4657
 
4483
4658
  class FilterOperation
4484
4659
  attr_accessor condition_expression: ::String
4660
+ attr_accessor string_filter_condition: Types::DataSetStringFilterCondition
4661
+ attr_accessor numeric_filter_condition: Types::DataSetNumericFilterCondition
4662
+ attr_accessor date_filter_condition: Types::DataSetDateFilterCondition
4485
4663
  SENSITIVE: [:condition_expression]
4486
4664
  end
4487
4665
 
@@ -4546,6 +4724,13 @@ module Aws::QuickSight
4546
4724
  SENSITIVE: []
4547
4725
  end
4548
4726
 
4727
+ class FiltersOperation
4728
+ attr_accessor alias: ::String
4729
+ attr_accessor source: Types::TransformOperationSource
4730
+ attr_accessor filter_operations: ::Array[Types::FilterOperation]
4731
+ SENSITIVE: []
4732
+ end
4733
+
4549
4734
  class FlowSummary
4550
4735
  attr_accessor arn: ::String
4551
4736
  attr_accessor flow_id: ::String
@@ -4683,6 +4868,8 @@ module Aws::QuickSight
4683
4868
  attr_accessor selected_border_style: Types::FreeFormLayoutElementBorderStyle
4684
4869
  attr_accessor background_style: Types::FreeFormLayoutElementBackgroundStyle
4685
4870
  attr_accessor loading_animation: Types::LoadingAnimation
4871
+ attr_accessor border_radius: ::String
4872
+ attr_accessor padding: ::String
4686
4873
  SENSITIVE: []
4687
4874
  end
4688
4875
 
@@ -4695,6 +4882,7 @@ module Aws::QuickSight
4695
4882
  class FreeFormLayoutElementBorderStyle
4696
4883
  attr_accessor visibility: ("HIDDEN" | "VISIBLE")
4697
4884
  attr_accessor color: ::String
4885
+ attr_accessor width: ::String
4698
4886
  SENSITIVE: []
4699
4887
  end
4700
4888
 
@@ -5261,6 +5449,25 @@ module Aws::QuickSight
5261
5449
  attr_accessor column_span: ::Integer
5262
5450
  attr_accessor row_index: ::Integer
5263
5451
  attr_accessor row_span: ::Integer
5452
+ attr_accessor border_style: Types::GridLayoutElementBorderStyle
5453
+ attr_accessor selected_border_style: Types::GridLayoutElementBorderStyle
5454
+ attr_accessor background_style: Types::GridLayoutElementBackgroundStyle
5455
+ attr_accessor loading_animation: Types::LoadingAnimation
5456
+ attr_accessor border_radius: ::String
5457
+ attr_accessor padding: ::String
5458
+ SENSITIVE: []
5459
+ end
5460
+
5461
+ class GridLayoutElementBackgroundStyle
5462
+ attr_accessor visibility: ("HIDDEN" | "VISIBLE")
5463
+ attr_accessor color: ::String
5464
+ SENSITIVE: []
5465
+ end
5466
+
5467
+ class GridLayoutElementBorderStyle
5468
+ attr_accessor visibility: ("HIDDEN" | "VISIBLE")
5469
+ attr_accessor color: ::String
5470
+ attr_accessor width: ::String
5264
5471
  SENSITIVE: []
5265
5472
  end
5266
5473
 
@@ -5513,6 +5720,18 @@ module Aws::QuickSight
5513
5720
  SENSITIVE: []
5514
5721
  end
5515
5722
 
5723
+ class ImportTableOperation
5724
+ attr_accessor alias: ::String
5725
+ attr_accessor source: Types::ImportTableOperationSource
5726
+ SENSITIVE: []
5727
+ end
5728
+
5729
+ class ImportTableOperationSource
5730
+ attr_accessor source_table_id: ::String
5731
+ attr_accessor column_id_mappings: ::Array[Types::DataSetColumnIdMapping]
5732
+ SENSITIVE: []
5733
+ end
5734
+
5516
5735
  class IncrementalRefresh
5517
5736
  attr_accessor lookback_window: Types::LookbackWindow
5518
5737
  SENSITIVE: []
@@ -5540,6 +5759,7 @@ module Aws::QuickSight
5540
5759
 
5541
5760
  class InputColumn
5542
5761
  attr_accessor name: ::String
5762
+ attr_accessor id: ::String
5543
5763
  attr_accessor type: ("STRING" | "INTEGER" | "DECIMAL" | "DATETIME" | "BIT" | "BOOLEAN" | "JSON")
5544
5764
  attr_accessor sub_type: ("FLOAT" | "FIXED")
5545
5765
  SENSITIVE: []
@@ -5614,6 +5834,12 @@ module Aws::QuickSight
5614
5834
  SENSITIVE: []
5615
5835
  end
5616
5836
 
5837
+ class InvalidDataSetParameterValueException
5838
+ attr_accessor message: ::String
5839
+ attr_accessor request_id: ::String
5840
+ SENSITIVE: []
5841
+ end
5842
+
5617
5843
  class InvalidNextTokenException
5618
5844
  attr_accessor message: ::String
5619
5845
  attr_accessor request_id: ::String
@@ -5664,6 +5890,22 @@ module Aws::QuickSight
5664
5890
  SENSITIVE: []
5665
5891
  end
5666
5892
 
5893
+ class JoinOperandProperties
5894
+ attr_accessor output_column_name_overrides: ::Array[Types::OutputColumnNameOverride]
5895
+ SENSITIVE: []
5896
+ end
5897
+
5898
+ class JoinOperation
5899
+ attr_accessor alias: ::String
5900
+ attr_accessor left_operand: Types::TransformOperationSource
5901
+ attr_accessor right_operand: Types::TransformOperationSource
5902
+ attr_accessor type: ("INNER" | "OUTER" | "LEFT" | "RIGHT")
5903
+ attr_accessor on_clause: ::String
5904
+ attr_accessor left_operand_properties: Types::JoinOperandProperties
5905
+ attr_accessor right_operand_properties: Types::JoinOperandProperties
5906
+ SENSITIVE: [:on_clause]
5907
+ end
5908
+
5667
5909
  class KPIActualValueConditionalFormatting
5668
5910
  attr_accessor text_color: Types::ConditionalFormattingColor
5669
5911
  attr_accessor icon: Types::ConditionalFormattingIcon
@@ -6839,12 +7081,19 @@ module Aws::QuickSight
6839
7081
 
6840
7082
  class OutputColumn
6841
7083
  attr_accessor name: ::String
7084
+ attr_accessor id: ::String
6842
7085
  attr_accessor description: ::String
6843
7086
  attr_accessor type: ("STRING" | "INTEGER" | "DECIMAL" | "DATETIME")
6844
7087
  attr_accessor sub_type: ("FLOAT" | "FIXED")
6845
7088
  SENSITIVE: [:description]
6846
7089
  end
6847
7090
 
7091
+ class OutputColumnNameOverride
7092
+ attr_accessor source_column_name: ::String
7093
+ attr_accessor output_column_name: ::String
7094
+ SENSITIVE: []
7095
+ end
7096
+
6848
7097
  class OverrideDatasetParameterOperation
6849
7098
  attr_accessor parameter_name: ::String
6850
7099
  attr_accessor new_parameter_name: ::String
@@ -6975,6 +7224,12 @@ module Aws::QuickSight
6975
7224
  SENSITIVE: []
6976
7225
  end
6977
7226
 
7227
+ class ParentDataSet
7228
+ attr_accessor data_set_arn: ::String
7229
+ attr_accessor input_columns: ::Array[Types::InputColumn]
7230
+ SENSITIVE: []
7231
+ end
7232
+
6978
7233
  class PercentVisibleRange
6979
7234
  attr_accessor from: ::Float
6980
7235
  attr_accessor to: ::Float
@@ -7028,6 +7283,7 @@ module Aws::QuickSight
7028
7283
  attr_accessor relational_table: Types::RelationalTable
7029
7284
  attr_accessor custom_sql: Types::CustomSql
7030
7285
  attr_accessor s3_source: Types::S3Source
7286
+ attr_accessor saa_s_table: Types::SaaSTable
7031
7287
  SENSITIVE: []
7032
7288
  end
7033
7289
 
@@ -7078,12 +7334,27 @@ module Aws::QuickSight
7078
7334
  SENSITIVE: []
7079
7335
  end
7080
7336
 
7337
+ class PivotConfiguration
7338
+ attr_accessor label_column_name: ::String
7339
+ attr_accessor pivoted_labels: ::Array[Types::PivotedLabel]
7340
+ SENSITIVE: []
7341
+ end
7342
+
7081
7343
  class PivotFieldSortOptions
7082
7344
  attr_accessor field_id: ::String
7083
7345
  attr_accessor sort_by: Types::PivotTableSortBy
7084
7346
  SENSITIVE: []
7085
7347
  end
7086
7348
 
7349
+ class PivotOperation
7350
+ attr_accessor alias: ::String
7351
+ attr_accessor source: Types::TransformOperationSource
7352
+ attr_accessor group_by_column_names: ::Array[::String]
7353
+ attr_accessor value_column_configuration: Types::ValueColumnConfiguration
7354
+ attr_accessor pivot_configuration: Types::PivotConfiguration
7355
+ SENSITIVE: []
7356
+ end
7357
+
7087
7358
  class PivotTableAggregatedFieldWells
7088
7359
  attr_accessor rows: ::Array[Types::DimensionField]
7089
7360
  attr_accessor columns: ::Array[Types::DimensionField]
@@ -7239,6 +7510,13 @@ module Aws::QuickSight
7239
7510
  SENSITIVE: []
7240
7511
  end
7241
7512
 
7513
+ class PivotedLabel
7514
+ attr_accessor label_name: ::String
7515
+ attr_accessor new_column_name: ::String
7516
+ attr_accessor new_column_id: ::String
7517
+ SENSITIVE: []
7518
+ end
7519
+
7242
7520
  class PluginVisual
7243
7521
  attr_accessor visual_id: ::String
7244
7522
  attr_accessor plugin_arn: ::String
@@ -7342,6 +7620,8 @@ module Aws::QuickSight
7342
7620
  end
7343
7621
 
7344
7622
  class ProjectOperation
7623
+ attr_accessor alias: ::String
7624
+ attr_accessor source: Types::TransformOperationSource
7345
7625
  attr_accessor projected_columns: ::Array[::String]
7346
7626
  SENSITIVE: []
7347
7627
  end
@@ -7817,6 +8097,13 @@ module Aws::QuickSight
7817
8097
  SENSITIVE: []
7818
8098
  end
7819
8099
 
8100
+ class RenameColumnsOperation
8101
+ attr_accessor alias: ::String
8102
+ attr_accessor source: Types::TransformOperationSource
8103
+ attr_accessor rename_column_operations: ::Array[Types::RenameColumnOperation]
8104
+ SENSITIVE: []
8105
+ end
8106
+
7820
8107
  class ResourceExistsException
7821
8108
  attr_accessor message: ::String
7822
8109
  attr_accessor resource_type: ("USER" | "GROUP" | "NAMESPACE" | "ACCOUNT_SETTINGS" | "IAMPOLICY_ASSIGNMENT" | "DATA_SOURCE" | "DATA_SET" | "VPC_CONNECTION" | "INGESTION")
@@ -7880,6 +8167,12 @@ module Aws::QuickSight
7880
8167
  SENSITIVE: []
7881
8168
  end
7882
8169
 
8170
+ class RowLevelPermissionConfiguration
8171
+ attr_accessor tag_configuration: Types::RowLevelPermissionTagConfiguration
8172
+ attr_accessor row_level_permission_data_set: Types::RowLevelPermissionDataSet
8173
+ SENSITIVE: []
8174
+ end
8175
+
7883
8176
  class RowLevelPermissionDataSet
7884
8177
  attr_accessor namespace: ::String
7885
8178
  attr_accessor arn: ::String
@@ -7931,6 +8224,13 @@ module Aws::QuickSight
7931
8224
  SENSITIVE: []
7932
8225
  end
7933
8226
 
8227
+ class SaaSTable
8228
+ attr_accessor data_source_arn: ::String
8229
+ attr_accessor table_path: ::Array[Types::TablePathElement]
8230
+ attr_accessor input_columns: ::Array[Types::InputColumn]
8231
+ SENSITIVE: []
8232
+ end
8233
+
7934
8234
  class SameSheetTargetVisualConfiguration
7935
8235
  attr_accessor target_visuals: ::Array[::String]
7936
8236
  attr_accessor target_visual_options: ("ALL_VISUALS")
@@ -8256,6 +8556,18 @@ module Aws::QuickSight
8256
8556
  SENSITIVE: []
8257
8557
  end
8258
8558
 
8559
+ class SemanticModelConfiguration
8560
+ attr_accessor table_map: ::Hash[::String, Types::SemanticTable]
8561
+ SENSITIVE: []
8562
+ end
8563
+
8564
+ class SemanticTable
8565
+ attr_accessor alias: ::String
8566
+ attr_accessor destination_table_id: ::String
8567
+ attr_accessor row_level_permission_configuration: Types::RowLevelPermissionConfiguration
8568
+ SENSITIVE: []
8569
+ end
8570
+
8259
8571
  class SemanticType
8260
8572
  attr_accessor type_name: ::String
8261
8573
  attr_accessor sub_type_name: ::String
@@ -8313,6 +8625,12 @@ module Aws::QuickSight
8313
8625
  SENSITIVE: []
8314
8626
  end
8315
8627
 
8628
+ class SheetBackgroundStyle
8629
+ attr_accessor color: ::String
8630
+ attr_accessor gradient: ::String
8631
+ SENSITIVE: []
8632
+ end
8633
+
8316
8634
  class SheetControlInfoIconLabelOptions
8317
8635
  attr_accessor visibility: ("HIDDEN" | "VISIBLE")
8318
8636
  attr_accessor info_icon_text: ::String
@@ -8407,6 +8725,7 @@ module Aws::QuickSight
8407
8725
  class SheetStyle
8408
8726
  attr_accessor tile: Types::TileStyle
8409
8727
  attr_accessor tile_layout: Types::TileLayoutStyle
8728
+ attr_accessor background: Types::SheetBackgroundStyle
8410
8729
  SENSITIVE: []
8411
8730
  end
8412
8731
 
@@ -8570,6 +8889,12 @@ module Aws::QuickSight
8570
8889
  SENSITIVE: []
8571
8890
  end
8572
8891
 
8892
+ class SourceTable
8893
+ attr_accessor physical_table_id: ::String
8894
+ attr_accessor data_set: Types::ParentDataSet
8895
+ SENSITIVE: []
8896
+ end
8897
+
8573
8898
  class Spacing
8574
8899
  attr_accessor top: ::String
8575
8900
  attr_accessor bottom: ::String
@@ -8919,6 +9244,12 @@ module Aws::QuickSight
8919
9244
  SENSITIVE: []
8920
9245
  end
8921
9246
 
9247
+ class TablePathElement
9248
+ attr_accessor name: ::String
9249
+ attr_accessor id: ::String
9250
+ SENSITIVE: []
9251
+ end
9252
+
8922
9253
  class TablePinnedFieldOptions
8923
9254
  attr_accessor pinned_left_fields: ::Array[::String]
8924
9255
  SENSITIVE: []
@@ -9209,7 +9540,10 @@ module Aws::QuickSight
9209
9540
  end
9210
9541
 
9211
9542
  class TileStyle
9543
+ attr_accessor background_color: ::String
9212
9544
  attr_accessor border: Types::BorderStyle
9545
+ attr_accessor border_radius: ::String
9546
+ attr_accessor padding: ::String
9213
9547
  SENSITIVE: []
9214
9548
  end
9215
9549
 
@@ -9640,6 +9974,27 @@ module Aws::QuickSight
9640
9974
  SENSITIVE: []
9641
9975
  end
9642
9976
 
9977
+ class TransformOperationSource
9978
+ attr_accessor transform_operation_id: ::String
9979
+ attr_accessor column_id_mappings: ::Array[Types::DataSetColumnIdMapping]
9980
+ SENSITIVE: []
9981
+ end
9982
+
9983
+ class TransformStep
9984
+ attr_accessor import_table_step: Types::ImportTableOperation
9985
+ attr_accessor project_step: Types::ProjectOperation
9986
+ attr_accessor filters_step: Types::FiltersOperation
9987
+ attr_accessor create_columns_step: Types::CreateColumnsOperation
9988
+ attr_accessor rename_columns_step: Types::RenameColumnsOperation
9989
+ attr_accessor cast_column_types_step: Types::CastColumnTypesOperation
9990
+ attr_accessor join_step: Types::JoinOperation
9991
+ attr_accessor aggregate_step: Types::AggregateOperation
9992
+ attr_accessor pivot_step: Types::PivotOperation
9993
+ attr_accessor unpivot_step: Types::UnpivotOperation
9994
+ attr_accessor append_step: Types::AppendOperation
9995
+ SENSITIVE: []
9996
+ end
9997
+
9643
9998
  class TransposedTableOption
9644
9999
  attr_accessor column_index: ::Integer
9645
10000
  attr_accessor column_width: ::String
@@ -9710,6 +10065,13 @@ module Aws::QuickSight
9710
10065
 
9711
10066
  class Typography
9712
10067
  attr_accessor font_families: ::Array[Types::Font]
10068
+ attr_accessor axis_title_font_configuration: Types::FontConfiguration
10069
+ attr_accessor axis_label_font_configuration: Types::FontConfiguration
10070
+ attr_accessor legend_title_font_configuration: Types::FontConfiguration
10071
+ attr_accessor legend_value_font_configuration: Types::FontConfiguration
10072
+ attr_accessor data_label_font_configuration: Types::FontConfiguration
10073
+ attr_accessor visual_title_font_configuration: Types::VisualTitleFontConfiguration
10074
+ attr_accessor visual_subtitle_font_configuration: Types::VisualSubtitleFontConfiguration
9713
10075
  SENSITIVE: []
9714
10076
  end
9715
10077
 
@@ -9752,6 +10114,17 @@ module Aws::QuickSight
9752
10114
  SENSITIVE: []
9753
10115
  end
9754
10116
 
10117
+ class UnpivotOperation
10118
+ attr_accessor alias: ::String
10119
+ attr_accessor source: Types::TransformOperationSource
10120
+ attr_accessor columns_to_unpivot: ::Array[Types::ColumnToUnpivot]
10121
+ attr_accessor unpivoted_label_column_name: ::String
10122
+ attr_accessor unpivoted_label_column_id: ::String
10123
+ attr_accessor unpivoted_value_column_name: ::String
10124
+ attr_accessor unpivoted_value_column_id: ::String
10125
+ SENSITIVE: []
10126
+ end
10127
+
9755
10128
  class UnsupportedPricingPlanException
9756
10129
  attr_accessor message: ::String
9757
10130
  attr_accessor request_id: ::String
@@ -10082,6 +10455,8 @@ module Aws::QuickSight
10082
10455
  attr_accessor data_set_usage_configuration: Types::DataSetUsageConfiguration
10083
10456
  attr_accessor dataset_parameters: ::Array[Types::DatasetParameter]
10084
10457
  attr_accessor performance_configuration: Types::PerformanceConfiguration
10458
+ attr_accessor data_prep_configuration: Types::DataPrepConfiguration
10459
+ attr_accessor semantic_model_configuration: Types::SemanticModelConfiguration
10085
10460
  SENSITIVE: []
10086
10461
  end
10087
10462
 
@@ -10568,6 +10943,7 @@ module Aws::QuickSight
10568
10943
  attr_accessor contains_header: bool
10569
10944
  attr_accessor text_qualifier: ("DOUBLE_QUOTE" | "SINGLE_QUOTE")
10570
10945
  attr_accessor delimiter: ::String
10946
+ attr_accessor custom_cell_address_range: ::String
10571
10947
  SENSITIVE: []
10572
10948
  end
10573
10949
 
@@ -10623,6 +10999,11 @@ module Aws::QuickSight
10623
10999
  SENSITIVE: []
10624
11000
  end
10625
11001
 
11002
+ class ValueColumnConfiguration
11003
+ attr_accessor aggregation_function: Types::DataPrepAggregationFunction
11004
+ SENSITIVE: []
11005
+ end
11006
+
10626
11007
  class VisibleRangeOptions
10627
11008
  attr_accessor percent_range: Types::PercentVisibleRange
10628
11009
  SENSITIVE: []
@@ -10711,12 +11092,26 @@ module Aws::QuickSight
10711
11092
  SENSITIVE: []
10712
11093
  end
10713
11094
 
11095
+ class VisualSubtitleFontConfiguration
11096
+ attr_accessor font_configuration: Types::FontConfiguration
11097
+ attr_accessor text_alignment: ("LEFT" | "CENTER" | "RIGHT" | "AUTO")
11098
+ attr_accessor text_transform: ("CAPITALIZE")
11099
+ SENSITIVE: []
11100
+ end
11101
+
10714
11102
  class VisualSubtitleLabelOptions
10715
11103
  attr_accessor visibility: ("HIDDEN" | "VISIBLE")
10716
11104
  attr_accessor format_text: Types::LongFormatText
10717
11105
  SENSITIVE: []
10718
11106
  end
10719
11107
 
11108
+ class VisualTitleFontConfiguration
11109
+ attr_accessor font_configuration: Types::FontConfiguration
11110
+ attr_accessor text_alignment: ("LEFT" | "CENTER" | "RIGHT" | "AUTO")
11111
+ attr_accessor text_transform: ("CAPITALIZE")
11112
+ SENSITIVE: []
11113
+ end
11114
+
10720
11115
  class VisualTitleLabelOptions
10721
11116
  attr_accessor visibility: ("HIDDEN" | "VISIBLE")
10722
11117
  attr_accessor format_text: Types::ShortFormatText