aws-sdk-quicksight 1.107.0 → 1.109.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1144,8 +1144,8 @@ module Aws::QuickSight
1144
1144
  end
1145
1145
 
1146
1146
  # The option to relax the validation that is required to export each
1147
- # asset. When `StrictModeForAllResource` is set to true, validation is
1148
- # skipped for specific UI errors.
1147
+ # asset. When `StrictModeForAllResource` is set to `false`, validation
1148
+ # is skipped for specific UI errors.
1149
1149
  #
1150
1150
  # @!attribute [rw] strict_mode_for_all_resources
1151
1151
  # A Boolean value that indicates whether to export resources under
@@ -1904,6 +1904,26 @@ module Aws::QuickSight
1904
1904
  include Aws::Structure
1905
1905
  end
1906
1906
 
1907
+ # Describes a warning that occurred during an Asset Bundle import job.
1908
+ #
1909
+ # @!attribute [rw] arn
1910
+ # The ARN of the resource that the warning occurred for.
1911
+ # @return [String]
1912
+ #
1913
+ # @!attribute [rw] message
1914
+ # A description of the warning that occurred during an Asset Bundle
1915
+ # import job.
1916
+ # @return [String]
1917
+ #
1918
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleImportJobWarning AWS API Documentation
1919
+ #
1920
+ class AssetBundleImportJobWarning < Struct.new(
1921
+ :arn,
1922
+ :message)
1923
+ SENSITIVE = []
1924
+ include Aws::Structure
1925
+ end
1926
+
1907
1927
  # The source of the asset bundle zip file that contains the data that
1908
1928
  # you want to import. The file must be in `QUICKSIGHT_JSON` format.
1909
1929
  #
@@ -3231,7 +3251,7 @@ module Aws::QuickSight
3231
3251
  include Aws::Structure
3232
3252
  end
3233
3253
 
3234
- # The numeric equality type drill down filter.
3254
+ # The category drill down filter.
3235
3255
  #
3236
3256
  # @!attribute [rw] column
3237
3257
  # The column that the filter is applied to.
@@ -3273,12 +3293,18 @@ module Aws::QuickSight
3273
3293
  # The configuration for a `CategoryFilter`.
3274
3294
  # @return [Types::CategoryFilterConfiguration]
3275
3295
  #
3296
+ # @!attribute [rw] default_filter_control_configuration
3297
+ # The default configurations for the associated controls. This applies
3298
+ # only for filters that are scoped to multiple sheets.
3299
+ # @return [Types::DefaultFilterControlConfiguration]
3300
+ #
3276
3301
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CategoryFilter AWS API Documentation
3277
3302
  #
3278
3303
  class CategoryFilter < Struct.new(
3279
3304
  :filter_id,
3280
3305
  :column,
3281
- :configuration)
3306
+ :configuration,
3307
+ :default_filter_control_configuration)
3282
3308
  SENSITIVE = []
3283
3309
  include Aws::Structure
3284
3310
  end
@@ -8958,6 +8984,165 @@ module Aws::QuickSight
8958
8984
  include Aws::Structure
8959
8985
  end
8960
8986
 
