aws-sdk-quicksight 1.87.0 → 1.89.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 +81 -25
- data/lib/aws-sdk-quicksight/client_api.rb +94 -14
- data/lib/aws-sdk-quicksight/types.rb +212 -33
- data/lib/aws-sdk-quicksight.rb +1 -1
- metadata +2 -2
@@ -91,6 +91,10 @@ module Aws::QuickSight
|
|
91
91
|
# The status of your account subscription.
|
92
92
|
# @return [String]
|
93
93
|
#
|
94
|
+
# @!attribute [rw] iam_identity_center_instance_arn
|
95
|
+
# The Amazon Resource Name (ARN) for the IAM Identity Center instance.
|
96
|
+
# @return [String]
|
97
|
+
#
|
94
98
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AccountInfo AWS API Documentation
|
95
99
|
#
|
96
100
|
class AccountInfo < Struct.new(
|
@@ -98,7 +102,8 @@ module Aws::QuickSight
|
|
98
102
|
:edition,
|
99
103
|
:notification_email,
|
100
104
|
:authentication_type,
|
101
|
-
:account_subscription_status
|
105
|
+
:account_subscription_status,
|
106
|
+
:iam_identity_center_instance_arn)
|
102
107
|
SENSITIVE = []
|
103
108
|
include Aws::Structure
|
104
109
|
end
|
@@ -267,6 +272,18 @@ module Aws::QuickSight
|
|
267
272
|
include Aws::Structure
|
268
273
|
end
|
269
274
|
|
275
|
+
# The configuration for applying a filter to all sheets. You can apply
|
276
|
+
# this filter to all visuals on every sheet.
|
277
|
+
#
|
278
|
+
# This is a union type structure. For this structure to be valid, only
|
279
|
+
# one of the attributes can be defined.
|
280
|
+
#
|
281
|
+
# @api private
|
282
|
+
#
|
283
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AllSheetsFilterScopeConfiguration AWS API Documentation
|
284
|
+
#
|
285
|
+
class AllSheetsFilterScopeConfiguration < Aws::EmptyStructure; end
|
286
|
+
|
270
287
|
# The parameters for OpenSearch.
|
271
288
|
#
|
272
289
|
# @!attribute [rw] domain
|
@@ -4524,12 +4541,11 @@ module Aws::QuickSight
|
|
4524
4541
|
# @return [String]
|
4525
4542
|
#
|
4526
4543
|
# @!attribute [rw] member_id
|
4527
|
-
# The ID of the asset
|
4544
|
+
# The ID of the asset that you want to add to the folder.
|
4528
4545
|
# @return [String]
|
4529
4546
|
#
|
4530
4547
|
# @!attribute [rw] member_type
|
4531
|
-
# The type of the
|
4532
|
-
# `DATASET`.
|
4548
|
+
# The member type of the asset that you want to add to a folder.
|
4533
4549
|
# @return [String]
|
4534
4550
|
#
|
4535
4551
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateFolderMembershipRequest AWS API Documentation
|
@@ -4600,6 +4616,11 @@ module Aws::QuickSight
|
|
4600
4616
|
# Tags for the folder.
|
4601
4617
|
# @return [Array<Types::Tag>]
|
4602
4618
|
#
|
4619
|
+
# @!attribute [rw] sharing_model
|
4620
|
+
# An optional parameter that determines the sharing scope of the
|
4621
|
+
# folder. The default value for this parameter is `ACCOUNT`.
|
4622
|
+
# @return [String]
|
4623
|
+
#
|
4603
4624
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateFolderRequest AWS API Documentation
|
4604
4625
|
#
|
4605
4626
|
class CreateFolderRequest < Struct.new(
|
@@ -4609,7 +4630,8 @@ module Aws::QuickSight
|
|
4609
4630
|
:folder_type,
|
4610
4631
|
:parent_folder_arn,
|
4611
4632
|
:permissions,
|
4612
|
-
:tags
|
4633
|
+
:tags,
|
4634
|
+
:sharing_model)
|
4613
4635
|
SENSITIVE = []
|
4614
4636
|
include Aws::Structure
|
4615
4637
|
end
|
@@ -8640,13 +8662,11 @@ module Aws::QuickSight
|
|
8640
8662
|
# @return [String]
|
8641
8663
|
#
|
8642
8664
|
# @!attribute [rw] member_id
|
8643
|
-
# The ID of the asset
|
8644
|
-
# want to delete.
|
8665
|
+
# The ID of the asset that you want to delete.
|
8645
8666
|
# @return [String]
|
8646
8667
|
#
|
8647
8668
|
# @!attribute [rw] member_type
|
8648
|
-
# The type of the
|
8649
|
-
# `DATASET`
|
8669
|
+
# The member type of the asset that you want to delete from a folder.
|
8650
8670
|
# @return [String]
|
8651
8671
|
#
|
8652
8672
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteFolderMembershipRequest AWS API Documentation
|
@@ -10601,11 +10621,26 @@ module Aws::QuickSight
|
|
10601
10621
|
# The ID of the folder.
|
10602
10622
|
# @return [String]
|
10603
10623
|
#
|
10624
|
+
# @!attribute [rw] namespace
|
10625
|
+
# The namespace of the folder whose permissions you want described.
|
10626
|
+
# @return [String]
|
10627
|
+
#
|
10628
|
+
# @!attribute [rw] max_results
|
10629
|
+
# The maximum number of results to be returned per request.
|
10630
|
+
# @return [Integer]
|
10631
|
+
#
|
10632
|
+
# @!attribute [rw] next_token
|
10633
|
+
# A pagination token for the next set of results.
|
10634
|
+
# @return [String]
|
10635
|
+
#
|
10604
10636
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeFolderPermissionsRequest AWS API Documentation
|
10605
10637
|
#
|
10606
10638
|
class DescribeFolderPermissionsRequest < Struct.new(
|
10607
10639
|
:aws_account_id,
|
10608
|
-
:folder_id
|
10640
|
+
:folder_id,
|
10641
|
+
:namespace,
|
10642
|
+
:max_results,
|
10643
|
+
:next_token)
|
10609
10644
|
SENSITIVE = []
|
10610
10645
|
include Aws::Structure
|
10611
10646
|
end
|
@@ -10630,6 +10665,11 @@ module Aws::QuickSight
|
|
10630
10665
|
# The Amazon Web Services request ID for this operation.
|
10631
10666
|
# @return [String]
|
10632
10667
|
#
|
10668
|
+
# @!attribute [rw] next_token
|
10669
|
+
# The pagination token for the next set of results, or null if there
|
10670
|
+
# are no more results.
|
10671
|
+
# @return [String]
|
10672
|
+
#
|
10633
10673
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeFolderPermissionsResponse AWS API Documentation
|
10634
10674
|
#
|
10635
10675
|
class DescribeFolderPermissionsResponse < Struct.new(
|
@@ -10637,7 +10677,8 @@ module Aws::QuickSight
|
|
10637
10677
|
:folder_id,
|
10638
10678
|
:arn,
|
10639
10679
|
:permissions,
|
10640
|
-
:request_id
|
10680
|
+
:request_id,
|
10681
|
+
:next_token)
|
10641
10682
|
SENSITIVE = []
|
10642
10683
|
include Aws::Structure
|
10643
10684
|
end
|
@@ -10667,11 +10708,26 @@ module Aws::QuickSight
|
|
10667
10708
|
# The ID of the folder.
|
10668
10709
|
# @return [String]
|
10669
10710
|
#
|
10711
|
+
# @!attribute [rw] namespace
|
10712
|
+
# The namespace of the folder whose permissions you want described.
|
10713
|
+
# @return [String]
|
10714
|
+
#
|
10715
|
+
# @!attribute [rw] max_results
|
10716
|
+
# The maximum number of results to be returned per request.
|
10717
|
+
# @return [Integer]
|
10718
|
+
#
|
10719
|
+
# @!attribute [rw] next_token
|
10720
|
+
# A pagination token for the next set of results.
|
10721
|
+
# @return [String]
|
10722
|
+
#
|
10670
10723
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeFolderResolvedPermissionsRequest AWS API Documentation
|
10671
10724
|
#
|
10672
10725
|
class DescribeFolderResolvedPermissionsRequest < Struct.new(
|
10673
10726
|
:aws_account_id,
|
10674
|
-
:folder_id
|
10727
|
+
:folder_id,
|
10728
|
+
:namespace,
|
10729
|
+
:max_results,
|
10730
|
+
:next_token)
|
10675
10731
|
SENSITIVE = []
|
10676
10732
|
include Aws::Structure
|
10677
10733
|
end
|
@@ -10696,6 +10752,11 @@ module Aws::QuickSight
|
|
10696
10752
|
# The Amazon Web Services request ID for this operation.
|
10697
10753
|
# @return [String]
|
10698
10754
|
#
|
10755
|
+
# @!attribute [rw] next_token
|
10756
|
+
# A pagination token for the next set of results, or null if there are
|
10757
|
+
# no more results.
|
10758
|
+
# @return [String]
|
10759
|
+
#
|
10699
10760
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeFolderResolvedPermissionsResponse AWS API Documentation
|
10700
10761
|
#
|
10701
10762
|
class DescribeFolderResolvedPermissionsResponse < Struct.new(
|
@@ -10703,7 +10764,8 @@ module Aws::QuickSight
|
|
10703
10764
|
:folder_id,
|
10704
10765
|
:arn,
|
10705
10766
|
:permissions,
|
10706
|
-
:request_id
|
10767
|
+
:request_id,
|
10768
|
+
:next_token)
|
10707
10769
|
SENSITIVE = []
|
10708
10770
|
include Aws::Structure
|
10709
10771
|
end
|
@@ -13029,10 +13091,15 @@ module Aws::QuickSight
|
|
13029
13091
|
# The configuration for applying a filter to specific sheets.
|
13030
13092
|
# @return [Types::SelectedSheetsFilterScopeConfiguration]
|
13031
13093
|
#
|
13094
|
+
# @!attribute [rw] all_sheets
|
13095
|
+
# The configuration for applying a filter to all sheets.
|
13096
|
+
# @return [Types::AllSheetsFilterScopeConfiguration]
|
13097
|
+
#
|
13032
13098
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FilterScopeConfiguration AWS API Documentation
|
13033
13099
|
#
|
13034
13100
|
class FilterScopeConfiguration < Struct.new(
|
13035
|
-
:selected_sheets
|
13101
|
+
:selected_sheets,
|
13102
|
+
:all_sheets)
|
13036
13103
|
SENSITIVE = []
|
13037
13104
|
include Aws::Structure
|
13038
13105
|
end
|
@@ -13200,6 +13267,10 @@ module Aws::QuickSight
|
|
13200
13267
|
# The time that the folder was last updated.
|
13201
13268
|
# @return [Time]
|
13202
13269
|
#
|
13270
|
+
# @!attribute [rw] sharing_model
|
13271
|
+
# The sharing scope of the folder.
|
13272
|
+
# @return [String]
|
13273
|
+
#
|
13203
13274
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Folder AWS API Documentation
|
13204
13275
|
#
|
13205
13276
|
class Folder < Struct.new(
|
@@ -13209,7 +13280,8 @@ module Aws::QuickSight
|
|
13209
13280
|
:folder_type,
|
13210
13281
|
:folder_path,
|
13211
13282
|
:created_time,
|
13212
|
-
:last_updated_time
|
13283
|
+
:last_updated_time,
|
13284
|
+
:sharing_model)
|
13213
13285
|
SENSITIVE = []
|
13214
13286
|
include Aws::Structure
|
13215
13287
|
end
|
@@ -13337,6 +13409,10 @@ module Aws::QuickSight
|
|
13337
13409
|
# The time that the folder was last updated.
|
13338
13410
|
# @return [Time]
|
13339
13411
|
#
|
13412
|
+
# @!attribute [rw] sharing_model
|
13413
|
+
# The sharing scope of the folder.
|
13414
|
+
# @return [String]
|
13415
|
+
#
|
13340
13416
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FolderSummary AWS API Documentation
|
13341
13417
|
#
|
13342
13418
|
class FolderSummary < Struct.new(
|
@@ -13345,7 +13421,8 @@ module Aws::QuickSight
|
|
13345
13421
|
:name,
|
13346
13422
|
:folder_type,
|
13347
13423
|
:created_time,
|
13348
|
-
:last_updated_time
|
13424
|
+
:last_updated_time,
|
13425
|
+
:sharing_model)
|
13349
13426
|
SENSITIVE = []
|
13350
13427
|
include Aws::Structure
|
13351
13428
|
end
|
@@ -20667,6 +20744,28 @@ module Aws::QuickSight
|
|
20667
20744
|
# is `VISIBLE`.
|
20668
20745
|
# @return [String]
|
20669
20746
|
#
|
20747
|
+
# @!attribute [rw] rows_layout
|
20748
|
+
# The layout for the row dimension headers of a pivot table. Choose
|
20749
|
+
# one of the following options.
|
20750
|
+
#
|
20751
|
+
# * `TABULAR`: (Default) Each row field is displayed in a separate
|
20752
|
+
# column.
|
20753
|
+
#
|
20754
|
+
# * `HIERARCHY`: All row fields are displayed in a single column.
|
20755
|
+
# Indentation is used to differentiate row headers of different
|
20756
|
+
# fields.
|
20757
|
+
# @return [String]
|
20758
|
+
#
|
20759
|
+
# @!attribute [rw] rows_label_options
|
20760
|
+
# The options for the label that is located above the row headers.
|
20761
|
+
# This option is only applicable when `RowsLayout` is set to
|
20762
|
+
# `HIERARCHY`.
|
20763
|
+
# @return [Types::PivotTableRowsLabelOptions]
|
20764
|
+
#
|
20765
|
+
# @!attribute [rw] default_cell_width
|
20766
|
+
# The default cell width of the pivot table.
|
20767
|
+
# @return [String]
|
20768
|
+
#
|
20670
20769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PivotTableOptions AWS API Documentation
|
20671
20770
|
#
|
20672
20771
|
class PivotTableOptions < Struct.new(
|
@@ -20679,7 +20778,10 @@ module Aws::QuickSight
|
|
20679
20778
|
:cell_style,
|
20680
20779
|
:row_field_names_style,
|
20681
20780
|
:row_alternate_color_options,
|
20682
|
-
:collapsed_row_dimensions_visibility
|
20781
|
+
:collapsed_row_dimensions_visibility,
|
20782
|
+
:rows_layout,
|
20783
|
+
:rows_label_options,
|
20784
|
+
:default_cell_width)
|
20683
20785
|
SENSITIVE = []
|
20684
20786
|
include Aws::Structure
|
20685
20787
|
end
|
@@ -20703,6 +20805,26 @@ module Aws::QuickSight
|
|
20703
20805
|
include Aws::Structure
|
20704
20806
|
end
|
20705
20807
|
|
20808
|
+
# The options for the label thta is located above the row headers. This
|
20809
|
+
# option is only applicable when `RowsLayout` is set to `HIERARCHY`.
|
20810
|
+
#
|
20811
|
+
# @!attribute [rw] visibility
|
20812
|
+
# The visibility of the rows label.
|
20813
|
+
# @return [String]
|
20814
|
+
#
|
20815
|
+
# @!attribute [rw] custom_label
|
20816
|
+
# The custom label string for the rows label.
|
20817
|
+
# @return [String]
|
20818
|
+
#
|
20819
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PivotTableRowsLabelOptions AWS API Documentation
|
20820
|
+
#
|
20821
|
+
class PivotTableRowsLabelOptions < Struct.new(
|
20822
|
+
:visibility,
|
20823
|
+
:custom_label)
|
20824
|
+
SENSITIVE = []
|
20825
|
+
include Aws::Structure
|
20826
|
+
end
|
20827
|
+
|
20706
20828
|
# The sort by field for the field sort options.
|
20707
20829
|
#
|
20708
20830
|
# @!attribute [rw] field
|
@@ -22434,11 +22556,16 @@ module Aws::QuickSight
|
|
22434
22556
|
# Determines the list of row alternate colors.
|
22435
22557
|
# @return [Array<String>]
|
22436
22558
|
#
|
22559
|
+
# @!attribute [rw] use_primary_background_color
|
22560
|
+
# The primary background color options for alternate rows.
|
22561
|
+
# @return [String]
|
22562
|
+
#
|
22437
22563
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RowAlternateColorOptions AWS API Documentation
|
22438
22564
|
#
|
22439
22565
|
class RowAlternateColorOptions < Struct.new(
|
22440
22566
|
:status,
|
22441
|
-
:row_alternate_colors
|
22567
|
+
:row_alternate_colors,
|
22568
|
+
:use_primary_background_color)
|
22442
22569
|
SENSITIVE = []
|
22443
22570
|
include Aws::Structure
|
22444
22571
|
end
|
@@ -24342,12 +24469,12 @@ module Aws::QuickSight
|
|
24342
24469
|
# information on the dashboard sheet that is exported. These objects
|
24343
24470
|
# provide information about the snapshot artifacts that are generated
|
24344
24471
|
# during the job. This structure can hold a maximum of 5 CSV
|
24345
|
-
# configurations or 1 configuration for PDF.
|
24472
|
+
# configurations, 5 Excel configurations, or 1 configuration for PDF.
|
24346
24473
|
# @return [Array<Types::SnapshotFileSheetSelection>]
|
24347
24474
|
#
|
24348
24475
|
# @!attribute [rw] format_type
|
24349
24476
|
# The format of the snapshot file to be generated. You can choose
|
24350
|
-
# between `CSV`
|
24477
|
+
# between `CSV`, `Excel`, or `PDF`.
|
24351
24478
|
# @return [String]
|
24352
24479
|
#
|
24353
24480
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SnapshotFile AWS API Documentation
|
@@ -24380,7 +24507,7 @@ module Aws::QuickSight
|
|
24380
24507
|
#
|
24381
24508
|
# @!attribute [rw] sheet_id
|
24382
24509
|
# The sheet ID of the dashboard to generate the snapshot artifact
|
24383
|
-
# from. This value is required for CSV
|
24510
|
+
# from. This value is required for CSV, Excel, and PDF format types.
|
24384
24511
|
# @return [String]
|
24385
24512
|
#
|
24386
24513
|
# @!attribute [rw] selection_scope
|
@@ -24392,14 +24519,18 @@ module Aws::QuickSight
|
|
24392
24519
|
# value is required if the snapshot is a PDF.
|
24393
24520
|
#
|
24394
24521
|
# * `SELECTED_VISUALS` - Select the visual that you want to add to the
|
24395
|
-
# snapshot. This value is required if the snapshot is a CSV
|
24522
|
+
# snapshot. This value is required if the snapshot is a CSV or Excel
|
24523
|
+
# workbook.
|
24396
24524
|
# @return [String]
|
24397
24525
|
#
|
24398
24526
|
# @!attribute [rw] visual_ids
|
24399
24527
|
# A structure that lists the IDs of the visuals in the selected sheet.
|
24400
24528
|
# Supported visual types are table, pivot table visuals. This value is
|
24401
|
-
# required if you are generating a CSV. This value
|
24402
|
-
# of 1 visual ID
|
24529
|
+
# required if you are generating a CSV or Excel workbook. This value
|
24530
|
+
# supports a maximum of 1 visual ID for CSV and 5 visual IDs across up
|
24531
|
+
# to 5 sheet selections for Excel. If you are generating an Excel
|
24532
|
+
# workbook, the order of the visual IDs provided in this structure
|
24533
|
+
# determines the order of the worksheets in the Excel file.
|
24403
24534
|
# @return [Array<String>]
|
24404
24535
|
#
|
24405
24536
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SnapshotFileSheetSelection AWS API Documentation
|
@@ -25125,6 +25256,10 @@ module Aws::QuickSight
|
|
25125
25256
|
# The cell styling options for the subtotals of header cells.
|
25126
25257
|
# @return [Types::TableCellStyle]
|
25127
25258
|
#
|
25259
|
+
# @!attribute [rw] style_targets
|
25260
|
+
# The style targets options for subtotals.
|
25261
|
+
# @return [Array<Types::TableStyleTarget>]
|
25262
|
+
#
|
25128
25263
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SubtotalOptions AWS API Documentation
|
25129
25264
|
#
|
25130
25265
|
class SubtotalOptions < Struct.new(
|
@@ -25134,7 +25269,8 @@ module Aws::QuickSight
|
|
25134
25269
|
:field_level_options,
|
25135
25270
|
:total_cell_style,
|
25136
25271
|
:value_cell_style,
|
25137
|
-
:metric_header_cell_style
|
25272
|
+
:metric_header_cell_style,
|
25273
|
+
:style_targets)
|
25138
25274
|
SENSITIVE = []
|
25139
25275
|
include Aws::Structure
|
25140
25276
|
end
|
@@ -25471,21 +25607,27 @@ module Aws::QuickSight
|
|
25471
25607
|
include Aws::Structure
|
25472
25608
|
end
|
25473
25609
|
|
25474
|
-
# The field options
|
25610
|
+
# The field options of a table visual.
|
25475
25611
|
#
|
25476
25612
|
# @!attribute [rw] selected_field_options
|
25477
|
-
# The
|
25613
|
+
# The field options to be configured to a table.
|
25478
25614
|
# @return [Array<Types::TableFieldOption>]
|
25479
25615
|
#
|
25480
25616
|
# @!attribute [rw] order
|
25481
|
-
# The order of field IDs
|
25617
|
+
# The order of the field IDs that are configured as field options for
|
25618
|
+
# a table visual.
|
25482
25619
|
# @return [Array<String>]
|
25483
25620
|
#
|
25621
|
+
# @!attribute [rw] pinned_field_options
|
25622
|
+
# The settings for the pinned columns of a table visual.
|
25623
|
+
# @return [Types::TablePinnedFieldOptions]
|
25624
|
+
#
|
25484
25625
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TableFieldOptions AWS API Documentation
|
25485
25626
|
#
|
25486
25627
|
class TableFieldOptions < Struct.new(
|
25487
25628
|
:selected_field_options,
|
25488
|
-
:order
|
25629
|
+
:order,
|
25630
|
+
:pinned_field_options)
|
25489
25631
|
SENSITIVE = []
|
25490
25632
|
include Aws::Structure
|
25491
25633
|
end
|
@@ -25595,6 +25737,20 @@ module Aws::QuickSight
|
|
25595
25737
|
include Aws::Structure
|
25596
25738
|
end
|
25597
25739
|
|
25740
|
+
# The settings for the pinned columns of a table visual.
|
25741
|
+
#
|
25742
|
+
# @!attribute [rw] pinned_left_fields
|
25743
|
+
# A list of columns to be pinned to the left of a table visual.
|
25744
|
+
# @return [Array<String>]
|
25745
|
+
#
|
25746
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TablePinnedFieldOptions AWS API Documentation
|
25747
|
+
#
|
25748
|
+
class TablePinnedFieldOptions < Struct.new(
|
25749
|
+
:pinned_left_fields)
|
25750
|
+
SENSITIVE = []
|
25751
|
+
include Aws::Structure
|
25752
|
+
end
|
25753
|
+
|
25598
25754
|
# The conditional formatting of a table row.
|
25599
25755
|
#
|
25600
25756
|
# @!attribute [rw] background_color
|
@@ -25674,6 +25830,20 @@ module Aws::QuickSight
|
|
25674
25830
|
include Aws::Structure
|
25675
25831
|
end
|
25676
25832
|
|
25833
|
+
# The table style target.
|
25834
|
+
#
|
25835
|
+
# @!attribute [rw] cell_type
|
25836
|
+
# The cell type of the table style target.
|
25837
|
+
# @return [String]
|
25838
|
+
#
|
25839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TableStyleTarget AWS API Documentation
|
25840
|
+
#
|
25841
|
+
class TableStyleTarget < Struct.new(
|
25842
|
+
:cell_type)
|
25843
|
+
SENSITIVE = []
|
25844
|
+
include Aws::Structure
|
25845
|
+
end
|
25846
|
+
|
25677
25847
|
# The unaggregated field well for the table.
|
25678
25848
|
#
|
25679
25849
|
# @!attribute [rw] values
|
@@ -27082,6 +27252,10 @@ module Aws::QuickSight
|
|
27082
27252
|
# The other names or aliases for the calculated field cell value.
|
27083
27253
|
# @return [Array<Types::CellValueSynonym>]
|
27084
27254
|
#
|
27255
|
+
# @!attribute [rw] non_additive
|
27256
|
+
# The non additive for the table style target.
|
27257
|
+
# @return [Boolean]
|
27258
|
+
#
|
27085
27259
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TopicCalculatedField AWS API Documentation
|
27086
27260
|
#
|
27087
27261
|
class TopicCalculatedField < Struct.new(
|
@@ -27100,7 +27274,8 @@ module Aws::QuickSight
|
|
27100
27274
|
:allowed_aggregations,
|
27101
27275
|
:not_allowed_aggregations,
|
27102
27276
|
:never_aggregate_in_filter,
|
27103
|
-
:cell_value_synonyms
|
27277
|
+
:cell_value_synonyms,
|
27278
|
+
:non_additive)
|
27104
27279
|
SENSITIVE = [:expression]
|
27105
27280
|
include Aws::Structure
|
27106
27281
|
end
|
@@ -27189,8 +27364,7 @@ module Aws::QuickSight
|
|
27189
27364
|
#
|
27190
27365
|
# @!attribute [rw] aggregation
|
27191
27366
|
# The type of aggregation that is performed on the column data when
|
27192
|
-
# it's queried.
|
27193
|
-
# `MIN`, `COUNT`, `DISTINCT_COUNT`, and `AVERAGE`.
|
27367
|
+
# it's queried.
|
27194
27368
|
# @return [String]
|
27195
27369
|
#
|
27196
27370
|
# @!attribute [rw] is_included_in_topic
|
@@ -27244,6 +27418,10 @@ module Aws::QuickSight
|
|
27244
27418
|
# The other names or aliases for the column cell value.
|
27245
27419
|
# @return [Array<Types::CellValueSynonym>]
|
27246
27420
|
#
|
27421
|
+
# @!attribute [rw] non_additive
|
27422
|
+
# The non additive value for the column.
|
27423
|
+
# @return [Boolean]
|
27424
|
+
#
|
27247
27425
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TopicColumn AWS API Documentation
|
27248
27426
|
#
|
27249
27427
|
class TopicColumn < Struct.new(
|
@@ -27262,7 +27440,8 @@ module Aws::QuickSight
|
|
27262
27440
|
:not_allowed_aggregations,
|
27263
27441
|
:default_formatting,
|
27264
27442
|
:never_aggregate_in_filter,
|
27265
|
-
:cell_value_synonyms
|
27443
|
+
:cell_value_synonyms,
|
27444
|
+
:non_additive)
|
27266
27445
|
SENSITIVE = []
|
27267
27446
|
include Aws::Structure
|
27268
27447
|
end
|
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.89.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-08-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|