aws-sdk-quicksight 1.92.0 → 1.93.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: a7be8c0aa237f6a2c4bc1293843737c31f716616aa3e66dd8aefcb4a5a8b723d
4
- data.tar.gz: 75b29c4cd3cb649fc5234f52c8b0fb75211425bf74c2970aeffe0b55f5e0b590
3
+ metadata.gz: 310e932de19c2340aa0525768e024bdec91d34b75cde9120028f787a4700a420
4
+ data.tar.gz: b84bff7c269e5cedfbbceeac2eb2ae33e456f9a9627899d0360afa40186ea8a6
5
5
  SHA512:
6
- metadata.gz: 102230ffc3f1ed451a583210e498abd72d218f3f10656c3d19e5bc506cfb4cb1475bd919336e455409fa86b00ebbc4fae9b1ca8e3e7ee31bd902a7776b51bd09
7
- data.tar.gz: b71716f90e612a64de911523459453994d98cae75b50b936be529d2f49543607841ce7c1c0324e0b6c07c44800c49947536afa6d7926744cc2aaddf556891498
6
+ metadata.gz: 239ba67f78005bc95f96cd0f387fbddfb9c752ee8c53c645df0aa7cad62ce5b262556bf738a80976fb4252cf9f0c8764eed47c9287469ce59201a476e1608ae3
7
+ data.tar.gz: 5bb413b4e5d56fc80aaf6f6abdff1f009fb93eca0827aeed937b2944755d901320d1a65de4d3a44af12cefadc9720002d95d9aec4aa8e61e4441f2bc4a8de96d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.93.0 (2023-10-06)
5
+ ------------------
6
+
7
+ * Feature - NullOption in FilterListConfiguration; Dataset schema/table max length increased; Support total placement for pivot table visual; Lenient mode relaxes the validation to create resources with definition; Data sources can be added to folders; Redshift data sources support IAM Role-based authentication
8
+
4
9
  1.92.0 (2023-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.92.0
1
+ 1.93.0
@@ -775,6 +775,11 @@ module Aws::QuickSight
775
775
  # Either a `SourceEntity` or a `Definition` must be provided in order
776
776
  # for the request to be valid.
777
777
  #
778
+ # @option params [Types::ValidationStrategy] :validation_strategy
779
+ # The option to relax the validation needed to create an analysis with
780
+ # definition objects. This skips the validation step for specific
781
+ # errors.
782
+ #
778
783
  # @return [Types::CreateAnalysisResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
779
784
  #
780
785
  # * {Types::CreateAnalysisResponse#arn #arn} => String
@@ -891,6 +896,11 @@ module Aws::QuickSight
891
896
  # Either a `SourceEntity` or a `Definition` must be provided in order
892
897
  # for the request to be valid.
893
898
  #
899
+ # @option params [Types::ValidationStrategy] :validation_strategy
900
+ # The option to relax the validation needed to create a dashboard with
901
+ # definition objects. This option skips the validation step for specific
902
+ # errors.
903
+ #
894
904
  # @return [Types::CreateDashboardResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
895
905
  #
896
906
  # * {Types::CreateDashboardResponse#arn #arn} => String
@@ -1339,6 +1349,12 @@ module Aws::QuickSight
1339
1349
  # port: 1,
1340
1350
  # database: "Database", # required
1341
1351
  # cluster_id: "ClusterId",
1352
+ # iam_parameters: {
1353
+ # role_arn: "RoleArn", # required
1354
+ # database_user: "DatabaseUser", # required
1355
+ # database_groups: ["DatabaseGroup"],
1356
+ # auto_create_database_user: false,
1357
+ # },
1342
1358
  # },
1343
1359
  # s3_parameters: {
1344
1360
  # manifest_file_location: { # required
@@ -1449,6 +1465,12 @@ module Aws::QuickSight
1449
1465
  # port: 1,
1450
1466
  # database: "Database", # required
1451
1467
  # cluster_id: "ClusterId",
1468
+ # iam_parameters: {
1469
+ # role_arn: "RoleArn", # required
1470
+ # database_user: "DatabaseUser", # required
1471
+ # database_groups: ["DatabaseGroup"],
1472
+ # auto_create_database_user: false,
1473
+ # },
1452
1474
  # },
1453
1475
  # s3_parameters: {
1454
1476
  # manifest_file_location: { # required
@@ -1645,14 +1667,14 @@ module Aws::QuickSight
1645
1667
  # aws_account_id: "AwsAccountId", # required
1646
1668
  # folder_id: "RestrictiveResourceId", # required
1647
1669
  # member_id: "RestrictiveResourceId", # required
1648
- # member_type: "DASHBOARD", # required, accepts DASHBOARD, ANALYSIS, DATASET, TOPIC
1670
+ # member_type: "DASHBOARD", # required, accepts DASHBOARD, ANALYSIS, DATASET, DATASOURCE, TOPIC
1649
1671
  # })
1650
1672
  #
1651
1673
  # @example Response structure
1652
1674
  #
1653
1675
  # resp.status #=> Integer
1654
1676
  # resp.folder_member.member_id #=> String
1655
- # resp.folder_member.member_type #=> String, one of "DASHBOARD", "ANALYSIS", "DATASET", "TOPIC"
1677
+ # resp.folder_member.member_type #=> String, one of "DASHBOARD", "ANALYSIS", "DATASET", "DATASOURCE", "TOPIC"
1656
1678
  # resp.request_id #=> String
1657
1679
  #
1658
1680
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateFolderMembership AWS API Documentation
@@ -2107,6 +2129,11 @@ module Aws::QuickSight
2107
2129
  # Either a `SourceEntity` or a `Definition` must be provided in order
2108
2130
  # for the request to be valid.
2109
2131
  #
2132
+ # @option params [Types::ValidationStrategy] :validation_strategy
2133
+ # TThe option to relax the validation needed to create a template with
2134
+ # definition objects. This skips the validation step for specific
2135
+ # errors.
2136
+ #
2110
2137
  # @return [Types::CreateTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2111
2138
  #
2112
2139
  # * {Types::CreateTemplateResponse#arn #arn} => String
@@ -3150,7 +3177,7 @@ module Aws::QuickSight
3150
3177
  # aws_account_id: "AwsAccountId", # required
3151
3178
  # folder_id: "RestrictiveResourceId", # required
3152
3179
  # member_id: "RestrictiveResourceId", # required
3153
- # member_type: "DASHBOARD", # required, accepts DASHBOARD, ANALYSIS, DATASET, TOPIC
3180
+ # member_type: "DASHBOARD", # required, accepts DASHBOARD, ANALYSIS, DATASET, DATASOURCE, TOPIC
3154
3181
  # })
3155
3182
  #
3156
3183
  # @example Response structure
@@ -4319,6 +4346,11 @@ module Aws::QuickSight
4319
4346
  # resp.override_parameters.data_sources[0].data_source_parameters.redshift_parameters.port #=> Integer
4320
4347
  # resp.override_parameters.data_sources[0].data_source_parameters.redshift_parameters.database #=> String
4321
4348
  # resp.override_parameters.data_sources[0].data_source_parameters.redshift_parameters.cluster_id #=> String
4349
+ # resp.override_parameters.data_sources[0].data_source_parameters.redshift_parameters.iam_parameters.role_arn #=> String
4350
+ # resp.override_parameters.data_sources[0].data_source_parameters.redshift_parameters.iam_parameters.database_user #=> String
4351
+ # resp.override_parameters.data_sources[0].data_source_parameters.redshift_parameters.iam_parameters.database_groups #=> Array
4352
+ # resp.override_parameters.data_sources[0].data_source_parameters.redshift_parameters.iam_parameters.database_groups[0] #=> String
4353
+ # resp.override_parameters.data_sources[0].data_source_parameters.redshift_parameters.iam_parameters.auto_create_database_user #=> Boolean
4322
4354
  # resp.override_parameters.data_sources[0].data_source_parameters.s3_parameters.manifest_file_location.bucket #=> String
4323
4355
  # resp.override_parameters.data_sources[0].data_source_parameters.s3_parameters.manifest_file_location.key #=> String
4324
4356
  # resp.override_parameters.data_sources[0].data_source_parameters.s3_parameters.role_arn #=> String
@@ -5024,6 +5056,11 @@ module Aws::QuickSight
5024
5056
  # resp.data_source.data_source_parameters.redshift_parameters.port #=> Integer
5025
5057
  # resp.data_source.data_source_parameters.redshift_parameters.database #=> String
5026
5058
  # resp.data_source.data_source_parameters.redshift_parameters.cluster_id #=> String
5059
+ # resp.data_source.data_source_parameters.redshift_parameters.iam_parameters.role_arn #=> String
5060
+ # resp.data_source.data_source_parameters.redshift_parameters.iam_parameters.database_user #=> String
5061
+ # resp.data_source.data_source_parameters.redshift_parameters.iam_parameters.database_groups #=> Array
5062
+ # resp.data_source.data_source_parameters.redshift_parameters.iam_parameters.database_groups[0] #=> String
5063
+ # resp.data_source.data_source_parameters.redshift_parameters.iam_parameters.auto_create_database_user #=> Boolean
5027
5064
  # resp.data_source.data_source_parameters.s3_parameters.manifest_file_location.bucket #=> String
5028
5065
  # resp.data_source.data_source_parameters.s3_parameters.manifest_file_location.key #=> String
5029
5066
  # resp.data_source.data_source_parameters.s3_parameters.role_arn #=> String
@@ -5080,6 +5117,11 @@ module Aws::QuickSight
5080
5117
  # resp.data_source.alternate_data_source_parameters[0].redshift_parameters.port #=> Integer
5081
5118
  # resp.data_source.alternate_data_source_parameters[0].redshift_parameters.database #=> String
5082
5119
  # resp.data_source.alternate_data_source_parameters[0].redshift_parameters.cluster_id #=> String
5120
+ # resp.data_source.alternate_data_source_parameters[0].redshift_parameters.iam_parameters.role_arn #=> String
5121
+ # resp.data_source.alternate_data_source_parameters[0].redshift_parameters.iam_parameters.database_user #=> String
5122
+ # resp.data_source.alternate_data_source_parameters[0].redshift_parameters.iam_parameters.database_groups #=> Array
5123
+ # resp.data_source.alternate_data_source_parameters[0].redshift_parameters.iam_parameters.database_groups[0] #=> String
5124
+ # resp.data_source.alternate_data_source_parameters[0].redshift_parameters.iam_parameters.auto_create_database_user #=> Boolean
5083
5125
  # resp.data_source.alternate_data_source_parameters[0].s3_parameters.manifest_file_location.bucket #=> String
5084
5126
  # resp.data_source.alternate_data_source_parameters[0].s3_parameters.manifest_file_location.key #=> String
5085
5127
  # resp.data_source.alternate_data_source_parameters[0].s3_parameters.role_arn #=> String
@@ -7403,6 +7445,11 @@ module Aws::QuickSight
7403
7445
  # resp.data_sources[0].data_source_parameters.redshift_parameters.port #=> Integer
7404
7446
  # resp.data_sources[0].data_source_parameters.redshift_parameters.database #=> String
7405
7447
  # resp.data_sources[0].data_source_parameters.redshift_parameters.cluster_id #=> String
7448
+ # resp.data_sources[0].data_source_parameters.redshift_parameters.iam_parameters.role_arn #=> String
7449
+ # resp.data_sources[0].data_source_parameters.redshift_parameters.iam_parameters.database_user #=> String
7450
+ # resp.data_sources[0].data_source_parameters.redshift_parameters.iam_parameters.database_groups #=> Array
7451
+ # resp.data_sources[0].data_source_parameters.redshift_parameters.iam_parameters.database_groups[0] #=> String
7452
+ # resp.data_sources[0].data_source_parameters.redshift_parameters.iam_parameters.auto_create_database_user #=> Boolean
7406
7453
  # resp.data_sources[0].data_source_parameters.s3_parameters.manifest_file_location.bucket #=> String
7407
7454
  # resp.data_sources[0].data_source_parameters.s3_parameters.manifest_file_location.key #=> String
7408
7455
  # resp.data_sources[0].data_source_parameters.s3_parameters.role_arn #=> String
@@ -7459,6 +7506,11 @@ module Aws::QuickSight
7459
7506
  # resp.data_sources[0].alternate_data_source_parameters[0].redshift_parameters.port #=> Integer
7460
7507
  # resp.data_sources[0].alternate_data_source_parameters[0].redshift_parameters.database #=> String
7461
7508
  # resp.data_sources[0].alternate_data_source_parameters[0].redshift_parameters.cluster_id #=> String
7509
+ # resp.data_sources[0].alternate_data_source_parameters[0].redshift_parameters.iam_parameters.role_arn #=> String
7510
+ # resp.data_sources[0].alternate_data_source_parameters[0].redshift_parameters.iam_parameters.database_user #=> String
7511
+ # resp.data_sources[0].alternate_data_source_parameters[0].redshift_parameters.iam_parameters.database_groups #=> Array
7512
+ # resp.data_sources[0].alternate_data_source_parameters[0].redshift_parameters.iam_parameters.database_groups[0] #=> String
7513
+ # resp.data_sources[0].alternate_data_source_parameters[0].redshift_parameters.iam_parameters.auto_create_database_user #=> Boolean
7462
7514
  # resp.data_sources[0].alternate_data_source_parameters[0].s3_parameters.manifest_file_location.bucket #=> String
7463
7515
  # resp.data_sources[0].alternate_data_source_parameters[0].s3_parameters.manifest_file_location.key #=> String
7464
7516
  # resp.data_sources[0].alternate_data_source_parameters[0].s3_parameters.role_arn #=> String
@@ -9607,6 +9659,12 @@ module Aws::QuickSight
9607
9659
  # port: 1,
9608
9660
  # database: "Database", # required
9609
9661
  # cluster_id: "ClusterId",
9662
+ # iam_parameters: {
9663
+ # role_arn: "RoleArn", # required
9664
+ # database_user: "DatabaseUser", # required
9665
+ # database_groups: ["DatabaseGroup"],
9666
+ # auto_create_database_user: false,
9667
+ # },
9610
9668
  # },
9611
9669
  # s3_parameters: {
9612
9670
  # manifest_file_location: { # required
@@ -10097,6 +10155,11 @@ module Aws::QuickSight
10097
10155
  # A definition is the data model of all features in a Dashboard,
10098
10156
  # Template, or Analysis.
10099
10157
  #
10158
+ # @option params [Types::ValidationStrategy] :validation_strategy
10159
+ # The option to relax the validation needed to update an analysis with
10160
+ # definition objects. This skips the validation step for specific
10161
+ # errors.
10162
+ #
10100
10163
  # @return [Types::UpdateAnalysisResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10101
10164
  #
10102
10165
  # * {Types::UpdateAnalysisResponse#arn #arn} => String
@@ -10261,6 +10324,11 @@ module Aws::QuickSight
10261
10324
  # A definition is the data model of all features in a Dashboard,
10262
10325
  # Template, or Analysis.
10263
10326
  #
10327
+ # @option params [Types::ValidationStrategy] :validation_strategy
10328
+ # The option to relax the validation needed to update a dashboard with
10329
+ # definition objects. This skips the validation step for specific
10330
+ # errors.
10331
+ #
10264
10332
  # @return [Types::UpdateDashboardResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10265
10333
  #
10266
10334
  # * {Types::UpdateDashboardResponse#arn #arn} => String
@@ -10865,6 +10933,12 @@ module Aws::QuickSight
10865
10933
  # port: 1,
10866
10934
  # database: "Database", # required
10867
10935
  # cluster_id: "ClusterId",
10936
+ # iam_parameters: {
10937
+ # role_arn: "RoleArn", # required
10938
+ # database_user: "DatabaseUser", # required
10939
+ # database_groups: ["DatabaseGroup"],
10940
+ # auto_create_database_user: false,
10941
+ # },
10868
10942
  # },
10869
10943
  # s3_parameters: {
10870
10944
  # manifest_file_location: { # required
@@ -10975,6 +11049,12 @@ module Aws::QuickSight
10975
11049
  # port: 1,
10976
11050
  # database: "Database", # required
10977
11051
  # cluster_id: "ClusterId",
11052
+ # iam_parameters: {
11053
+ # role_arn: "RoleArn", # required
11054
+ # database_user: "DatabaseUser", # required
11055
+ # database_groups: ["DatabaseGroup"],
11056
+ # auto_create_database_user: false,
11057
+ # },
10978
11058
  # },
10979
11059
  # s3_parameters: {
10980
11060
  # manifest_file_location: { # required
@@ -11535,6 +11615,11 @@ module Aws::QuickSight
11535
11615
  # A definition is the data model of all features in a Dashboard,
11536
11616
  # Template, or Analysis.
11537
11617
  #
11618
+ # @option params [Types::ValidationStrategy] :validation_strategy
11619
+ # The option to relax the validation needed to update a template with
11620
+ # definition objects. This skips the validation step for specific
11621
+ # errors.
11622
+ #
11538
11623
  # @return [Types::UpdateTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11539
11624
  #
11540
11625
  # * {Types::UpdateTemplateResponse#template_id #template_id} => String
@@ -12538,7 +12623,7 @@ module Aws::QuickSight
12538
12623
  params: params,
12539
12624
  config: config)
