aws-sdk-quicksight 1.56.0 → 1.60.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
32
33
 
@@ -73,6 +74,7 @@ module Aws::QuickSight
73
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
75
  add_plugin(Aws::Plugins::TransferEncoding)
75
76
  add_plugin(Aws::Plugins::HttpChecksum)
77
+ add_plugin(Aws::Plugins::DefaultsMode)
76
78
  add_plugin(Aws::Plugins::SignatureV4)
77
79
  add_plugin(Aws::Plugins::Protocols::RestJson)
78
80
 
@@ -119,7 +121,9 @@ module Aws::QuickSight
119
121
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
122
  # are very aggressive. Construct and pass an instance of
121
123
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
124
+ # enable retries and extended timeouts. Instance profile credential
125
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
126
+ # to true.
123
127
  #
124
128
  # @option options [required, String] :region
125
129
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +177,10 @@ module Aws::QuickSight
173
177
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
178
  # a clock skew correction and retry requests with skewed client clocks.
175
179
  #
180
+ # @option options [String] :defaults_mode ("legacy")
181
+ # See {Aws::DefaultsModeConfiguration} for a list of the
182
+ # accepted modes and the configuration defaults that are included.
183
+ #
176
184
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
185
  # Set to true to disable SDK automatically adding host prefix
178
186
  # to default service endpoint when available.
@@ -275,6 +283,15 @@ module Aws::QuickSight
275
283
  # ** Please note ** When response stubbing is enabled, no HTTP
276
284
  # requests are made, and retries are disabled.
277
285
  #
286
+ # @option options [Boolean] :use_dualstack_endpoint
287
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
288
+ # will be used if available.
289
+ #
290
+ # @option options [Boolean] :use_fips_endpoint
291
+ # When set to `true`, fips compatible endpoints will be used if available.
292
+ # When a `fips` region is used, the region is normalized and this config
293
+ # is set to `true`.
294
+ #
278
295
  # @option options [Boolean] :validate_params (true)
279
296
  # When `true`, request parameters are validated before
280
297
  # sending the request.
@@ -286,7 +303,7 @@ module Aws::QuickSight
286
303
  # seconds to wait when opening a HTTP session before raising a
287
304
  # `Timeout::Error`.
288
305
  #
289
- # @option options [Integer] :http_read_timeout (60) The default
306
+ # @option options [Float] :http_read_timeout (60) The default
290
307
  # number of seconds to wait for response data. This value can
291
308
  # safely be set per-request on the session.
292
309
  #
@@ -302,6 +319,9 @@ module Aws::QuickSight
302
319
  # disables this behaviour. This value can safely be set per
303
320
  # request on the session.
304
321
  #
322
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
323
+ # in seconds.
324
+ #
305
325
  # @option options [Boolean] :http_wire_trace (false) When `true`,
306
326
  # HTTP debug output will be sent to the `:logger`.
307
327
  #
@@ -378,7 +398,7 @@ module Aws::QuickSight
378
398
  # Guide.*
379
399
  #
380
400
  # You can create customizations for your Amazon Web Services account or,
381
- # if you specify a namespace, for a Amazon QuickSight namespace instead.
401
+ # if you specify a namespace, for a QuickSight namespace instead.
382
402
  # Customizations that apply to a namespace always override
383
403
  # customizations that apply to an Amazon Web Services account. To find
384
404
  # out which customizations apply, use the `DescribeAccountCustomization`
@@ -408,7 +428,7 @@ module Aws::QuickSight
408
428
  # @option params [required, Types::AccountCustomization] :account_customization
409
429
  # The Amazon QuickSight customizations you're adding in the current
410
430
  # Amazon Web Services Region. You can add these to an Amazon Web
411
- # Services account and a Amazon QuickSight namespace.
431
+ # Services account and a QuickSight namespace.
412
432
  #
413
433
  # For example, you can add a default theme by setting
414
434
  # `AccountCustomization` to the midnight theme: `"AccountCustomization":
@@ -437,6 +457,7 @@ module Aws::QuickSight
437
457
  # namespace: "Namespace",
438
458
  # account_customization: { # required
439
459
  # default_theme: "Arn",
460
+ # default_email_customization_template: "Arn",
440
461
  # },
441
462
  # tags: [
442
463
  # {
@@ -452,6 +473,7 @@ module Aws::QuickSight
452
473
  # resp.aws_account_id #=> String
453
474
  # resp.namespace #=> String
454
475
  # resp.account_customization.default_theme #=> String
476
+ # resp.account_customization.default_email_customization_template #=> String
455
477
  # resp.request_id #=> String
456
478
  # resp.status #=> Integer
457
479
  #
@@ -604,7 +626,7 @@ module Aws::QuickSight
604
626
  # dashboard.
605
627
  #
606
628
  # @option params [required, String] :dashboard_id
607
- # The ID for the dashboard, also added to the IAMpolicy.
629
+ # The ID for the dashboard, also added to the IAM policy.
608
630
  #
609
631
  # @option params [required, String] :name
610
632
  # The display name of the dashboard.
@@ -616,8 +638,8 @@ module Aws::QuickSight
616
638
  #
617
639
  # @option params [Array<Types::ResourcePermission>] :permissions
618
640
  # A structure that contains the permissions of the dashboard. You can
619
- # use this structure for granting permissions by providing a list of
620
- # IAMaction information for each principal ARN.
641
+ # use this structure for granting permissions by providing a list of IAM
642
+ # action information for each principal ARN.
621
643
  #
622
644
  # To specify no permissions, omit the permissions list.
623
645
  #
@@ -627,8 +649,8 @@ module Aws::QuickSight
627
649
  # using as source. You can only create a dashboard from a template, so
628
650
  # you use a `SourceTemplate` entity. If you need to create a dashboard
629
651
  # from an analysis, first convert the analysis to a template by using
630
- # the CreateTemplate API operation. For `SourceTemplate`, specify the
631
- # Amazon Resource Name (ARN) of the source template. The
652
+ # the ` CreateTemplate ` API operation. For `SourceTemplate`, specify
653
+ # the Amazon Resource Name (ARN) of the source template. The
632
654
  # `SourceTemplate`ARN can contain any Amazon Web Services account and