8987
+ # The default options that correspond to the filter control type of a
8988
+ # `DateTimePicker`.
8989
+ #
8990
+ # @!attribute [rw] type
8991
+ # The date time picker type of the
8992
+ # `DefaultDateTimePickerControlOptions`. Choose one of the following
8993
+ # options:
8994
+ #
8995
+ # * `SINGLE_VALUED`: The filter condition is a fixed date.
8996
+ #
8997
+ # * `DATE_RANGE`: The filter condition is a date time range.
8998
+ # @return [String]
8999
+ #
9000
+ # @!attribute [rw] display_options
9001
+ # The display options of a control.
9002
+ # @return [Types::DateTimePickerControlDisplayOptions]
9003
+ #
9004
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DefaultDateTimePickerControlOptions AWS API Documentation
9005
+ #
9006
+ class DefaultDateTimePickerControlOptions < Struct.new(
9007
+ :type,
9008
+ :display_options)
9009
+ SENSITIVE = []
9010
+ include Aws::Structure
9011
+ end
9012
+
9013
+ # The default configuration for all dependent controls of the filter.
9014
+ #
9015
+ # @!attribute [rw] title
9016
+ # The title of the `DefaultFilterControlConfiguration`. This title is
9017
+ # shared by all controls that are tied to this filter.
9018
+ # @return [String]
9019
+ #
9020
+ # @!attribute [rw] control_options
9021
+ # The control option for the `DefaultFilterControlConfiguration`.
9022
+ # @return [Types::DefaultFilterControlOptions]
9023
+ #
9024
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DefaultFilterControlConfiguration AWS API Documentation
9025
+ #
9026
+ class DefaultFilterControlConfiguration < Struct.new(
9027
+ :title,
9028
+ :control_options)
9029
+ SENSITIVE = []
9030
+ include Aws::Structure
9031
+ end
9032
+
9033
+ # The option that corresponds to the control type of the filter.
9034
+ #
9035
+ # @!attribute [rw] default_date_time_picker_options
9036
+ # The default options that correspond to the filter control type of a
9037
+ # `DateTimePicker`.
9038
+ # @return [Types::DefaultDateTimePickerControlOptions]
9039
+ #
9040
+ # @!attribute [rw] default_list_options
9041
+ # The default options that correspond to the `List` filter control
9042
+ # type.
9043
+ # @return [Types::DefaultFilterListControlOptions]
9044
+ #
9045
+ # @!attribute [rw] default_dropdown_options
9046
+ # The default options that correspond to the `Dropdown` filter control
9047
+ # type.
9048
+ # @return [Types::DefaultFilterDropDownControlOptions]
9049
+ #
9050
+ # @!attribute [rw] default_text_field_options
9051
+ # The default options that correspond to the `TextField` filter
9052
+ # control type.
9053
+ # @return [Types::DefaultTextFieldControlOptions]
9054
+ #
9055
+ # @!attribute [rw] default_text_area_options
9056
+ # The default options that correspond to the `TextArea` filter control
9057
+ # type.
9058
+ # @return [Types::DefaultTextAreaControlOptions]
9059
+ #
9060
+ # @!attribute [rw] default_slider_options
9061
+ # The default options that correspond to the `Slider` filter control
9062
+ # type.
9063
+ # @return [Types::DefaultSliderControlOptions]
9064
+ #
9065
+ # @!attribute [rw] default_relative_date_time_options
9066
+ # The default options that correspond to the `RelativeDateTime` filter
9067
+ # control type.
9068
+ # @return [Types::DefaultRelativeDateTimeControlOptions]
9069
+ #
9070
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DefaultFilterControlOptions AWS API Documentation
9071
+ #
9072
+ class DefaultFilterControlOptions < Struct.new(
9073
+ :default_date_time_picker_options,
9074
+ :default_list_options,
9075
+ :default_dropdown_options,
9076
+ :default_text_field_options,
9077
+ :default_text_area_options,
9078
+ :default_slider_options,
9079
+ :default_relative_date_time_options)
9080
+ SENSITIVE = []
9081
+ include Aws::Structure
9082
+ end
9083
+
9084
+ # The default options that correspond to the `Dropdown` filter control
9085
+ # type.
9086
+ #
9087
+ # @!attribute [rw] display_options
9088
+ # The display options of a control.
9089
+ # @return [Types::DropDownControlDisplayOptions]
9090
+ #
9091
+ # @!attribute [rw] type
9092
+ # The type of the `FilterDropDownControl`. Choose one of the following
9093
+ # options:
9094
+ #
9095
+ # * `MULTI_SELECT`: The user can select multiple entries from a
9096
+ # dropdown menu.
9097
+ #
9098
+ # * `SINGLE_SELECT`: The user can select a single entry from a
9099
+ # dropdown menu.
9100
+ # @return [String]
9101
+ #
9102
+ # @!attribute [rw] selectable_values
9103
+ # A list of selectable values that are used in a control.
9104
+ # @return [Types::FilterSelectableValues]
9105
+ #
9106
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DefaultFilterDropDownControlOptions AWS API Documentation
9107
+ #
9108
+ class DefaultFilterDropDownControlOptions < Struct.new(
9109
+ :display_options,
9110
+ :type,
9111
+ :selectable_values)
9112
+ SENSITIVE = []
9113
+ include Aws::Structure
9114
+ end
9115
+
9116
+ # The default options that correspond to the `List` filter control type.
9117
+ #
9118
+ # @!attribute [rw] display_options
9119
+ # The display options of a control.
9120
+ # @return [Types::ListControlDisplayOptions]
9121
+ #
9122
+ # @!attribute [rw] type
9123
+ # The type of the `DefaultFilterListControlOptions`. Choose one of the
9124
+ # following options:
9125
+ #
9126
+ # * `MULTI_SELECT`: The user can select multiple entries from the
9127
+ # list.
9128
+ #
9129
+ # * `SINGLE_SELECT`: The user can select a single entry from the list.
9130
+ # @return [String]
9131
+ #
9132
+ # @!attribute [rw] selectable_values
9133
+ # A list of selectable values that are used in a control.
9134
+ # @return [Types::FilterSelectableValues]
9135
+ #
9136
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DefaultFilterListControlOptions AWS API Documentation
9137
+ #
9138
+ class DefaultFilterListControlOptions < Struct.new(
9139
+ :display_options,
9140
+ :type,
9141
+ :selectable_values)
9142
+ SENSITIVE = []
9143
+ include Aws::Structure
9144
+ end
9145
+
8961
9146
  # A structure that represents a default formatting definition.