12540
12625
  context[:gem_name] = 'aws-sdk-quicksight'
12541
- context[:gem_version] = '1.92.0'
12626
+ context[:gem_version] = '1.93.0'
12542
12627
  Seahorse::Client::Request.new(handlers, context)
12543
12628
  end
12544
12629
 
@@ -417,6 +417,9 @@ module Aws::QuickSight
417
417
  DataSourceSummaryList = Shapes::ListShape.new(name: 'DataSourceSummaryList')
418
418
  DataSourceType = Shapes::StringShape.new(name: 'DataSourceType')
419
419
  Database = Shapes::StringShape.new(name: 'Database')
420
+ DatabaseGroup = Shapes::StringShape.new(name: 'DatabaseGroup')
421
+ DatabaseGroupList = Shapes::ListShape.new(name: 'DatabaseGroupList')
422
+ DatabaseUser = Shapes::StringShape.new(name: 'DatabaseUser')
420
423
  DatabricksParameters = Shapes::StructureShape.new(name: 'DatabricksParameters')
421
424
  DatasetMetadata = Shapes::StructureShape.new(name: 'DatasetMetadata')
422
425
  DatasetParameter = Shapes::StructureShape.new(name: 'DatasetParameter')
@@ -1156,6 +1159,7 @@ module Aws::QuickSight
1156
1159
  RangeEndsLabelType = Shapes::StructureShape.new(name: 'RangeEndsLabelType')