633
655
  # any Amazon QuickSight-supported Amazon Web Services Region.
634
656
  #
@@ -1072,7 +1094,7 @@ module Aws::QuickSight
1072
1094
  # aws_account_id: "AwsAccountId", # required
1073
1095
  # data_source_id: "ResourceId", # required
1074
1096
  # name: "ResourceName", # required
1075
- # type: "ADOBE_ANALYTICS", # required, accepts ADOBE_ANALYTICS, AMAZON_ELASTICSEARCH, ATHENA, AURORA, AURORA_POSTGRESQL, AWS_IOT_ANALYTICS, GITHUB, JIRA, MARIADB, MYSQL, ORACLE, POSTGRESQL, PRESTO, REDSHIFT, S3, SALESFORCE, SERVICENOW, SNOWFLAKE, SPARK, SQLSERVER, TERADATA, TWITTER, TIMESTREAM, AMAZON_OPENSEARCH
1097
+ # type: "ADOBE_ANALYTICS", # required, accepts ADOBE_ANALYTICS, AMAZON_ELASTICSEARCH, ATHENA, AURORA, AURORA_POSTGRESQL, AWS_IOT_ANALYTICS, GITHUB, JIRA, MARIADB, MYSQL, ORACLE, POSTGRESQL, PRESTO, REDSHIFT, S3, SALESFORCE, SERVICENOW, SNOWFLAKE, SPARK, SQLSERVER, TERADATA, TWITTER, TIMESTREAM, AMAZON_OPENSEARCH, EXASOL
1076
1098
  # data_source_parameters: {
1077
1099
  # amazon_elasticsearch_parameters: {
1078
1100
  # domain: "Domain", # required
@@ -1166,6 +1188,10 @@ module Aws::QuickSight
1166
1188
  # amazon_open_search_parameters: {
1167
1189
  # domain: "Domain", # required
1168
1190
  # },
1191
+ # exasol_parameters: {
1192
+ # host: "Host", # required
1193
+ # port: 1, # required
1194
+ # },
1169
1195
  # },
1170
1196
  # credentials: {
1171
1197
  # credential_pair: {
@@ -1265,6 +1291,10 @@ module Aws::QuickSight
1265
1291
  # amazon_open_search_parameters: {
1266
1292
  # domain: "Domain", # required
1267
1293
  # },
1294
+ # exasol_parameters: {
1295
+ # host: "Host", # required
1296
+ # port: 1, # required
1297
+ # },
1268
1298
  # },
1269
1299
  # ],
1270
1300
  # },
@@ -1310,10 +1340,11 @@ module Aws::QuickSight
1310
1340
  # Creates an empty shared folder.
1311
1341
  #
1312
1342
  # @option params [required, String] :aws_account_id
1313
- # The AWS Account ID.
1343
+ # The ID for the Amazon Web Services account where you want to create
1344
+ # the folder.
1314
1345
  #
1315
1346
  # @option params [required, String] :folder_id
1316
- # The folder ID.
1347
+ # The ID of the folder.
1317
1348
  #
1318
1349
  # @option params [String] :name
1319
1350
  # The name of the folder.
@@ -1385,10 +1416,10 @@ module Aws::QuickSight
1385
1416
  # folder.
1386
1417
  #
1387
1418
  # @option params [required, String] :aws_account_id
1388
- # The AWS Account ID.
1419
+ # The ID for the Amazon Web Services account that contains the folder.
1389
1420
  #
1390
1421
  # @option params [required, String] :folder_id
1391
- # The folder ID.
1422
+ # The ID of the folder.
1392
1423
  #
1393
1424
  # @option params [required, String] :member_id
1394
1425
  # The ID of the asset (the dashboard, analysis, or dataset).
@@ -1530,7 +1561,7 @@ module Aws::QuickSight
1530
1561
  req.send_request(options)
1531
1562
  end
1532
1563
 
1533
- # Creates an assignment with one specified IAMpolicy, identified by its
1564
+ # Creates an assignment with one specified IAM policy, identified by its
1534
1565
  # Amazon Resource Name (ARN). This policy assignment is attached to the
1535
1566
  # specified groups or users of Amazon QuickSight. Assignment names are
1536
1567
  # unique per Amazon Web Services account. To avoid overwriting rules in
@@ -1538,7 +1569,7 @@ module Aws::QuickSight
1538
1569
  #
1539
1570
  # @option params [required, String] :aws_account_id
1540
1571
  # The ID of the Amazon Web Services account where you want to assign an
1541
- # IAMpolicy to Amazon QuickSight users or groups.
1572
+ # IAM policy to Amazon QuickSight users or groups.
1542
1573
  #
1543
1574
  # @option params [required, String] :assignment_name
1544
1575
  # The name of the assignment, also called a rule. It must be unique
@@ -1557,7 +1588,7 @@ module Aws::QuickSight
1557
1588
  # when creating the data source.
1558
1589
  #
1559
1590
  # @option params [String] :policy_arn
1560
- # The ARN for the IAMpolicy to apply to the Amazon QuickSight users and
1591
+ # The ARN for the IAM policy to apply to the Amazon QuickSight users and
1561
1592
  # groups specified in this assignment.
1562
1593
  #
1563
1594
  # @option params [Hash<String,Array>] :identities
@@ -1929,7 +1960,7 @@ module Aws::QuickSight
1929
1960
  # The ID of the theme that a custom theme will inherit from. All themes
1930
1961
  # inherit from one of the starting themes defined by Amazon QuickSight.
1931
1962
  # For a list of the starting themes, use `ListThemes` or choose
1932
- # **Themes** from within a Amazon QuickSight analysis.
1963
+ # **Themes** from within an analysis.
1933
1964
  #
1934
1965
  # @option params [String] :version_description
1935
1966
  # A description of the first version of the theme that you're creating.
@@ -2321,10 +2352,10 @@ module Aws::QuickSight
2321
2352
  # Deletes an empty folder.
2322
2353
  #
2323
2354
  # @option params [required, String] :aws_account_id
