aws-sdk-quicksight 1.57.0 → 1.61.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.
@@ -295,7 +303,7 @@ module Aws::QuickSight
295
303
  # seconds to wait when opening a HTTP session before raising a
296
304
  # `Timeout::Error`.
297
305
  #
298
- # @option options [Integer] :http_read_timeout (60) The default
306
+ # @option options [Float] :http_read_timeout (60) The default
299
307
  # number of seconds to wait for response data. This value can
300
308
  # safely be set per-request on the session.
301
309
  #
@@ -311,6 +319,9 @@ module Aws::QuickSight
311
319
  # disables this behaviour. This value can safely be set per
312
320
  # request on the session.
313
321
  #
322
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
323
+ # in seconds.
324
+ #
314
325
  # @option options [Boolean] :http_wire_trace (false) When `true`,
315
326
  # HTTP debug output will be sent to the `:logger`.
316
327
  #
@@ -387,7 +398,7 @@ module Aws::QuickSight
387
398
  # Guide.*
388
399
  #
389
400
  # You can create customizations for your Amazon Web Services account or,
390
- # if you specify a namespace, for a Amazon QuickSight namespace instead.
401
+ # if you specify a namespace, for a QuickSight namespace instead.
391
402
  # Customizations that apply to a namespace always override
392
403
  # customizations that apply to an Amazon Web Services account. To find
393
404
  # out which customizations apply, use the `DescribeAccountCustomization`
@@ -417,7 +428,7 @@ module Aws::QuickSight
417
428
  # @option params [required, Types::AccountCustomization] :account_customization
418
429
  # The Amazon QuickSight customizations you're adding in the current
419
430
  # Amazon Web Services Region. You can add these to an Amazon Web
420
- # Services account and a Amazon QuickSight namespace.
431
+ # Services account and a QuickSight namespace.
421
432
  #
422
433
  # For example, you can add a default theme by setting
423
434
  # `AccountCustomization` to the midnight theme: `"AccountCustomization":
@@ -446,6 +457,7 @@ module Aws::QuickSight
446
457
  # namespace: "Namespace",
447
458
  # account_customization: { # required
448
459
  # default_theme: "Arn",
460
+ # default_email_customization_template: "Arn",
449
461
  # },
450
462
  # tags: [
451
463
  # {
@@ -461,6 +473,7 @@ module Aws::QuickSight
461
473
  # resp.aws_account_id #=> String
462
474
  # resp.namespace #=> String
463
475
  # resp.account_customization.default_theme #=> String
476
+ # resp.account_customization.default_email_customization_template #=> String
464
477
  # resp.request_id #=> String
465
478
  # resp.status #=> Integer
466
479
  #
@@ -613,7 +626,7 @@ module Aws::QuickSight
613
626
  # dashboard.
614
627
  #
615
628
  # @option params [required, String] :dashboard_id
616
- # The ID for the dashboard, also added to the IAMpolicy.
629
+ # The ID for the dashboard, also added to the IAM policy.
617
630
  #
618
631
  # @option params [required, String] :name
619
632
  # The display name of the dashboard.
@@ -625,8 +638,8 @@ module Aws::QuickSight
625
638
  #
626
639
  # @option params [Array<Types::ResourcePermission>] :permissions
627
640
  # A structure that contains the permissions of the dashboard. You can
628
- # use this structure for granting permissions by providing a list of
629
- # 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.
630
643
  #
631
644
  # To specify no permissions, omit the permissions list.
632
645
  #
@@ -636,8 +649,8 @@ module Aws::QuickSight
636
649
  # using as source. You can only create a dashboard from a template, so
637
650
  # you use a `SourceTemplate` entity. If you need to create a dashboard
638
651
  # from an analysis, first convert the analysis to a template by using
639
- # the CreateTemplate API operation. For `SourceTemplate`, specify the
640
- # 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
641
654
  # `SourceTemplate`ARN can contain any Amazon Web Services account and
642
655
  # any Amazon QuickSight-supported Amazon Web Services Region.
643
656
  #
@@ -773,7 +786,8 @@ module Aws::QuickSight
773
786
  req.send_request(options)
774
787
  end
775
788
 
776
- # Creates a dataset.
789
+ # Creates a dataset. This operation doesn't support datasets that
790
+ # include uploaded files as a source.
777
791
  #
778
792
  # @option params [required, String] :aws_account_id
779
793
  # The Amazon Web Services account ID.
@@ -1081,7 +1095,7 @@ module Aws::QuickSight
1081
1095
  # aws_account_id: "AwsAccountId", # required
1082
1096
  # data_source_id: "ResourceId", # required
1083
1097
  # name: "ResourceName", # required
1084
- # 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
1098
+ # 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
1085
1099
  # data_source_parameters: {
1086
1100
  # amazon_elasticsearch_parameters: {
1087
1101
  # domain: "Domain", # required
@@ -1175,6 +1189,10 @@ module Aws::QuickSight
1175
1189
  # amazon_open_search_parameters: {
1176
1190
  # domain: "Domain", # required
1177
1191
  # },
1192
+ # exasol_parameters: {
1193
+ # host: "Host", # required
1194
+ # port: 1, # required
1195
+ # },
1178
1196
  # },
1179
1197
  # credentials: {
1180
1198
  # credential_pair: {
@@ -1274,6 +1292,10 @@ module Aws::QuickSight
1274
1292
  # amazon_open_search_parameters: {
1275
1293
  # domain: "Domain", # required
1276
1294
  # },
1295
+ # exasol_parameters: {
1296
+ # host: "Host", # required
1297
+ # port: 1, # required
1298
+ # },
1277
1299
  # },