1157
1160
  RdsParameters = Shapes::StructureShape.new(name: 'RdsParameters')
1158
1161
  RecoveryWindowInDays = Shapes::IntegerShape.new(name: 'RecoveryWindowInDays')
1162
+ RedshiftIAMParameters = Shapes::StructureShape.new(name: 'RedshiftIAMParameters')
1159
1163
  RedshiftParameters = Shapes::StructureShape.new(name: 'RedshiftParameters')
1160
1164
  ReferenceLine = Shapes::StructureShape.new(name: 'ReferenceLine')
1161
1165
  ReferenceLineCustomLabelConfiguration = Shapes::StructureShape.new(name: 'ReferenceLineCustomLabelConfiguration')
@@ -1648,6 +1652,8 @@ module Aws::QuickSight
1648
1652
  VPCConnectionResourceStatus = Shapes::StringShape.new(name: 'VPCConnectionResourceStatus')
1649
1653
  VPCConnectionSummary = Shapes::StructureShape.new(name: 'VPCConnectionSummary')
1650
1654
  VPCConnectionSummaryList = Shapes::ListShape.new(name: 'VPCConnectionSummaryList')
1655
+ ValidationStrategy = Shapes::StructureShape.new(name: 'ValidationStrategy')
1656
+ ValidationStrategyMode = Shapes::StringShape.new(name: 'ValidationStrategyMode')
1651
1657
  ValueWhenUnsetOption = Shapes::StringShape.new(name: 'ValueWhenUnsetOption')
