aws-sdk-quicksight 1.107.0 → 1.108.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cdc57bf4dda44f9d48bc98b9cb4dc4ecbd04c908d150005323620f511817535b
4
- data.tar.gz: 99a0a31ae5e1877b817f60269886b7d6881aaca0dd229d98ea7a5cb32329d0a0
3
+ metadata.gz: b7b4cfebb6af16ae9cef259ccad2b6fc48c09eb28f7461aa2405da69bf616890
4
+ data.tar.gz: 3ff3b27cd2a79c1271aa5450c497fb5803ec40f0ad88d7e0da3e70fed0ee2561
5
5
  SHA512:
6
- metadata.gz: 494e300875359ad4bbc872bd9c876027b9db4c15387991d36f2ba2ce471ec76913737616ddb368039b21d8cf16de9b7f48f9506cb76300fd5d6ab53021c4da92
7
- data.tar.gz: 7ed6210020c04f144185f51228e6db31e27a1ae83de028b60767bebf3ca6cf799fa9f85f4b9d8cfdb89cdbb10812627d252b7851b39127ea45473a15085bf52c
6
+ metadata.gz: 3309b68d13da3a842d145fdef5ad80a579dc36c64e48ff441f873285ac5c6147822bb18942d40bd755e0406f8c6439ba9381ea75d6913b98b16eae5274b3bdb4
7
+ data.tar.gz: f12ff3a96e953b3c059d9d4df4398c20c8e04f31a8b3d51d1ce3c36b043d54f7415b572899232d6e3a73c92b0fb3cedd899c662fc35fff7c54438925c7de70c1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.108.0 (2024-04-18)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for the Cross Sheet Filter and Control features, and support for warnings in asset imports for any permitted errors encountered during execution
8
+
4
9
  1.107.0 (2024-04-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.107.0
1
+ 1.108.0
@@ -4479,7 +4479,7 @@ module Aws::QuickSight
4479
4479
  # resp.cloud_formation_override_property_configuration.data_sources #=> Array
4480
4480
  # resp.cloud_formation_override_property_configuration.data_sources[0].arn #=> String
4481
4481
  # resp.cloud_formation_override_property_configuration.data_sources[0].properties #=> Array
4482
- # resp.cloud_formation_override_property_configuration.data_sources[0].properties[0] #=> String, one of "Name", "DisableSsl", "SecretArn", "Username", "Password", "Domain", "WorkGroup", "Host", "Port", "Database", "DataSetName", "Catalog", "InstanceId", "ClusterId", "ManifestFileLocation", "Warehouse", "RoleArn"
4482
+ # resp.cloud_formation_override_property_configuration.data_sources[0].properties[0] #=> String, one of "Name", "DisableSsl", "SecretArn", "Username", "Password", "Domain", "WorkGroup", "Host", "Port", "Database", "DataSetName", "Catalog", "InstanceId", "ClusterId", "ManifestFileLocation", "Warehouse", "RoleArn", "ProductType"
4483
4483
  # resp.cloud_formation_override_property_configuration.data_sets #=> Array
4484
4484
  # resp.cloud_formation_override_property_configuration.data_sets[0].arn #=> String
4485
4485
  # resp.cloud_formation_override_property_configuration.data_sets[0].properties #=> Array
@@ -4545,6 +4545,7 @@ module Aws::QuickSight
4545
4545
  # * {Types::DescribeAssetBundleImportJobResponse#override_permissions #override_permissions} => Types::AssetBundleImportJobOverridePermissions
4546
4546
  # * {Types::DescribeAssetBundleImportJobResponse#override_tags #override_tags} => Types::AssetBundleImportJobOverrideTags
4547
4547
  # * {Types::DescribeAssetBundleImportJobResponse#override_validation_strategy #override_validation_strategy} => Types::AssetBundleImportJobOverrideValidationStrategy
4548
+ # * {Types::DescribeAssetBundleImportJobResponse#warnings #warnings} => Array<Types::AssetBundleImportJobWarning>
4548
4549
  #
4549
4550
  # @example Request syntax with placeholder values
4550
4551
  #
@@ -4754,6 +4755,9 @@ module Aws::QuickSight
4754
4755
  # resp.override_tags.dashboards[0].tags[0].key #=> String
4755
4756
  # resp.override_tags.dashboards[0].tags[0].value #=> String
4756
4757
  # resp.override_validation_strategy.strict_mode_for_all_resources #=> Boolean
4758
+ # resp.warnings #=> Array
4759
+ # resp.warnings[0].arn #=> String
4760
+ # resp.warnings[0].message #=> String
4757
4761
  #
4758
4762
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAssetBundleImportJob AWS API Documentation
4759
4763
  #
@@ -10064,7 +10068,7 @@ module Aws::QuickSight
10064
10068
  # data_sources: [
10065
10069
  # {
10066
10070
  # arn: "Arn", # required
10067
- # properties: ["Name"], # required, accepts Name, DisableSsl, SecretArn, Username, Password, Domain, WorkGroup, Host, Port, Database, DataSetName, Catalog, InstanceId, ClusterId, ManifestFileLocation, Warehouse, RoleArn
10071
+ # properties: ["Name"], # required, accepts Name, DisableSsl, SecretArn, Username, Password, Domain, WorkGroup, Host, Port, Database, DataSetName, Catalog, InstanceId, ClusterId, ManifestFileLocation, Warehouse, RoleArn, ProductType
10068
10072
  # },
10069
10073
  # ],
10070
10074
  # data_sets: [
@@ -10521,18 +10525,94 @@ module Aws::QuickSight
10521
10525
  req.send_request(options)
10522
10526
  end
10523
10527
 
10524
- # Starts an asynchronous job that generates a dashboard snapshot. You
10525
- # can request one of the following format configurations per API call.
10528
+ # Starts an asynchronous job that generates a snapshot of a dashboard's
10529
+ # output. You can request one or several of the following format
10530
+ # configurations in each API call.
10531
+ #
10532
+ # * 1 Paginated PDF
10533
+ #
10534
+ # * 1 Excel workbook that includes up to 5 table or pivot table visuals
10535
+ #
10536
+ # * 5 CSVs from table or pivot table visuals
10537
+ #
10538
+ # The status of a submitted job can be polled with the
10539
+ # `DescribeDashboardSnapshotJob` API. When you call the
10540
+ # `DescribeDashboardSnapshotJob` API, check the `JobStatus` field in the
10541
+ # response. Once the job reaches a `COMPLETED` or `FAILED` status, use
10542
+ # the `DescribeDashboardSnapshotJobResult` API to obtain the URLs for
10543
+ # the generated files. If the job fails, the
10544
+ # `DescribeDashboardSnapshotJobResult` API returns detailed information
10545
+ # about the error that occurred.
10546
+ #
10547
+ # **StartDashboardSnapshotJob API throttling**
10548
+ #
10549
+ # Amazon QuickSight utilizes API throttling to create a more consistent
10550
+ # user experience within a time span for customers when they call the
10551
+ # `StartDashboardSnapshotJob`. By default, 12 jobs can run
10552
+ # simlutaneously in one Amazon Web Services account and users can submit
10553
+ # up 10 API requests per second before an account is throttled. If an
10554
+ # overwhelming number of API requests are made by the same user in a
10555
+ # short period of time, Amazon QuickSight throttles the API calls to
10556
+ # maintin an optimal experience and reliability for all Amazon
10557
+ # QuickSight users.
10558
+ #
10559
+ # **Common throttling scenarios**
10560
+ #
10561
+ # The following list provides information about the most commin
10562
+ # throttling scenarios that can occur.
10563
+ #
10564
+ # * **A large number of `SnapshotExport` API jobs are running
10565
+ # simultaneously on an Amazon Web Services account.** When a new
10566
+ # `StartDashboardSnapshotJob` is created and there are already 12 jobs
10567
+ # with the `RUNNING` status, the new job request fails and returns a
10568
+ # `LimitExceededException` error. Wait for a current job to comlpete
10569
+ # before you resubmit the new job.
10570
+ #
10571
+ # * **A large number of API requests are submitted on an Amazon Web
10572
+ # Services account.** When a user makes more than 10 API calls to the
10573
+ # Amazon QuickSight API in one second, a `ThrottlingException` is
10574
+ # returned.
10575
+ #
10576
+ # If your use case requires a higher throttling limit, contact your
10577
+ # account admin or [Amazon Web ServicesSupport][1] to explore options to
10578
+ # tailor a more optimal expereince for your account.
10579
+ #
10580
+ # **Best practices to handle throttling**
10581
+ #
10582
+ # If your use case projects high levels of API traffic, try to reduce
10583
+ # the degree of frequency and parallelism of API calls as much as you
10584
+ # can to avoid throttling. You can also perform a timing test to
10585
+ # calculate an estimate for the total processing time of your projected
10586
+ # load that stays within the throttling limits of the Amazon QuickSight
10587
+ # APIs. For example, if your projected traffic is 100 snapshot jobs
10588
+ # before 12:00 PM per day, start 12 jobs in parallel and measure the
10589
+ # amount of time it takes to proccess all 12 jobs. Once you obtain the
10590
+ # result, multiply the duration by 9, for example `(12 minutes * 9 = 108
10591
+ # minutes)`. Use the new result to determine the latest time at which
10592
+ # the jobs need to be started to meet your target deadline.
10593
+ #
10594
+ # The time that it takes to process a job can be impacted by the
10595
+ # following factors:
10596
+ #
10597
+ # * The dataset type (Direct Query or SPICE).
10598
+ #
10599
+ # * The size of the dataset.
10600
+ #
10601
+ # * The complexity of the calculated fields that are used in the
10602
+ # dashboard.
10603
+ #
10604
+ # * The number of visuals that are on a sheet.
10605
+ #
10606
+ # * The types of visuals that are on the sheet.
10607
+ #
10608
+ # * The number of formats and snapshots that are requested in the job
10609
+ # configuration.
10526
10610
  #
10527
- # * 1 paginated PDF
10611
+ # * The size of the generated snapshots.
10528
10612
  #
10529
- # * 1 Excel workbook
10530
10613
  #
10531
- # * 5 CSVs
10532
10614
  #
10533
- # Poll job descriptions with a `DescribeDashboardSnapshotJob` API call.
10534
- # Once the job succeeds, use the `DescribeDashboardSnapshotJobResult`
10535
- # API to obtain the download URIs that the job generates.
10615
+ # [1]: http://aws.amazon.com/contact-us/
10536
10616
  #
10537
10617
  # @option params [required, String] :aws_account_id
10538
10618
  # The ID of the Amazon Web Services account that the dashboard snapshot
@@ -13569,7 +13649,7 @@ module Aws::QuickSight
13569
13649
  params: params,
13570
13650
  config: config)