2324
- # The AWS Account ID for the folder.
2355
+ # The ID for the Amazon Web Services account that contains the folder.
2325
2356
  #
2326
2357
  # @option params [required, String] :folder_id
2327
- # The folder ID.
2358
+ # The ID of the folder.
2328
2359
  #
2329
2360
  # @return [Types::DeleteFolderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2330
2361
  #
@@ -2360,7 +2391,7 @@ module Aws::QuickSight
2360
2391
  # folder.
2361
2392
  #
2362
2393
  # @option params [required, String] :aws_account_id
2363
- # The AWS Account ID.
2394
+ # The ID for the Amazon Web Services account that contains the folder.
2364
2395
  #
2365
2396
  # @option params [required, String] :folder_id
2366
2397
  # The Folder ID.
@@ -2487,11 +2518,11 @@ module Aws::QuickSight
2487
2518
  req.send_request(options)
2488
2519
  end
2489
2520
 
2490
- # Deletes an existing IAMpolicy assignment.
2521
+ # Deletes an existing IAM policy assignment.
2491
2522
  #
2492
2523
  # @option params [required, String] :aws_account_id
2493
- # The Amazon Web Services account ID where you want to delete the
2494
- # IAMpolicy assignment.
2524
+ # The Amazon Web Services account ID where you want to delete the IAM
2525
+ # policy assignment.
2495
2526
  #
2496
2527
  # @option params [required, String] :assignment_name
2497
2528
  # The name of the assignment.
@@ -2849,11 +2880,11 @@ module Aws::QuickSight
2849
2880
  #
2850
2881
  # * `Amazon Web Services account` - The Amazon Web Services account
2851
2882
  # exists at the top of the hierarchy. It has the potential to use all
2852
- # of the Amazon Web Services Regions and AWS Services. When you
2853
- # subscribe to Amazon QuickSight, you choose one Amazon Web Services
2854
- # Region to use as your home Region. That's where your free SPICE
2855
- # capacity is located. You can use Amazon QuickSight in any supported
2856
- # Amazon Web Services Region.
2883
+ # of the Amazon Web Services Regions and Amazon Web Services Services.
2884
+ # When you subscribe to Amazon QuickSight, you choose one Amazon Web
2885
+ # Services Region to use as your home Region. That's where your free
2886
+ # SPICE capacity is located. You can use Amazon QuickSight in any
2887
+ # supported Amazon Web Services Region.
2857
2888
  #
2858
2889
  # * `Amazon Web Services Region` - In each Amazon Web Services Region
2859
2890
  # where you sign in to Amazon QuickSight at least once, Amazon
@@ -2864,8 +2895,8 @@ module Aws::QuickSight
2864
2895
  # constrained to a namespace.
2865
2896
  #
2866
2897
  # To run the command in a different Amazon Web Services Region, you
2867
- # change your Region settings. If you're using the AWS CLI, you can
2868
- # use one of the following options:
2898
+ # change your Region settings. If you're using the CLI, you can use
2899
+ # one of the following options:
2869
2900
  #
2870
2901
  # * Use [command line options][1].
2871
2902
  #
@@ -2873,12 +2904,12 @@ module Aws::QuickSight
2873
2904
  #
2874
2905
  # * Run `aws configure` to change your default Amazon Web Services
2875
2906
  # Region. Use Enter to key the same settings for your keys. For more
2876
- # information, see [Configuring the AWS CLI][3].
2907
+ # information, see [Configuring the CLI][3].
2877
2908
  #
2878
- # * `Namespace` - A Amazon QuickSight namespace is a partition that
2879
- # contains users and assets (data sources, datasets, dashboards, and
2880
- # so on). To access assets that are in a specific namespace, users and
2881
- # groups must also be part of the same namespace. People who share a
2909
+ # * `Namespace` - A QuickSight namespace is a partition that contains
2910
+ # users and assets (data sources, datasets, dashboards, and so on). To
2911
+ # access assets that are in a specific namespace, users and groups
2912
+ # must also be part of the same namespace. People who share a
2882
2913
  # namespace are completely isolated from users and assets in other
2883
2914
  # namespaces, even if they are in the same Amazon Web Services account
2884
2915
  # and Amazon Web Services Region.
@@ -2937,6 +2968,7 @@ module Aws::QuickSight
2937
2968
  # resp.aws_account_id #=> String
2938
2969
  # resp.namespace #=> String
2939
2970
  # resp.account_customization.default_theme #=> String
2971
+ # resp.account_customization.default_email_customization_template #=> String
2940
2972
  # resp.request_id #=> String
2941
2973
  # resp.status #=> Integer
2942
2974
  #
@@ -3158,7 +3190,7 @@ module Aws::QuickSight
3158
3190
  # that you're describing permissions for.
3159
3191
  #
3160
3192
  # @option params [required, String] :dashboard_id
3161
- # The ID for the dashboard, also added to the IAMpolicy.
3193
+ # The ID for the dashboard, also added to the IAM policy.
3162
3194
  #
3163
3195
  # @return [Types::DescribeDashboardPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3164
3196
  #
@@ -3167,6 +3199,7 @@ module Aws::QuickSight
3167
3199
  # * {Types::DescribeDashboardPermissionsResponse#permissions #permissions} => Array&lt;Types::ResourcePermission&gt;
3168
3200
  # * {Types::DescribeDashboardPermissionsResponse#status #status} => Integer
3169
3201
  # * {Types::DescribeDashboardPermissionsResponse#request_id #request_id} => String
3202
+ # * {Types::DescribeDashboardPermissionsResponse#link_sharing_configuration #link_sharing_configuration} => Types::LinkSharingConfiguration
3170
3203
  #
3171
3204
  # @example Request syntax with placeholder values
3172
3205
  #
@@ -3185,6 +3218,10 @@ module Aws::QuickSight
3185
3218
  # resp.permissions[0].actions[0] #=> String
3186
3219
  # resp.status #=> Integer
3187
3220
  # resp.request_id #=> String