1652
1658
  VersionDescription = Shapes::StringShape.new(name: 'VersionDescription')
1653
1659
  VersionNumber = Shapes::IntegerShape.new(name: 'VersionNumber')
@@ -2558,6 +2564,7 @@ module Aws::QuickSight
2558
2564
  CreateAnalysisRequest.add_member(:theme_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ThemeArn"))
2559
2565
  CreateAnalysisRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
2560
2566
  CreateAnalysisRequest.add_member(:definition, Shapes::ShapeRef.new(shape: AnalysisDefinition, location_name: "Definition"))
2567
+ CreateAnalysisRequest.add_member(:validation_strategy, Shapes::ShapeRef.new(shape: ValidationStrategy, location_name: "ValidationStrategy"))
2561
2568
  CreateAnalysisRequest.struct_class = Types::CreateAnalysisRequest
2562
2569
 
2563
2570
  CreateAnalysisResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
@@ -2581,6 +2588,7 @@ module Aws::QuickSight
2581
2588
  CreateDashboardRequest.add_member(:dashboard_publish_options, Shapes::ShapeRef.new(shape: DashboardPublishOptions, location_name: "DashboardPublishOptions"))
2582
2589
  CreateDashboardRequest.add_member(:theme_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ThemeArn"))
2583
2590
  CreateDashboardRequest.add_member(:definition, Shapes::ShapeRef.new(shape: DashboardVersionDefinition, location_name: "Definition"))
2591
+ CreateDashboardRequest.add_member(:validation_strategy, Shapes::ShapeRef.new(shape: ValidationStrategy, location_name: "ValidationStrategy"))
2584
2592
  CreateDashboardRequest.struct_class = Types::CreateDashboardRequest
2585
2593
 
2586
2594
  CreateDashboardResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
@@ -2759,6 +2767,7 @@ module Aws::QuickSight
2759
2767
  CreateTemplateRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
2760
2768
  CreateTemplateRequest.add_member(:version_description, Shapes::ShapeRef.new(shape: VersionDescription, location_name: "VersionDescription"))
2761
2769
  CreateTemplateRequest.add_member(:definition, Shapes::ShapeRef.new(shape: TemplateVersionDefinition, location_name: "Definition"))
2770
+ CreateTemplateRequest.add_member(:validation_strategy, Shapes::ShapeRef.new(shape: ValidationStrategy, location_name: "ValidationStrategy"))
2762
2771
  CreateTemplateRequest.struct_class = Types::CreateTemplateRequest
2763
2772
 
2764
2773
  CreateTemplateResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
@@ -3235,6 +3244,8 @@ module Aws::QuickSight
3235
3244
 
3236
3245
  DataSourceSummaryList.member = Shapes::ShapeRef.new(shape: DataSourceSummary)
3237
3246
 
3247
+ DatabaseGroupList.member = Shapes::ShapeRef.new(shape: DatabaseGroup)
3248
+
3238
3249
  DatabricksParameters.add_member(:host, Shapes::ShapeRef.new(shape: Host, required: true, location_name: "Host"))
3239
3250
  DatabricksParameters.add_member(:port, Shapes::ShapeRef.new(shape: Port, required: true, location_name: "Port"))
3240
3251
  DatabricksParameters.add_member(:sql_endpoint_path, Shapes::ShapeRef.new(shape: SqlEndpointPath, required: true, location_name: "SqlEndpointPath"))
@@ -4325,6 +4336,7 @@ module Aws::QuickSight
4325
4336
  FilterListConfiguration.add_member(:match_operator, Shapes::ShapeRef.new(shape: CategoryFilterMatchOperator, required: true, location_name: "MatchOperator"))
4326
4337
  FilterListConfiguration.add_member(:category_values, Shapes::ShapeRef.new(shape: CategoryValueList, location_name: "CategoryValues"))
4327
4338
  FilterListConfiguration.add_member(:select_all_options, Shapes::ShapeRef.new(shape: CategoryFilterSelectAllOptions, location_name: "SelectAllOptions"))
4339
+ FilterListConfiguration.add_member(:null_option, Shapes::ShapeRef.new(shape: FilterNullOption, location_name: "NullOption"))
4328
4340
  FilterListConfiguration.struct_class = Types::FilterListConfiguration
4329
4341
 
4330
4342
  FilterListControl.add_member(:filter_control_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, required: true, location_name: "FilterControlId"))
@@ -6115,10 +6127,17 @@ module Aws::QuickSight
6115
6127
  RdsParameters.add_member(:database, Shapes::ShapeRef.new(shape: Database, required: true, location_name: "Database"))
6116
6128
  RdsParameters.struct_class = Types::RdsParameters
6117
6129
 
6130
+ RedshiftIAMParameters.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
6131
+ RedshiftIAMParameters.add_member(:database_user, Shapes::ShapeRef.new(shape: DatabaseUser, required: true, location_name: "DatabaseUser"))
6132
+ RedshiftIAMParameters.add_member(:database_groups, Shapes::ShapeRef.new(shape: DatabaseGroupList, location_name: "DatabaseGroups"))
6133
+ RedshiftIAMParameters.add_member(:auto_create_database_user, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoCreateDatabaseUser"))
6134
+ RedshiftIAMParameters.struct_class = Types::RedshiftIAMParameters
6135
+
6118
6136
  RedshiftParameters.add_member(:host, Shapes::ShapeRef.new(shape: Host, location_name: "Host"))
6119
6137
  RedshiftParameters.add_member(:port, Shapes::ShapeRef.new(shape: OptionalPort, location_name: "Port"))
6120
6138
  RedshiftParameters.add_member(:database, Shapes::ShapeRef.new(shape: Database, required: true, location_name: "Database"))
6121
6139
  RedshiftParameters.add_member(:cluster_id, Shapes::ShapeRef.new(shape: ClusterId, location_name: "ClusterId"))
6140
+ RedshiftParameters.add_member(:iam_parameters, Shapes::ShapeRef.new(shape: RedshiftIAMParameters, location_name: "IAMParameters"))
6122
6141
  RedshiftParameters.struct_class = Types::RedshiftParameters
6123
6142
 
6124
6143
  ReferenceLine.add_member(:status, Shapes::ShapeRef.new(shape: WidgetStatus, location_name: "Status"))
@@ -7568,6 +7587,7 @@ module Aws::QuickSight
7568
7587
  UpdateAnalysisRequest.add_member(:source_entity, Shapes::ShapeRef.new(shape: AnalysisSourceEntity, location_name: "SourceEntity"))
7569
7588
  UpdateAnalysisRequest.add_member(:theme_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ThemeArn"))
7570
7589
  UpdateAnalysisRequest.add_member(:definition, Shapes::ShapeRef.new(shape: AnalysisDefinition, location_name: "Definition"))
7590
+ UpdateAnalysisRequest.add_member(:validation_strategy, Shapes::ShapeRef.new(shape: ValidationStrategy, location_name: "ValidationStrategy"))
7571
7591
  UpdateAnalysisRequest.struct_class = Types::UpdateAnalysisRequest
7572
7592
 
7573
7593
  UpdateAnalysisResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
@@ -7613,6 +7633,7 @@ module Aws::QuickSight
7613
7633
  UpdateDashboardRequest.add_member(:dashboard_publish_options, Shapes::ShapeRef.new(shape: DashboardPublishOptions, location_name: "DashboardPublishOptions"))
7614
7634
  UpdateDashboardRequest.add_member(:theme_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ThemeArn"))
7615
7635
  UpdateDashboardRequest.add_member(:definition, Shapes::ShapeRef.new(shape: DashboardVersionDefinition, location_name: "Definition"))
7636
+ UpdateDashboardRequest.add_member(:validation_strategy, Shapes::ShapeRef.new(shape: ValidationStrategy, location_name: "ValidationStrategy"))
7616
7637
  UpdateDashboardRequest.struct_class = Types::UpdateDashboardRequest
7617
7638
 
7618
7639
  UpdateDashboardResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
@@ -7801,6 +7822,7 @@ module Aws::QuickSight
7801
7822
  UpdateTemplateRequest.add_member(:version_description, Shapes::ShapeRef.new(shape: VersionDescription, location_name: "VersionDescription"))
7802
7823
  UpdateTemplateRequest.add_member(:name, Shapes::ShapeRef.new(shape: TemplateName, location_name: "Name"))
7803
7824
  UpdateTemplateRequest.add_member(:definition, Shapes::ShapeRef.new(shape: TemplateVersionDefinition, location_name: "Definition"))
7825
+ UpdateTemplateRequest.add_member(:validation_strategy, Shapes::ShapeRef.new(shape: ValidationStrategy, location_name: "ValidationStrategy"))
7804
7826
  UpdateTemplateRequest.struct_class = Types::UpdateTemplateRequest
7805
7827
 
7806
7828
  UpdateTemplateResponse.add_member(:template_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, location_name: "TemplateId"))
@@ -7975,6 +7997,9 @@ module Aws::QuickSight
7975
7997
 
7976
7998
  VPCConnectionSummaryList.member = Shapes::ShapeRef.new(shape: VPCConnectionSummary)
7977
7999
 
8000
+ ValidationStrategy.add_member(:mode, Shapes::ShapeRef.new(shape: ValidationStrategyMode, required: true, location_name: "Mode"))
8001
+ ValidationStrategy.struct_class = Types::ValidationStrategy
8002
+
7978
8003
  VisibleRangeOptions.add_member(:percent_range, Shapes::ShapeRef.new(shape: PercentVisibleRange, location_name: "PercentRange"))
7979
8004
  VisibleRangeOptions.struct_class = Types::VisibleRangeOptions
7980
8005
 
@@ -4090,6 +4090,12 @@ module Aws::QuickSight
4090
4090
  # for the request to be valid.
4091
4091
  # @return [Types::AnalysisDefinition]
4092
4092
  #
4093
+ # @!attribute [rw] validation_strategy
4094
+ # The option to relax the validation needed to create an analysis with
4095
+ # definition objects. This skips the validation step for specific
4096
+ # errors.
4097
+ # @return [Types::ValidationStrategy]
4098
+ #
4093
4099
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateAnalysisRequest AWS API Documentation
4094
4100
  #
4095
4101
  class CreateAnalysisRequest < Struct.new(
@@ -4101,7 +4107,8 @@ module Aws::QuickSight
4101
4107
  :source_entity,
4102
4108
  :theme_arn,
4103
4109
  :tags,
4104
- :definition)
4110
+ :definition,
4111
+ :validation_strategy)
4105
4112
  SENSITIVE = []
4106
4113
  include Aws::Structure
4107
4114
  end
@@ -4244,6 +4251,12 @@ module Aws::QuickSight
4244
4251
  # for the request to be valid.
4245
4252
  # @return [Types::DashboardVersionDefinition]
4246
4253
  #
4254
+ # @!attribute [rw] validation_strategy
4255
+ # The option to relax the validation needed to create a dashboard with
4256
+ # definition objects. This option skips the validation step for
4257
+ # specific errors.
4258
+ # @return [Types::ValidationStrategy]
4259
+ #
4247
4260
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateDashboardRequest AWS API Documentation
4248
4261
  #
4249
4262
  class CreateDashboardRequest < Struct.new(
@@ -4257,7 +4270,8 @@ module Aws::QuickSight
4257
4270
  :version_description,
4258
4271
  :dashboard_publish_options,
4259
4272
  :theme_arn,
4260
- :definition)
4273
+ :definition,
4274
+ :validation_strategy)
4261
4275
  SENSITIVE = []
4262
4276
  include Aws::Structure
4263
4277
  end
@@ -5174,6 +5188,12 @@ module Aws::QuickSight
5174
5188
  # for the request to be valid.
5175
5189
  # @return [Types::TemplateVersionDefinition]
5176
5190
  #
5191
+ # @!attribute [rw] validation_strategy
5192
+ # TThe option to relax the validation needed to create a template with
5193
+ # definition objects. This skips the validation step for specific
5194
+ # errors.
5195
+ # @return [Types::ValidationStrategy]
5196
+ #
5177
5197
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateTemplateRequest AWS API Documentation
5178
5198
  #
5179
5199
  class CreateTemplateRequest < Struct.new(
@@ -5184,7 +5204,8 @@ module Aws::QuickSight
5184
5204
  :source_entity,
5185
5205
  :tags,
5186
5206
  :version_description,
5187
- :definition)
5207
+ :definition,
5208
+ :validation_strategy)
5188
5209
  SENSITIVE = []