13571
13651
  context[:gem_name] = 'aws-sdk-quicksight'
13572
- context[:gem_version] = '1.107.0'
13652
+ context[:gem_version] = '1.108.0'
13573
13653
  Seahorse::Client::Request.new(handlers, context)
13574
13654
  end
13575
13655
 
@@ -150,6 +150,8 @@ module Aws::QuickSight
150
150
  AssetBundleImportJobVPCConnectionOverrideParametersList = Shapes::ListShape.new(name: 'AssetBundleImportJobVPCConnectionOverrideParametersList')
151
151
  AssetBundleImportJobVPCConnectionOverrideTags = Shapes::StructureShape.new(name: 'AssetBundleImportJobVPCConnectionOverrideTags')
152
152
  AssetBundleImportJobVPCConnectionOverrideTagsList = Shapes::ListShape.new(name: 'AssetBundleImportJobVPCConnectionOverrideTagsList')
153
+ AssetBundleImportJobWarning = Shapes::StructureShape.new(name: 'AssetBundleImportJobWarning')
154
+ AssetBundleImportJobWarningList = Shapes::ListShape.new(name: 'AssetBundleImportJobWarningList')
153
155
  AssetBundleImportSource = Shapes::StructureShape.new(name: 'AssetBundleImportSource')
154
156
  AssetBundleImportSourceDescription = Shapes::StructureShape.new(name: 'AssetBundleImportSourceDescription')