3221
+ # resp.link_sharing_configuration.permissions #=> Array
3222
+ # resp.link_sharing_configuration.permissions[0].principal #=> String
3223
+ # resp.link_sharing_configuration.permissions[0].actions #=> Array
3224
+ # resp.link_sharing_configuration.permissions[0].actions[0] #=> String
3188
3225
  #
3189
3226
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeDashboardPermissions AWS API Documentation
3190
3227
  #
@@ -3396,7 +3433,7 @@ module Aws::QuickSight
3396
3433
  # resp.data_source.arn #=> String
3397
3434
  # resp.data_source.data_source_id #=> String
3398
3435
  # resp.data_source.name #=> String
3399
- # resp.data_source.type #=> String, one of "ADOBE_ANALYTICS", "AMAZON_ELASTICSEARCH", "ATHENA", "AURORA", "AURORA_POSTGRESQL", "AWS_IOT_ANALYTICS", "GITHUB", "JIRA", "MARIADB", "MYSQL", "ORACLE", "POSTGRESQL", "PRESTO", "REDSHIFT", "S3", "SALESFORCE", "SERVICENOW", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "TWITTER", "TIMESTREAM", "AMAZON_OPENSEARCH"
3436
+ # resp.data_source.type #=> String, one of "ADOBE_ANALYTICS", "AMAZON_ELASTICSEARCH", "ATHENA", "AURORA", "AURORA_POSTGRESQL", "AWS_IOT_ANALYTICS", "GITHUB", "JIRA", "MARIADB", "MYSQL", "ORACLE", "POSTGRESQL", "PRESTO", "REDSHIFT", "S3", "SALESFORCE", "SERVICENOW", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "TWITTER", "TIMESTREAM", "AMAZON_OPENSEARCH", "EXASOL"
3400
3437
  # resp.data_source.status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
3401
3438
  # resp.data_source.created_time #=> Time
3402
3439
  # resp.data_source.last_updated_time #=> Time
@@ -3448,6 +3485,8 @@ module Aws::QuickSight
3448
3485
  # resp.data_source.data_source_parameters.twitter_parameters.query #=> String
3449
3486
  # resp.data_source.data_source_parameters.twitter_parameters.max_rows #=> Integer
3450
3487
  # resp.data_source.data_source_parameters.amazon_open_search_parameters.domain #=> String
3488
+ # resp.data_source.data_source_parameters.exasol_parameters.host #=> String
3489
+ # resp.data_source.data_source_parameters.exasol_parameters.port #=> Integer
3451
3490
  # resp.data_source.alternate_data_source_parameters #=> Array
3452
3491
  # resp.data_source.alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
3453
3492
  # resp.data_source.alternate_data_source_parameters[0].athena_parameters.work_group #=> String
@@ -3497,6 +3536,8 @@ module Aws::QuickSight
3497
3536
  # resp.data_source.alternate_data_source_parameters[0].twitter_parameters.query #=> String
3498
3537
  # resp.data_source.alternate_data_source_parameters[0].twitter_parameters.max_rows #=> Integer
3499
3538
  # resp.data_source.alternate_data_source_parameters[0].amazon_open_search_parameters.domain #=> String
3539
+ # resp.data_source.alternate_data_source_parameters[0].exasol_parameters.host #=> String
3540
+ # resp.data_source.alternate_data_source_parameters[0].exasol_parameters.port #=> Integer
3500
3541
  # resp.data_source.vpc_connection_properties.vpc_connection_arn #=> String
3501
3542
  # resp.data_source.ssl_properties.disable_ssl #=> Boolean
3502
3543
  # resp.data_source.error_info.type #=> String, one of "ACCESS_DENIED", "COPY_SOURCE_NOT_FOUND", "TIMEOUT", "ENGINE_VERSION_NOT_SUPPORTED", "UNKNOWN_HOST", "GENERIC_SQL_FAILURE", "CONFLICT", "UNKNOWN"
@@ -3560,10 +3601,10 @@ module Aws::QuickSight
3560
3601
  # Describes a folder.
3561
3602
  #
3562
3603
  # @option params [required, String] :aws_account_id
3563
- # The AWS account ID.
3604
+ # The ID for the Amazon Web Services account that contains the folder.
3564
3605
  #
3565
3606
  # @option params [required, String] :folder_id
3566
- # The folder ID.
3607
+ # The ID of the folder.
3567
3608
  #
3568
3609
  # @return [Types::DescribeFolderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3569
3610
  #
@@ -3603,10 +3644,10 @@ module Aws::QuickSight
3603
3644
  # Describes permissions for a folder.
3604
3645
  #
3605
3646
  # @option params [required, String] :aws_account_id
3606
- # The AWS Account ID.
3647
+ # The ID for the Amazon Web Services account that contains the folder.
3607
3648
  #
3608
3649
  # @option params [required, String] :folder_id
3609
- # The folder ID.
3650
+ # The ID of the folder.
3610
3651
  #
3611
3652
  # @return [Types::DescribeFolderPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3612
3653
  #
@@ -3648,10 +3689,10 @@ module Aws::QuickSight
3648
3689
  # ancestor folders.
3649
3690
  #
3650
3691
  # @option params [required, String] :aws_account_id
3651
- # The AWS account ID.
3692
+ # The ID for the Amazon Web Services account that contains the folder.
3652
3693
  #
3653
3694
  # @option params [required, String] :folder_id
3654
- # The folder ID.
3695
+ # The ID of the folder.
3655
3696
  #
3656
3697
  # @return [Types::DescribeFolderResolvedPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3657
3698
  #
@@ -3734,7 +3775,7 @@ module Aws::QuickSight
3734
3775
  req.send_request(options)
3735
3776
  end
3736
3777
 
3737
- # Describes an existing IAMpolicy assignment, as specified by the
3778
+ # Describes an existing IAM policy assignment, as specified by the
3738
3779
  # assignment name.
3739
3780
  #
3740
3781
  # @option params [required, String] :aws_account_id
@@ -3837,10 +3878,10 @@ module Aws::QuickSight
3837
3878
  req.send_request(options)
3838
3879
  end
3839
3880
 
3840
- # Provides a summary and status of IP Rules.
3881
+ # Provides a summary and status of IP rules.
3841
3882
  #