8962
9147
  #
8963
9148
  # @!attribute [rw] display_format
@@ -9072,6 +9257,21 @@ module Aws::QuickSight
9072
9257
  include Aws::Structure
9073
9258
  end
9074
9259
 
9260
+ # The default options that correspond to the `RelativeDateTime` filter
9261
+ # control type.
9262
+ #
9263
+ # @!attribute [rw] display_options
9264
+ # The display options of a control.
9265
+ # @return [Types::RelativeDateTimeControlDisplayOptions]
9266
+ #
9267
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DefaultRelativeDateTimeControlOptions AWS API Documentation
9268
+ #
9269
+ class DefaultRelativeDateTimeControlOptions < Struct.new(
9270
+ :display_options)
9271
+ SENSITIVE = []
9272
+ include Aws::Structure
9273
+ end
9274
+
9075
9275
  # The options that determine the default settings for a section-based
9076
9276
  # layout configuration.
9077
9277
  #
@@ -9088,6 +9288,81 @@ module Aws::QuickSight
9088
9288
  include Aws::Structure
9089
9289
  end
9090
9290
 
9291
+ # The default options that correspond to the `Slider` filter control
9292
+ # type.
9293
+ #
9294
+ # @!attribute [rw] display_options
9295
+ # The display options of a control.
9296
+ # @return [Types::SliderControlDisplayOptions]
9297
+ #
9298
+ # @!attribute [rw] type
9299
+ # The type of the `DefaultSliderControlOptions`. Choose one of the
9300
+ # following options:
9301
+ #
9302
+ # * `SINGLE_POINT`: Filter against(equals) a single data point.
9303
+ #
9304
+ # * `RANGE`: Filter data that is in a specified range.
9305
+ # @return [String]
9306
+ #
9307
+ # @!attribute [rw] maximum_value
9308
+ # The larger value that is displayed at the right of the slider.
9309
+ # @return [Float]
9310
+ #
9311
+ # @!attribute [rw] minimum_value
9312
+ # The smaller value that is displayed at the left of the slider.
9313
+ # @return [Float]
9314
+ #
9315
+ # @!attribute [rw] step_size
9316
+ # The number of increments that the slider bar is divided into.
9317
+ # @return [Float]
9318
+ #
9319
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DefaultSliderControlOptions AWS API Documentation
9320
+ #
9321
+ class DefaultSliderControlOptions < Struct.new(
9322
+ :display_options,
9323
+ :type,
9324
+ :maximum_value,
9325
+ :minimum_value,
9326
+ :step_size)
9327
+ SENSITIVE = []
9328
+ include Aws::Structure
9329
+ end
9330
+
9331
+ # The default options that correspond to the `TextArea` filter control
9332
+ # type.
9333
+ #
9334
+ # @!attribute [rw] delimiter
9335
+ # The delimiter that is used to separate the lines in text.
9336
+ # @return [String]
9337
+ #
9338
+ # @!attribute [rw] display_options
9339
+ # The display options of a control.
9340
+ # @return [Types::TextAreaControlDisplayOptions]
9341
+ #
9342
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DefaultTextAreaControlOptions AWS API Documentation
9343
+ #
9344
+ class DefaultTextAreaControlOptions < Struct.new(
9345
+ :delimiter,
9346
+ :display_options)
9347
+ SENSITIVE = []
9348
+ include Aws::Structure
9349
+ end
9350
+
9351
+ # The default options that correspond to the `TextField` filter control
9352
+ # type.
9353
+ #
9354
+ # @!attribute [rw] display_options
9355
+ # The display options of a control.
9356
+ # @return [Types::TextFieldControlDisplayOptions]
9357
+ #
9358
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DefaultTextFieldControlOptions AWS API Documentation
9359
+ #
9360
+ class DefaultTextFieldControlOptions < Struct.new(
9361
+ :display_options)
9362
+ SENSITIVE = []
9363
+ include Aws::Structure
9364
+ end
9365
+
9091
9366
  # @!attribute [rw] aws_account_id