5189
5210
  include Aws::Structure
5190
5211
  end
@@ -12920,12 +12941,24 @@ module Aws::QuickSight
12920
12941
  # ^
12921
12942
  # @return [String]
12922
12943
  #
12944
+ # @!attribute [rw] null_option
12945
+ # This option determines how null values should be treated when
12946
+ # filtering data.
12947
+ #
12948
+ # * `ALL_VALUES`: Include null values in filtered results.
12949
+ #
12950
+ # * `NULLS_ONLY`: Only include null values in filtered results.
12951
+ #
12952
+ # * `NON_NULLS_ONLY`: Exclude null values from filtered results.
12953
+ # @return [String]
12954
+ #
12923
12955
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FilterListConfiguration AWS API Documentation
12924
12956
  #
12925
12957
  class FilterListConfiguration < Struct.new(
12926
12958
  :match_operator,
12927
12959
  :category_values,
12928
- :select_all_options)
12960
+ :select_all_options,
12961
+ :null_option)
12929
12962
  SENSITIVE = []
12930
12963
  include Aws::Structure
12931
12964
  end
@@ -21583,6 +21616,59 @@ module Aws::QuickSight
21583
21616
  include Aws::Structure
21584
21617
  end
21585
21618
 
21619
+ # A structure that grants Amazon QuickSight access to your cluster and
21620
+ # make a call to the `redshift:GetClusterCredentials` API. For more
21621
+ # information on the `redshift:GetClusterCredentials` API, see [
21622
+ # `GetClusterCredentials` ][1].
21623
+ #
21624
+ #
21625
+ #
21626
+ # [1]: https://docs.aws.amazon.com/redshift/latest/APIReference/API_GetClusterCredentials.html
21627
+ #
21628
+ # @!attribute [rw] role_arn
21629
+ # Use the `RoleArn` structure to allow Amazon QuickSight to call
21630
+ # `redshift:GetClusterCredentials` on your cluster. The calling
21631
+ # principal must have `iam:PassRole` access to pass the role to Amazon
21632
+ # QuickSight. The role's trust policy must allow the Amazon
21633
+ # QuickSight service principal to assume the role.
21634
+ # @return [String]
21635
+ #
21636
+ # @!attribute [rw] database_user
21637
+ # The user whose permissions and group memberships will be used by
21638
+ # Amazon QuickSight to access the cluster. If this user already exists
21639
+ # in your database, Amazon QuickSight is granted the same permissions
21640
+ # that the user has. If the user doesn't exist, set the value of
21641
+ # `AutoCreateDatabaseUser` to `True` to create a new user with PUBLIC
21642
+ # permissions.
21643
+ # @return [String]
21644
+ #
21645
+ # @!attribute [rw] database_groups
21646
+ # A list of groups whose permissions will be granted to Amazon
21647
+ # QuickSight to access the cluster. These permissions are combined
21648
+ # with the permissions granted to Amazon QuickSight by the
21649
+ # `DatabaseUser`. If you choose to include this parameter, the
21650
+ # `RoleArn` must grant access to `redshift:JoinGroup`.
21651
+ # @return [Array<String>]
21652
+ #
21653
+ # @!attribute [rw] auto_create_database_user
21654
+ # Automatically creates a database user. If your database doesn't
21655
+ # have a `DatabaseUser`, set this parameter to `True`. If there is no
21656
+ # `DatabaseUser`, Amazon QuickSight can't connect to your cluster.
21657
+ # The `RoleArn` that you use for this operation must grant access to
21658
+ # `redshift:CreateClusterUser` to successfully create the user.
21659
+ # @return [Boolean]
21660
+ #
21661
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RedshiftIAMParameters AWS API Documentation
21662
+ #
21663
+ class RedshiftIAMParameters < Struct.new(
21664
+ :role_arn,
21665
+ :database_user,
21666
+ :database_groups,
21667
+ :auto_create_database_user)
21668
+ SENSITIVE = []
21669
+ include Aws::Structure
21670
+ end
21671
+
21586
21672
  # The parameters for Amazon Redshift. The `ClusterId` field can be blank