3842
3883
  # @option params [required, String] :aws_account_id
3843
- # Your AWS account ID.
3884
+ # The ID of the Amazon Web Services account that contains the IP rules.
3844
3885
  #
3845
3886
  # @return [Types::DescribeIpRestrictionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3846
3887
  #
@@ -4471,8 +4512,7 @@ module Aws::QuickSight
4471
4512
  #
4472
4513
  # @option params [required, Types::RegisteredUserEmbeddingExperienceConfiguration] :experience_configuration
4473
4514
  # The experience you are embedding. For registered users, you can embed
4474
- # Amazon QuickSight dashboards, the entire Amazon QuickSight console, or
4475
- # the Amazon QuickSight Q search bar.
4515
+ # Amazon QuickSight dashboards or the entire Amazon QuickSight console.
4476
4516
  #
4477
4517
  # @return [Types::GenerateEmbedUrlForRegisteredUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4478
4518
  #
@@ -4586,10 +4626,11 @@ module Aws::QuickSight
4586
4626
  #
4587
4627
  # * Invited nonfederated users
4588
4628
  #
4589
- # * IAMusers and IAMrole-based sessions authenticated through Federated
4590
- # Single Sign-On using SAML, OpenID Connect, or IAMfederation.
4629
+ # * IAM users and IAM role-based sessions authenticated through
4630
+ # Federated Single Sign-On using SAML, OpenID Connect, or IAM
4631
+ # federation.
4591
4632
  #
4592
- # Omit this parameter for users in the third group – IAMusers and IAM
4633
+ # Omit this parameter for users in the third group – IAM users and IAM
4593
4634
  # role-based sessions.
4594
4635
  #
4595
4636
  # @option params [String] :namespace
@@ -4601,8 +4642,8 @@ module Aws::QuickSight
4601
4642
  # A list of one or more dashboard IDs that you want to add to a session
4602
4643
  # that includes anonymous users. The `IdentityType` parameter must be
4603
4644
  # set to `ANONYMOUS` for this to work, because other identity types
4604
- # authenticate as Amazon QuickSight or IAMusers. For example, if you set
4605
- # "`--dashboard-id dash_id1 --dashboard-id dash_id2 dash_id3
4645
+ # authenticate as Amazon QuickSight or IAM users. For example, if you
4646
+ # set "`--dashboard-id dash_id1 --dashboard-id dash_id2 dash_id3
4606
4647
  # identity-type ANONYMOUS`", the session can access all three
4607
4648
  # dashboards.
4608
4649
  #
@@ -4995,7 +5036,7 @@ module Aws::QuickSight
4995
5036
  # resp.data_sources[0].arn #=> String
4996
5037
  # resp.data_sources[0].data_source_id #=> String
4997
5038
  # resp.data_sources[0].name #=> String
4998
- # resp.data_sources[0].type #=> String, one of "ADOBE_ANALYTICS", "AMAZON_ELASTICSEARCH", "ATHENA", "AURORA", "AURORA_POSTGRESQL", "AWS_IOT_ANALYTICS", "GITHUB", "JIRA", "MARIADB", "MYSQL", "ORACLE", "POSTGRESQL", "PRESTO", "REDSHIFT", "S3", "SALESFORCE", "SERVICENOW", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "TWITTER", "TIMESTREAM", "AMAZON_OPENSEARCH"
5039
+ # resp.data_sources[0].type #=> String, one of "ADOBE_ANALYTICS", "AMAZON_ELASTICSEARCH", "ATHENA", "AURORA", "AURORA_POSTGRESQL", "AWS_IOT_ANALYTICS", "GITHUB", "JIRA", "MARIADB", "MYSQL", "ORACLE", "POSTGRESQL", "PRESTO", "REDSHIFT", "S3", "SALESFORCE", "SERVICENOW", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "TWITTER", "TIMESTREAM", "AMAZON_OPENSEARCH", "EXASOL"
4999
5040
  # resp.data_sources[0].status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
5000
5041
  # resp.data_sources[0].created_time #=> Time
5001
5042
  # resp.data_sources[0].last_updated_time #=> Time
@@ -5047,6 +5088,8 @@ module Aws::QuickSight
5047
5088
  # resp.data_sources[0].data_source_parameters.twitter_parameters.query #=> String
5048
5089
  # resp.data_sources[0].data_source_parameters.twitter_parameters.max_rows #=> Integer
5049
5090
  # resp.data_sources[0].data_source_parameters.amazon_open_search_parameters.domain #=> String
5091
+ # resp.data_sources[0].data_source_parameters.exasol_parameters.host #=> String
5092
+ # resp.data_sources[0].data_source_parameters.exasol_parameters.port #=> Integer
5050
5093
  # resp.data_sources[0].alternate_data_source_parameters #=> Array
5051
5094
  # resp.data_sources[0].alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
5052
5095
  # resp.data_sources[0].alternate_data_source_parameters[0].athena_parameters.work_group #=> String
@@ -5096,6 +5139,8 @@ module Aws::QuickSight
5096
5139
  # resp.data_sources[0].alternate_data_source_parameters[0].twitter_parameters.query #=> String
5097
5140
  # resp.data_sources[0].alternate_data_source_parameters[0].twitter_parameters.max_rows #=> Integer
5098
5141
  # resp.data_sources[0].alternate_data_source_parameters[0].amazon_open_search_parameters.domain #=> String
5142
+ # resp.data_sources[0].alternate_data_source_parameters[0].exasol_parameters.host #=> String
5143
+ # resp.data_sources[0].alternate_data_source_parameters[0].exasol_parameters.port #=> Integer
5099
5144
  # resp.data_sources[0].vpc_connection_properties.vpc_connection_arn #=> String
5100
5145
  # resp.data_sources[0].ssl_properties.disable_ssl #=> Boolean
5101
5146
  # resp.data_sources[0].error_info.type #=> String, one of "ACCESS_DENIED", "COPY_SOURCE_NOT_FOUND", "TIMEOUT", "ENGINE_VERSION_NOT_SUPPORTED", "UNKNOWN_HOST", "GENERIC_SQL_FAILURE", "CONFLICT", "UNKNOWN"