155
157
  AssetBundlePrincipalList = Shapes::ListShape.new(name: 'AssetBundlePrincipalList')
@@ -507,13 +509,22 @@ module Aws::QuickSight
507
509
  DecimalPlacesConfiguration = Shapes::StructureShape.new(name: 'DecimalPlacesConfiguration')
508
510
  DecimalValueWhenUnsetConfiguration = Shapes::StructureShape.new(name: 'DecimalValueWhenUnsetConfiguration')
509
511
  DefaultAggregation = Shapes::StringShape.new(name: 'DefaultAggregation')
512
+ DefaultDateTimePickerControlOptions = Shapes::StructureShape.new(name: 'DefaultDateTimePickerControlOptions')
513
+ DefaultFilterControlConfiguration = Shapes::StructureShape.new(name: 'DefaultFilterControlConfiguration')
514
+ DefaultFilterControlOptions = Shapes::StructureShape.new(name: 'DefaultFilterControlOptions')
515
+ DefaultFilterDropDownControlOptions = Shapes::StructureShape.new(name: 'DefaultFilterDropDownControlOptions')
516
+ DefaultFilterListControlOptions = Shapes::StructureShape.new(name: 'DefaultFilterListControlOptions')
510
517
  DefaultFormatting = Shapes::StructureShape.new(name: 'DefaultFormatting')
