aws-sdk-quicksight 1.107.0 → 1.109.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: db4732b415c4fde8c090ebae373d6ac37fabe56a2eb108f713a9596abed76dda
4
+ data.tar.gz: 1370e8f07b48aee00b2b5ad4e10abf5dceb21dca4d4e94ad4e8509be62f60a3e
5
5
  SHA512:
6
- metadata.gz: 494e300875359ad4bbc872bd9c876027b9db4c15387991d36f2ba2ce471ec76913737616ddb368039b21d8cf16de9b7f48f9506cb76300fd5d6ab53021c4da92
7
- data.tar.gz: 7ed6210020c04f144185f51228e6db31e27a1ae83de028b60767bebf3ca6cf799fa9f85f4b9d8cfdb89cdbb10812627d252b7851b39127ea45473a15085bf52c
6
+ metadata.gz: b5f68b8b9340dbd365e688c484ba1de34f192b3babd85624775e8ffa3b06b4978a224e2da930377d13c15a8bc01c98c538d5e8fc51d6bdb1da2fdb5523090d01
7
+ data.tar.gz: 457006bb47ec448a1de4892b20f353fbdd9f6192633bb701c9bd529c81a65a3191ef3038c51a4defb9a9a34af9ad159ee0efd8df1eadbd6179e4eb2c9ef97575
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.109.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.108.0 (2024-04-18)
10
+ ------------------
11
+
12
+ * 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
13
+
4
14
  1.107.0 (2024-04-05)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.107.0
1
+ 1.109.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::QuickSight
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::QuickSight
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::QuickSight
337
346
  # @option options [Aws::QuickSight::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::QuickSight::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
365
- #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
368
399
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
372
402
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
378
405
  #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -4479,7 +4503,7 @@ module Aws::QuickSight
4479
4503
  # resp.cloud_formation_override_property_configuration.data_sources #=> Array
4480
4504
  # resp.cloud_formation_override_property_configuration.data_sources[0].arn #=> String
4481
4505
  # 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"
4506
+ # 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
4507
  # resp.cloud_formation_override_property_configuration.data_sets #=> Array
4484
4508
  # resp.cloud_formation_override_property_configuration.data_sets[0].arn #=> String
4485
4509
  # resp.cloud_formation_override_property_configuration.data_sets[0].properties #=> Array
@@ -4545,6 +4569,7 @@ module Aws::QuickSight
4545
4569
  # * {Types::DescribeAssetBundleImportJobResponse#override_permissions #override_permissions} => Types::AssetBundleImportJobOverridePermissions
4546
4570
  # * {Types::DescribeAssetBundleImportJobResponse#override_tags #override_tags} => Types::AssetBundleImportJobOverrideTags
4547
4571
  # * {Types::DescribeAssetBundleImportJobResponse#override_validation_strategy #override_validation_strategy} => Types::AssetBundleImportJobOverrideValidationStrategy
4572
+ # * {Types::DescribeAssetBundleImportJobResponse#warnings #warnings} => Array<Types::AssetBundleImportJobWarning>
4548
4573
  #
4549
4574
  # @example Request syntax with placeholder values
4550
4575
  #
@@ -4754,6 +4779,9 @@ module Aws::QuickSight
4754
4779
  # resp.override_tags.dashboards[0].tags[0].key #=> String
4755
4780
  # resp.override_tags.dashboards[0].tags[0].value #=> String
4756
4781
  # resp.override_validation_strategy.strict_mode_for_all_resources #=> Boolean
4782
+ # resp.warnings #=> Array
4783
+ # resp.warnings[0].arn #=> String
4784
+ # resp.warnings[0].message #=> String
4757
4785
  #
4758
4786
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAssetBundleImportJob AWS API Documentation
4759
4787
  #
@@ -10064,7 +10092,7 @@ module Aws::QuickSight
10064
10092
  # data_sources: [
10065
10093
  # {
10066
10094
  # 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
10095
+ # properties: ["Name"], # required, accepts Name, DisableSsl, SecretArn, Username, Password, Domain, WorkGroup, Host, Port, Database, DataSetName, Catalog, InstanceId, ClusterId, ManifestFileLocation, Warehouse, RoleArn, ProductType
10068
10096
  # },
10069
10097
  # ],
10070
10098
  # data_sets: [
@@ -10521,18 +10549,94 @@ module Aws::QuickSight
10521
10549
  req.send_request(options)
10522
10550
  end
10523
10551
 