1278
1300
  # ],
1279
1301
  # },
@@ -1319,10 +1341,11 @@ module Aws::QuickSight
1319
1341
  # Creates an empty shared folder.
1320
1342
  #
1321
1343
  # @option params [required, String] :aws_account_id
1322
- # The AWS Account ID.
1344
+ # The ID for the Amazon Web Services account where you want to create
1345
+ # the folder.
1323
1346
  #
1324
1347
  # @option params [required, String] :folder_id
1325
- # The folder ID.
1348
+ # The ID of the folder.
1326
1349
  #
1327
1350
  # @option params [String] :name
1328
1351
  # The name of the folder.
@@ -1394,10 +1417,10 @@ module Aws::QuickSight
1394
1417
  # folder.
1395
1418
  #
1396
1419
  # @option params [required, String] :aws_account_id
1397
- # The AWS Account ID.
1420
+ # The ID for the Amazon Web Services account that contains the folder.
1398
1421
  #
1399
1422
  # @option params [required, String] :folder_id
1400
- # The folder ID.
1423
+ # The ID of the folder.
1401
1424
  #
1402
1425
  # @option params [required, String] :member_id
1403
1426
  # The ID of the asset (the dashboard, analysis, or dataset).
@@ -1539,7 +1562,7 @@ module Aws::QuickSight
1539
1562
  req.send_request(options)
1540
1563
  end
1541
1564
 
1542
- # Creates an assignment with one specified IAMpolicy, identified by its
1565
+ # Creates an assignment with one specified IAM policy, identified by its
1543
1566
  # Amazon Resource Name (ARN). This policy assignment is attached to the
1544
1567
  # specified groups or users of Amazon QuickSight. Assignment names are
1545
1568
  # unique per Amazon Web Services account. To avoid overwriting rules in
@@ -1547,7 +1570,7 @@ module Aws::QuickSight
1547
1570
  #
1548
1571
  # @option params [required, String] :aws_account_id
1549
1572
  # The ID of the Amazon Web Services account where you want to assign an
1550
- # IAMpolicy to Amazon QuickSight users or groups.
1573
+ # IAM policy to Amazon QuickSight users or groups.
1551
1574
  #
1552
1575
  # @option params [required, String] :assignment_name
1553
1576
  # The name of the assignment, also called a rule. It must be unique
@@ -1566,7 +1589,7 @@ module Aws::QuickSight
1566
1589
  # when creating the data source.
1567
1590
  #
1568
1591
  # @option params [String] :policy_arn
1569
- # The ARN for the IAMpolicy to apply to the Amazon QuickSight users and
1592
+ # The ARN for the IAM policy to apply to the Amazon QuickSight users and
1570
1593
  # groups specified in this assignment.
1571
1594
  #
1572
1595
  # @option params [Hash<String,Array>] :identities
@@ -1620,7 +1643,11 @@ module Aws::QuickSight
1620
1643
  req.send_request(options)
1621
1644
  end
1622
1645
 
1623
- # Creates and starts a new SPICE ingestion on a dataset
1646
+ # Creates and starts a new SPICE ingestion for a dataset. You can
1647
+ # manually refresh datasets in an Enterprise edition account 32 times in
1648
+ # a 24-hour period. You can manually refresh datasets in a Standard
1649
+ # edition account 8 times in a 24-hour period. Each 24-hour period is
1650
+ # measured starting 24 hours before the current date and time.
1624
1651
  #
1625
1652
  # Any ingestions operating on tagged datasets inherit the same tags
1626
1653
  # automatically for use in access control. For an example, see [How do I
@@ -1938,7 +1965,7 @@ module Aws::QuickSight
1938
1965
  # The ID of the theme that a custom theme will inherit from. All themes
1939
1966
  # inherit from one of the starting themes defined by Amazon QuickSight.
1940
1967
  # For a list of the starting themes, use `ListThemes` or choose
1941
- # **Themes** from within a Amazon QuickSight analysis.
1968
+ # **Themes** from within an analysis.
1942
1969
  #
1943
1970
  # @option params [String] :version_description
1944
1971
  # A description of the first version of the theme that you're creating.
@@ -2330,10 +2357,10 @@ module Aws::QuickSight
2330
2357
  # Deletes an empty folder.
2331
2358
  #
2332
2359
  # @option params [required, String] :aws_account_id
2333
- # The AWS Account ID for the folder.
2360
+ # The ID for the Amazon Web Services account that contains the folder.
2334
2361
  #
2335
2362
  # @option params [required, String] :folder_id
2336
- # The folder ID.
2363
+ # The ID of the folder.
2337
2364
  #
2338
2365
  # @return [Types::DeleteFolderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2339
2366
  #
@@ -2369,7 +2396,7 @@ module Aws::QuickSight
2369
2396
  # folder.
2370
2397
  #
2371
2398
  # @option params [required, String] :aws_account_id
2372
- # The AWS Account ID.
2399
+ # The ID for the Amazon Web Services account that contains the folder.
2373
2400
  #
2374
2401
  # @option params [required, String] :folder_id
2375
2402
  # The Folder ID.
@@ -2496,11 +2523,11 @@ module Aws::QuickSight
2496
2523
  req.send_request(options)
2497
2524
  end
2498
2525
 
2499
- # Deletes an existing IAMpolicy assignment.
2526
+ # Deletes an existing IAM policy assignment.
2500
2527
  #
2501
2528
  # @option params [required, String] :aws_account_id
2502
- # The Amazon Web Services account ID where you want to delete the
2503
- # IAMpolicy assignment.
2529
+ # The Amazon Web Services account ID where you want to delete the IAM
2530
+ # policy assignment.
2504
2531
  #