511
518
  DefaultFreeFormLayoutConfiguration = Shapes::StructureShape.new(name: 'DefaultFreeFormLayoutConfiguration')
512
519
  DefaultGridLayoutConfiguration = Shapes::StructureShape.new(name: 'DefaultGridLayoutConfiguration')
513
520
  DefaultInteractiveLayoutConfiguration = Shapes::StructureShape.new(name: 'DefaultInteractiveLayoutConfiguration')
514
521
  DefaultNewSheetConfiguration = Shapes::StructureShape.new(name: 'DefaultNewSheetConfiguration')
515
522
  DefaultPaginatedLayoutConfiguration = Shapes::StructureShape.new(name: 'DefaultPaginatedLayoutConfiguration')
523
+ DefaultRelativeDateTimeControlOptions = Shapes::StructureShape.new(name: 'DefaultRelativeDateTimeControlOptions')
516
524
  DefaultSectionBasedLayoutConfiguration = Shapes::StructureShape.new(name: 'DefaultSectionBasedLayoutConfiguration')
525
+ DefaultSliderControlOptions = Shapes::StructureShape.new(name: 'DefaultSliderControlOptions')
526
+ DefaultTextAreaControlOptions = Shapes::StructureShape.new(name: 'DefaultTextAreaControlOptions')
527
+ DefaultTextFieldControlOptions = Shapes::StructureShape.new(name: 'DefaultTextFieldControlOptions')
517
528
  DeleteAccountCustomizationRequest = Shapes::StructureShape.new(name: 'DeleteAccountCustomizationRequest')
518
529
  DeleteAccountCustomizationResponse = Shapes::StructureShape.new(name: 'DeleteAccountCustomizationResponse')
519
530
  DeleteAccountSubscriptionRequest = Shapes::StructureShape.new(name: 'DeleteAccountSubscriptionRequest')
@@ -714,6 +725,7 @@ module Aws::QuickSight
714
725
  FilterClass = Shapes::StringShape.new(name: 'FilterClass')
715
726
  FilterControl = Shapes::StructureShape.new(name: 'FilterControl')
716
727
  FilterControlList = Shapes::ListShape.new(name: 'FilterControlList')
728
+ FilterCrossSheetControl = Shapes::StructureShape.new(name: 'FilterCrossSheetControl')
717
729
  FilterDateTimePickerControl = Shapes::StructureShape.new(name: 'FilterDateTimePickerControl')
718
730
  FilterDropDownControl = Shapes::StructureShape.new(name: 'FilterDropDownControl')
719
731
  FilterGroup = Shapes::StructureShape.new(name: 'FilterGroup')
@@ -2225,6 +2237,12 @@ module Aws::QuickSight
2225
2237
 
2226
2238
  AssetBundleImportJobVPCConnectionOverrideTagsList.member = Shapes::ShapeRef.new(shape: AssetBundleImportJobVPCConnectionOverrideTags)
2227
2239
 
2240
+ AssetBundleImportJobWarning.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
2241
+ AssetBundleImportJobWarning.add_member(:message, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "Message"))
2242
+ AssetBundleImportJobWarning.struct_class = Types::AssetBundleImportJobWarning
2243
+
2244
+ AssetBundleImportJobWarningList.member = Shapes::ShapeRef.new(shape: AssetBundleImportJobWarning)
2245
+
2228
2246
  AssetBundleImportSource.add_member(:body, Shapes::ShapeRef.new(shape: AssetBundleImportBodyBlob, location_name: "Body"))
2229
2247
  AssetBundleImportSource.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "S3Uri"))
2230
2248
  AssetBundleImportSource.struct_class = Types::AssetBundleImportSource
@@ -2509,6 +2527,7 @@ module Aws::QuickSight
2509
2527
  CategoryFilter.add_member(:filter_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "FilterId"))
2510
2528
  CategoryFilter.add_member(:column, Shapes::ShapeRef.new(shape: ColumnIdentifier, required: true, location_name: "Column"))
2511
2529
  CategoryFilter.add_member(:configuration, Shapes::ShapeRef.new(shape: CategoryFilterConfiguration, required: true, location_name: "Configuration"))