21587
21673
  # if `Host` and `Port` are both set. The `Host` and `Port` fields can be
21588
21674
  # blank if the `ClusterId` field is set.
@@ -21604,13 +21690,24 @@ module Aws::QuickSight
21604
21690
  # provided.
21605
21691
  # @return [String]
21606
21692
  #
21693
+ # @!attribute [rw] iam_parameters
21694
+ # An optional parameter that uses IAM authentication to grant Amazon
21695
+ # QuickSight access to your cluster. This parameter can be used
21696
+ # instead of [DataSourceCredentials][1].
21697
+ #
21698
+ #
21699
+ #
21700
+ # [1]: https://docs.aws.amazon.com/quicksight/latest/APIReference/API_DataSourceCredentials.html
21701
+ # @return [Types::RedshiftIAMParameters]
21702
+ #
21607
21703
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RedshiftParameters AWS API Documentation
21608
21704
  #
21609
21705
  class RedshiftParameters < Struct.new(
21610
21706
  :host,
21611
21707
  :port,
21612
21708
  :database,
21613
- :cluster_id)
21709
+ :cluster_id,
21710
+ :iam_parameters)
21614
21711
  SENSITIVE = []
21615
21712
  include Aws::Structure
21616
21713
  end
@@ -28783,6 +28880,12 @@ module Aws::QuickSight
28783
28880
  # Template, or Analysis.