2505
2532
  # @option params [required, String] :assignment_name
2506
2533
  # The name of the assignment.
@@ -2858,11 +2885,11 @@ module Aws::QuickSight
2858
2885
  #
2859
2886
  # * `Amazon Web Services account` - The Amazon Web Services account
2860
2887
  # exists at the top of the hierarchy. It has the potential to use all
2861
- # of the Amazon Web Services Regions and AWS Services. When you
2862
- # subscribe to Amazon QuickSight, you choose one Amazon Web Services
2863
- # Region to use as your home Region. That's where your free SPICE
2864
- # capacity is located. You can use Amazon QuickSight in any supported
2865
- # Amazon Web Services Region.
2888
+ # of the Amazon Web Services Regions and Amazon Web Services Services.
2889
+ # When you subscribe to Amazon QuickSight, you choose one Amazon Web
2890
+ # Services Region to use as your home Region. That's where your free
2891
+ # SPICE capacity is located. You can use Amazon QuickSight in any
2892
+ # supported Amazon Web Services Region.
2866
2893
  #
2867
2894
  # * `Amazon Web Services Region` - In each Amazon Web Services Region
2868
2895
  # where you sign in to Amazon QuickSight at least once, Amazon
@@ -2873,8 +2900,8 @@ module Aws::QuickSight
2873
2900
  # constrained to a namespace.
2874
2901
  #
2875
2902
  # To run the command in a different Amazon Web Services Region, you
2876
- # change your Region settings. If you're using the AWS CLI, you can
2877
- # use one of the following options:
2903
+ # change your Region settings. If you're using the CLI, you can use
2904
+ # one of the following options:
2878
2905
  #
2879
2906
  # * Use [command line options][1].
2880
2907
  #
@@ -2882,12 +2909,12 @@ module Aws::QuickSight
2882
2909
  #
2883
2910
  # * Run `aws configure` to change your default Amazon Web Services
2884
2911
  # Region. Use Enter to key the same settings for your keys. For more
2885
- # information, see [Configuring the AWS CLI][3].
2912
+ # information, see [Configuring the CLI][3].
2886
2913
  #
2887
- # * `Namespace` - A Amazon QuickSight namespace is a partition that
2888
- # contains users and assets (data sources, datasets, dashboards, and
2889
- # so on). To access assets that are in a specific namespace, users and
2890
- # groups must also be part of the same namespace. People who share a
2914
+ # * `Namespace` - A QuickSight namespace is a partition that contains
2915
+ # users and assets (data sources, datasets, dashboards, and so on). To
2916
+ # access assets that are in a specific namespace, users and groups
2917
+ # must also be part of the same namespace. People who share a
2891
2918
  # namespace are completely isolated from users and assets in other
2892
2919
  # namespaces, even if they are in the same Amazon Web Services account
2893
2920
  # and Amazon Web Services Region.
@@ -2946,6 +2973,7 @@ module Aws::QuickSight
2946
2973
  # resp.aws_account_id #=> String
2947
2974
  # resp.namespace #=> String
2948
2975
  # resp.account_customization.default_theme #=> String
2976
+ # resp.account_customization.default_email_customization_template #=> String
2949
2977
  # resp.request_id #=> String
2950
2978
  # resp.status #=> Integer
2951
2979
  #
@@ -3167,7 +3195,7 @@ module Aws::QuickSight
3167
3195
  # that you're describing permissions for.
3168
3196
  #
3169
3197
  # @option params [required, String] :dashboard_id
3170
- # The ID for the dashboard, also added to the IAMpolicy.
3198
+ # The ID for the dashboard, also added to the IAM policy.
3171
3199
  #
3172
3200
  # @return [Types::DescribeDashboardPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3173
3201
  #
@@ -3176,6 +3204,7 @@ module Aws::QuickSight
3176
3204
  # * {Types::DescribeDashboardPermissionsResponse#permissions #permissions} => Array&lt;Types::ResourcePermission&gt;
3177
3205
  # * {Types::DescribeDashboardPermissionsResponse#status #status} => Integer
3178
3206
  # * {Types::DescribeDashboardPermissionsResponse#request_id #request_id} => String
3207
+ # * {Types::DescribeDashboardPermissionsResponse#link_sharing_configuration #link_sharing_configuration} => Types::LinkSharingConfiguration
3179
3208
  #
3180
3209
  # @example Request syntax with placeholder values
3181
3210
  #
@@ -3194,6 +3223,10 @@ module Aws::QuickSight
3194
3223
  # resp.permissions[0].actions[0] #=> String
3195
3224
  # resp.status #=> Integer
3196
3225
  # resp.request_id #=> String
3226
+ # resp.link_sharing_configuration.permissions #=> Array
3227
+ # resp.link_sharing_configuration.permissions[0].principal #=> String
3228
+ # resp.link_sharing_configuration.permissions[0].actions #=> Array
3229
+ # resp.link_sharing_configuration.permissions[0].actions[0] #=> String
3197
3230
  #
3198
3231
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeDashboardPermissions AWS API Documentation
3199
3232
  #
@@ -3204,7 +3237,8 @@ module Aws::QuickSight
3204
3237
  req.send_request(options)
3205
3238
  end
3206
3239
 
3207
- # Describes a dataset.
3240
+ # Describes a dataset. This operation doesn't support datasets that
3241
+ # include uploaded files as a source.
3208
3242
  #
3209
3243
  # @option params [required, String] :aws_account_id
3210
3244
  # The Amazon Web Services account ID.