2530
+ CategoryFilter.add_member(:default_filter_control_configuration, Shapes::ShapeRef.new(shape: DefaultFilterControlConfiguration, location_name: "DefaultFilterControlConfiguration"))
2512
2531
  CategoryFilter.struct_class = Types::CategoryFilter
2513
2532
 
2514
2533
  CategoryFilterConfiguration.add_member(:filter_list_configuration, Shapes::ShapeRef.new(shape: FilterListConfiguration, location_name: "FilterListConfiguration"))
@@ -3629,6 +3648,33 @@ module Aws::QuickSight
3629
3648
  DecimalValueWhenUnsetConfiguration.add_member(:custom_value, Shapes::ShapeRef.new(shape: SensitiveDouble, location_name: "CustomValue", metadata: {"box"=>true}))
3630
3649
  DecimalValueWhenUnsetConfiguration.struct_class = Types::DecimalValueWhenUnsetConfiguration
3631
3650
 
3651
+ DefaultDateTimePickerControlOptions.add_member(:type, Shapes::ShapeRef.new(shape: SheetControlDateTimePickerType, location_name: "Type"))
3652
+ DefaultDateTimePickerControlOptions.add_member(:display_options, Shapes::ShapeRef.new(shape: DateTimePickerControlDisplayOptions, location_name: "DisplayOptions"))
3653
+ DefaultDateTimePickerControlOptions.struct_class = Types::DefaultDateTimePickerControlOptions
3654
+
3655
+ DefaultFilterControlConfiguration.add_member(:title, Shapes::ShapeRef.new(shape: SheetControlTitle, required: true, location_name: "Title"))
3656
+ DefaultFilterControlConfiguration.add_member(:control_options, Shapes::ShapeRef.new(shape: DefaultFilterControlOptions, required: true, location_name: "ControlOptions"))
3657
+ DefaultFilterControlConfiguration.struct_class = Types::DefaultFilterControlConfiguration
3658
+
3659
+ DefaultFilterControlOptions.add_member(:default_date_time_picker_options, Shapes::ShapeRef.new(shape: DefaultDateTimePickerControlOptions, location_name: "DefaultDateTimePickerOptions"))
3660
+ DefaultFilterControlOptions.add_member(:default_list_options, Shapes::ShapeRef.new(shape: DefaultFilterListControlOptions, location_name: "DefaultListOptions"))
3661
+ DefaultFilterControlOptions.add_member(:default_dropdown_options, Shapes::ShapeRef.new(shape: DefaultFilterDropDownControlOptions, location_name: "DefaultDropdownOptions"))
3662
+ DefaultFilterControlOptions.add_member(:default_text_field_options, Shapes::ShapeRef.new(shape: DefaultTextFieldControlOptions, location_name: "DefaultTextFieldOptions"))
3663
+ DefaultFilterControlOptions.add_member(:default_text_area_options, Shapes::ShapeRef.new(shape: DefaultTextAreaControlOptions, location_name: "DefaultTextAreaOptions"))
3664
+ DefaultFilterControlOptions.add_member(:default_slider_options, Shapes::ShapeRef.new(shape: DefaultSliderControlOptions, location_name: "DefaultSliderOptions"))
3665
+ DefaultFilterControlOptions.add_member(:default_relative_date_time_options, Shapes::ShapeRef.new(shape: DefaultRelativeDateTimeControlOptions, location_name: "DefaultRelativeDateTimeOptions"))
3666
+ DefaultFilterControlOptions.struct_class = Types::DefaultFilterControlOptions
3667
+
3668
+ DefaultFilterDropDownControlOptions.add_member(:display_options, Shapes::ShapeRef.new(shape: DropDownControlDisplayOptions, location_name: "DisplayOptions"))
3669
+ DefaultFilterDropDownControlOptions.add_member(:type, Shapes::ShapeRef.new(shape: SheetControlListType, location_name: "Type"))
3670
+ DefaultFilterDropDownControlOptions.add_member(:selectable_values, Shapes::ShapeRef.new(shape: FilterSelectableValues, location_name: "SelectableValues"))
3671
+ DefaultFilterDropDownControlOptions.struct_class = Types::DefaultFilterDropDownControlOptions
3672
+
3673
+ DefaultFilterListControlOptions.add_member(:display_options, Shapes::ShapeRef.new(shape: ListControlDisplayOptions, location_name: "DisplayOptions"))
3674
+ DefaultFilterListControlOptions.add_member(:type, Shapes::ShapeRef.new(shape: SheetControlListType, location_name: "Type"))
3675
+ DefaultFilterListControlOptions.add_member(:selectable_values, Shapes::ShapeRef.new(shape: FilterSelectableValues, location_name: "SelectableValues"))
3676
+ DefaultFilterListControlOptions.struct_class = Types::DefaultFilterListControlOptions
3677
+
3632
3678
  DefaultFormatting.add_member(:display_format, Shapes::ShapeRef.new(shape: DisplayFormat, location_name: "DisplayFormat"))