9092
9367
  # The ID for the Amazon Web Services account that you want to delete
9093
9368
  # Amazon QuickSight customizations from in this Amazon Web Services
@@ -10879,6 +11154,11 @@ module Aws::QuickSight
10879
11154
  # import.
10880
11155
  # @return [Types::AssetBundleImportJobOverrideValidationStrategy]
10881
11156
  #
11157
+ # @!attribute [rw] warnings
11158
+ # An array of warning records that describe all permitted errors that
11159
+ # are encountered during the import job.
11160
+ # @return [Array<Types::AssetBundleImportJobWarning>]
11161
+ #
10882
11162
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAssetBundleImportJobResponse AWS API Documentation
10883
11163
  #
10884
11164
  class DescribeAssetBundleImportJobResponse < Struct.new(
@@ -10896,7 +11176,8 @@ module Aws::QuickSight
10896
11176
  :status,
10897
11177
  :override_permissions,
10898
11178
  :override_tags,
10899
- :override_validation_strategy)
11179
+ :override_validation_strategy,
11180
+ :warnings)
10900
11181
  SENSITIVE = []
10901
11182
  include Aws::Structure
10902
11183
  end
@@ -13724,6 +14005,11 @@ module Aws::QuickSight
13724
14005
  # date.
13725
14006
  # @return [Types::FilterRelativeDateTimeControl]
13726
14007
  #
14008
+ # @!attribute [rw] cross_sheet
14009
+ # A control from a filter that is scoped across more than one sheet.
14010
+ # This represents your filter control on a sheet
14011
+ # @return [Types::FilterCrossSheetControl]
14012
+ #
13727
14013
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FilterControl AWS API Documentation
13728
14014
  #