@@ -3405,7 +3439,7 @@ module Aws::QuickSight
3405
3439
  # resp.data_source.arn #=> String
3406
3440
  # resp.data_source.data_source_id #=> String
3407
3441
  # resp.data_source.name #=> String
3408
- # 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"
3442
+ # 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"
3409
3443
  # resp.data_source.status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
3410
3444
  # resp.data_source.created_time #=> Time
3411
3445
  # resp.data_source.last_updated_time #=> Time
@@ -3457,6 +3491,8 @@ module Aws::QuickSight
3457
3491
  # resp.data_source.data_source_parameters.twitter_parameters.query #=> String
3458
3492
  # resp.data_source.data_source_parameters.twitter_parameters.max_rows #=> Integer
3459
3493
  # resp.data_source.data_source_parameters.amazon_open_search_parameters.domain #=> String
3494
+ # resp.data_source.data_source_parameters.exasol_parameters.host #=> String
3495
+ # resp.data_source.data_source_parameters.exasol_parameters.port #=> Integer
3460
3496
  # resp.data_source.alternate_data_source_parameters #=> Array
3461
3497
  # resp.data_source.alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
3462
3498
  # resp.data_source.alternate_data_source_parameters[0].athena_parameters.work_group #=> String
@@ -3506,6 +3542,8 @@ module Aws::QuickSight
3506
3542
  # resp.data_source.alternate_data_source_parameters[0].twitter_parameters.query #=> String
3507
3543
  # resp.data_source.alternate_data_source_parameters[0].twitter_parameters.max_rows #=> Integer
3508
3544
  # resp.data_source.alternate_data_source_parameters[0].amazon_open_search_parameters.domain #=> String
3545
+ # resp.data_source.alternate_data_source_parameters[0].exasol_parameters.host #=> String
3546
+ # resp.data_source.alternate_data_source_parameters[0].exasol_parameters.port #=> Integer
3509
3547
  # resp.data_source.vpc_connection_properties.vpc_connection_arn #=> String
3510
3548
  # resp.data_source.ssl_properties.disable_ssl #=> Boolean
3511
3549
  # 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"
@@ -3569,10 +3607,10 @@ module Aws::QuickSight
3569
3607
  # Describes a folder.
3570
3608
  #
3571
3609
  # @option params [required, String] :aws_account_id
3572
- # The AWS account ID.
3610
+ # The ID for the Amazon Web Services account that contains the folder.
3573
3611
  #
3574
3612
  # @option params [required, String] :folder_id
3575
- # The folder ID.
3613
+ # The ID of the folder.
3576
3614
  #
3577
3615
  # @return [Types::DescribeFolderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3578
3616
  #
@@ -3612,10 +3650,10 @@ module Aws::QuickSight
3612
3650
  # Describes permissions for a folder.
3613
3651
  #
3614
3652
  # @option params [required, String] :aws_account_id
3615
- # The AWS Account ID.
3653
+ # The ID for the Amazon Web Services account that contains the folder.
3616
3654
  #
3617
3655
  # @option params [required, String] :folder_id
3618
- # The folder ID.
3656
+ # The ID of the folder.
3619
3657
  #
3620
3658
  # @return [Types::DescribeFolderPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3621
3659
  #
@@ -3657,10 +3695,10 @@ module Aws::QuickSight
3657
3695
  # ancestor folders.
3658
3696
  #
3659
3697
  # @option params [required, String] :aws_account_id
3660
- # The AWS account ID.
3698
+ # The ID for the Amazon Web Services account that contains the folder.
3661
3699
  #
3662
3700
  # @option params [required, String] :folder_id
3663
- # The folder ID.
3701
+ # The ID of the folder.
3664
3702
  #
3665
3703
  # @return [Types::DescribeFolderResolvedPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3666
3704
  #
@@ -3743,7 +3781,7 @@ module Aws::QuickSight
3743
3781
  req.send_request(options)
3744
3782
  end
3745
3783
 
3746
- # Describes an existing IAMpolicy assignment, as specified by the
3784
+ # Describes an existing IAM policy assignment, as specified by the
3747
3785
  # assignment name.
3748
3786
  #
3749
3787
  # @option params [required, String] :aws_account_id
@@ -3846,10 +3884,10 @@ module Aws::QuickSight
3846
3884
  req.send_request(options)
3847
3885
  end
3848
3886
 
3849
- # Provides a summary and status of IP Rules.
3887
+ # Provides a summary and status of IP rules.
3850
3888
  #
3851
3889
  # @option params [required, String] :aws_account_id
3852
- # Your AWS account ID.
3890
+ # The ID of the Amazon Web Services account that contains the IP rules.
3853
3891
  #
3854
3892
  # @return [Types::DescribeIpRestrictionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3855
3893
  #
@@ -4480,8 +4518,7 @@ module Aws::QuickSight
4480
4518
  #
4481
4519
  # @option params [required, Types::RegisteredUserEmbeddingExperienceConfiguration] :experience_configuration
4482
4520
  # The experience you are embedding. For registered users, you can embed
4483
- # Amazon QuickSight dashboards, the entire Amazon QuickSight console, or
4484
- # the Amazon QuickSight Q search bar.
4521
+ # Amazon QuickSight dashboards or the entire Amazon QuickSight console.
4485
4522
  #
4486
4523
  # @return [Types::GenerateEmbedUrlForRegisteredUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4487
4524
  #
@@ -4595,10 +4632,11 @@ module Aws::QuickSight
4595
4632
  #
4596
4633
  # * Invited nonfederated users
4597
4634
  #