3633
3679
  DefaultFormatting.add_member(:display_format_options, Shapes::ShapeRef.new(shape: DisplayFormatOptions, location_name: "DisplayFormatOptions"))
3634
3680
  DefaultFormatting.struct_class = Types::DefaultFormatting
@@ -3651,9 +3697,26 @@ module Aws::QuickSight
3651
3697
  DefaultPaginatedLayoutConfiguration.add_member(:section_based, Shapes::ShapeRef.new(shape: DefaultSectionBasedLayoutConfiguration, location_name: "SectionBased"))
3652
3698
  DefaultPaginatedLayoutConfiguration.struct_class = Types::DefaultPaginatedLayoutConfiguration
3653
3699
 
3700
+ DefaultRelativeDateTimeControlOptions.add_member(:display_options, Shapes::ShapeRef.new(shape: RelativeDateTimeControlDisplayOptions, location_name: "DisplayOptions"))
3701
+ DefaultRelativeDateTimeControlOptions.struct_class = Types::DefaultRelativeDateTimeControlOptions
3702
+
3654
3703
  DefaultSectionBasedLayoutConfiguration.add_member(:canvas_size_options, Shapes::ShapeRef.new(shape: SectionBasedLayoutCanvasSizeOptions, required: true, location_name: "CanvasSizeOptions"))
3655
3704
  DefaultSectionBasedLayoutConfiguration.struct_class = Types::DefaultSectionBasedLayoutConfiguration
3656
3705
 
3706
+ DefaultSliderControlOptions.add_member(:display_options, Shapes::ShapeRef.new(shape: SliderControlDisplayOptions, location_name: "DisplayOptions"))
3707
+ DefaultSliderControlOptions.add_member(:type, Shapes::ShapeRef.new(shape: SheetControlSliderType, location_name: "Type"))
3708
+ DefaultSliderControlOptions.add_member(:maximum_value, Shapes::ShapeRef.new(shape: Double, required: true, location_name: "MaximumValue"))
3709
+ DefaultSliderControlOptions.add_member(:minimum_value, Shapes::ShapeRef.new(shape: Double, required: true, location_name: "MinimumValue"))
3710
+ DefaultSliderControlOptions.add_member(:step_size, Shapes::ShapeRef.new(shape: Double, required: true, location_name: "StepSize"))
3711
+ DefaultSliderControlOptions.struct_class = Types::DefaultSliderControlOptions
3712
+
3713
+ DefaultTextAreaControlOptions.add_member(:delimiter, Shapes::ShapeRef.new(shape: TextAreaControlDelimiter, location_name: "Delimiter"))
3714
+ DefaultTextAreaControlOptions.add_member(:display_options, Shapes::ShapeRef.new(shape: TextAreaControlDisplayOptions, location_name: "DisplayOptions"))
3715
+ DefaultTextAreaControlOptions.struct_class = Types::DefaultTextAreaControlOptions
3716
+
3717
+ DefaultTextFieldControlOptions.add_member(:display_options, Shapes::ShapeRef.new(shape: TextFieldControlDisplayOptions, location_name: "DisplayOptions"))
3718
+ DefaultTextFieldControlOptions.struct_class = Types::DefaultTextFieldControlOptions
3719
+
3657
3720
  DeleteAccountCustomizationRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
3658
3721
  DeleteAccountCustomizationRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, location: "querystring", location_name: "namespace"))
3659
3722
  DeleteAccountCustomizationRequest.struct_class = Types::DeleteAccountCustomizationRequest
@@ -4019,6 +4082,7 @@ module Aws::QuickSight
4019
4082
  DescribeAssetBundleImportJobResponse.add_member(:override_permissions, Shapes::ShapeRef.new(shape: AssetBundleImportJobOverridePermissions, location_name: "OverridePermissions"))
4020
4083
  DescribeAssetBundleImportJobResponse.add_member(:override_tags, Shapes::ShapeRef.new(shape: AssetBundleImportJobOverrideTags, location_name: "OverrideTags"))