@@ -5116,10 +5161,10 @@ module Aws::QuickSight
5116
5161
  # List all assets (`DASHBOARD`, `ANALYSIS`, and `DATASET`) in a folder.
5117
5162
  #
5118
5163
  # @option params [required, String] :aws_account_id
5119
- # The AWS account ID.
5164
+ # The ID for the Amazon Web Services account that contains the folder.
5120
5165
  #
5121
5166
  # @option params [required, String] :folder_id
5122
- # The folder ID.
5167
+ # The ID of the folder.
5123
5168
  #
5124
5169
  # @option params [String] :next_token
5125
5170
  # The token for the next set of results, or null if there are no more
@@ -5165,7 +5210,7 @@ module Aws::QuickSight
5165
5210
  # Lists all folders in an account.
5166
5211
  #
5167
5212
  # @option params [required, String] :aws_account_id
5168
- # The AWS account ID.
5213
+ # The ID for the Amazon Web Services account that contains the folder.
5169
5214
  #
5170
5215
  # @option params [String] :next_token
5171
5216
  # The token for the next set of results, or null if there are no more
@@ -5317,11 +5362,11 @@ module Aws::QuickSight
5317
5362
  req.send_request(options)
5318
5363
  end
5319
5364
 
5320
- # Lists IAMpolicy assignments in the current Amazon QuickSight account.
5365
+ # Lists IAM policy assignments in the current Amazon QuickSight account.
5321
5366
  #
5322
5367
  # @option params [required, String] :aws_account_id
5323
- # The ID of the Amazon Web Services account that contains these
5324
- # IAMpolicy assignments.
5368
+ # The ID of the Amazon Web Services account that contains these IAM
5369
+ # policy assignments.
5325
5370
  #
5326
5371
  # @option params [String] :assignment_status
5327
5372
  # The status of the assignments.
@@ -5371,7 +5416,7 @@ module Aws::QuickSight
5371
5416
  req.send_request(options)
5372
5417
  end
5373
5418
 
5374
- # Lists all the IAMpolicy assignments, including the Amazon Resource
5419
+ # Lists all the IAM policy assignments, including the Amazon Resource
5375
5420
  # Names (ARNs) for the IAM policies assigned to the specified user and
5376
5421
  # group or groups that the user belongs to.
5377
5422
  #
@@ -6030,14 +6075,14 @@ module Aws::QuickSight
6030
6075
  end
6031
6076
 
6032
6077
  # Creates an Amazon QuickSight user, whose identity is associated with
6033
- # the AWS Identity and Access Management (IAM) identity or role
6034
- # specified in the request.
6078
+ # the Identity and Access Management (IAM) identity or role specified in
6079
+ # the request.
6035
6080
  #
6036
6081
  # @option params [required, String] :identity_type
6037
6082
  # Amazon QuickSight supports several ways of managing the identity of
6038
6083
  # users. This parameter accepts two values:
6039
6084
  #
6040
- # * `IAM`\: A user whose identity maps to an existing IAMuser or role.
6085
+ # * `IAM`\: A user whose identity maps to an existing IAM user or role.
6041
6086
  #
6042
6087
  # * `QUICKSIGHT`\: A user whose identity is owned and managed internally
6043
6088
  # by Amazon QuickSight.
@@ -6062,17 +6107,17 @@ module Aws::QuickSight
6062
6107
  # * `RESTRICTED_AUTHOR`\: This role isn't currently available for use.
6063
6108
  #
6064
6109
  # @option params [String] :iam_arn
6065
- # The ARN of the IAMuser or role that you are registering with Amazon
6110
+ # The ARN of the IAM user or role that you are registering with Amazon
6066
6111
  # QuickSight.
6067
6112
  #
6068
6113
  # @option params [String] :session_name
6069
6114
  # You need to use this parameter only when you register one or more
6070
- # users using an assumed IAMrole. You don't need to provide the session
6071
- # name for other scenarios, for example when you are registering an
6072
- # IAMuser or an Amazon QuickSight user. You can register multiple users
6073
- # using the same IAMrole if each user has a different session name. For
6074
- # more information on assuming IAMroles, see [ `assume-role` ][1] in the
6075
- # *AWS CLI Reference.*
6115
+ # users using an assumed IAM role. You don't need to provide the
6116
+ # session name for other scenarios, for example when you are registering
6117
+ # an IAM user or an Amazon QuickSight user. You can register multiple
6118
+ # users using the same IAM role if each user has a different session
6119
+ # name. For more information on assuming IAM roles, see [ `assume-role`
6120
+ # ][1] in the *CLI Reference.*
6076
6121
  #
6077
6122
  #
6078
6123
  #
@@ -6111,9 +6156,9 @@ module Aws::QuickSight
6111
6156
  # restrictions. Currently, you need to create the profile names for
6112
6157
  # custom permission sets by using the Amazon QuickSight console. Then,
6113
6158
  # you use the `RegisterUser` API operation to assign the named set of
6114
- # permissions to a Amazon QuickSight user.
6159
+ # permissions to a QuickSight user.
6115
6160
  #
6116
- # Amazon QuickSight custom permissions are applied through IAMpolicies.
6161
+ # Amazon QuickSight custom permissions are applied through IAM policies.
6117
6162
  # Therefore, they override the permissions typically granted by
6118
6163
  # assigning Amazon QuickSight users to one of the default security
6119
6164
  # cohorts in Amazon QuickSight (admin, author, reader).
@@ -6375,7 +6420,7 @@ module Aws::QuickSight
6375
6420
  # Searches the subfolders in a folder.
6376
6421
  #
6377
6422
  # @option params [required, String] :aws_account_id
6378
- # The AWS account ID.
6423
+ # The ID for the Amazon Web Services account that contains the folder.
6379
6424
  #
6380
6425
  # @option params [required, Array<Types::FolderSearchFilter>] :filters
6381
6426
  # The filters to apply to the search. Currently, you can search only by
@@ -6451,13 +6496,14 @@ module Aws::QuickSight
6451
6496
  # template.