4598
- # * IAMusers and IAMrole-based sessions authenticated through Federated
4599
- # Single Sign-On using SAML, OpenID Connect, or IAMfederation.
4635
+ # * IAM users and IAM role-based sessions authenticated through
4636
+ # Federated Single Sign-On using SAML, OpenID Connect, or IAM
4637
+ # federation.
4600
4638
  #
4601
- # Omit this parameter for users in the third group – IAMusers and IAM
4639
+ # Omit this parameter for users in the third group – IAM users and IAM
4602
4640
  # role-based sessions.
4603
4641
  #
4604
4642
  # @option params [String] :namespace
@@ -4610,8 +4648,8 @@ module Aws::QuickSight
4610
4648
  # A list of one or more dashboard IDs that you want to add to a session
4611
4649
  # that includes anonymous users. The `IdentityType` parameter must be
4612
4650
  # set to `ANONYMOUS` for this to work, because other identity types
4613
- # authenticate as Amazon QuickSight or IAMusers. For example, if you set
4614
- # "`--dashboard-id dash_id1 --dashboard-id dash_id2 dash_id3
4651
+ # authenticate as Amazon QuickSight or IAM users. For example, if you
4652
+ # set "`--dashboard-id dash_id1 --dashboard-id dash_id2 dash_id3
4615
4653
  # identity-type ANONYMOUS`", the session can access all three
4616
4654
  # dashboards.
4617
4655
  #
@@ -5004,7 +5042,7 @@ module Aws::QuickSight
5004
5042
  # resp.data_sources[0].arn #=> String
5005
5043
  # resp.data_sources[0].data_source_id #=> String
5006
5044
  # resp.data_sources[0].name #=> String
5007
- # 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"
5045
+ # 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"
5008
5046
  # resp.data_sources[0].status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
5009
5047
  # resp.data_sources[0].created_time #=> Time
5010
5048
  # resp.data_sources[0].last_updated_time #=> Time
@@ -5056,6 +5094,8 @@ module Aws::QuickSight
5056
5094
  # resp.data_sources[0].data_source_parameters.twitter_parameters.query #=> String
5057
5095
  # resp.data_sources[0].data_source_parameters.twitter_parameters.max_rows #=> Integer
5058
5096
  # resp.data_sources[0].data_source_parameters.amazon_open_search_parameters.domain #=> String
5097
+ # resp.data_sources[0].data_source_parameters.exasol_parameters.host #=> String
5098
+ # resp.data_sources[0].data_source_parameters.exasol_parameters.port #=> Integer
5059
5099
  # resp.data_sources[0].alternate_data_source_parameters #=> Array
5060
5100
  # resp.data_sources[0].alternate_data_source_parameters[0].amazon_elasticsearch_parameters.domain #=> String
5061
5101
  # resp.data_sources[0].alternate_data_source_parameters[0].athena_parameters.work_group #=> String
@@ -5105,6 +5145,8 @@ module Aws::QuickSight
5105
5145
  # resp.data_sources[0].alternate_data_source_parameters[0].twitter_parameters.query #=> String
5106
5146
  # resp.data_sources[0].alternate_data_source_parameters[0].twitter_parameters.max_rows #=> Integer
5107
5147
  # resp.data_sources[0].alternate_data_source_parameters[0].amazon_open_search_parameters.domain #=> String
5148
+ # resp.data_sources[0].alternate_data_source_parameters[0].exasol_parameters.host #=> String
5149
+ # resp.data_sources[0].alternate_data_source_parameters[0].exasol_parameters.port #=> Integer
5108
5150
  # resp.data_sources[0].vpc_connection_properties.vpc_connection_arn #=> String
5109
5151
  # resp.data_sources[0].ssl_properties.disable_ssl #=> Boolean
5110
5152
  # 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"
@@ -5125,10 +5167,10 @@ module Aws::QuickSight
5125
5167
  # List all assets (`DASHBOARD`, `ANALYSIS`, and `DATASET`) in a folder.
5126
5168
  #
5127
5169
  # @option params [required, String] :aws_account_id
5128
- # The AWS account ID.
5170
+ # The ID for the Amazon Web Services account that contains the folder.
5129
5171
  #
5130
5172
  # @option params [required, String] :folder_id
5131
- # The folder ID.
5173
+ # The ID of the folder.
5132
5174
  #
5133
5175
  # @option params [String] :next_token
5134
5176
  # The token for the next set of results, or null if there are no more
@@ -5174,7 +5216,7 @@ module Aws::QuickSight
5174
5216
  # Lists all folders in an account.
5175
5217
  #
5176
5218
  # @option params [required, String] :aws_account_id
5177
- # The AWS account ID.
5219
+ # The ID for the Amazon Web Services account that contains the folder.
5178
5220
  #
5179
5221
  # @option params [String] :next_token
5180
5222
  # The token for the next set of results, or null if there are no more
@@ -5326,11 +5368,11 @@ module Aws::QuickSight
5326
5368
  req.send_request(options)
5327
5369
  end
5328
5370
 
5329
- # Lists IAMpolicy assignments in the current Amazon QuickSight account.
5371
+ # Lists IAM policy assignments in the current Amazon QuickSight account.
5330
5372
  #
5331
5373
  # @option params [required, String] :aws_account_id
5332
- # The ID of the Amazon Web Services account that contains these
5333
- # IAMpolicy assignments.
5374
+ # The ID of the Amazon Web Services account that contains these IAM
5375
+ # policy assignments.
5334
5376
  #
5335
5377
  # @option params [String] :assignment_status
5336
5378
  # The status of the assignments.
@@ -5380,7 +5422,7 @@ module Aws::QuickSight
5380
5422
  req.send_request(options)
