aws-sdk-quicksight 1.162.0 → 1.163.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 +1233 -57
- data/lib/aws-sdk-quicksight/client_api.rb +383 -14
- data/lib/aws-sdk-quicksight/errors.rb +21 -0
- data/lib/aws-sdk-quicksight/types.rb +1358 -58
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +911 -5
- data/sig/errors.rbs +4 -0
- data/sig/types.rbs +341 -1
- metadata +1 -1
data/sig/errors.rbs
CHANGED
|
@@ -42,6 +42,10 @@ module Aws
|
|
|
42
42
|
class InternalServerException < ::Aws::Errors::ServiceError
|
|
43
43
|
def message: () -> ::String
|
|
44
44
|
end
|
|
45
|
+
class InvalidDataSetParameterValueException < ::Aws::Errors::ServiceError
|
|
46
|
+
def message: () -> ::String
|
|
47
|
+
def request_id: () -> ::String
|
|
48
|
+
end
|
|
45
49
|
class InvalidNextTokenException < ::Aws::Errors::ServiceError
|
|
46
50
|
def message: () -> ::String
|
|
47
51
|
def request_id: () -> ::String
|
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
|
|
@@ -1184,6 +1213,13 @@ module Aws::QuickSight
|
|
|
1184
1213
|
SENSITIVE: []
|
|
1185
1214
|
end
|
|
1186
1215
|
|
|
1216
|
+
class CastColumnTypesOperation
|
|
1217
|
+
attr_accessor alias: ::String
|
|
1218
|
+
attr_accessor source: Types::TransformOperationSource
|
|
1219
|
+
attr_accessor cast_column_type_operations: ::Array[Types::CastColumnTypeOperation]
|
|
1220
|
+
SENSITIVE: []
|
|
1221
|
+
end
|
|
1222
|
+
|
|
1187
1223
|
class CategoricalDimensionField
|
|
1188
1224
|
attr_accessor field_id: ::String
|
|
1189
1225
|
attr_accessor column: Types::ColumnIdentifier
|
|
@@ -1367,6 +1403,12 @@ module Aws::QuickSight
|
|
|
1367
1403
|
SENSITIVE: []
|
|
1368
1404
|
end
|
|
1369
1405
|
|
|
1406
|
+
class ColumnToUnpivot
|
|
1407
|
+
attr_accessor column_name: ::String
|
|
1408
|
+
attr_accessor new_value: ::String
|
|
1409
|
+
SENSITIVE: []
|
|
1410
|
+
end
|
|
1411
|
+
|
|
1370
1412
|
class ColumnTooltipItem
|
|
1371
1413
|
attr_accessor column: Types::ColumnIdentifier
|
|
1372
1414
|
attr_accessor label: ::String
|
|
@@ -1669,6 +1711,8 @@ module Aws::QuickSight
|
|
|
1669
1711
|
end
|
|
1670
1712
|
|
|
1671
1713
|
class CreateColumnsOperation
|
|
1714
|
+
attr_accessor alias: ::String
|
|
1715
|
+
attr_accessor source: Types::TransformOperationSource
|
|
1672
1716
|
attr_accessor columns: ::Array[Types::CalculatedColumn]
|
|
1673
1717
|
SENSITIVE: []
|
|
1674
1718
|
end
|
|
@@ -1736,6 +1780,8 @@ module Aws::QuickSight
|
|
|
1736
1780
|
attr_accessor folder_arns: ::Array[::String]
|
|
1737
1781
|
attr_accessor performance_configuration: Types::PerformanceConfiguration
|
|
1738
1782
|
attr_accessor use_as: ("RLS_RULES")
|
|
1783
|
+
attr_accessor data_prep_configuration: Types::DataPrepConfiguration
|
|
1784
|
+
attr_accessor semantic_model_configuration: Types::SemanticModelConfiguration
|
|
1739
1785
|
SENSITIVE: []
|
|
1740
1786
|
end
|
|
1741
1787
|
|
|
@@ -2187,7 +2233,7 @@ module Aws::QuickSight
|
|
|
2187
2233
|
attr_accessor name: ::String
|
|
2188
2234
|
attr_accessor sql_query: ::String
|
|
2189
2235
|
attr_accessor columns: ::Array[Types::InputColumn]
|
|
2190
|
-
SENSITIVE: []
|
|
2236
|
+
SENSITIVE: [:sql_query]
|
|
2191
2237
|
end
|
|
2192
2238
|
|
|
2193
2239
|
class CustomValuesConfiguration
|
|
@@ -2434,6 +2480,32 @@ module Aws::QuickSight
|
|
|
2434
2480
|
SENSITIVE: []
|
|
2435
2481
|
end
|
|
2436
2482
|
|
|
2483
|
+
class DataPrepAggregationFunction
|
|
2484
|
+
attr_accessor simple_aggregation: Types::DataPrepSimpleAggregationFunction
|
|
2485
|
+
attr_accessor list_aggregation: Types::DataPrepListAggregationFunction
|
|
2486
|
+
SENSITIVE: []
|
|
2487
|
+
end
|
|
2488
|
+
|
|
2489
|
+
class DataPrepConfiguration
|
|
2490
|
+
attr_accessor source_table_map: ::Hash[::String, Types::SourceTable]
|
|
2491
|
+
attr_accessor transform_step_map: ::Hash[::String, Types::TransformStep]
|
|
2492
|
+
attr_accessor destination_table_map: ::Hash[::String, Types::DestinationTable]
|
|
2493
|
+
SENSITIVE: []
|
|
2494
|
+
end
|
|
2495
|
+
|
|
2496
|
+
class DataPrepListAggregationFunction
|
|
2497
|
+
attr_accessor input_column_name: ::String
|
|
2498
|
+
attr_accessor separator: ::String
|
|
2499
|
+
attr_accessor distinct: bool
|
|
2500
|
+
SENSITIVE: []
|
|
2501
|
+
end
|
|
2502
|
+
|
|
2503
|
+
class DataPrepSimpleAggregationFunction
|
|
2504
|
+
attr_accessor input_column_name: ::String
|
|
2505
|
+
attr_accessor function_type: ("COUNT" | "DISTINCT_COUNT" | "SUM" | "AVERAGE" | "MAX" | "MIN")
|
|
2506
|
+
SENSITIVE: []
|
|
2507
|
+
end
|
|
2508
|
+
|
|
2437
2509
|
class DataQAEnabledOption
|
|
2438
2510
|
attr_accessor availability_status: ("ENABLED" | "DISABLED")
|
|
2439
2511
|
SENSITIVE: []
|
|
@@ -2464,6 +2536,14 @@ module Aws::QuickSight
|
|
|
2464
2536
|
attr_accessor dataset_parameters: ::Array[Types::DatasetParameter]
|
|
2465
2537
|
attr_accessor performance_configuration: Types::PerformanceConfiguration
|
|
2466
2538
|
attr_accessor use_as: ("RLS_RULES")
|
|
2539
|
+
attr_accessor data_prep_configuration: Types::DataPrepConfiguration
|
|
2540
|
+
attr_accessor semantic_model_configuration: Types::SemanticModelConfiguration
|
|
2541
|
+
SENSITIVE: []
|
|
2542
|
+
end
|
|
2543
|
+
|
|
2544
|
+
class DataSetColumnIdMapping
|
|
2545
|
+
attr_accessor source_column_id: ::String
|
|
2546
|
+
attr_accessor target_column_id: ::String
|
|
2467
2547
|
SENSITIVE: []
|
|
2468
2548
|
end
|
|
2469
2549
|
|
|
@@ -2474,12 +2554,64 @@ module Aws::QuickSight
|
|
|
2474
2554
|
SENSITIVE: []
|
|
2475
2555
|
end
|
|
2476
2556
|
|
|
2557
|
+
class DataSetDateComparisonFilterCondition
|
|
2558
|
+
attr_accessor operator: ("BEFORE" | "BEFORE_OR_EQUALS_TO" | "AFTER" | "AFTER_OR_EQUALS_TO")
|
|
2559
|
+
attr_accessor value: Types::DataSetDateFilterValue
|
|
2560
|
+
SENSITIVE: []
|
|
2561
|
+
end
|
|
2562
|
+
|
|
2563
|
+
class DataSetDateFilterCondition
|
|
2564
|
+
attr_accessor column_name: ::String
|
|
2565
|
+
attr_accessor comparison_filter_condition: Types::DataSetDateComparisonFilterCondition
|
|
2566
|
+
attr_accessor range_filter_condition: Types::DataSetDateRangeFilterCondition
|
|
2567
|
+
SENSITIVE: []
|
|
2568
|
+
end
|
|
2569
|
+
|
|
2570
|
+
class DataSetDateFilterValue
|
|
2571
|
+
attr_accessor static_value: ::Time
|
|
2572
|
+
SENSITIVE: [:static_value]
|
|
2573
|
+
end
|
|
2574
|
+
|
|
2575
|
+
class DataSetDateRangeFilterCondition
|
|
2576
|
+
attr_accessor range_minimum: Types::DataSetDateFilterValue
|
|
2577
|
+
attr_accessor range_maximum: Types::DataSetDateFilterValue
|
|
2578
|
+
attr_accessor include_minimum: bool
|
|
2579
|
+
attr_accessor include_maximum: bool
|
|
2580
|
+
SENSITIVE: []
|
|
2581
|
+
end
|
|
2582
|
+
|
|
2477
2583
|
class DataSetIdentifierDeclaration
|
|
2478
2584
|
attr_accessor identifier: ::String
|
|
2479
2585
|
attr_accessor data_set_arn: ::String
|
|
2480
2586
|
SENSITIVE: []
|
|
2481
2587
|
end
|
|
2482
2588
|
|
|
2589
|
+
class DataSetNumericComparisonFilterCondition
|
|
2590
|
+
attr_accessor operator: ("EQUALS" | "DOES_NOT_EQUAL" | "GREATER_THAN" | "GREATER_THAN_OR_EQUALS_TO" | "LESS_THAN" | "LESS_THAN_OR_EQUALS_TO")
|
|
2591
|
+
attr_accessor value: Types::DataSetNumericFilterValue
|
|
2592
|
+
SENSITIVE: []
|
|
2593
|
+
end
|
|
2594
|
+
|
|
2595
|
+
class DataSetNumericFilterCondition
|
|
2596
|
+
attr_accessor column_name: ::String
|
|
2597
|
+
attr_accessor comparison_filter_condition: Types::DataSetNumericComparisonFilterCondition
|
|
2598
|
+
attr_accessor range_filter_condition: Types::DataSetNumericRangeFilterCondition
|
|
2599
|
+
SENSITIVE: []
|
|
2600
|
+
end
|
|
2601
|
+
|
|
2602
|
+
class DataSetNumericFilterValue
|
|
2603
|
+
attr_accessor static_value: ::Float
|
|
2604
|
+
SENSITIVE: [:static_value]
|
|
2605
|
+
end
|
|
2606
|
+
|
|
2607
|
+
class DataSetNumericRangeFilterCondition
|
|
2608
|
+
attr_accessor range_minimum: Types::DataSetNumericFilterValue
|
|
2609
|
+
attr_accessor range_maximum: Types::DataSetNumericFilterValue
|
|
2610
|
+
attr_accessor include_minimum: bool
|
|
2611
|
+
attr_accessor include_maximum: bool
|
|
2612
|
+
SENSITIVE: []
|
|
2613
|
+
end
|
|
2614
|
+
|
|
2483
2615
|
class DataSetReference
|
|
2484
2616
|
attr_accessor data_set_placeholder: ::String
|
|
2485
2617
|
attr_accessor data_set_arn: ::String
|
|
@@ -2504,6 +2636,35 @@ module Aws::QuickSight
|
|
|
2504
2636
|
SENSITIVE: []
|
|
2505
2637
|
end
|
|
2506
2638
|
|
|
2639
|
+
class DataSetStringComparisonFilterCondition
|
|
2640
|
+
attr_accessor operator: ("EQUALS" | "DOES_NOT_EQUAL" | "CONTAINS" | "DOES_NOT_CONTAIN" | "STARTS_WITH" | "ENDS_WITH")
|
|
2641
|
+
attr_accessor value: Types::DataSetStringFilterValue
|
|
2642
|
+
SENSITIVE: []
|
|
2643
|
+
end
|
|
2644
|
+
|
|
2645
|
+
class DataSetStringFilterCondition
|
|
2646
|
+
attr_accessor column_name: ::String
|
|
2647
|
+
attr_accessor comparison_filter_condition: Types::DataSetStringComparisonFilterCondition
|
|
2648
|
+
attr_accessor list_filter_condition: Types::DataSetStringListFilterCondition
|
|
2649
|
+
SENSITIVE: []
|
|
2650
|
+
end
|
|
2651
|
+
|
|
2652
|
+
class DataSetStringFilterValue
|
|
2653
|
+
attr_accessor static_value: ::String
|
|
2654
|
+
SENSITIVE: [:static_value]
|
|
2655
|
+
end
|
|
2656
|
+
|
|
2657
|
+
class DataSetStringListFilterCondition
|
|
2658
|
+
attr_accessor operator: ("INCLUDE" | "EXCLUDE")
|
|
2659
|
+
attr_accessor values: Types::DataSetStringListFilterValue
|
|
2660
|
+
SENSITIVE: []
|
|
2661
|
+
end
|
|
2662
|
+
|
|
2663
|
+
class DataSetStringListFilterValue
|
|
2664
|
+
attr_accessor static_values: ::Array[::String]
|
|
2665
|
+
SENSITIVE: []
|
|
2666
|
+
end
|
|
2667
|
+
|
|
2507
2668
|
class DataSetSummary
|
|
2508
2669
|
attr_accessor arn: ::String
|
|
2509
2670
|
attr_accessor data_set_id: ::String
|
|
@@ -2512,6 +2673,7 @@ module Aws::QuickSight
|
|
|
2512
2673
|
attr_accessor last_updated_time: ::Time
|
|
2513
2674
|
attr_accessor import_mode: ("SPICE" | "DIRECT_QUERY")
|
|
2514
2675
|
attr_accessor row_level_permission_data_set: Types::RowLevelPermissionDataSet
|
|
2676
|
+
attr_accessor row_level_permission_data_set_map: ::Hash[::String, Types::RowLevelPermissionDataSet]
|
|
2515
2677
|
attr_accessor row_level_permission_tag_configuration_applied: bool
|
|
2516
2678
|
attr_accessor column_level_permission_rules_applied: bool
|
|
2517
2679
|
attr_accessor use_as: ("RLS_RULES")
|
|
@@ -4159,6 +4321,17 @@ module Aws::QuickSight
|
|
|
4159
4321
|
SENSITIVE: []
|
|
4160
4322
|
end
|
|
4161
4323
|
|
|
4324
|
+
class DestinationTable
|
|
4325
|
+
attr_accessor alias: ::String
|
|
4326
|
+
attr_accessor source: Types::DestinationTableSource
|
|
4327
|
+
SENSITIVE: []
|
|
4328
|
+
end
|
|
4329
|
+
|
|
4330
|
+
class DestinationTableSource
|
|
4331
|
+
attr_accessor transform_operation_id: ::String
|
|
4332
|
+
SENSITIVE: []
|
|
4333
|
+
end
|
|
4334
|
+
|
|
4162
4335
|
class DimensionField
|
|
4163
4336
|
attr_accessor numerical_dimension_field: Types::NumericalDimensionField
|
|
4164
4337
|
attr_accessor categorical_dimension_field: Types::CategoricalDimensionField
|
|
@@ -4482,6 +4655,9 @@ module Aws::QuickSight
|
|
|
4482
4655
|
|
|
4483
4656
|
class FilterOperation
|
|
4484
4657
|
attr_accessor condition_expression: ::String
|
|
4658
|
+
attr_accessor string_filter_condition: Types::DataSetStringFilterCondition
|
|
4659
|
+
attr_accessor numeric_filter_condition: Types::DataSetNumericFilterCondition
|
|
4660
|
+
attr_accessor date_filter_condition: Types::DataSetDateFilterCondition
|
|
4485
4661
|
SENSITIVE: [:condition_expression]
|
|
4486
4662
|
end
|
|
4487
4663
|
|
|
@@ -4546,6 +4722,13 @@ module Aws::QuickSight
|
|
|
4546
4722
|
SENSITIVE: []
|
|
4547
4723
|
end
|
|
4548
4724
|
|
|
4725
|
+
class FiltersOperation
|
|
4726
|
+
attr_accessor alias: ::String
|
|
4727
|
+
attr_accessor source: Types::TransformOperationSource
|
|
4728
|
+
attr_accessor filter_operations: ::Array[Types::FilterOperation]
|
|
4729
|
+
SENSITIVE: []
|
|
4730
|
+
end
|
|
4731
|
+
|
|
4549
4732
|
class FlowSummary
|
|
4550
4733
|
attr_accessor arn: ::String
|
|
4551
4734
|
attr_accessor flow_id: ::String
|
|
@@ -5513,6 +5696,18 @@ module Aws::QuickSight
|
|
|
5513
5696
|
SENSITIVE: []
|
|
5514
5697
|
end
|
|
5515
5698
|
|
|
5699
|
+
class ImportTableOperation
|
|
5700
|
+
attr_accessor alias: ::String
|
|
5701
|
+
attr_accessor source: Types::ImportTableOperationSource
|
|
5702
|
+
SENSITIVE: []
|
|
5703
|
+
end
|
|
5704
|
+
|
|
5705
|
+
class ImportTableOperationSource
|
|
5706
|
+
attr_accessor source_table_id: ::String
|
|
5707
|
+
attr_accessor column_id_mappings: ::Array[Types::DataSetColumnIdMapping]
|
|
5708
|
+
SENSITIVE: []
|
|
5709
|
+
end
|
|
5710
|
+
|
|
5516
5711
|
class IncrementalRefresh
|
|
5517
5712
|
attr_accessor lookback_window: Types::LookbackWindow
|
|
5518
5713
|
SENSITIVE: []
|
|
@@ -5540,6 +5735,7 @@ module Aws::QuickSight
|
|
|
5540
5735
|
|
|
5541
5736
|
class InputColumn
|
|
5542
5737
|
attr_accessor name: ::String
|
|
5738
|
+
attr_accessor id: ::String
|
|
5543
5739
|
attr_accessor type: ("STRING" | "INTEGER" | "DECIMAL" | "DATETIME" | "BIT" | "BOOLEAN" | "JSON")
|
|
5544
5740
|
attr_accessor sub_type: ("FLOAT" | "FIXED")
|
|
5545
5741
|
SENSITIVE: []
|
|
@@ -5614,6 +5810,12 @@ module Aws::QuickSight
|
|
|
5614
5810
|
SENSITIVE: []
|
|
5615
5811
|
end
|
|
5616
5812
|
|
|
5813
|
+
class InvalidDataSetParameterValueException
|
|
5814
|
+
attr_accessor message: ::String
|
|
5815
|
+
attr_accessor request_id: ::String
|
|
5816
|
+
SENSITIVE: []
|
|
5817
|
+
end
|
|
5818
|
+
|
|
5617
5819
|
class InvalidNextTokenException
|
|
5618
5820
|
attr_accessor message: ::String
|
|
5619
5821
|
attr_accessor request_id: ::String
|
|
@@ -5664,6 +5866,22 @@ module Aws::QuickSight
|
|
|
5664
5866
|
SENSITIVE: []
|
|
5665
5867
|
end
|
|
5666
5868
|
|
|
5869
|
+
class JoinOperandProperties
|
|
5870
|
+
attr_accessor output_column_name_overrides: ::Array[Types::OutputColumnNameOverride]
|
|
5871
|
+
SENSITIVE: []
|
|
5872
|
+
end
|
|
5873
|
+
|
|
5874
|
+
class JoinOperation
|
|
5875
|
+
attr_accessor alias: ::String
|
|
5876
|
+
attr_accessor left_operand: Types::TransformOperationSource
|
|
5877
|
+
attr_accessor right_operand: Types::TransformOperationSource
|
|
5878
|
+
attr_accessor type: ("INNER" | "OUTER" | "LEFT" | "RIGHT")
|
|
5879
|
+
attr_accessor on_clause: ::String
|
|
5880
|
+
attr_accessor left_operand_properties: Types::JoinOperandProperties
|
|
5881
|
+
attr_accessor right_operand_properties: Types::JoinOperandProperties
|
|
5882
|
+
SENSITIVE: [:on_clause]
|
|
5883
|
+
end
|
|
5884
|
+
|
|
5667
5885
|
class KPIActualValueConditionalFormatting
|
|
5668
5886
|
attr_accessor text_color: Types::ConditionalFormattingColor
|
|
5669
5887
|
attr_accessor icon: Types::ConditionalFormattingIcon
|
|
@@ -6839,12 +7057,19 @@ module Aws::QuickSight
|
|
|
6839
7057
|
|
|
6840
7058
|
class OutputColumn
|
|
6841
7059
|
attr_accessor name: ::String
|
|
7060
|
+
attr_accessor id: ::String
|
|
6842
7061
|
attr_accessor description: ::String
|
|
6843
7062
|
attr_accessor type: ("STRING" | "INTEGER" | "DECIMAL" | "DATETIME")
|
|
6844
7063
|
attr_accessor sub_type: ("FLOAT" | "FIXED")
|
|
6845
7064
|
SENSITIVE: [:description]
|
|
6846
7065
|
end
|
|
6847
7066
|
|
|
7067
|
+
class OutputColumnNameOverride
|
|
7068
|
+
attr_accessor source_column_name: ::String
|
|
7069
|
+
attr_accessor output_column_name: ::String
|
|
7070
|
+
SENSITIVE: []
|
|
7071
|
+
end
|
|
7072
|
+
|
|
6848
7073
|
class OverrideDatasetParameterOperation
|
|
6849
7074
|
attr_accessor parameter_name: ::String
|
|
6850
7075
|
attr_accessor new_parameter_name: ::String
|
|
@@ -6975,6 +7200,12 @@ module Aws::QuickSight
|
|
|
6975
7200
|
SENSITIVE: []
|
|
6976
7201
|
end
|
|
6977
7202
|
|
|
7203
|
+
class ParentDataSet
|
|
7204
|
+
attr_accessor data_set_arn: ::String
|
|
7205
|
+
attr_accessor input_columns: ::Array[Types::InputColumn]
|
|
7206
|
+
SENSITIVE: []
|
|
7207
|
+
end
|
|
7208
|
+
|
|
6978
7209
|
class PercentVisibleRange
|
|
6979
7210
|
attr_accessor from: ::Float
|
|
6980
7211
|
attr_accessor to: ::Float
|
|
@@ -7028,6 +7259,7 @@ module Aws::QuickSight
|
|
|
7028
7259
|
attr_accessor relational_table: Types::RelationalTable
|
|
7029
7260
|
attr_accessor custom_sql: Types::CustomSql
|
|
7030
7261
|
attr_accessor s3_source: Types::S3Source
|
|
7262
|
+
attr_accessor saa_s_table: Types::SaaSTable
|
|
7031
7263
|
SENSITIVE: []
|
|
7032
7264
|
end
|
|
7033
7265
|
|
|
@@ -7078,12 +7310,27 @@ module Aws::QuickSight
|
|
|
7078
7310
|
SENSITIVE: []
|
|
7079
7311
|
end
|
|
7080
7312
|
|
|
7313
|
+
class PivotConfiguration
|
|
7314
|
+
attr_accessor label_column_name: ::String
|
|
7315
|
+
attr_accessor pivoted_labels: ::Array[Types::PivotedLabel]
|
|
7316
|
+
SENSITIVE: []
|
|
7317
|
+
end
|
|
7318
|
+
|
|
7081
7319
|
class PivotFieldSortOptions
|
|
7082
7320
|
attr_accessor field_id: ::String
|
|
7083
7321
|
attr_accessor sort_by: Types::PivotTableSortBy
|
|
7084
7322
|
SENSITIVE: []
|
|
7085
7323
|
end
|
|
7086
7324
|
|
|
7325
|
+
class PivotOperation
|
|
7326
|
+
attr_accessor alias: ::String
|
|
7327
|
+
attr_accessor source: Types::TransformOperationSource
|
|
7328
|
+
attr_accessor group_by_column_names: ::Array[::String]
|
|
7329
|
+
attr_accessor value_column_configuration: Types::ValueColumnConfiguration
|
|
7330
|
+
attr_accessor pivot_configuration: Types::PivotConfiguration
|
|
7331
|
+
SENSITIVE: []
|
|
7332
|
+
end
|
|
7333
|
+
|
|
7087
7334
|
class PivotTableAggregatedFieldWells
|
|
7088
7335
|
attr_accessor rows: ::Array[Types::DimensionField]
|
|
7089
7336
|
attr_accessor columns: ::Array[Types::DimensionField]
|
|
@@ -7239,6 +7486,13 @@ module Aws::QuickSight
|
|
|
7239
7486
|
SENSITIVE: []
|
|
7240
7487
|
end
|
|
7241
7488
|
|
|
7489
|
+
class PivotedLabel
|
|
7490
|
+
attr_accessor label_name: ::String
|
|
7491
|
+
attr_accessor new_column_name: ::String
|
|
7492
|
+
attr_accessor new_column_id: ::String
|
|
7493
|
+
SENSITIVE: []
|
|
7494
|
+
end
|
|
7495
|
+
|
|
7242
7496
|
class PluginVisual
|
|
7243
7497
|
attr_accessor visual_id: ::String
|
|
7244
7498
|
attr_accessor plugin_arn: ::String
|
|
@@ -7342,6 +7596,8 @@ module Aws::QuickSight
|
|
|
7342
7596
|
end
|
|
7343
7597
|
|
|
7344
7598
|
class ProjectOperation
|
|
7599
|
+
attr_accessor alias: ::String
|
|
7600
|
+
attr_accessor source: Types::TransformOperationSource
|
|
7345
7601
|
attr_accessor projected_columns: ::Array[::String]
|
|
7346
7602
|
SENSITIVE: []
|
|
7347
7603
|
end
|
|
@@ -7817,6 +8073,13 @@ module Aws::QuickSight
|
|
|
7817
8073
|
SENSITIVE: []
|
|
7818
8074
|
end
|
|
7819
8075
|
|
|
8076
|
+
class RenameColumnsOperation
|
|
8077
|
+
attr_accessor alias: ::String
|
|
8078
|
+
attr_accessor source: Types::TransformOperationSource
|
|
8079
|
+
attr_accessor rename_column_operations: ::Array[Types::RenameColumnOperation]
|
|
8080
|
+
SENSITIVE: []
|
|
8081
|
+
end
|
|
8082
|
+
|
|
7820
8083
|
class ResourceExistsException
|
|
7821
8084
|
attr_accessor message: ::String
|
|
7822
8085
|
attr_accessor resource_type: ("USER" | "GROUP" | "NAMESPACE" | "ACCOUNT_SETTINGS" | "IAMPOLICY_ASSIGNMENT" | "DATA_SOURCE" | "DATA_SET" | "VPC_CONNECTION" | "INGESTION")
|
|
@@ -7880,6 +8143,12 @@ module Aws::QuickSight
|
|
|
7880
8143
|
SENSITIVE: []
|
|
7881
8144
|
end
|
|
7882
8145
|
|
|
8146
|
+
class RowLevelPermissionConfiguration
|
|
8147
|
+
attr_accessor tag_configuration: Types::RowLevelPermissionTagConfiguration
|
|
8148
|
+
attr_accessor row_level_permission_data_set: Types::RowLevelPermissionDataSet
|
|
8149
|
+
SENSITIVE: []
|
|
8150
|
+
end
|
|
8151
|
+
|
|
7883
8152
|
class RowLevelPermissionDataSet
|
|
7884
8153
|
attr_accessor namespace: ::String
|
|
7885
8154
|
attr_accessor arn: ::String
|
|
@@ -7931,6 +8200,13 @@ module Aws::QuickSight
|
|
|
7931
8200
|
SENSITIVE: []
|
|
7932
8201
|
end
|
|
7933
8202
|
|
|
8203
|
+
class SaaSTable
|
|
8204
|
+
attr_accessor data_source_arn: ::String
|
|
8205
|
+
attr_accessor table_path: ::Array[Types::TablePathElement]
|
|
8206
|
+
attr_accessor input_columns: ::Array[Types::InputColumn]
|
|
8207
|
+
SENSITIVE: []
|
|
8208
|
+
end
|
|
8209
|
+
|
|
7934
8210
|
class SameSheetTargetVisualConfiguration
|
|
7935
8211
|
attr_accessor target_visuals: ::Array[::String]
|
|
7936
8212
|
attr_accessor target_visual_options: ("ALL_VISUALS")
|
|
@@ -8256,6 +8532,18 @@ module Aws::QuickSight
|
|
|
8256
8532
|
SENSITIVE: []
|
|
8257
8533
|
end
|
|
8258
8534
|
|
|
8535
|
+
class SemanticModelConfiguration
|
|
8536
|
+
attr_accessor table_map: ::Hash[::String, Types::SemanticTable]
|
|
8537
|
+
SENSITIVE: []
|
|
8538
|
+
end
|
|
8539
|
+
|
|
8540
|
+
class SemanticTable
|
|
8541
|
+
attr_accessor alias: ::String
|
|
8542
|
+
attr_accessor destination_table_id: ::String
|
|
8543
|
+
attr_accessor row_level_permission_configuration: Types::RowLevelPermissionConfiguration
|
|
8544
|
+
SENSITIVE: []
|
|
8545
|
+
end
|
|
8546
|
+
|
|
8259
8547
|
class SemanticType
|
|
8260
8548
|
attr_accessor type_name: ::String
|
|
8261
8549
|
attr_accessor sub_type_name: ::String
|
|
@@ -8570,6 +8858,12 @@ module Aws::QuickSight
|
|
|
8570
8858
|
SENSITIVE: []
|
|
8571
8859
|
end
|
|
8572
8860
|
|
|
8861
|
+
class SourceTable
|
|
8862
|
+
attr_accessor physical_table_id: ::String
|
|
8863
|
+
attr_accessor data_set: Types::ParentDataSet
|
|
8864
|
+
SENSITIVE: []
|
|
8865
|
+
end
|
|
8866
|
+
|
|
8573
8867
|
class Spacing
|
|
8574
8868
|
attr_accessor top: ::String
|
|
8575
8869
|
attr_accessor bottom: ::String
|
|
@@ -8919,6 +9213,12 @@ module Aws::QuickSight
|
|
|
8919
9213
|
SENSITIVE: []
|
|
8920
9214
|
end
|
|
8921
9215
|
|
|
9216
|
+
class TablePathElement
|
|
9217
|
+
attr_accessor name: ::String
|
|
9218
|
+
attr_accessor id: ::String
|
|
9219
|
+
SENSITIVE: []
|
|
9220
|
+
end
|
|
9221
|
+
|
|
8922
9222
|
class TablePinnedFieldOptions
|
|
8923
9223
|
attr_accessor pinned_left_fields: ::Array[::String]
|
|
8924
9224
|
SENSITIVE: []
|
|
@@ -9640,6 +9940,27 @@ module Aws::QuickSight
|
|
|
9640
9940
|
SENSITIVE: []
|
|
9641
9941
|
end
|
|
9642
9942
|
|
|
9943
|
+
class TransformOperationSource
|
|
9944
|
+
attr_accessor transform_operation_id: ::String
|
|
9945
|
+
attr_accessor column_id_mappings: ::Array[Types::DataSetColumnIdMapping]
|
|
9946
|
+
SENSITIVE: []
|
|
9947
|
+
end
|
|
9948
|
+
|
|
9949
|
+
class TransformStep
|
|
9950
|
+
attr_accessor import_table_step: Types::ImportTableOperation
|
|
9951
|
+
attr_accessor project_step: Types::ProjectOperation
|
|
9952
|
+
attr_accessor filters_step: Types::FiltersOperation
|
|
9953
|
+
attr_accessor create_columns_step: Types::CreateColumnsOperation
|
|
9954
|
+
attr_accessor rename_columns_step: Types::RenameColumnsOperation
|
|
9955
|
+
attr_accessor cast_column_types_step: Types::CastColumnTypesOperation
|
|
9956
|
+
attr_accessor join_step: Types::JoinOperation
|
|
9957
|
+
attr_accessor aggregate_step: Types::AggregateOperation
|
|
9958
|
+
attr_accessor pivot_step: Types::PivotOperation
|
|
9959
|
+
attr_accessor unpivot_step: Types::UnpivotOperation
|
|
9960
|
+
attr_accessor append_step: Types::AppendOperation
|
|
9961
|
+
SENSITIVE: []
|
|
9962
|
+
end
|
|
9963
|
+
|
|
9643
9964
|
class TransposedTableOption
|
|
9644
9965
|
attr_accessor column_index: ::Integer
|
|
9645
9966
|
attr_accessor column_width: ::String
|
|
@@ -9752,6 +10073,17 @@ module Aws::QuickSight
|
|
|
9752
10073
|
SENSITIVE: []
|
|
9753
10074
|
end
|
|
9754
10075
|
|
|
10076
|
+
class UnpivotOperation
|
|
10077
|
+
attr_accessor alias: ::String
|
|
10078
|
+
attr_accessor source: Types::TransformOperationSource
|
|
10079
|
+
attr_accessor columns_to_unpivot: ::Array[Types::ColumnToUnpivot]
|
|
10080
|
+
attr_accessor unpivoted_label_column_name: ::String
|
|
10081
|
+
attr_accessor unpivoted_label_column_id: ::String
|
|
10082
|
+
attr_accessor unpivoted_value_column_name: ::String
|
|
10083
|
+
attr_accessor unpivoted_value_column_id: ::String
|
|
10084
|
+
SENSITIVE: []
|
|
10085
|
+
end
|
|
10086
|
+
|
|
9755
10087
|
class UnsupportedPricingPlanException
|
|
9756
10088
|
attr_accessor message: ::String
|
|
9757
10089
|
attr_accessor request_id: ::String
|
|
@@ -10082,6 +10414,8 @@ module Aws::QuickSight
|
|
|
10082
10414
|
attr_accessor data_set_usage_configuration: Types::DataSetUsageConfiguration
|
|
10083
10415
|
attr_accessor dataset_parameters: ::Array[Types::DatasetParameter]
|
|
10084
10416
|
attr_accessor performance_configuration: Types::PerformanceConfiguration
|
|
10417
|
+
attr_accessor data_prep_configuration: Types::DataPrepConfiguration
|
|
10418
|
+
attr_accessor semantic_model_configuration: Types::SemanticModelConfiguration
|
|
10085
10419
|
SENSITIVE: []
|
|
10086
10420
|
end
|
|
10087
10421
|
|
|
@@ -10568,6 +10902,7 @@ module Aws::QuickSight
|
|
|
10568
10902
|
attr_accessor contains_header: bool
|
|
10569
10903
|
attr_accessor text_qualifier: ("DOUBLE_QUOTE" | "SINGLE_QUOTE")
|
|
10570
10904
|
attr_accessor delimiter: ::String
|
|
10905
|
+
attr_accessor custom_cell_address_range: ::String
|
|
10571
10906
|
SENSITIVE: []
|
|
10572
10907
|
end
|
|
10573
10908
|
|
|
@@ -10623,6 +10958,11 @@ module Aws::QuickSight
|
|
|
10623
10958
|
SENSITIVE: []
|
|
10624
10959
|
end
|
|
10625
10960
|
|
|
10961
|
+
class ValueColumnConfiguration
|
|
10962
|
+
attr_accessor aggregation_function: Types::DataPrepAggregationFunction
|
|
10963
|
+
SENSITIVE: []
|
|
10964
|
+
end
|
|
10965
|
+
|
|
10626
10966
|
class VisibleRangeOptions
|
|
10627
10967
|
attr_accessor percent_range: Types::PercentVisibleRange
|
|
10628
10968
|
SENSITIVE: []
|