13729
14015
  class FilterControl < Struct.new(
@@ -13733,7 +14019,35 @@ module Aws::QuickSight
13733
14019
  :text_field,
13734
14020
  :text_area,
13735
14021
  :slider,
13736
- :relative_date_time)
14022
+ :relative_date_time,
14023
+ :cross_sheet)
14024
+ SENSITIVE = []
14025
+ include Aws::Structure
14026
+ end
14027
+
14028
+ # A control from a filter that is scoped across more than one sheet.
14029
+ # This represents your filter control on a sheet
14030
+ #
14031
+ # @!attribute [rw] filter_control_id
14032
+ # The ID of the `FilterCrossSheetControl`.
14033
+ # @return [String]
14034
+ #
14035
+ # @!attribute [rw] source_filter_id
14036
+ # The source filter ID of the `FilterCrossSheetControl`.
14037
+ # @return [String]
14038
+ #
14039
+ # @!attribute [rw] cascading_control_configuration
14040
+ # The values that are displayed in a control can be configured to only
14041
+ # show values that are valid based on what's selected in other
14042
+ # controls.
14043
+ # @return [Types::CascadingControlConfiguration]
14044
+ #
14045
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FilterCrossSheetControl AWS API Documentation
14046
+ #
14047
+ class FilterCrossSheetControl < Struct.new(
14048
+ :filter_control_id,
14049
+ :source_filter_id,
14050
+ :cascading_control_configuration)
13737
14051
  SENSITIVE = []
13738
14052
  include Aws::Structure
13739
14053
  end
@@ -13757,12 +14071,14 @@ module Aws::QuickSight
13757
14071
  # @return [Types::DateTimePickerControlDisplayOptions]
13758
14072
  #
13759
14073
  # @!attribute [rw] type
13760
- # The date time picker type of a `FilterDateTimePickerControl`. Choose
13761
- # one of the following options:
14074
+ # The type of the `FilterDropDownControl`. Choose one of the following
14075
+ # options:
13762
14076
  #
13763
- # * `SINGLE_VALUED`: The filter condition is a fixed date.
14077
+ # * `MULTI_SELECT`: The user can select multiple entries from a
14078
+ # dropdown menu.
13764
14079
  #
13765
- # * `DATE_RANGE`: The filter condition is a date time range.
14080
+ # * `SINGLE_SELECT`: The user can select a single entry from a
14081
+ # dropdown menu.
13766
14082
  # @return [String]
13767
14083
  #
13768
14084
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FilterDateTimePickerControl AWS API Documentation
@@ -13945,7 +14261,7 @@ module Aws::QuickSight
13945
14261
  # @return [Types::ListControlDisplayOptions]
13946
14262
  #
13947
14263
  # @!attribute [rw] type
13948
- # The type of `FilterListControl`. Choose one of the following
14264
+ # The type of the `FilterListControl`. Choose one of the following
13949
14265
  # options:
13950
14266
  #
13951
14267
  # * `MULTI_SELECT`: The user can select multiple entries from the
@@ -14137,7 +14453,7 @@ module Aws::QuickSight
14137
14453
  # @return [Types::SliderControlDisplayOptions]
14138
14454
  #
14139
14455
  # @!attribute [rw] type
14140
- # The type of `FilterSliderControl`. Choose one of the following
14456
+ # The type of the `FilterSliderControl`. Choose one of the following
14141
14457
  # options:
14142
14458
  #
14143
14459
  # * `SINGLE_POINT`: Filter against(equals) a single data point.
@@ -14146,11 +14462,11 @@ module Aws::QuickSight
14146
14462
  # @return [String]
14147
14463
  #
14148
14464
  # @!attribute [rw] maximum_value
14149
- # The smaller value that is displayed at the left of the slider.
14465
+ # The larger value that is displayed at the right of the slider.
14150
14466
  # @return [Float]
14151
14467
  #
14152
14468
  # @!attribute [rw] minimum_value