6452
6497
  #
6453
6498
  # Tagging for Amazon QuickSight works in a similar way to tagging for
6454
- # other AWS services, except for the following:
6499
+ # other Amazon Web Services services, except for the following:
6455
6500
  #
6456
- # * You can't use tags to track AWS costs for Amazon QuickSight. This
6457
- # restriction is because Amazon QuickSight costs are based on users
6458
- # and SPICE capacity, which aren't taggable resources.
6501
+ # * You can't use tags to track costs for Amazon QuickSight. This
6502
+ # isn't possible because you can't tag the resources that Amazon
6503
+ # QuickSight costs are based on, for example Amazon QuickSight storage
6504
+ # capacity (SPICE), number of users, type of users, and usage metrics.
6459
6505
  #
6460
- # * Amazon QuickSight doesn't currently support the Tag Editor for
6506
+ # * Amazon QuickSight doesn't currently support the tag editor for
6461
6507
  # Resource Groups.
6462
6508
  #
6463
6509
  # @option params [required, String] :resource_arn
@@ -6572,6 +6618,7 @@ module Aws::QuickSight
6572
6618
  # namespace: "Namespace",
6573
6619
  # account_customization: { # required
6574
6620
  # default_theme: "Arn",
6621
+ # default_email_customization_template: "Arn",
6575
6622
  # },
6576
6623
  # })
6577
6624
  #
@@ -6581,6 +6628,7 @@ module Aws::QuickSight
6581
6628
  # resp.aws_account_id #=> String
6582
6629
  # resp.namespace #=> String
6583
6630
  # resp.account_customization.default_theme #=> String
6631
+ # resp.account_customization.default_email_customization_template #=> String
6584
6632
  # resp.request_id #=> String
6585
6633
  # resp.status #=> Integer
6586
6634
  #
@@ -6808,8 +6856,8 @@ module Aws::QuickSight
6808
6856
  #
6809
6857
  # <note markdown="1"> Updating a Dashboard creates a new dashboard version but does not
6810
6858
  # immediately publish the new version. You can update the published
6811
- # version of a dashboard by using the UpdateDashboardPublishedVersion
6812
- # API operation.
6859
+ # version of a dashboard by using the ` UpdateDashboardPublishedVersion
6860
+ # ` API operation.
6813
6861
  #
6814
6862
  # </note>
6815
6863
  #
@@ -6829,8 +6877,8 @@ module Aws::QuickSight
6829
6877
  # using as source. You can only update a dashboard from a template, so
6830
6878
  # you use a `SourceTemplate` entity. If you need to update a dashboard
6831
6879
  # from an analysis, first convert the analysis to a template by using
6832
- # the CreateTemplate API operation. For `SourceTemplate`, specify the
6833
- # Amazon Resource Name (ARN) of the source template. The
6880
+ # the ` CreateTemplate ` API operation. For `SourceTemplate`, specify
6881
+ # the Amazon Resource Name (ARN) of the source template. The
6834
6882
  # `SourceTemplate` ARN can contain any Amazon Web Services account and
6835
6883
  # any Amazon QuickSight-supported Amazon Web Services Region.
6836
6884
  #
@@ -6971,6 +7019,12 @@ module Aws::QuickSight
6971
7019
  # @option params [Array<Types::ResourcePermission>] :revoke_permissions
6972
7020
  # The permissions that you want to revoke from this resource.
6973
7021
  #
7022
+ # @option params [Array<Types::ResourcePermission>] :grant_link_permissions
7023
+ # Grants link permissions to all users in a defined namespace.
7024
+ #
7025
+ # @option params [Array<Types::ResourcePermission>] :revoke_link_permissions
7026
+ # Revokes link permissions from all users in a defined namespace.
7027
+ #
6974
7028
  # @return [Types::UpdateDashboardPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6975
7029
  #
6976
7030
  # * {Types::UpdateDashboardPermissionsResponse#dashboard_arn #dashboard_arn} => String
@@ -6978,6 +7032,7 @@ module Aws::QuickSight
6978
7032
  # * {Types::UpdateDashboardPermissionsResponse#permissions #permissions} => Array&lt;Types::ResourcePermission&gt;
6979
7033
  # * {Types::UpdateDashboardPermissionsResponse#request_id #request_id} => String
6980
7034
  # * {Types::UpdateDashboardPermissionsResponse#status #status} => Integer
7035
+ # * {Types::UpdateDashboardPermissionsResponse#link_sharing_configuration #link_sharing_configuration} => Types::LinkSharingConfiguration
6981
7036
  #
6982
7037
  # @example Request syntax with placeholder values
6983
7038
  #
@@ -6996,6 +7051,18 @@ module Aws::QuickSight
6996
7051
  # actions: ["String"], # required
6997
7052
  # },
6998
7053
  # ],
7054
+ # grant_link_permissions: [
7055
+ # {
7056
+ # principal: "Principal", # required
7057
+ # actions: ["String"], # required
7058
+ # },
7059
+ # ],
7060
+ # revoke_link_permissions: [
7061
+ # {
7062
+ # principal: "Principal", # required
7063
+ # actions: ["String"], # required
7064
+ # },
7065
+ # ],
6999
7066
  # })
7000
7067
  #
7001
7068
  # @example Response structure
@@ -7008,6 +7075,10 @@ module Aws::QuickSight
7008
7075
  # resp.permissions[0].actions[0] #=> String
7009
7076
  # resp.request_id #=> String
7010
7077
  # resp.status #=> Integer
7078
+ # resp.link_sharing_configuration.permissions #=> Array
7079
+ # resp.link_sharing_configuration.permissions[0].principal #=> String
7080
+ # resp.link_sharing_configuration.permissions[0].actions #=> Array
7081
+ # resp.link_sharing_configuration.permissions[0].actions[0] #=> String
7011
7082
  #
7012
7083
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateDashboardPermissions AWS API Documentation
7013
7084
  #
@@ -7490,6 +7561,10 @@ module Aws::QuickSight
7490
7561
  # amazon_open_search_parameters: {
7491
7562
  # domain: "Domain", # required
7492
7563
  # },