5381
5423
  end
5382
5424
 
5383
- # Lists all the IAMpolicy assignments, including the Amazon Resource
5425
+ # Lists all the IAM policy assignments, including the Amazon Resource
5384
5426
  # Names (ARNs) for the IAM policies assigned to the specified user and
5385
5427
  # group or groups that the user belongs to.
5386
5428
  #
@@ -6039,14 +6081,14 @@ module Aws::QuickSight
6039
6081
  end
6040
6082
 
6041
6083
  # Creates an Amazon QuickSight user, whose identity is associated with
6042
- # the AWS Identity and Access Management (IAM) identity or role
6043
- # specified in the request.
6084
+ # the Identity and Access Management (IAM) identity or role specified in
6085
+ # the request.
6044
6086
  #
6045
6087
  # @option params [required, String] :identity_type
6046
6088
  # Amazon QuickSight supports several ways of managing the identity of
6047
6089
  # users. This parameter accepts two values:
6048
6090
  #
6049
- # * `IAM`\: A user whose identity maps to an existing IAMuser or role.
6091
+ # * `IAM`\: A user whose identity maps to an existing IAM user or role.
6050
6092
  #
6051
6093
  # * `QUICKSIGHT`\: A user whose identity is owned and managed internally
6052
6094
  # by Amazon QuickSight.
@@ -6071,17 +6113,17 @@ module Aws::QuickSight
6071
6113
  # * `RESTRICTED_AUTHOR`\: This role isn't currently available for use.
6072
6114
  #
6073
6115
  # @option params [String] :iam_arn
6074
- # The ARN of the IAMuser or role that you are registering with Amazon
6116
+ # The ARN of the IAM user or role that you are registering with Amazon
6075
6117
  # QuickSight.
6076
6118
  #
6077
6119
  # @option params [String] :session_name
6078
6120
  # You need to use this parameter only when you register one or more
6079
- # users using an assumed IAMrole. You don't need to provide the session
6080
- # name for other scenarios, for example when you are registering an
6081
- # IAMuser or an Amazon QuickSight user. You can register multiple users
6082
- # using the same IAMrole if each user has a different session name. For
6083
- # more information on assuming IAMroles, see [ `assume-role` ][1] in the
6084
- # *AWS CLI Reference.*
6121
+ # users using an assumed IAM role. You don't need to provide the
6122
+ # session name for other scenarios, for example when you are registering
6123
+ # an IAM user or an Amazon QuickSight user. You can register multiple
6124
+ # users using the same IAM role if each user has a different session
6125
+ # name. For more information on assuming IAM roles, see [ `assume-role`
6126
+ # ][1] in the *CLI Reference.*
6085
6127
  #
6086
6128
  #
6087
6129
  #
@@ -6120,9 +6162,9 @@ module Aws::QuickSight
6120
6162
  # restrictions. Currently, you need to create the profile names for
6121
6163
  # custom permission sets by using the Amazon QuickSight console. Then,
6122
6164
  # you use the `RegisterUser` API operation to assign the named set of
6123
- # permissions to a Amazon QuickSight user.
6165
+ # permissions to a QuickSight user.
6124
6166
  #
6125
- # Amazon QuickSight custom permissions are applied through IAMpolicies.
6167
+ # Amazon QuickSight custom permissions are applied through IAM policies.
6126
6168
  # Therefore, they override the permissions typically granted by
6127
6169
  # assigning Amazon QuickSight users to one of the default security
6128
6170
  # cohorts in Amazon QuickSight (admin, author, reader).
@@ -6384,7 +6426,7 @@ module Aws::QuickSight
6384
6426
  # Searches the subfolders in a folder.
6385
6427
  #
6386
6428
  # @option params [required, String] :aws_account_id
6387
- # The AWS account ID.
6429
+ # The ID for the Amazon Web Services account that contains the folder.
6388
6430
  #
6389
6431
  # @option params [required, Array<Types::FolderSearchFilter>] :filters
6390
6432
  # The filters to apply to the search. Currently, you can search only by
@@ -6460,13 +6502,14 @@ module Aws::QuickSight
6460
6502
  # template.
6461
6503
  #
6462
6504
  # Tagging for Amazon QuickSight works in a similar way to tagging for
6463
- # other AWS services, except for the following:
6505
+ # other Amazon Web Services services, except for the following:
6464
6506
  #
6465
- # * You can't use tags to track AWS costs for Amazon QuickSight. This
6466
- # restriction is because Amazon QuickSight costs are based on users
6467
- # and SPICE capacity, which aren't taggable resources.
6507
+ # * You can't use tags to track costs for Amazon QuickSight. This
6508
+ # isn't possible because you can't tag the resources that Amazon
6509
+ # QuickSight costs are based on, for example Amazon QuickSight storage
6510
+ # capacity (SPICE), number of users, type of users, and usage metrics.
6468
6511
  #
6469
- # * Amazon QuickSight doesn't currently support the Tag Editor for
6512
+ # * Amazon QuickSight doesn't currently support the tag editor for
6470
6513
  # Resource Groups.
6471
6514
  #
6472
6515
  # @option params [required, String] :resource_arn
@@ -6581,6 +6624,7 @@ module Aws::QuickSight
6581
6624
  # namespace: "Namespace",
6582
6625
  # account_customization: { # required
6583
6626
  # default_theme: "Arn",
6627
+ # default_email_customization_template: "Arn",
6584
6628
  # },
6585
6629
  # })
6586
6630
  #
@@ -6590,6 +6634,7 @@ module Aws::QuickSight
6590
6634
  # resp.aws_account_id #=> String