4021
4084
  DescribeAssetBundleImportJobResponse.add_member(:override_validation_strategy, Shapes::ShapeRef.new(shape: AssetBundleImportJobOverrideValidationStrategy, location_name: "OverrideValidationStrategy"))
4085
+ DescribeAssetBundleImportJobResponse.add_member(:warnings, Shapes::ShapeRef.new(shape: AssetBundleImportJobWarningList, location_name: "Warnings"))
4022
4086
  DescribeAssetBundleImportJobResponse.struct_class = Types::DescribeAssetBundleImportJobResponse
4023
4087
 
4024
4088
  DescribeDashboardDefinitionRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
@@ -4605,10 +4669,16 @@ module Aws::QuickSight
4605
4669
  FilterControl.add_member(:text_area, Shapes::ShapeRef.new(shape: FilterTextAreaControl, location_name: "TextArea"))
4606
4670
  FilterControl.add_member(:slider, Shapes::ShapeRef.new(shape: FilterSliderControl, location_name: "Slider"))
4607
4671
  FilterControl.add_member(:relative_date_time, Shapes::ShapeRef.new(shape: FilterRelativeDateTimeControl, location_name: "RelativeDateTime"))
4672
+ FilterControl.add_member(:cross_sheet, Shapes::ShapeRef.new(shape: FilterCrossSheetControl, location_name: "CrossSheet"))
4608
4673
  FilterControl.struct_class = Types::FilterControl
4609
4674
 
4610
4675
  FilterControlList.member = Shapes::ShapeRef.new(shape: FilterControl)
4611
4676
 
4677
+ FilterCrossSheetControl.add_member(:filter_control_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "FilterControlId"))
4678
+ FilterCrossSheetControl.add_member(:source_filter_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "SourceFilterId"))
4679
+ FilterCrossSheetControl.add_member(:cascading_control_configuration, Shapes::ShapeRef.new(shape: CascadingControlConfiguration, location_name: "CascadingControlConfiguration"))
4680
+ FilterCrossSheetControl.struct_class = Types::FilterCrossSheetControl
4681
+
4612
4682
  FilterDateTimePickerControl.add_member(:filter_control_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "FilterControlId"))
4613
4683
  FilterDateTimePickerControl.add_member(:title, Shapes::ShapeRef.new(shape: SheetControlTitle, required: true, location_name: "Title"))
4614
4684
  FilterDateTimePickerControl.add_member(:source_filter_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "SourceFilterId"))
@@ -6001,6 +6071,7 @@ module Aws::QuickSight
6001
6071
  NumericEqualityFilter.add_member(:aggregation_function, Shapes::ShapeRef.new(shape: AggregationFunction, location_name: "AggregationFunction"))
6002
6072
  NumericEqualityFilter.add_member(:parameter_name, Shapes::ShapeRef.new(shape: ParameterName, location_name: "ParameterName"))
6003
6073
  NumericEqualityFilter.add_member(:null_option, Shapes::ShapeRef.new(shape: FilterNullOption, required: true, location_name: "NullOption"))
6074
+ NumericEqualityFilter.add_member(:default_filter_control_configuration, Shapes::ShapeRef.new(shape: DefaultFilterControlConfiguration, location_name: "DefaultFilterControlConfiguration"))
6004
6075
  NumericEqualityFilter.struct_class = Types::NumericEqualityFilter
6005
6076
 
6006
6077
  NumericFormatConfiguration.add_member(:number_display_format_configuration, Shapes::ShapeRef.new(shape: NumberDisplayFormatConfiguration, location_name: "NumberDisplayFormatConfiguration"))
@@ -6017,6 +6088,7 @@ module Aws::QuickSight
6017
6088
  NumericRangeFilter.add_member(:select_all_options, Shapes::ShapeRef.new(shape: NumericFilterSelectAllOptions, location_name: "SelectAllOptions"))
6018
6089
  NumericRangeFilter.add_member(:aggregation_function, Shapes::ShapeRef.new(shape: AggregationFunction, location_name: "AggregationFunction"))
6019
6090
  NumericRangeFilter.add_member(:null_option, Shapes::ShapeRef.new(shape: FilterNullOption, required: true, location_name: "NullOption"))
6091
+ NumericRangeFilter.add_member(:default_filter_control_configuration, Shapes::ShapeRef.new(shape: DefaultFilterControlConfiguration, location_name: "DefaultFilterControlConfiguration"))
6020
6092
  NumericRangeFilter.struct_class = Types::NumericRangeFilter