10524
- # Starts an asynchronous job that generates a dashboard snapshot. You
10525
- # can request one of the following format configurations per API call.
10552
+ # Starts an asynchronous job that generates a snapshot of a dashboard's
10553
+ # output. You can request one or several of the following format
10554
+ # configurations in each API call.
10555
+ #
10556
+ # * 1 Paginated PDF
10557
+ #
10558
+ # * 1 Excel workbook that includes up to 5 table or pivot table visuals
10559
+ #
10560
+ # * 5 CSVs from table or pivot table visuals
10561
+ #
10562
+ # The status of a submitted job can be polled with the
10563
+ # `DescribeDashboardSnapshotJob` API. When you call the
10564
+ # `DescribeDashboardSnapshotJob` API, check the `JobStatus` field in the
10565
+ # response. Once the job reaches a `COMPLETED` or `FAILED` status, use
10566
+ # the `DescribeDashboardSnapshotJobResult` API to obtain the URLs for
10567
+ # the generated files. If the job fails, the
10568
+ # `DescribeDashboardSnapshotJobResult` API returns detailed information
10569
+ # about the error that occurred.
10570
+ #
10571
+ # **StartDashboardSnapshotJob API throttling**
10572
+ #
10573
+ # Amazon QuickSight utilizes API throttling to create a more consistent
10574
+ # user experience within a time span for customers when they call the
10575
+ # `StartDashboardSnapshotJob`. By default, 12 jobs can run
10576
+ # simlutaneously in one Amazon Web Services account and users can submit
10577
+ # up 10 API requests per second before an account is throttled. If an
10578
+ # overwhelming number of API requests are made by the same user in a
10579
+ # short period of time, Amazon QuickSight throttles the API calls to
10580
+ # maintin an optimal experience and reliability for all Amazon
10581
+ # QuickSight users.
10582
+ #
10583
+ # **Common throttling scenarios**
10584
+ #
10585
+ # The following list provides information about the most commin
10586
+ # throttling scenarios that can occur.
10587
+ #
10588
+ # * **A large number of `SnapshotExport` API jobs are running
10589
+ # simultaneously on an Amazon Web Services account.** When a new
10590
+ # `StartDashboardSnapshotJob` is created and there are already 12 jobs
10591
+ # with the `RUNNING` status, the new job request fails and returns a
10592
+ # `LimitExceededException` error. Wait for a current job to comlpete
10593
+ # before you resubmit the new job.
10594
+ #
10595
+ # * **A large number of API requests are submitted on an Amazon Web
10596
+ # Services account.** When a user makes more than 10 API calls to the
10597
+ # Amazon QuickSight API in one second, a `ThrottlingException` is
10598
+ # returned.
10599
+ #
10600
+ # If your use case requires a higher throttling limit, contact your
10601
+ # account admin or [Amazon Web ServicesSupport][1] to explore options to
10602
+ # tailor a more optimal expereince for your account.
10603
+ #
10604
+ # **Best practices to handle throttling**
10605
+ #
10606
+ # If your use case projects high levels of API traffic, try to reduce
10607
+ # the degree of frequency and parallelism of API calls as much as you
10608
+ # can to avoid throttling. You can also perform a timing test to
10609
+ # calculate an estimate for the total processing time of your projected
10610
+ # load that stays within the throttling limits of the Amazon QuickSight
10611
+ # APIs. For example, if your projected traffic is 100 snapshot jobs
10612
+ # before 12:00 PM per day, start 12 jobs in parallel and measure the
10613
+ # amount of time it takes to proccess all 12 jobs. Once you obtain the
10614
+ # result, multiply the duration by 9, for example `(12 minutes * 9 = 108
10615
+ # minutes)`. Use the new result to determine the latest time at which
10616
+ # the jobs need to be started to meet your target deadline.
10617
+ #
10618
+ # The time that it takes to process a job can be impacted by the
10619
+ # following factors:
10620
+ #
10621
+ # * The dataset type (Direct Query or SPICE).
10622
+ #
10623
+ # * The size of the dataset.
10624
+ #
10625
+ # * The complexity of the calculated fields that are used in the
10626
+ # dashboard.
10627
+ #
10628
+ # * The number of visuals that are on a sheet.
10629
+ #
10630
+ # * The types of visuals that are on the sheet.
10631
+ #
10632
+ # * The number of formats and snapshots that are requested in the job
10633
+ # configuration.
10526
10634
  #
10527
- # * 1 paginated PDF
10635
+ # * The size of the generated snapshots.
10528
10636
  #
10529
- # * 1 Excel workbook
10530
10637
  #
10531
- # * 5 CSVs
10532
10638
  #
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.
10639
+ # [1]: http://aws.amazon.com/contact-us/
10536
10640
  #
10537
10641
  # @option params [required, String] :aws_account_id
10538
10642
  # The ID of the Amazon Web Services account that the dashboard snapshot
@@ -13569,7 +13673,7 @@ module Aws::QuickSight
13569
13673
  params: params,
13570
13674
  config: config)
13571
13675
  context[:gem_name] = 'aws-sdk-quicksight'
13572
- context[:gem_version] = '1.107.0'
13676
+ context[:gem_version] = '1.109.0'
13573
13677
  Seahorse::Client::Request.new(handlers, context)
13574
13678
  end
13575
13679
 
@@ -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"))