6591
6635
  # resp.namespace #=> String
6592
6636
  # resp.account_customization.default_theme #=> String
6637
+ # resp.account_customization.default_email_customization_template #=> String
6593
6638
  # resp.request_id #=> String
6594
6639
  # resp.status #=> Integer
6595
6640
  #
@@ -6817,8 +6862,8 @@ module Aws::QuickSight
6817
6862
  #
6818
6863
  # <note markdown="1"> Updating a Dashboard creates a new dashboard version but does not
6819
6864
  # immediately publish the new version. You can update the published
6820
- # version of a dashboard by using the UpdateDashboardPublishedVersion
6821
- # API operation.
6865
+ # version of a dashboard by using the ` UpdateDashboardPublishedVersion
6866
+ # ` API operation.
6822
6867
  #
6823
6868
  # </note>
6824
6869
  #
@@ -6838,8 +6883,8 @@ module Aws::QuickSight
6838
6883
  # using as source. You can only update a dashboard from a template, so
6839
6884
  # you use a `SourceTemplate` entity. If you need to update a dashboard
6840
6885
  # from an analysis, first convert the analysis to a template by using
6841
- # the CreateTemplate API operation. For `SourceTemplate`, specify the
6842
- # Amazon Resource Name (ARN) of the source template. The
6886
+ # the ` CreateTemplate ` API operation. For `SourceTemplate`, specify
6887
+ # the Amazon Resource Name (ARN) of the source template. The
6843
6888
  # `SourceTemplate` ARN can contain any Amazon Web Services account and
6844
6889
  # any Amazon QuickSight-supported Amazon Web Services Region.
6845
6890
  #
@@ -6980,6 +7025,12 @@ module Aws::QuickSight
6980
7025
  # @option params [Array<Types::ResourcePermission>] :revoke_permissions
6981
7026
  # The permissions that you want to revoke from this resource.
6982
7027
  #
7028
+ # @option params [Array<Types::ResourcePermission>] :grant_link_permissions
7029
+ # Grants link permissions to all users in a defined namespace.
7030
+ #
7031
+ # @option params [Array<Types::ResourcePermission>] :revoke_link_permissions
7032
+ # Revokes link permissions from all users in a defined namespace.
7033
+ #
6983
7034
  # @return [Types::UpdateDashboardPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6984
7035
  #
6985
7036
  # * {Types::UpdateDashboardPermissionsResponse#dashboard_arn #dashboard_arn} => String
@@ -6987,6 +7038,7 @@ module Aws::QuickSight
6987
7038
  # * {Types::UpdateDashboardPermissionsResponse#permissions #permissions} => Array&lt;Types::ResourcePermission&gt;
6988
7039
  # * {Types::UpdateDashboardPermissionsResponse#request_id #request_id} => String
6989
7040
  # * {Types::UpdateDashboardPermissionsResponse#status #status} => Integer
7041
+ # * {Types::UpdateDashboardPermissionsResponse#link_sharing_configuration #link_sharing_configuration} => Types::LinkSharingConfiguration
6990
7042
  #
6991
7043
  # @example Request syntax with placeholder values
6992
7044
  #
@@ -7005,6 +7057,18 @@ module Aws::QuickSight
7005
7057
  # actions: ["String"], # required
7006
7058
  # },
7007
7059
  # ],
7060
+ # grant_link_permissions: [
7061
+ # {
7062
+ # principal: "Principal", # required
7063
+ # actions: ["String"], # required
7064
+ # },
7065
+ # ],
7066
+ # revoke_link_permissions: [
7067
+ # {
7068
+ # principal: "Principal", # required
7069
+ # actions: ["String"], # required
7070
+ # },
7071
+ # ],
7008
7072
  # })
7009
7073
  #
7010
7074
  # @example Response structure
@@ -7017,6 +7081,10 @@ module Aws::QuickSight
7017
7081
  # resp.permissions[0].actions[0] #=> String
7018
7082
  # resp.request_id #=> String
7019
7083
  # resp.status #=> Integer
7084
+ # resp.link_sharing_configuration.permissions #=> Array
7085
+ # resp.link_sharing_configuration.permissions[0].principal #=> String
7086
+ # resp.link_sharing_configuration.permissions[0].actions #=> Array
7087
+ # resp.link_sharing_configuration.permissions[0].actions[0] #=> String
7020
7088
  #
7021
7089
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateDashboardPermissions AWS API Documentation
7022
7090
  #
@@ -7070,7 +7138,8 @@ module Aws::QuickSight
7070
7138
  req.send_request(options)
7071
7139
  end
7072
7140
 
7073
- # Updates a dataset.
7141
+ # Updates a dataset. This operation doesn't support datasets that
7142
+ # include uploaded files as a source.
7074
7143
  #
7075
7144
  # @option params [required, String] :aws_account_id
7076
7145
  # The Amazon Web Services account ID.
@@ -7499,6 +7568,10 @@ module Aws::QuickSight
7499
7568
  # amazon_open_search_parameters: {
7500
7569
  # domain: "Domain", # required
7501
7570
  # },
7571
+ # exasol_parameters: {
7572
+ # host: "Host", # required
7573
+ # port: 1, # required
7574
+ # },
7502
7575
  # },
7503
7576
  # credentials: {
7504
7577
  # credential_pair: {
@@ -7598,6 +7671,10 @@ module Aws::QuickSight
7598
7671
  # amazon_open_search_parameters: {
7599
7672
  # domain: "Domain", # required
7600
7673
  # },