14153
- # The larger value that is displayed at the right of the slider.
14469
+ # The smaller value that is displayed at the left of the slider.
14154
14470
  # @return [Float]
14155
14471
  #
14156
14472
  # @!attribute [rw] step_size
@@ -20464,7 +20780,7 @@ module Aws::QuickSight
20464
20780
  include Aws::Structure
20465
20781
  end
20466
20782
 
20467
- # The category drill down filter.
20783
+ # The numeric equality type drill down filter.
20468
20784
  #
20469
20785
  # @!attribute [rw] column
20470
20786
  # The column that the filter is applied to.
@@ -20532,6 +20848,11 @@ module Aws::QuickSight
20532
20848
  # * `NON_NULLS_ONLY`: Exclude null values from filtered results.
20533
20849
  # @return [String]
20534
20850
  #
20851
+ # @!attribute [rw] default_filter_control_configuration
20852
+ # The default configurations for the associated controls. This applies
20853
+ # only for filters that are scoped to multiple sheets.
20854
+ # @return [Types::DefaultFilterControlConfiguration]
20855
+ #
20535
20856
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/NumericEqualityFilter AWS API Documentation
20536
20857
  #
20537
20858
  class NumericEqualityFilter < Struct.new(
@@ -20542,7 +20863,8 @@ module Aws::QuickSight
20542
20863
  :match_operator,
20543
20864
  :aggregation_function,
20544
20865
  :parameter_name,
20545
- :null_option)
20866
+ :null_option,
20867
+ :default_filter_control_configuration)
20546
20868
  SENSITIVE = []
20547
20869
  include Aws::Structure
20548
20870
  end
@@ -20629,6 +20951,11 @@ module Aws::QuickSight
20629
20951
  # * `NON_NULLS_ONLY`: Exclude null values from filtered results.
20630
20952
  # @return [String]
20631
20953
  #
20954
+ # @!attribute [rw] default_filter_control_configuration
20955
+ # The default configurations for the associated controls. This applies
20956
+ # only for filters that are scoped to multiple sheets.
20957
+ # @return [Types::DefaultFilterControlConfiguration]
20958
+ #
20632
20959
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/NumericRangeFilter AWS API Documentation
20633
20960
  #
20634
20961
  class NumericRangeFilter < Struct.new(
@@ -20640,7 +20967,8 @@ module Aws::QuickSight
20640
20967
  :range_maximum,
20641
20968
  :select_all_options,
20642
20969
  :aggregation_function,
20643
- :null_option)
20970
+ :null_option,
20971
+ :default_filter_control_configuration)
20644
20972
  SENSITIVE = []
20645
20973
  include Aws::Structure
20646
20974
  end
@@ -21214,11 +21542,11 @@ module Aws::QuickSight
21214
21542
  # @return [Types::SliderControlDisplayOptions]
21215
21543
  #
21216
21544
  # @!attribute [rw] maximum_value
21217
- # The smaller value that is displayed at the left of the slider.
21545
+ # The larger value that is displayed at the right of the slider.
21218
21546
  # @return [Float]
21219
21547
  #
21220
21548
  # @!attribute [rw] minimum_value
21221
- # The larger value that is displayed at the right of the slider.
21549
+ # The smaller value that is displayed at the left of the slider.
21222
21550
  # @return [Float]
21223
21551
  #
21224
21552
  # @!attribute [rw] step_size
@@ -23760,6 +24088,11 @@ module Aws::QuickSight
23760
24088
  # The configuration for the exclude period of the filter.
23761
24089
  # @return [Types::ExcludePeriodConfiguration]
23762
24090
  #
24091
+ # @!attribute [rw] default_filter_control_configuration
24092
+ # The default configurations for the associated controls. This applies
24093
+ # only for filters that are scoped to multiple sheets.
24094
+ # @return [Types::DefaultFilterControlConfiguration]
24095
+ #
23763
24096
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RelativeDatesFilter AWS API Documentation
23764
24097
  #