6021
6093
 
6022
6094
  NumericRangeFilterValue.add_member(:static_value, Shapes::ShapeRef.new(shape: Double, location_name: "StaticValue", metadata: {"box"=>true}))
@@ -6619,6 +6691,7 @@ module Aws::QuickSight
6619
6691
  RelativeDatesFilter.add_member(:parameter_name, Shapes::ShapeRef.new(shape: ParameterName, location_name: "ParameterName"))
6620
6692
  RelativeDatesFilter.add_member(:null_option, Shapes::ShapeRef.new(shape: FilterNullOption, required: true, location_name: "NullOption"))
6621
6693
  RelativeDatesFilter.add_member(:exclude_period_configuration, Shapes::ShapeRef.new(shape: ExcludePeriodConfiguration, location_name: "ExcludePeriodConfiguration"))
6694
+ RelativeDatesFilter.add_member(:default_filter_control_configuration, Shapes::ShapeRef.new(shape: DefaultFilterControlConfiguration, location_name: "DefaultFilterControlConfiguration"))
6622
6695
  RelativeDatesFilter.struct_class = Types::RelativeDatesFilter
6623
6696
 
6624
6697
  RenameColumnOperation.add_member(:column_name, Shapes::ShapeRef.new(shape: ColumnName, required: true, location_name: "ColumnName"))
@@ -7600,6 +7673,7 @@ module Aws::QuickSight
7600
7673
  TimeEqualityFilter.add_member(:parameter_name, Shapes::ShapeRef.new(shape: ParameterName, location_name: "ParameterName"))
7601
7674
  TimeEqualityFilter.add_member(:time_granularity, Shapes::ShapeRef.new(shape: TimeGranularity, location_name: "TimeGranularity"))
7602
7675
  TimeEqualityFilter.add_member(:rolling_date, Shapes::ShapeRef.new(shape: RollingDateConfiguration, location_name: "RollingDate"))
7676
+ TimeEqualityFilter.add_member(:default_filter_control_configuration, Shapes::ShapeRef.new(shape: DefaultFilterControlConfiguration, location_name: "DefaultFilterControlConfiguration"))
7603
7677
  TimeEqualityFilter.struct_class = Types::TimeEqualityFilter
7604
7678
 
7605
7679
  TimeRangeDrillDownFilter.add_member(:column, Shapes::ShapeRef.new(shape: ColumnIdentifier, required: true, location_name: "Column"))
@@ -7617,6 +7691,7 @@ module Aws::QuickSight
7617
7691
  TimeRangeFilter.add_member(:null_option, Shapes::ShapeRef.new(shape: FilterNullOption, required: true, location_name: "NullOption"))
7618
7692
  TimeRangeFilter.add_member(:exclude_period_configuration, Shapes::ShapeRef.new(shape: ExcludePeriodConfiguration, location_name: "ExcludePeriodConfiguration"))
7619
7693
  TimeRangeFilter.add_member(:time_granularity, Shapes::ShapeRef.new(shape: TimeGranularity, location_name: "TimeGranularity"))
7694
+ TimeRangeFilter.add_member(:default_filter_control_configuration, Shapes::ShapeRef.new(shape: DefaultFilterControlConfiguration, location_name: "DefaultFilterControlConfiguration"))
7620
7695
  TimeRangeFilter.struct_class = Types::TimeRangeFilter
7621
7696
 
7622
7697
  TimeRangeFilterValue.add_member(:static_value, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StaticValue"))
@@ -7641,6 +7716,7 @@ module Aws::QuickSight
7641
7716
  TopBottomFilter.add_member(:aggregation_sort_configurations, Shapes::ShapeRef.new(shape: AggregationSortConfigurationList, required: true, location_name: "AggregationSortConfigurations"))
7642
7717
  TopBottomFilter.add_member(:time_granularity, Shapes::ShapeRef.new(shape: TimeGranularity, location_name: "TimeGranularity"))
7643
7718
  TopBottomFilter.add_member(:parameter_name, Shapes::ShapeRef.new(shape: ParameterName, location_name: "ParameterName"))
7719
+ TopBottomFilter.add_member(:default_filter_control_configuration, Shapes::ShapeRef.new(shape: DefaultFilterControlConfiguration, location_name: "DefaultFilterControlConfiguration"))
7644
7720
  TopBottomFilter.struct_class = Types::TopBottomFilter
7645
7721
 
7646
7722
  TopBottomMoversComputation.add_member(:computation_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "ComputationId"))