aws-sdk-quicksight 1.93.0 → 1.95.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +132 -5
- data/lib/aws-sdk-quicksight/client_api.rb +65 -2
- data/lib/aws-sdk-quicksight/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-quicksight/types.rb +279 -28
- data/lib/aws-sdk-quicksight.rb +1 -1
- metadata +2 -2
@@ -355,6 +355,10 @@ module Aws::QuickSight
|
|
355
355
|
# of each sheet.
|
356
356
|
# @return [Array<Types::Sheet>]
|
357
357
|
#
|
358
|
+
# @!attribute [rw] options
|
359
|
+
# An array of analysis level configurations.
|
360
|
+
# @return [Types::AssetOptions]
|
361
|
+
#
|
358
362
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Analysis AWS API Documentation
|
359
363
|
#
|
360
364
|
class Analysis < Struct.new(
|
@@ -367,7 +371,8 @@ module Aws::QuickSight
|
|
367
371
|
:theme_arn,
|
368
372
|
:created_time,
|
369
373
|
:last_updated_time,
|
370
|
-
:sheets
|
374
|
+
:sheets,
|
375
|
+
:options)
|
371
376
|
SENSITIVE = []
|
372
377
|
include Aws::Structure
|
373
378
|
end
|
@@ -439,6 +444,10 @@ module Aws::QuickSight
|
|
439
444
|
# The configuration for default analysis settings.
|
440
445
|
# @return [Types::AnalysisDefaults]
|
441
446
|
#
|
447
|
+
# @!attribute [rw] options
|
448
|
+
# An array of option definitions for an analysis.
|
449
|
+
# @return [Types::AssetOptions]
|
450
|
+
#
|
442
451
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AnalysisDefinition AWS API Documentation
|
443
452
|
#
|
444
453
|
class AnalysisDefinition < Struct.new(
|
@@ -448,7 +457,8 @@ module Aws::QuickSight
|
|
448
457
|
:parameter_declarations,
|
449
458
|
:filter_groups,
|
450
459
|
:column_configurations,
|
451
|
-
:analysis_defaults
|
460
|
+
:analysis_defaults,
|
461
|
+
:options)
|
452
462
|
SENSITIVE = []
|
453
463
|
include Aws::Structure
|
454
464
|
end
|
@@ -1553,6 +1563,25 @@ module Aws::QuickSight
|
|
1553
1563
|
include Aws::Structure
|
1554
1564
|
end
|
1555
1565
|
|
1566
|
+
# An array of analysis level configurations.
|
1567
|
+
#
|
1568
|
+
# @!attribute [rw] timezone
|
1569
|
+
# Determines the timezone for the analysis.
|
1570
|
+
# @return [String]
|
1571
|
+
#
|
1572
|
+
# @!attribute [rw] week_start
|
1573
|
+
# Determines the week start day for an analysis.
|
1574
|
+
# @return [String]
|
1575
|
+
#
|
1576
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetOptions AWS API Documentation
|
1577
|
+
#
|
1578
|
+
class AssetOptions < Struct.new(
|
1579
|
+
:timezone,
|
1580
|
+
:week_start)
|
1581
|
+
SENSITIVE = []
|
1582
|
+
include Aws::Structure
|
1583
|
+
end
|
1584
|
+
|
1556
1585
|
# Parameters for Amazon Athena.
|
1557
1586
|
#
|
1558
1587
|
# @!attribute [rw] work_group
|
@@ -2640,6 +2669,11 @@ module Aws::QuickSight
|
|
2640
2669
|
# New column data type.
|
2641
2670
|
# @return [String]
|
2642
2671
|
#
|
2672
|
+
# @!attribute [rw] sub_type
|
2673
|
+
# The sub data type of the new column. Sub types are only available
|
2674
|
+
# for decimal columns that are part of a SPICE dataset.
|
2675
|
+
# @return [String]
|
2676
|
+
#
|
2643
2677
|
# @!attribute [rw] format
|
2644
2678
|
# When casting a column from string to datetime type, you can supply a
|
2645
2679
|
# string in a format supported by Amazon QuickSight to denote the
|
@@ -2651,6 +2685,7 @@ module Aws::QuickSight
|
|
2651
2685
|
class CastColumnTypeOperation < Struct.new(
|
2652
2686
|
:column_name,
|
2653
2687
|
:new_column_type,
|
2688
|
+
:sub_type,
|
2654
2689
|
:format)
|
2655
2690
|
SENSITIVE = []
|
2656
2691
|
include Aws::Structure
|
@@ -4096,6 +4131,11 @@ module Aws::QuickSight
|
|
4096
4131
|
# errors.
|
4097
4132
|
# @return [Types::ValidationStrategy]
|
4098
4133
|
#
|
4134
|
+
# @!attribute [rw] folder_arns
|
4135
|
+
# When you create the analysis, Amazon QuickSight adds the analysis to
|
4136
|
+
# these folders.
|
4137
|
+
# @return [Array<String>]
|
4138
|
+
#
|
4099
4139
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateAnalysisRequest AWS API Documentation
|
4100
4140
|
#
|
4101
4141
|
class CreateAnalysisRequest < Struct.new(
|
@@ -4108,7 +4148,8 @@ module Aws::QuickSight
|
|
4108
4148
|
:theme_arn,
|
4109
4149
|
:tags,
|
4110
4150
|
:definition,
|
4111
|
-
:validation_strategy
|
4151
|
+
:validation_strategy,
|
4152
|
+
:folder_arns)
|
4112
4153
|
SENSITIVE = []
|
4113
4154
|
include Aws::Structure
|
4114
4155
|
end
|
@@ -4257,6 +4298,11 @@ module Aws::QuickSight
|
|
4257
4298
|
# specific errors.
|
4258
4299
|
# @return [Types::ValidationStrategy]
|
4259
4300
|
#
|
4301
|
+
# @!attribute [rw] folder_arns
|
4302
|
+
# When you create the dashboard, Amazon QuickSight adds the dashboard
|
4303
|
+
# to these folders.
|
4304
|
+
# @return [Array<String>]
|
4305
|
+
#
|
4260
4306
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateDashboardRequest AWS API Documentation
|
4261
4307
|
#
|
4262
4308
|
class CreateDashboardRequest < Struct.new(
|
@@ -4271,7 +4317,8 @@ module Aws::QuickSight
|
|
4271
4317
|
:dashboard_publish_options,
|
4272
4318
|
:theme_arn,
|
4273
4319
|
:definition,
|
4274
|
-
:validation_strategy
|
4320
|
+
:validation_strategy,
|
4321
|
+
:folder_arns)
|
4275
4322
|
SENSITIVE = []
|
4276
4323
|
include Aws::Structure
|
4277
4324
|
end
|
@@ -4384,6 +4431,11 @@ module Aws::QuickSight
|
|
4384
4431
|
# The parameter declarations of the dataset.
|
4385
4432
|
# @return [Array<Types::DatasetParameter>]
|
4386
4433
|
#
|
4434
|
+
# @!attribute [rw] folder_arns
|
4435
|
+
# When you create the dataset, Amazon QuickSight adds the dataset to
|
4436
|
+
# these folders.
|
4437
|
+
# @return [Array<String>]
|
4438
|
+
#
|
4387
4439
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateDataSetRequest AWS API Documentation
|
4388
4440
|
#
|
4389
4441
|
class CreateDataSetRequest < Struct.new(
|
@@ -4401,7 +4453,8 @@ module Aws::QuickSight
|
|
4401
4453
|
:column_level_permission_rules,
|
4402
4454
|
:tags,
|
4403
4455
|
:data_set_usage_configuration,
|
4404
|
-
:dataset_parameters
|
4456
|
+
:dataset_parameters,
|
4457
|
+
:folder_arns)
|
4405
4458
|
SENSITIVE = []
|
4406
4459
|
include Aws::Structure
|
4407
4460
|
end
|
@@ -4496,6 +4549,11 @@ module Aws::QuickSight
|
|
4496
4549
|
# assigned to the data source.
|
4497
4550
|
# @return [Array<Types::Tag>]
|
4498
4551
|
#
|
4552
|
+
# @!attribute [rw] folder_arns
|
4553
|
+
# When you create the data source, Amazon QuickSight adds the data
|
4554
|
+
# source to these folders.
|
4555
|
+
# @return [Array<String>]
|
4556
|
+
#
|
4499
4557
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateDataSourceRequest AWS API Documentation
|
4500
4558
|
#
|
4501
4559
|
class CreateDataSourceRequest < Struct.new(
|
@@ -4508,7 +4566,8 @@ module Aws::QuickSight
|
|
4508
4566
|
:permissions,
|
4509
4567
|
:vpc_connection_properties,
|
4510
4568
|
:ssl_properties,
|
4511
|
-
:tags
|
4569
|
+
:tags,
|
4570
|
+
:folder_arns)
|
4512
4571
|
SENSITIVE = [:credentials]
|
4513
4572
|
include Aws::Structure
|
4514
4573
|
end
|
@@ -6398,6 +6457,10 @@ module Aws::QuickSight
|
|
6398
6457
|
# of each sheet.
|
6399
6458
|
# @return [Array<Types::Sheet>]
|
6400
6459
|
#
|
6460
|
+
# @!attribute [rw] options
|
6461
|
+
# An array of analysis level configurations.
|
6462
|
+
# @return [Types::AssetOptions]
|
6463
|
+
#
|
6401
6464
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DashboardVersion AWS API Documentation
|
6402
6465
|
#
|
6403
6466
|
class DashboardVersion < Struct.new(
|
@@ -6410,7 +6473,8 @@ module Aws::QuickSight
|
|
6410
6473
|
:data_set_arns,
|
6411
6474
|
:description,
|
6412
6475
|
:theme_arn,
|
6413
|
-
:sheets
|
6476
|
+
:sheets,
|
6477
|
+
:options)
|
6414
6478
|
SENSITIVE = []
|
6415
6479
|
include Aws::Structure
|
6416
6480
|
end
|
@@ -6465,6 +6529,10 @@ module Aws::QuickSight
|
|
6465
6529
|
# The configuration for default analysis settings.
|
6466
6530
|
# @return [Types::AnalysisDefaults]
|
6467
6531
|
#
|
6532
|
+
# @!attribute [rw] options
|
6533
|
+
# An array of option definitions for a dashboard.
|
6534
|
+
# @return [Types::AssetOptions]
|
6535
|
+
#
|
6468
6536
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DashboardVersionDefinition AWS API Documentation
|
6469
6537
|
#
|
6470
6538
|
class DashboardVersionDefinition < Struct.new(
|
@@ -6474,7 +6542,8 @@ module Aws::QuickSight
|
|
6474
6542
|
:parameter_declarations,
|
6475
6543
|
:filter_groups,
|
6476
6544
|
:column_configurations,
|
6477
|
-
:analysis_defaults
|
6545
|
+
:analysis_defaults,
|
6546
|
+
:options)
|
6478
6547
|
SENSITIVE = []
|
6479
6548
|
include Aws::Structure
|
6480
6549
|
end
|
@@ -6869,6 +6938,35 @@ module Aws::QuickSight
|
|
6869
6938
|
include Aws::Structure
|
6870
6939
|
end
|
6871
6940
|
|
6941
|
+
# The type of the data path value.
|
6942
|
+
#
|
6943
|
+
# @!attribute [rw] pivot_table_data_path_type
|
6944
|
+
# The type of data path value utilized in a pivot table. Choose one of
|
6945
|
+
# the following options:
|
6946
|
+
#
|
6947
|
+
# * `HIERARCHY_ROWS_LAYOUT_COLUMN` - The type of data path for the
|
6948
|
+
# rows layout column, when `RowsLayout` is set to `HIERARCHY`.
|
6949
|
+
#
|
6950
|
+
# * `MULTIPLE_ROW_METRICS_COLUMN` - The type of data path for the
|
6951
|
+
# metric column when the row is set to Metric Placement.
|
6952
|
+
#
|
6953
|
+
# * `EMPTY_COLUMN_HEADER` - The type of data path for the column with
|
6954
|
+
# empty column header, when there is no field in `ColumnsFieldWell`
|
6955
|
+
# and the row is set to Metric Placement.
|
6956
|
+
#
|
6957
|
+
# * `COUNT_METRIC_COLUMN` - The type of data path for the column with
|
6958
|
+
# `COUNT` as the metric, when there is no field in the
|
6959
|
+
# `ValuesFieldWell`.
|
6960
|
+
# @return [String]
|
6961
|
+
#
|
6962
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataPathType AWS API Documentation
|
6963
|
+
#
|
6964
|
+
class DataPathType < Struct.new(
|
6965
|
+
:pivot_table_data_path_type)
|
6966
|
+
SENSITIVE = []
|
6967
|
+
include Aws::Structure
|
6968
|
+
end
|
6969
|
+
|
6872
6970
|
# The data path that needs to be sorted.
|
6873
6971
|
#
|
6874
6972
|
# @!attribute [rw] field_id
|
@@ -6879,11 +6977,16 @@ module Aws::QuickSight
|
|
6879
6977
|
# The actual value of the field that needs to be sorted.
|
6880
6978
|
# @return [String]
|
6881
6979
|
#
|
6980
|
+
# @!attribute [rw] data_path_type
|
6981
|
+
# The type configuration of the field.
|
6982
|
+
# @return [Types::DataPathType]
|
6983
|
+
#
|
6882
6984
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataPathValue AWS API Documentation
|
6883
6985
|
#
|
6884
6986
|
class DataPathValue < Struct.new(
|
6885
6987
|
:field_id,
|
6886
|
-
:field_value
|
6988
|
+
:field_value,
|
6989
|
+
:data_path_type)
|
6887
6990
|
SENSITIVE = [:field_value]
|
6888
6991
|
include Aws::Structure
|
6889
6992
|
end
|
@@ -7506,10 +7609,19 @@ module Aws::QuickSight
|
|
7506
7609
|
# @return [Types::ExasolParameters]
|
7507
7610
|
#
|
7508
7611
|
# @!attribute [rw] databricks_parameters
|
7509
|
-
# The
|
7510
|
-
#
|
7612
|
+
# The parameters that are required to connect to a Databricks data
|
7613
|
+
# source.
|
7511
7614
|
# @return [Types::DatabricksParameters]
|
7512
7615
|
#
|
7616
|
+
# @!attribute [rw] starburst_parameters
|
7617
|
+
# The parameters that are required to connect to a Starburst data
|
7618
|
+
# source.
|
7619
|
+
# @return [Types::StarburstParameters]
|
7620
|
+
#
|
7621
|
+
# @!attribute [rw] trino_parameters
|
7622
|
+
# The parameters that are required to connect to a Trino data source.
|
7623
|
+
# @return [Types::TrinoParameters]
|
7624
|
+
#
|
7513
7625
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataSourceParameters AWS API Documentation
|
7514
7626
|
#
|
7515
7627
|
class DataSourceParameters < Struct.new(
|
@@ -7535,7 +7647,9 @@ module Aws::QuickSight
|
|
7535
7647
|
:twitter_parameters,
|
7536
7648
|
:amazon_open_search_parameters,
|
7537
7649
|
:exasol_parameters,
|
7538
|
-
:databricks_parameters
|
7650
|
+
:databricks_parameters,
|
7651
|
+
:starburst_parameters,
|
7652
|
+
:trino_parameters)
|
7539
7653
|
SENSITIVE = []
|
7540
7654
|
include Aws::Structure
|
7541
7655
|
end
|
@@ -7643,8 +7757,8 @@ module Aws::QuickSight
|
|
7643
7757
|
include Aws::Structure
|
7644
7758
|
end
|
7645
7759
|
|
7646
|
-
# The
|
7647
|
-
#
|
7760
|
+
# The parameters that are required to connect to a Databricks data
|
7761
|
+
# source.
|
7648
7762
|
#
|
7649
7763
|
# @!attribute [rw] host
|
7650
7764
|
# The host name of the Databricks data source.
|
@@ -15713,11 +15827,17 @@ module Aws::QuickSight
|
|
15713
15827
|
# The data type of the column.
|
15714
15828
|
# @return [String]
|
15715
15829
|
#
|
15830
|
+
# @!attribute [rw] sub_type
|
15831
|
+
# The sub data type of the column. Sub types are only available for
|
15832
|
+
# decimal columns that are part of a SPICE dataset.
|
15833
|
+
# @return [String]
|
15834
|
+
#
|
15716
15835
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/InputColumn AWS API Documentation
|
15717
15836
|
#
|
15718
15837
|
class InputColumn < Struct.new(
|
15719
15838
|
:name,
|
15720
|
-
:type
|
15839
|
+
:type,
|
15840
|
+
:sub_type)
|
15721
15841
|
SENSITIVE = []
|
15722
15842
|
include Aws::Structure
|
15723
15843
|
end
|
@@ -19659,7 +19779,7 @@ module Aws::QuickSight
|
|
19659
19779
|
# Output column.
|
19660
19780
|
#
|
19661
19781
|
# @!attribute [rw] name
|
19662
|
-
#
|
19782
|
+
# The display name of the column..
|
19663
19783
|
# @return [String]
|
19664
19784
|
#
|
19665
19785
|
# @!attribute [rw] description
|
@@ -19667,7 +19787,11 @@ module Aws::QuickSight
|
|
19667
19787
|
# @return [String]
|
19668
19788
|
#
|
19669
19789
|
# @!attribute [rw] type
|
19670
|
-
# The type.
|
19790
|
+
# The data type of the column.
|
19791
|
+
# @return [String]
|
19792
|
+
#
|
19793
|
+
# @!attribute [rw] sub_type
|
19794
|
+
# The sub data type of the column.
|
19671
19795
|
# @return [String]
|
19672
19796
|
#
|
19673
19797
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/OutputColumn AWS API Documentation
|
@@ -19675,7 +19799,8 @@ module Aws::QuickSight
|
|
19675
19799
|
class OutputColumn < Struct.new(
|
19676
19800
|
:name,
|
19677
19801
|
:description,
|
19678
|
-
:type
|
19802
|
+
:type,
|
19803
|
+
:sub_type)
|
19679
19804
|
SENSITIVE = []
|
19680
19805
|
include Aws::Structure
|
19681
19806
|
end
|
@@ -21124,6 +21249,10 @@ module Aws::QuickSight
|
|
21124
21249
|
# The cell styling options for the total of header cells.
|
21125
21250
|
# @return [Types::TableCellStyle]
|
21126
21251
|
#
|
21252
|
+
# @!attribute [rw] total_aggregation_options
|
21253
|
+
# The total aggregation options for each value field.
|
21254
|
+
# @return [Array<Types::TotalAggregationOption>]
|
21255
|
+
#
|
21127
21256
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PivotTotalOptions AWS API Documentation
|
21128
21257
|
#
|
21129
21258
|
class PivotTotalOptions < Struct.new(
|
@@ -21133,7 +21262,8 @@ module Aws::QuickSight
|
|
21133
21262
|
:custom_label,
|
21134
21263
|
:total_cell_style,
|
21135
21264
|
:value_cell_style,
|
21136
|
-
:metric_header_cell_style
|
21265
|
+
:metric_header_cell_style,
|
21266
|
+
:total_aggregation_options)
|
21137
21267
|
SENSITIVE = []
|
21138
21268
|
include Aws::Structure
|
21139
21269
|
end
|
@@ -21775,9 +21905,18 @@ module Aws::QuickSight
|
|
21775
21905
|
# The axis binding type of the reference line. Choose one of the
|
21776
21906
|
# following options:
|
21777
21907
|
#
|
21778
|
-
# * PrimaryY
|
21908
|
+
# * `PrimaryY`
|
21909
|
+
#
|
21910
|
+
# * `SecondaryY`
|
21911
|
+
# @return [String]
|
21912
|
+
#
|
21913
|
+
# @!attribute [rw] series_type
|
21914
|
+
# The series type of the reference line data configuration. Choose one
|
21915
|
+
# of the following options:
|
21916
|
+
#
|
21917
|
+
# * `BAR`
|
21779
21918
|
#
|
21780
|
-
# *
|
21919
|
+
# * `LINE`
|
21781
21920
|
# @return [String]
|
21782
21921
|
#
|
21783
21922
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ReferenceLineDataConfiguration AWS API Documentation
|
@@ -21785,7 +21924,8 @@ module Aws::QuickSight
|
|
21785
21924
|
class ReferenceLineDataConfiguration < Struct.new(
|
21786
21925
|
:static_configuration,
|
21787
21926
|
:dynamic_configuration,
|
21788
|
-
:axis_binding
|
21927
|
+
:axis_binding,
|
21928
|
+
:series_type)
|
21789
21929
|
SENSITIVE = []
|
21790
21930
|
include Aws::Structure
|
21791
21931
|
end
|
@@ -25028,6 +25168,36 @@ module Aws::QuickSight
|
|
25028
25168
|
include Aws::Structure
|
25029
25169
|
end
|
25030
25170
|
|
25171
|
+
# The parameters that are required to connect to a Starburst data
|
25172
|
+
# source.
|
25173
|
+
#
|
25174
|
+
# @!attribute [rw] host
|
25175
|
+
# The host name of the Starburst data source.
|
25176
|
+
# @return [String]
|
25177
|
+
#
|
25178
|
+
# @!attribute [rw] port
|
25179
|
+
# The port for the Starburst data source.
|
25180
|
+
# @return [Integer]
|
25181
|
+
#
|
25182
|
+
# @!attribute [rw] catalog
|
25183
|
+
# The catalog name for the Starburst data source.
|
25184
|
+
# @return [String]
|
25185
|
+
#
|
25186
|
+
# @!attribute [rw] product_type
|
25187
|
+
# The product type for the Starburst data source.
|
25188
|
+
# @return [String]
|
25189
|
+
#
|
25190
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StarburstParameters AWS API Documentation
|
25191
|
+
#
|
25192
|
+
class StarburstParameters < Struct.new(
|
25193
|
+
:host,
|
25194
|
+
:port,
|
25195
|
+
:catalog,
|
25196
|
+
:product_type)
|
25197
|
+
SENSITIVE = []
|
25198
|
+
include Aws::Structure
|
25199
|
+
end
|
25200
|
+
|
25031
25201
|
# @!attribute [rw] aws_account_id
|
25032
25202
|
# The ID of the Amazon Web Services account to export assets from.
|
25033
25203
|
# @return [String]
|
@@ -26455,6 +26625,10 @@ module Aws::QuickSight
|
|
26455
26625
|
# of each sheet.
|
26456
26626
|
# @return [Array<Types::Sheet>]
|
26457
26627
|
#
|
26628
|
+
# @!attribute [rw] options
|
26629
|
+
# An array of analysis level configurations.
|
26630
|
+
# @return [Types::AssetOptions]
|
26631
|
+
#
|
26458
26632
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TemplateVersion AWS API Documentation
|
26459
26633
|
#
|
26460
26634
|
class TemplateVersion < Struct.new(
|
@@ -26466,7 +26640,8 @@ module Aws::QuickSight
|
|
26466
26640
|
:description,
|
26467
26641
|
:source_entity_arn,
|
26468
26642
|
:theme_arn,
|
26469
|
-
:sheets
|
26643
|
+
:sheets,
|
26644
|
+
:options)
|
26470
26645
|
SENSITIVE = []
|
26471
26646
|
include Aws::Structure
|
26472
26647
|
end
|
@@ -26521,6 +26696,10 @@ module Aws::QuickSight
|
|
26521
26696
|
# The configuration for default analysis settings.
|
26522
26697
|
# @return [Types::AnalysisDefaults]
|
26523
26698
|
#
|
26699
|
+
# @!attribute [rw] options
|
26700
|
+
# An array of option definitions for a template.
|
26701
|
+
# @return [Types::AssetOptions]
|
26702
|
+
#
|
26524
26703
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TemplateVersionDefinition AWS API Documentation
|
26525
26704
|
#
|
26526
26705
|
class TemplateVersionDefinition < Struct.new(
|
@@ -26530,7 +26709,8 @@ module Aws::QuickSight
|
|
26530
26709
|
:parameter_declarations,
|
26531
26710
|
:filter_groups,
|
26532
26711
|
:column_configurations,
|
26533
|
-
:analysis_defaults
|
26712
|
+
:analysis_defaults,
|
26713
|
+
:options)
|
26534
26714
|
SENSITIVE = []
|
26535
26715
|
include Aws::Structure
|
26536
26716
|
end
|
@@ -27054,13 +27234,14 @@ module Aws::QuickSight
|
|
27054
27234
|
# @!attribute [rw] value
|
27055
27235
|
# The value of a `TimeEquality` filter.
|
27056
27236
|
#
|
27057
|
-
# This field is mutually exclusive to `
|
27237
|
+
# This field is mutually exclusive to `RollingDate` and
|
27238
|
+
# `ParameterName`.
|
27058
27239
|
# @return [Time]
|
27059
27240
|
#
|
27060
27241
|
# @!attribute [rw] parameter_name
|
27061
27242
|
# The parameter whose value should be used for the filter value.
|
27062
27243
|
#
|
27063
|
-
# This field is mutually exclusive to `Value`.
|
27244
|
+
# This field is mutually exclusive to `Value` and `RollingDate`.
|
27064
27245
|
# @return [String]
|
27065
27246
|
#
|
27066
27247
|
# @!attribute [rw] time_granularity
|
@@ -27068,6 +27249,12 @@ module Aws::QuickSight
|
|
27068
27249
|
# values.
|
27069
27250
|
# @return [String]
|
27070
27251
|
#
|
27252
|
+
# @!attribute [rw] rolling_date
|
27253
|
+
# The rolling date input for the `TimeEquality` filter.
|
27254
|
+
#
|
27255
|
+
# This field is mutually exclusive to `Value` and `ParameterName`.
|
27256
|
+
# @return [Types::RollingDateConfiguration]
|
27257
|
+
#
|
27071
27258
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TimeEqualityFilter AWS API Documentation
|
27072
27259
|
#
|
27073
27260
|
class TimeEqualityFilter < Struct.new(
|
@@ -27075,7 +27262,8 @@ module Aws::QuickSight
|
|
27075
27262
|
:column,
|
27076
27263
|
:value,
|
27077
27264
|
:parameter_name,
|
27078
|
-
:time_granularity
|
27265
|
+
:time_granularity,
|
27266
|
+
:rolling_date)
|
27079
27267
|
SENSITIVE = []
|
27080
27268
|
include Aws::Structure
|
27081
27269
|
end
|
@@ -28087,6 +28275,40 @@ module Aws::QuickSight
|
|
28087
28275
|
include Aws::Structure
|
28088
28276
|
end
|
28089
28277
|
|
28278
|
+
# An aggregation function that aggregates the total values of a measure.
|
28279
|
+
#
|
28280
|
+
# @!attribute [rw] simple_total_aggregation_function
|
28281
|
+
# A built in aggregation function for total values.
|
28282
|
+
# @return [String]
|
28283
|
+
#
|
28284
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TotalAggregationFunction AWS API Documentation
|
28285
|
+
#
|
28286
|
+
class TotalAggregationFunction < Struct.new(
|
28287
|
+
:simple_total_aggregation_function)
|
28288
|
+
SENSITIVE = []
|
28289
|
+
include Aws::Structure
|
28290
|
+
end
|
28291
|
+
|
28292
|
+
# The total aggregation settings map of a field id.
|
28293
|
+
#
|
28294
|
+
# @!attribute [rw] field_id
|
28295
|
+
# The field id that's associated with the total aggregation option.
|
28296
|
+
# @return [String]
|
28297
|
+
#
|
28298
|
+
# @!attribute [rw] total_aggregation_function
|
28299
|
+
# The total aggregation function that you want to set for a specified
|
28300
|
+
# field id.
|
28301
|
+
# @return [Types::TotalAggregationFunction]
|
28302
|
+
#
|
28303
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TotalAggregationOption AWS API Documentation
|
28304
|
+
#
|
28305
|
+
class TotalAggregationOption < Struct.new(
|
28306
|
+
:field_id,
|
28307
|
+
:total_aggregation_function)
|
28308
|
+
SENSITIVE = []
|
28309
|
+
include Aws::Structure
|
28310
|
+
end
|
28311
|
+
|
28090
28312
|
# The total options for a table visual.
|
28091
28313
|
#
|
28092
28314
|
# @!attribute [rw] totals_visibility
|
@@ -28109,6 +28331,10 @@ module Aws::QuickSight
|
|
28109
28331
|
# Cell styling options for the total cells.
|
28110
28332
|
# @return [Types::TableCellStyle]
|
28111
28333
|
#
|
28334
|
+
# @!attribute [rw] total_aggregation_options
|
28335
|
+
# The total aggregation settings for each value field.
|
28336
|
+
# @return [Array<Types::TotalAggregationOption>]
|
28337
|
+
#
|
28112
28338
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TotalOptions AWS API Documentation
|
28113
28339
|
#
|
28114
28340
|
class TotalOptions < Struct.new(
|
@@ -28116,7 +28342,8 @@ module Aws::QuickSight
|
|
28116
28342
|
:placement,
|
28117
28343
|
:scroll_status,
|
28118
28344
|
:custom_label,
|
28119
|
-
:total_cell_style
|
28345
|
+
:total_cell_style,
|
28346
|
+
:total_aggregation_options)
|
28120
28347
|
SENSITIVE = []
|
28121
28348
|
include Aws::Structure
|
28122
28349
|
end
|
@@ -28360,6 +28587,30 @@ module Aws::QuickSight
|
|
28360
28587
|
include Aws::Structure
|
28361
28588
|
end
|
28362
28589
|
|
28590
|
+
# The parameters that are required to connect to a Trino data source.
|
28591
|
+
#
|
28592
|
+
# @!attribute [rw] host
|
28593
|
+
# The host name of the Trino data source.
|
28594
|
+
# @return [String]
|
28595
|
+
#
|
28596
|
+
# @!attribute [rw] port
|
28597
|
+
# The port for the Trino data source.
|
28598
|
+
# @return [Integer]
|
28599
|
+
#
|
28600
|
+
# @!attribute [rw] catalog
|
28601
|
+
# The catalog name for the Trino data source.
|
28602
|
+
# @return [String]
|
28603
|
+
#
|
28604
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TrinoParameters AWS API Documentation
|
28605
|
+
#
|
28606
|
+
class TrinoParameters < Struct.new(
|
28607
|
+
:host,
|
28608
|
+
:port,
|
28609
|
+
:catalog)
|
28610
|
+
SENSITIVE = []
|
28611
|
+
include Aws::Structure
|
28612
|
+
end
|
28613
|
+
|
28363
28614
|
# The parameters for Twitter.
|
28364
28615
|
#
|
28365
28616
|
# @!attribute [rw] query
|
data/lib/aws-sdk-quicksight.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-quicksight
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.95.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|