28784
28881
  # @return [Types::AnalysisDefinition]
28785
28882
  #
28883
+ # @!attribute [rw] validation_strategy
28884
+ # The option to relax the validation needed to update an analysis with
28885
+ # definition objects. This skips the validation step for specific
28886
+ # errors.
28887
+ # @return [Types::ValidationStrategy]
28888
+ #
28786
28889
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateAnalysisRequest AWS API Documentation
28787
28890
  #
28788
28891
  class UpdateAnalysisRequest < Struct.new(
@@ -28792,7 +28895,8 @@ module Aws::QuickSight
28792
28895
  :parameters,
28793
28896
  :source_entity,
28794
28897
  :theme_arn,
28795
- :definition)
28898
+ :definition,
28899
+ :validation_strategy)
28796
28900
  SENSITIVE = []
28797
28901
  include Aws::Structure
28798
28902
  end
@@ -29028,6 +29132,12 @@ module Aws::QuickSight
29028
29132
  # Template, or Analysis.
29029
29133
  # @return [Types::DashboardVersionDefinition]
29030
29134
  #
29135
+ # @!attribute [rw] validation_strategy
29136
+ # The option to relax the validation needed to update a dashboard with
29137
+ # definition objects. This skips the validation step for specific
29138
+ # errors.
29139
+ # @return [Types::ValidationStrategy]
29140
+ #
29031
29141
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateDashboardRequest AWS API Documentation
29032
29142
  #