23765
24098
  class RelativeDatesFilter < Struct.new(
@@ -23772,7 +24105,8 @@ module Aws::QuickSight
23772
24105
  :relative_date_value,
23773
24106
  :parameter_name,
23774
24107
  :null_option,
23775
- :exclude_period_configuration)
24108
+ :exclude_period_configuration,
24109
+ :default_filter_control_configuration)
23776
24110
  SENSITIVE = []
23777
24111
  include Aws::Structure
23778
24112
  end
@@ -28398,6 +28732,11 @@ module Aws::QuickSight
28398
28732
  # This field is mutually exclusive to `Value` and `ParameterName`.
28399
28733
  # @return [Types::RollingDateConfiguration]
28400
28734
  #
28735
+ # @!attribute [rw] default_filter_control_configuration
28736
+ # The default configurations for the associated controls. This applies
28737
+ # only for filters that are scoped to multiple sheets.
28738
+ # @return [Types::DefaultFilterControlConfiguration]
28739
+ #
28401
28740
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TimeEqualityFilter AWS API Documentation
28402
28741
  #
28403
28742
  class TimeEqualityFilter < Struct.new(
@@ -28406,7 +28745,8 @@ module Aws::QuickSight
28406
28745
  :value,
28407
28746
  :parameter_name,
28408
28747
  :time_granularity,
28409
- :rolling_date)
28748
+ :rolling_date,
28749
+ :default_filter_control_configuration)
28410
28750
  SENSITIVE = []
28411
28751
  include Aws::Structure
28412
28752
  end
@@ -28491,6 +28831,11 @@ module Aws::QuickSight
28491
28831
  # values.
28492
28832
  # @return [String]
28493
28833
  #
28834
+ # @!attribute [rw] default_filter_control_configuration
28835
+ # The default configurations for the associated controls. This applies
28836
+ # only for filters that are scoped to multiple sheets.
28837
+ # @return [Types::DefaultFilterControlConfiguration]
28838
+ #
28494
28839
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TimeRangeFilter AWS API Documentation
28495
28840
  #
28496
28841
  class TimeRangeFilter < Struct.new(
@@ -28502,7 +28847,8 @@ module Aws::QuickSight
28502
28847
  :range_maximum_value,
28503
28848
  :null_option,
28504
28849
  :exclude_period_configuration,
28505
- :time_granularity)
28850
+ :time_granularity,
28851
+ :default_filter_control_configuration)
28506
28852
  SENSITIVE = []
28507
28853
  include Aws::Structure
28508
28854
  end
@@ -28614,6 +28960,11 @@ module Aws::QuickSight
28614
28960
  # The parameter whose value should be used for the filter value.
28615
28961
  # @return [String]
28616
28962
  #
28963
+ # @!attribute [rw] default_filter_control_configuration
28964
+ # The default configurations for the associated controls. This applies
28965
+ # only for filters that are scoped to multiple sheets.
28966
+ # @return [Types::DefaultFilterControlConfiguration]
28967
+ #
28617
28968
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TopBottomFilter AWS API Documentation
28618
28969
  #
28619
28970
  class TopBottomFilter < Struct.new(
@@ -28622,7 +28973,8 @@ module Aws::QuickSight
28622
28973
  :limit,
28623
28974
  :aggregation_sort_configurations,
28624
28975
  :time_granularity,
28625
- :parameter_name)
28976
+ :parameter_name,
28977
+ :default_filter_control_configuration)
28626
28978
  SENSITIVE = []
28627
28979
  include Aws::Structure
28628
28980
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-quicksight/customizations'
52
52
  # @!group service
53
53
  module Aws::QuickSight
54
54
 
55
- GEM_VERSION = '1.107.0'
55
+ GEM_VERSION = '1.109.0'
56
56
 
57
57
  end