7674
+ # exasol_parameters: {
7675
+ # host: "Host", # required
7676
+ # port: 1, # required
7677
+ # },
7601
7678
  # },
7602
7679
  # ],
7603
7680
  # },
@@ -7690,10 +7767,11 @@ module Aws::QuickSight
7690
7767
  # Updates the name of a folder.
7691
7768
  #
7692
7769
  # @option params [required, String] :aws_account_id
7693
- # The AWS account ID.
7770
+ # The ID for the Amazon Web Services account that contains the folder to
7771
+ # update.
7694
7772
  #
7695
7773
  # @option params [required, String] :folder_id
7696
- # The folder ID.
7774
+ # The ID of the folder.
7697
7775
  #
7698
7776
  # @option params [required, String] :name
7699
7777
  # The name of the folder.
@@ -7732,10 +7810,11 @@ module Aws::QuickSight
7732
7810
  # Updates permissions of a folder.
7733
7811
  #
7734
7812
  # @option params [required, String] :aws_account_id
7735
- # The AWS account ID.
7813
+ # The ID for the Amazon Web Services account that contains the folder to
7814
+ # update.
7736
7815
  #
7737
7816
  # @option params [required, String] :folder_id
7738
- # The folder ID.
7817
+ # The ID of the folder.
7739
7818
  #
7740
7819
  # @option params [Array<Types::ResourcePermission>] :grant_permissions
7741
7820
  # The permissions that you want to grant on a resource.
@@ -7839,12 +7918,12 @@ module Aws::QuickSight
7839
7918
  req.send_request(options)
7840
7919
  end
7841
7920
 
7842
- # Updates an existing IAMpolicy assignment. This operation updates only
7921
+ # Updates an existing IAM policy assignment. This operation updates only
7843
7922
  # the optional parameter or parameters that are specified in the
7844
7923
  # request. This overwrites all of the users included in `Identities`.
7845
7924
  #
7846
7925
  # @option params [required, String] :aws_account_id
7847
- # The ID of the Amazon Web Services account that contains the IAMpolicy
7926
+ # The ID of the Amazon Web Services account that contains the IAM policy
7848
7927
  # assignment.
7849
7928
  #
7850
7929
  # @option params [required, String] :assignment_name
@@ -7867,7 +7946,7 @@ module Aws::QuickSight
7867
7946
  # when creating the data source.
7868
7947
  #
7869
7948
  # @option params [String] :policy_arn
7870
- # The ARN for the IAMpolicy to apply to the Amazon QuickSight users and
7949
+ # The ARN for the IAM policy to apply to the Amazon QuickSight users and
7871
7950
  # groups specified in this assignment.
7872
7951
  #
7873
7952
  # @option params [Hash<String,Array>] :identities
@@ -7918,16 +7997,19 @@ module Aws::QuickSight
7918
7997
  req.send_request(options)
7919
7998
  end
7920
7999
 
7921
- # Updates content and status of IP Rules.
8000
+ # Updates the content and status of IP rules. To use this operation, you
8001
+ # need to provide the entire map of rules. You can use the
8002
+ # `DescribeIpRestriction` operation to get the current rule map.
7922
8003
  #
7923
8004
  # @option params [required, String] :aws_account_id
7924
- # Your AWS account ID.
8005
+ # The ID of the Amazon Web Services account that contains the IP rules.
7925
8006
  #
7926
8007
  # @option params [Hash<String,String>] :ip_restriction_rule_map
7927
- # Describes updated IP rules.
8008
+ # A map that describes the updated IP rules with CIDR ranges and
8009
+ # descriptions.
7928
8010
  #
7929
8011
  # @option params [Boolean] :enabled
7930
- # Whether or not IP rules are enabled.
8012
+ # A value that specifies whether IP rules are turned on.
7931
8013
  #
7932
8014
  # @return [Types::UpdateIpRestrictionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7933
8015
  #
@@ -8458,9 +8540,9 @@ module Aws::QuickSight
8458
8540
  # restrictions. Currently, you need to create the profile names for
8459
8541
  # custom permission sets by using the Amazon QuickSight console. Then,
8460
8542
  # you use the `RegisterUser` API operation to assign the named set of
8461
- # permissions to a Amazon QuickSight user.
8543
+ # permissions to a QuickSight user.
8462
8544
  #
8463
- # Amazon QuickSight custom permissions are applied through IAMpolicies.
8545
+ # Amazon QuickSight custom permissions are applied through IAM policies.
8464
8546
  # Therefore, they override the permissions typically granted by
8465
8547
  # assigning Amazon QuickSight users to one of the default security
8466
8548
  # cohorts in Amazon QuickSight (admin, author, reader).
@@ -8491,8 +8573,8 @@ module Aws::QuickSight
8491
8573
  # to provide the custom OIDC provider URL.
8492
8574
  #
8493
8575
  # * `NONE`\: This clears all the previously saved external login
8494
- # information for a user. Use ` DescribeUser ` API to check the
8495
- # external login information.
8576
+ # information for a user. Use the ` DescribeUser ` API operation to
8577
+ # check the external login information.
8496
8578
  #
8497
8579
  # @option params [String] :custom_federation_provider_url
8498
8580
  # The URL of the custom OpenID Connect (OIDC) provider that provides
@@ -8563,7 +8645,7 @@ module Aws::QuickSight
8563
8645
  params: params,
8564
8646
  config: config)
8565
8647
  context[:gem_name] = 'aws-sdk-quicksight'
8566
- context[:gem_version] = '1.57.0'
8648
+ context[:gem_version] = '1.61.0'
8567
8649
  Seahorse::Client::Request.new(handlers, context)
8568
8650
  end
8569
8651