29033
29143
  class UpdateDashboardRequest < Struct.new(
@@ -29039,7 +29149,8 @@ module Aws::QuickSight
29039
29149
  :version_description,
29040
29150
  :dashboard_publish_options,
29041
29151
  :theme_arn,
29042
- :definition)
29152
+ :definition,
29153
+ :validation_strategy)
29043
29154
  SENSITIVE = []
29044
29155
  include Aws::Structure
29045
29156
  end
@@ -29952,6 +30063,12 @@ module Aws::QuickSight
29952
30063
  # Template, or Analysis.
29953
30064
  # @return [Types::TemplateVersionDefinition]
29954
30065
  #
30066
+ # @!attribute [rw] validation_strategy
30067
+ # The option to relax the validation needed to update a template with
30068
+ # definition objects. This skips the validation step for specific
30069
+ # errors.
30070
+ # @return [Types::ValidationStrategy]
30071
+ #
29955
30072
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateTemplateRequest AWS API Documentation
29956
30073
  #
29957
30074
  class UpdateTemplateRequest < Struct.new(
@@ -29960,7 +30077,8 @@ module Aws::QuickSight
29960
30077
  :source_entity,
29961
30078
  :version_description,
29962
30079
  :name,
29963
- :definition)
30080
+ :definition,
30081
+ :validation_strategy)
29964
30082
  SENSITIVE = []
29965
30083
  include Aws::Structure
29966
30084
  end
@@ -30872,6 +30990,26 @@ module Aws::QuickSight
30872
30990
  include Aws::Structure
30873
30991
  end
30874
30992
 
30993
+ # The option to relax the validation that is required to create and
30994
+ # update analyses, dashboards, and templates with definition objects.
30995
+ # When you set this value to `LENIENT`, validation is skipped for
30996
+ # specific errors.
30997
+ #
30998
+ # @!attribute [rw] mode
30999
+ # The mode of validation for the asset to be creaed or updated. When
31000
+ # you set this value to `STRICT`, strict validation for every error is
31001
+ # enforced. When you set this value to `LENIENT`, validation is
31002
+ # skipped for specific UI errors.
31003
+ # @return [String]
31004
+ #
31005
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ValidationStrategy AWS API Documentation
31006
+ #
31007
+ class ValidationStrategy < Struct.new(
31008
+ :mode)
31009
+ SENSITIVE = []
31010
+ include Aws::Structure
31011
+ end
31012
+
30875
31013
  # The range options for the data zoom scroll bar.
30876
31014
  #
30877
31015
  # @!attribute [rw] percent_range
@@ -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.92.0'
55
+ GEM_VERSION = '1.93.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-quicksight
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.92.0
4
+ version: 1.93.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-27 00:00:00.000000000 Z
11
+ date: 2023-10-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core