7564
+ # exasol_parameters: {
7565
+ # host: "Host", # required
7566
+ # port: 1, # required
7567
+ # },
7493
7568
  # },
7494
7569
  # credentials: {
7495
7570
  # credential_pair: {
@@ -7589,6 +7664,10 @@ module Aws::QuickSight
7589
7664
  # amazon_open_search_parameters: {
7590
7665
  # domain: "Domain", # required
7591
7666
  # },
7667
+ # exasol_parameters: {
7668
+ # host: "Host", # required
7669
+ # port: 1, # required
7670
+ # },
7592
7671
  # },
7593
7672
  # ],
7594
7673
  # },
@@ -7681,10 +7760,11 @@ module Aws::QuickSight
7681
7760
  # Updates the name of a folder.
7682
7761
  #
7683
7762
  # @option params [required, String] :aws_account_id
7684
- # The AWS account ID.
7763
+ # The ID for the Amazon Web Services account that contains the folder to
7764
+ # update.
7685
7765
  #
7686
7766
  # @option params [required, String] :folder_id
7687
- # The folder ID.
7767
+ # The ID of the folder.
7688
7768
  #
7689
7769
  # @option params [required, String] :name
7690
7770
  # The name of the folder.
@@ -7723,10 +7803,11 @@ module Aws::QuickSight
7723
7803
  # Updates permissions of a folder.
7724
7804
  #
7725
7805
  # @option params [required, String] :aws_account_id
7726
- # The AWS account ID.
7806
+ # The ID for the Amazon Web Services account that contains the folder to
7807
+ # update.
7727
7808
  #
7728
7809
  # @option params [required, String] :folder_id
7729
- # The folder ID.
7810
+ # The ID of the folder.
7730
7811
  #
7731
7812
  # @option params [Array<Types::ResourcePermission>] :grant_permissions
7732
7813
  # The permissions that you want to grant on a resource.
@@ -7830,12 +7911,12 @@ module Aws::QuickSight
7830
7911
  req.send_request(options)
7831
7912
  end
7832
7913
 
7833
- # Updates an existing IAMpolicy assignment. This operation updates only
7914
+ # Updates an existing IAM policy assignment. This operation updates only
7834
7915
  # the optional parameter or parameters that are specified in the
7835
7916
  # request. This overwrites all of the users included in `Identities`.
7836
7917
  #
7837
7918
  # @option params [required, String] :aws_account_id
7838
- # The ID of the Amazon Web Services account that contains the IAMpolicy
7919
+ # The ID of the Amazon Web Services account that contains the IAM policy
7839
7920
  # assignment.
7840
7921
  #
7841
7922
  # @option params [required, String] :assignment_name
@@ -7858,7 +7939,7 @@ module Aws::QuickSight
7858
7939
  # when creating the data source.
7859
7940
  #
7860
7941
  # @option params [String] :policy_arn
7861
- # The ARN for the IAMpolicy to apply to the Amazon QuickSight users and
7942
+ # The ARN for the IAM policy to apply to the Amazon QuickSight users and
7862
7943
  # groups specified in this assignment.
7863
7944
  #
7864
7945
  # @option params [Hash<String,Array>] :identities
@@ -7909,16 +7990,19 @@ module Aws::QuickSight
7909
7990
  req.send_request(options)
7910
7991
  end
7911
7992
 
7912
- # Updates content and status of IP Rules.
7993
+ # Updates the content and status of IP rules. To use this operation, you
7994
+ # need to provide the entire map of rules. You can use the
7995
+ # `DescribeIpRestriction` operation to get the current rule map.
7913
7996
  #
7914
7997
  # @option params [required, String] :aws_account_id
7915
- # Your AWS account ID.
7998
+ # The ID of the Amazon Web Services account that contains the IP rules.
7916
7999
  #
7917
8000
  # @option params [Hash<String,String>] :ip_restriction_rule_map
7918
- # Describes updated IP rules.
8001
+ # A map that describes the updated IP rules with CIDR ranges and
8002
+ # descriptions.
7919
8003
  #
7920
8004
  # @option params [Boolean] :enabled
7921
- # Whether or not IP rules are enabled.
8005
+ # A value that specifies whether IP rules are turned on.
7922
8006
  #
7923
8007
  # @return [Types::UpdateIpRestrictionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7924
8008
  #
@@ -8449,9 +8533,9 @@ module Aws::QuickSight
8449
8533
  # restrictions. Currently, you need to create the profile names for
8450
8534
  # custom permission sets by using the Amazon QuickSight console. Then,
8451
8535
  # you use the `RegisterUser` API operation to assign the named set of
8452
- # permissions to a Amazon QuickSight user.
8536
+ # permissions to a QuickSight user.
8453
8537
  #
8454
- # Amazon QuickSight custom permissions are applied through IAMpolicies.
8538
+ # Amazon QuickSight custom permissions are applied through IAM policies.
8455
8539
  # Therefore, they override the permissions typically granted by
8456
8540
  # assigning Amazon QuickSight users to one of the default security
8457
8541
  # cohorts in Amazon QuickSight (admin, author, reader).
@@ -8482,8 +8566,8 @@ module Aws::QuickSight
8482
8566
  # to provide the custom OIDC provider URL.
8483
8567
  #
8484
8568
  # * `NONE`\: This clears all the previously saved external login
8485
- # information for a user. Use ` DescribeUser ` API to check the
8486
- # external login information.
8569
+ # information for a user. Use the ` DescribeUser ` API operation to
8570
+ # check the external login information.
8487
8571
  #
8488
8572
  # @option params [String] :custom_federation_provider_url
8489
8573
  # The URL of the custom OpenID Connect (OIDC) provider that provides
@@ -8554,7 +8638,7 @@ module Aws::QuickSight
8554
8638
  params: params,
8555
8639
  config: config)
8556
8640
  context[:gem_name] = 'aws-sdk-quicksight'
8557
- context[:gem_version] = '1.56.0'
8641
+ context[:gem_version] = '1.60.0'
8558
8642
  Seahorse::Client::Request.new(handlers, context)
8559
8643
  end
8560
8644