aws-sdk-redshift 1.64.0 → 1.68.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 80216a41083def1206c647c9d62d775aacee7085d01a264ec4e84424b7c1a4d6
4
- data.tar.gz: e0e95d17a17480bc1831118a6a948228e67993fb7d609ee93ba411b0e16e2b5d
3
+ metadata.gz: c0aeb5a56bed1cf423cfb5aad928d91f66fb3fcbf0af1973a265adf5b67a81fd
4
+ data.tar.gz: 6bae72ec5f85b8345318d30c3237c48cc7e7c1bf23c5cd5c305785fb6c3fc56a
5
5
  SHA512:
6
- metadata.gz: '0618d9fd202b5fb6a45fcf793c15f737718bad4af39d7871b765704bf43875c87642e89db3a2b0b54107af858c15b385c6f9340be930974ae231b2a94e580266'
7
- data.tar.gz: ffe5a34a1d0cad5af7ace157ac131bd095ae4445f1654ff0dfeffdf1c3c5cb1b83262c75ac68fab9a53ed147b785ffd60e03b702a8aafcdc31ee9e17020dac0c
6
+ metadata.gz: d6b661189fe41f20cdfd6a7043b03837ab101e3ccc02ec04b2ed0e7fa2da12aeeeb174fe33e3d1f4e4a464a1518345cd397e550181859b3d6fcabba14ebb653f
7
+ data.tar.gz: afdeaae05e6f735633e2779be4882a8bc8c6fc42aca4eac80412880642d77a1a96a2978fa7d7ba4256fbb79a7632d5fb819e29f9f44a2e038d0524b45218ceaa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2021-08-03)
5
+ ------------------
6
+
7
+ * Feature - API support for Redshift Data Sharing feature.
8
+
9
+ 1.67.0 (2021-07-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.66.0 (2021-07-28)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.65.0 (2021-07-13)
20
+ ------------------
21
+
22
+ * Feature - Release new APIs to support new Redshift feature - Authentication Profile
23
+
4
24
  1.64.0 (2021-06-28)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.64.0
1
+ 1.68.0
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-redshift/customizations'
49
49
  # @!group service
50
50
  module Aws::Redshift
51
51
 
52
- GEM_VERSION = '1.64.0'
52
+ GEM_VERSION = '1.68.0'
53
53
 
54
54
  end
@@ -384,7 +384,7 @@ module Aws::Redshift
384
384
  # website.
385
385
  #
386
386
  # @option params [required, String] :account_id
387
- # The AWS account ID that owns the cluster.
387
+ # The Amazon Web Services account ID that owns the cluster.
388
388
  #
389
389
  # @option params [required, String] :cluster_identifier
390
390
  # The cluster identifier of the cluster that receives data from the
@@ -424,6 +424,58 @@ module Aws::Redshift
424
424
  req.send_request(options)
425
425
  end
426
426
 
427
+ # From a datashare consumer account, associates a datashare with the
428
+ # account (AssociateEntireAccount) or the specified namespace
429
+ # (ConsumerArn). If you make this association, the consumer can consume
430
+ # the datashare.
431
+ #
432
+ # @option params [required, String] :data_share_arn
433
+ # The Amazon Resource Name (ARN) of the datashare that the consumer is
434
+ # to use with the account or the namespace.
435
+ #
436
+ # @option params [Boolean] :associate_entire_account
437
+ # A value that specifies whether the datashare is associated with the
438
+ # entire account.
439
+ #
440
+ # @option params [String] :consumer_arn
441
+ # The Amazon Resource Name (ARN) of the consumer that is associated with
442
+ # the datashare.
443
+ #
444
+ # @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
445
+ #
446
+ # * {Types::DataShare#data_share_arn #data_share_arn} => String
447
+ # * {Types::DataShare#producer_arn #producer_arn} => String
448
+ # * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
449
+ # * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
450
+ #
451
+ # @example Request syntax with placeholder values
452
+ #
453
+ # resp = client.associate_data_share_consumer({
454
+ # data_share_arn: "String", # required
455
+ # associate_entire_account: false,
456
+ # consumer_arn: "String",
457
+ # })
458
+ #
459
+ # @example Response structure
460
+ #
461
+ # resp.data_share_arn #=> String
462
+ # resp.producer_arn #=> String
463
+ # resp.allow_publicly_accessible_consumers #=> Boolean
464
+ # resp.data_share_associations #=> Array
465
+ # resp.data_share_associations[0].consumer_identifier #=> String
466
+ # resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
467
+ # resp.data_share_associations[0].created_date #=> Time
468
+ # resp.data_share_associations[0].status_change_date #=> Time
469
+ #
470
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AssociateDataShareConsumer AWS API Documentation
471
+ #
472
+ # @overload associate_data_share_consumer(params = {})
473
+ # @param [Hash] params ({})
474
+ def associate_data_share_consumer(params = {}, options = {})
475
+ req = build_request(:associate_data_share_consumer, params)
476
+ req.send_request(options)
477
+ end
478
+
427
479
  # Adds an inbound (ingress) rule to an Amazon Redshift security group.
428
480
  # Depending on whether the application accessing your cluster is running
429
481
  # on the Internet or an Amazon EC2 instance, you can authorize inbound
@@ -433,8 +485,8 @@ module Aws::Redshift
433
485
  #
434
486
  # If you authorize access to an Amazon EC2 security group, specify
435
487
  # *EC2SecurityGroupName* and *EC2SecurityGroupOwnerId*. The Amazon EC2
436
- # security group and Amazon Redshift cluster must be in the same AWS
437
- # Region.
488
+ # security group and Amazon Redshift cluster must be in the same Amazon
489
+ # Web Services Region.
438
490
  #
439
491
  # If you authorize access to a CIDR/IP address range, specify *CIDRIP*.
440
492
  # For an overview of CIDR blocks, see the Wikipedia article on
@@ -461,9 +513,9 @@ module Aws::Redshift
461
513
  # The EC2 security group to be added the Amazon Redshift security group.
462
514
  #
463
515
  # @option params [String] :ec2_security_group_owner_id
464
- # The AWS account number of the owner of the security group specified by
465
- # the *EC2SecurityGroupName* parameter. The AWS Access Key ID is not an
466
- # acceptable value.
516
+ # The Amazon Web Services account number of the owner of the security
517
+ # group specified by the *EC2SecurityGroupName* parameter. The Amazon
518
+ # Web Services Access Key ID is not an acceptable value.
467
519
  #
468
520
  # Example: `111122223333`
469
521
  #
@@ -510,13 +562,60 @@ module Aws::Redshift
510
562
  req.send_request(options)
511
563
  end
512
564
 
565
+ # From a data producer account, authorizes the sharing of a datashare
566
+ # with one or more consumer accounts. To authorize a datashare for a
567
+ # data consumer, the producer account must have the correct access
568
+ # privileges.
569
+ #
570
+ # @option params [required, String] :data_share_arn
571
+ # The Amazon Resource Name (ARN) of the datashare that producers are to
572
+ # authorize sharing for.
573
+ #
574
+ # @option params [required, String] :consumer_identifier
575
+ # The identifier of the data consumer that is authorized to access the
576
+ # datashare. This identifier is an AWS account ID.
577
+ #
578
+ # @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
579
+ #
580
+ # * {Types::DataShare#data_share_arn #data_share_arn} => String
581
+ # * {Types::DataShare#producer_arn #producer_arn} => String
582
+ # * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
583
+ # * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
584
+ #
585
+ # @example Request syntax with placeholder values
586
+ #
587
+ # resp = client.authorize_data_share({
588
+ # data_share_arn: "String", # required
589
+ # consumer_identifier: "String", # required
590
+ # })
591
+ #
592
+ # @example Response structure
593
+ #
594
+ # resp.data_share_arn #=> String
595
+ # resp.producer_arn #=> String
596
+ # resp.allow_publicly_accessible_consumers #=> Boolean
597
+ # resp.data_share_associations #=> Array
598
+ # resp.data_share_associations[0].consumer_identifier #=> String
599
+ # resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
600
+ # resp.data_share_associations[0].created_date #=> Time
601
+ # resp.data_share_associations[0].status_change_date #=> Time
602
+ #
603
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AuthorizeDataShare AWS API Documentation
604
+ #
605
+ # @overload authorize_data_share(params = {})
606
+ # @param [Hash] params ({})
607
+ def authorize_data_share(params = {}, options = {})
608
+ req = build_request(:authorize_data_share, params)
609
+ req.send_request(options)
610
+ end
611
+
513
612
  # Grants access to a cluster.
514
613
  #
515
614
  # @option params [String] :cluster_identifier
516
615
  # The cluster identifier of the cluster to grant access to.
517
616
  #
518
617
  # @option params [required, String] :account
519
- # The AWS account ID to grant access to.
618
+ # The Amazon Web Services account ID to grant access to.
520
619
  #
521
620
  # @option params [Array<String>] :vpc_ids
522
621
  # The virtual private cloud (VPC) identifiers to grant access to.
@@ -563,8 +662,8 @@ module Aws::Redshift
563
662
  req.send_request(options)
564
663
  end
565
664
 
566
- # Authorizes the specified AWS customer account to restore the specified
567
- # snapshot.
665
+ # Authorizes the specified Amazon Web Services account to restore the
666
+ # specified snapshot.
568
667
  #
569
668
  # For more information about working with snapshots, go to [Amazon
570
669
  # Redshift Snapshots][1] in the *Amazon Redshift Cluster Management
@@ -584,10 +683,11 @@ module Aws::Redshift
584
683
  # the cluster name.
585
684
  #
586
685
  # @option params [required, String] :account_with_restore_access
587
- # The identifier of the AWS customer account authorized to restore the
588
- # specified snapshot.
686
+ # The identifier of the Amazon Web Services account authorized to
687
+ # restore the specified snapshot.
589
688
  #
590
- # To share a snapshot with AWS support, specify amazon-redshift-support.
689
+ # To share a snapshot with Amazon Web Services Support, specify
690
+ # amazon-redshift-support.
591
691
  #
592
692
  # @return [Types::AuthorizeSnapshotAccessResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
593
693
  #
@@ -860,7 +960,8 @@ module Aws::Redshift
860
960
  #
861
961
  # * Cannot end with a hyphen or contain two consecutive hyphens.
862
962
  #
863
- # * Must be unique for the AWS account that is making the request.
963
+ # * Must be unique for the Amazon Web Services account that is making
964
+ # the request.
864
965
  #
865
966
  # @option params [Integer] :manual_snapshot_retention_period
866
967
  # The number of days that a manual snapshot is retained. If the value is
@@ -934,6 +1035,41 @@ module Aws::Redshift
934
1035
  req.send_request(options)
935
1036
  end
936
1037
 
1038
+ # Creates an authentication profile with the specified parameters.
1039
+ #
1040
+ # @option params [required, String] :authentication_profile_name
1041
+ # The name of the authentication profile to be created.
1042
+ #
1043
+ # @option params [required, String] :authentication_profile_content
1044
+ # The content of the authentication profile in JSON format. The maximum
1045
+ # length of the JSON string is determined by a quota for your account.
1046
+ #
1047
+ # @return [Types::CreateAuthenticationProfileResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1048
+ #
1049
+ # * {Types::CreateAuthenticationProfileResult#authentication_profile_name #authentication_profile_name} => String
1050
+ # * {Types::CreateAuthenticationProfileResult#authentication_profile_content #authentication_profile_content} => String
1051
+ #
1052
+ # @example Request syntax with placeholder values
1053
+ #
1054
+ # resp = client.create_authentication_profile({
1055
+ # authentication_profile_name: "AuthenticationProfileNameString", # required
1056
+ # authentication_profile_content: "String", # required
1057
+ # })
1058
+ #
1059
+ # @example Response structure
1060
+ #
1061
+ # resp.authentication_profile_name #=> String
1062
+ # resp.authentication_profile_content #=> String
1063
+ #
1064
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateAuthenticationProfile AWS API Documentation
1065
+ #
1066
+ # @overload create_authentication_profile(params = {})
1067
+ # @param [Hash] params ({})
1068
+ def create_authentication_profile(params = {}, options = {})
1069
+ req = build_request(:create_authentication_profile, params)
1070
+ req.send_request(options)
1071
+ end
1072
+
937
1073
  # Creates a new cluster with the specified parameters.
938
1074
  #
939
1075
  # To create a cluster in Virtual Private Cloud (VPC), you must provide a
@@ -989,7 +1125,8 @@ module Aws::Redshift
989
1125
  #
990
1126
  # * Cannot end with a hyphen or contain two consecutive hyphens.
991
1127
  #
992
- # * Must be unique for all clusters within an AWS account.
1128
+ # * Must be unique for all clusters within an Amazon Web Services
1129
+ # account.
993
1130
  #
994
1131
  # Example: `myexamplecluster`
995
1132
  #
@@ -1018,7 +1155,7 @@ module Aws::Redshift
1018
1155
  # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes
1019
1156
  #
1020
1157
  # @option params [required, String] :master_username
1021
- # The user name associated with the master user account for the cluster
1158
+ # The user name associated with the admin user account for the cluster
1022
1159
  # that is being created.
1023
1160
  #
1024
1161
  # Constraints:
@@ -1036,7 +1173,7 @@ module Aws::Redshift
1036
1173
  # [1]: https://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html
1037
1174
  #
1038
1175
  # @option params [required, String] :master_user_password
1039
- # The password associated with the master user account for the cluster
1176
+ # The password associated with the admin user account for the cluster
1040
1177
  # that is being created.
1041
1178
  #
1042
1179
  # Constraints:
@@ -1230,8 +1367,8 @@ module Aws::Redshift
1230
1367
  # A list of tag instances.
1231
1368
  #
1232
1369
  # @option params [String] :kms_key_id
1233
- # The AWS Key Management Service (KMS) key ID of the encryption key that
1234
- # you want to use to encrypt data in the cluster.
1370
+ # The Key Management Service (KMS) key ID of the encryption key that you
1371
+ # want to use to encrypt data in the cluster.
1235
1372
  #
1236
1373
  # @option params [Boolean] :enhanced_vpc_routing
1237
1374
  # An option that specifies whether to create the cluster with enhanced
@@ -1252,10 +1389,10 @@ module Aws::Redshift
1252
1389
  # Reserved.
1253
1390
  #
1254
1391
  # @option params [Array<String>] :iam_roles
1255
- # A list of AWS Identity and Access Management (IAM) roles that can be
1256
- # used by the cluster to access other AWS services. You must supply the
1257
- # IAM roles in their Amazon Resource Name (ARN) format. You can supply
1258
- # up to 10 IAM roles in a single request.
1392
+ # A list of Identity and Access Management (IAM) roles that can be used
1393
+ # by the cluster to access other Amazon Web Services services. You must
1394
+ # supply the IAM roles in their Amazon Resource Name (ARN) format. You
1395
+ # can supply up to 10 IAM roles in a single request.
1259
1396
  #
1260
1397
  # A cluster can have up to 10 IAM roles associated with it at any time.
1261
1398
  #
@@ -1276,8 +1413,8 @@ module Aws::Redshift
1276
1413
  # (Advanced Query Accelerator) when it is created. Possible values
1277
1414
  # include the following.
1278
1415
  #
1279
- # * enabled - Use AQUA if it is available for the current AWS Region and
1280
- # Amazon Redshift node type.
1416
+ # * enabled - Use AQUA if it is available for the current Amazon Web
1417
+ # Services Region and Amazon Redshift node type.
1281
1418
  #
1282
1419
  # * disabled - Don't use AQUA.
1283
1420
  #
@@ -1477,7 +1614,7 @@ module Aws::Redshift
1477
1614
  #
1478
1615
  # * Cannot end with a hyphen or contain two consecutive hyphens.
1479
1616
  #
1480
- # * Must be unique withing your AWS account.
1617
+ # * Must be unique withing your Amazon Web Services account.
1481
1618
  #
1482
1619
  # <note markdown="1"> This value is stored as a lower-case string.
1483
1620
  #
@@ -1490,11 +1627,11 @@ module Aws::Redshift
1490
1627
  #
1491
1628
  # To get a list of valid parameter group family names, you can call
1492
1629
  # DescribeClusterParameterGroups. By default, Amazon Redshift returns a
1493
- # list of all the parameter groups that are owned by your AWS account,
1494
- # including the default parameter groups for each Amazon Redshift engine
1495
- # version. The parameter group family names associated with the default
1496
- # parameter groups provide you the valid values. For example, a valid
1497
- # family name is "redshift-1.0".
1630
+ # list of all the parameter groups that are owned by your Amazon Web
1631
+ # Services account, including the default parameter groups for each
1632
+ # Amazon Redshift engine version. The parameter group family names
1633
+ # associated with the default parameter groups provide you the valid
1634
+ # values. For example, a valid family name is "redshift-1.0".
1498
1635
  #
1499
1636
  # @option params [required, String] :description
1500
1637
  # A description of the parameter group.
@@ -1559,8 +1696,8 @@ module Aws::Redshift
1559
1696
  #
1560
1697
  # * Must not be "Default".
1561
1698
  #
1562
- # * Must be unique for all security groups that are created by your AWS
1563
- # account.
1699
+ # * Must be unique for all security groups that are created by your
1700
+ # Amazon Web Services account.
1564
1701
  #
1565
1702
  # Example: `examplesecuritygroup`
1566
1703
  #
@@ -1630,7 +1767,8 @@ module Aws::Redshift
1630
1767
  #
1631
1768
  # @option params [required, String] :snapshot_identifier
1632
1769
  # A unique identifier for the snapshot that you are requesting. This
1633
- # identifier must be unique for all snapshots within the AWS account.
1770
+ # identifier must be unique for all snapshots within the Amazon Web
1771
+ # Services account.
1634
1772
  #
1635
1773
  # Constraints:
1636
1774
  #
@@ -1748,8 +1886,8 @@ module Aws::Redshift
1748
1886
  #
1749
1887
  # * Must not be "Default".
1750
1888
  #
1751
- # * Must be unique for all subnet groups that are created by your AWS
1752
- # account.
1889
+ # * Must be unique for all subnet groups that are created by your Amazon
1890
+ # Web Services account.
1753
1891
  #
1754
1892
  # Example: `examplesubnetgroup`
1755
1893
  #
@@ -1812,8 +1950,9 @@ module Aws::Redshift
1812
1950
  # The cluster identifier of the cluster to access.
1813
1951
  #
1814
1952
  # @option params [String] :resource_owner
1815
- # The AWS account ID of the owner of the cluster. This is only required
1816
- # if the cluster is in another AWS account.
1953
+ # The Amazon Web Services account ID of the owner of the cluster. This
1954
+ # is only required if the cluster is in another Amazon Web Services
1955
+ # account.
1817
1956
  #
1818
1957
  # @option params [required, String] :endpoint_name
1819
1958
  # The Redshift-managed VPC endpoint name.
@@ -1903,11 +2042,12 @@ module Aws::Redshift
1903
2042
  # type = cluster and source identifier = my-cluster-1, notifications
1904
2043
  # will be sent for all the cluster events for my-cluster-1. If you
1905
2044
  # specify a source type but do not specify a source identifier, you will
1906
- # receive notice of the events for the objects of that type in your AWS
1907
- # account. If you do not specify either the SourceType nor the
1908
- # SourceIdentifier, you will be notified of events generated from all
1909
- # Amazon Redshift sources belonging to your AWS account. You must
1910
- # specify a source type if you specify a source ID.
2045
+ # receive notice of the events for the objects of that type in your
2046
+ # Amazon Web Services account. If you do not specify either the
2047
+ # SourceType nor the SourceIdentifier, you will be notified of events
2048
+ # generated from all Amazon Redshift sources belonging to your Amazon
2049
+ # Web Services account. You must specify a source type if you specify a
2050
+ # source ID.
1911
2051
  #
1912
2052
  # @option params [required, String] :subscription_name
1913
2053
  # The name of the event subscription to be created.
@@ -1931,8 +2071,9 @@ module Aws::Redshift
1931
2071
  # The type of source that will be generating the events. For example, if
1932
2072
  # you want to be notified of events generated by a cluster, you would
1933
2073
  # set this parameter to cluster. If this value is not specified, events
1934
- # are returned for all Amazon Redshift objects in your AWS account. You
1935
- # must specify a source type in order to specify source IDs.
2074
+ # are returned for all Amazon Redshift objects in your Amazon Web
2075
+ # Services account. You must specify a source type in order to specify
2076
+ # source IDs.
1936
2077
  #
1937
2078
  # Valid values: cluster, cluster-parameter-group,
1938
2079
  # cluster-security-group, cluster-snapshot, and scheduled-action.
@@ -1952,7 +2093,7 @@ module Aws::Redshift
1952
2093
  # Specifies the Amazon Redshift event categories to be published by the
1953
2094
  # event notification subscription.
1954
2095
  #
1955
- # Values: configuration, management, monitoring, security
2096
+ # Values: configuration, management, monitoring, security, pending
1956
2097
  #
1957
2098
  # @option params [String] :severity
1958
2099
  # Specifies the Amazon Redshift event severity to be published by the
@@ -2259,8 +2400,8 @@ module Aws::Redshift
2259
2400
  end
2260
2401
 
2261
2402
  # Creates a snapshot copy grant that permits Amazon Redshift to use a
2262
- # customer master key (CMK) from AWS Key Management Service (AWS KMS) to
2263
- # encrypt copied snapshots in a destination region.
2403
+ # customer master key (CMK) from Key Management Service (KMS) to encrypt
2404
+ # copied snapshots in a destination region.
2264
2405
  #
2265
2406
  # For more information about managing snapshot copy grants, go to
2266
2407
  # [Amazon Redshift Database Encryption][1] in the *Amazon Redshift
@@ -2272,7 +2413,7 @@ module Aws::Redshift
2272
2413
  #
2273
2414
  # @option params [required, String] :snapshot_copy_grant_name
2274
2415
  # The name of the snapshot copy grant. This name must be unique in the
2275
- # region for the AWS account.
2416
+ # region for the Amazon Web Services account.
2276
2417
  #
2277
2418
  # Constraints:
2278
2419
  #
@@ -2284,7 +2425,8 @@ module Aws::Redshift
2284
2425
  #
2285
2426
  # * Cannot end with a hyphen or contain two consecutive hyphens.
2286
2427
  #
2287
- # * Must be unique for all clusters within an AWS account.
2428
+ # * Must be unique for all clusters within an Amazon Web Services
2429
+ # account.
2288
2430
  #
2289
2431
  # @option params [String] :kms_key_id
2290
2432
  # The unique identifier of the customer master key (CMK) to which to
@@ -2528,6 +2670,79 @@ module Aws::Redshift
2528
2670
  req.send_request(options)
2529
2671
  end
2530
2672
 
2673
+ # From the producer account, removes authorization from the specified
2674
+ # datashare.
2675
+ #
2676
+ # @option params [required, String] :data_share_arn
2677
+ # The Amazon Resource Name (ARN) of the datashare to remove
2678
+ # authorization from.
2679
+ #
2680
+ # @option params [required, String] :consumer_identifier
2681
+ # The identifier of the data consumer that is to have authorization
2682
+ # removed from the datashare. This identifier is an AWS account ID.
2683
+ #
2684
+ # @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2685
+ #
2686
+ # * {Types::DataShare#data_share_arn #data_share_arn} => String
2687
+ # * {Types::DataShare#producer_arn #producer_arn} => String
2688
+ # * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
2689
+ # * {Types::DataShare#data_share_associations #data_share_associations} => Array&lt;Types::DataShareAssociation&gt;
2690
+ #
2691
+ # @example Request syntax with placeholder values
2692
+ #
2693
+ # resp = client.deauthorize_data_share({
2694
+ # data_share_arn: "String", # required
2695
+ # consumer_identifier: "String", # required
2696
+ # })
2697
+ #
2698
+ # @example Response structure
2699
+ #
2700
+ # resp.data_share_arn #=> String
2701
+ # resp.producer_arn #=> String
2702
+ # resp.allow_publicly_accessible_consumers #=> Boolean
2703
+ # resp.data_share_associations #=> Array
2704
+ # resp.data_share_associations[0].consumer_identifier #=> String
2705
+ # resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
2706
+ # resp.data_share_associations[0].created_date #=> Time
2707
+ # resp.data_share_associations[0].status_change_date #=> Time
2708
+ #
2709
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeauthorizeDataShare AWS API Documentation
2710
+ #
2711
+ # @overload deauthorize_data_share(params = {})
2712
+ # @param [Hash] params ({})
2713
+ def deauthorize_data_share(params = {}, options = {})
2714
+ req = build_request(:deauthorize_data_share, params)
2715
+ req.send_request(options)
2716
+ end
2717
+
2718
+ # Deletes an authentication profile.
2719
+ #
2720
+ # @option params [required, String] :authentication_profile_name
2721
+ # The name of the authentication profile to delete.
2722
+ #
2723
+ # @return [Types::DeleteAuthenticationProfileResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2724
+ #
2725
+ # * {Types::DeleteAuthenticationProfileResult#authentication_profile_name #authentication_profile_name} => String
2726
+ #
2727
+ # @example Request syntax with placeholder values
2728
+ #
2729
+ # resp = client.delete_authentication_profile({
2730
+ # authentication_profile_name: "AuthenticationProfileNameString", # required
2731
+ # })
2732
+ #
2733
+ # @example Response structure
2734
+ #
2735
+ # resp.authentication_profile_name #=> String
2736
+ #
2737
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteAuthenticationProfile AWS API Documentation
2738
+ #
2739
+ # @overload delete_authentication_profile(params = {})
2740
+ # @param [Hash] params ({})
2741
+ def delete_authentication_profile(params = {}, options = {})
2742
+ req = build_request(:delete_authentication_profile, params)
2743
+ req.send_request(options)
2744
+ end
2745
+
2531
2746
  # Deletes a previously provisioned cluster without its final snapshot
2532
2747
  # being created. A successful response from the web service indicates
2533
2748
  # that the request was received correctly. Use DescribeClusters to
@@ -3034,7 +3249,7 @@ module Aws::Redshift
3034
3249
  # website.
3035
3250
  #
3036
3251
  # @option params [required, String] :account_id
3037
- # The AWS account ID that owns the cluster.
3252
+ # The Amazon Web Services account ID that owns the cluster.
3038
3253
  #
3039
3254
  # @option params [required, String] :cluster_identifier
3040
3255
  # The cluster identifier of the cluster that receives data from the
@@ -3222,6 +3437,37 @@ module Aws::Redshift
3222
3437
  req.send_request(options)
3223
3438
  end
3224
3439
 
3440
+ # Describes an authentication profile.
3441
+ #
3442
+ # @option params [String] :authentication_profile_name
3443
+ # The name of the authentication profile to describe. If not specified
3444
+ # then all authentication profiles owned by the account are listed.
3445
+ #
3446
+ # @return [Types::DescribeAuthenticationProfilesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3447
+ #
3448
+ # * {Types::DescribeAuthenticationProfilesResult#authentication_profiles #authentication_profiles} => Array&lt;Types::AuthenticationProfile&gt;
3449
+ #
3450
+ # @example Request syntax with placeholder values
3451
+ #
3452
+ # resp = client.describe_authentication_profiles({
3453
+ # authentication_profile_name: "AuthenticationProfileNameString",
3454
+ # })
3455
+ #
3456
+ # @example Response structure
3457
+ #
3458
+ # resp.authentication_profiles #=> Array
3459
+ # resp.authentication_profiles[0].authentication_profile_name #=> String
3460
+ # resp.authentication_profiles[0].authentication_profile_content #=> String
3461
+ #
3462
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeAuthenticationProfiles AWS API Documentation
3463
+ #
3464
+ # @overload describe_authentication_profiles(params = {})
3465
+ # @param [Hash] params ({})
3466
+ def describe_authentication_profiles(params = {}, options = {})
3467
+ req = build_request(:describe_authentication_profiles, params)
3468
+ req.send_request(options)
3469
+ end
3470
+
3225
3471
  # Returns an array of `ClusterDbRevision` objects.
3226
3472
  #
3227
3473
  # @option params [String] :cluster_identifier
@@ -3335,10 +3581,10 @@ module Aws::Redshift
3335
3581
  # An optional parameter that specifies the starting point to return a
3336
3582
  # set of response records. When the results of a
3337
3583
  # DescribeClusterParameterGroups request exceed the value specified in
3338
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
3339
- # response. You can retrieve the next set of response records by
3340
- # providing the returned marker value in the `Marker` parameter and
3341
- # retrying the request.
3584
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
3585
+ # field of the response. You can retrieve the next set of response
3586
+ # records by providing the returned marker value in the `Marker`
3587
+ # parameter and retrying the request.
3342
3588
  #
3343
3589
  # @option params [Array<String>] :tag_keys
3344
3590
  # A tag key or keys for which you want to return all matching cluster
@@ -3440,10 +3686,10 @@ module Aws::Redshift
3440
3686
  # An optional parameter that specifies the starting point to return a
3441
3687
  # set of response records. When the results of a
3442
3688
  # DescribeClusterParameters request exceed the value specified in
3443
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
3444
- # response. You can retrieve the next set of response records by
3445
- # providing the returned marker value in the `Marker` parameter and
3446
- # retrying the request.
3689
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
3690
+ # field of the response. You can retrieve the next set of response
3691
+ # records by providing the returned marker value in the `Marker`
3692
+ # parameter and retrying the request.
3447
3693
  #
3448
3694
  # @return [Types::ClusterParameterGroupDetails] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3449
3695
  #
@@ -3529,10 +3775,10 @@ module Aws::Redshift
3529
3775
  # An optional parameter that specifies the starting point to return a
3530
3776
  # set of response records. When the results of a
3531
3777
  # DescribeClusterSecurityGroups request exceed the value specified in
3532
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
3533
- # response. You can retrieve the next set of response records by
3534
- # providing the returned marker value in the `Marker` parameter and
3535
- # retrying the request.
3778
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
3779
+ # field of the response. You can retrieve the next set of response
3780
+ # records by providing the returned marker value in the `Marker`
3781
+ # parameter and retrying the request.
3536
3782
  #
3537
3783
  # Constraints: You can specify either the **ClusterSecurityGroupName**
3538
3784
  # parameter or the **Marker** parameter, but not both.
@@ -3606,9 +3852,9 @@ module Aws::Redshift
3606
3852
 
3607
3853
  # Returns one or more snapshot objects, which contain metadata about
3608
3854
  # your cluster snapshots. By default, this operation returns information
3609
- # about all snapshots of all clusters that are owned by you AWS customer
3610
- # account. No information is returned for snapshots owned by inactive
3611
- # AWS customer accounts.
3855
+ # about all snapshots of all clusters that are owned by your Amazon Web
3856
+ # Services account. No information is returned for snapshots owned by
3857
+ # inactive Amazon Web Services accounts.
3612
3858
  #
3613
3859
  # If you specify both tag keys and tag values in the same request,
3614
3860
  # Amazon Redshift returns all snapshots that match any combination of
@@ -3673,16 +3919,16 @@ module Aws::Redshift
3673
3919
  # An optional parameter that specifies the starting point to return a
3674
3920
  # set of response records. When the results of a
3675
3921
  # DescribeClusterSnapshots request exceed the value specified in
3676
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
3677
- # response. You can retrieve the next set of response records by
3678
- # providing the returned marker value in the `Marker` parameter and
3679
- # retrying the request.
3922
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
3923
+ # field of the response. You can retrieve the next set of response
3924
+ # records by providing the returned marker value in the `Marker`
3925
+ # parameter and retrying the request.
3680
3926
  #
3681
3927
  # @option params [String] :owner_account
3682
- # The AWS customer account used to create or copy the snapshot. Use this
3683
- # field to filter the results to snapshots owned by a particular
3684
- # account. To describe snapshots you own, either specify your AWS
3685
- # customer account, or do not specify the parameter.
3928
+ # The Amazon Web Services account used to create or copy the snapshot.
3929
+ # Use this field to filter the results to snapshots owned by a
3930
+ # particular account. To describe snapshots you own, either specify your
3931
+ # Amazon Web Services account, or do not specify the parameter.
3686
3932
  #
3687
3933
  # @option params [Array<String>] :tag_keys
3688
3934
  # A tag key or keys for which you want to return all matching cluster
@@ -3814,7 +4060,7 @@ module Aws::Redshift
3814
4060
  # Returns one or more cluster subnet group objects, which contain
3815
4061
  # metadata about your cluster subnet groups. By default, this operation
3816
4062
  # returns information about all cluster subnet groups that are defined
3817
- # in you AWS account.
4063
+ # in your Amazon Web Services account.
3818
4064
  #
3819
4065
  # If you specify both tag keys and tag values in the same request,
3820
4066
  # Amazon Redshift returns all subnet groups that match any combination
@@ -3845,10 +4091,10 @@ module Aws::Redshift
3845
4091
  # An optional parameter that specifies the starting point to return a
3846
4092
  # set of response records. When the results of a
3847
4093
  # DescribeClusterSubnetGroups request exceed the value specified in
3848
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
3849
- # response. You can retrieve the next set of response records by
3850
- # providing the returned marker value in the `Marker` parameter and
3851
- # retrying the request.
4094
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
4095
+ # field of the response. You can retrieve the next set of response
4096
+ # records by providing the returned marker value in the `Marker`
4097
+ # parameter and retrying the request.
3852
4098
  #
3853
4099
  # @option params [Array<String>] :tag_keys
3854
4100
  # A tag key or keys for which you want to return all matching cluster
@@ -4006,10 +4252,11 @@ module Aws::Redshift
4006
4252
  # @option params [String] :marker
4007
4253
  # An optional parameter that specifies the starting point to return a
4008
4254
  # set of response records. When the results of a DescribeClusterVersions
4009
- # request exceed the value specified in `MaxRecords`, AWS returns a
4010
- # value in the `Marker` field of the response. You can retrieve the next
4011
- # set of response records by providing the returned marker value in the
4012
- # `Marker` parameter and retrying the request.
4255
+ # request exceed the value specified in `MaxRecords`, Amazon Web
4256
+ # Services returns a value in the `Marker` field of the response. You
4257
+ # can retrieve the next set of response records by providing the
4258
+ # returned marker value in the `Marker` parameter and retrying the
4259
+ # request.
4013
4260
  #
4014
4261
  # @return [Types::ClusterVersionsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4015
4262
  #
@@ -4085,10 +4332,11 @@ module Aws::Redshift
4085
4332
  # @option params [String] :marker
4086
4333
  # An optional parameter that specifies the starting point to return a
4087
4334
  # set of response records. When the results of a DescribeClusters
4088
- # request exceed the value specified in `MaxRecords`, AWS returns a
4089
- # value in the `Marker` field of the response. You can retrieve the next
4090
- # set of response records by providing the returned marker value in the
4091
- # `Marker` parameter and retrying the request.
4335
+ # request exceed the value specified in `MaxRecords`, Amazon Web
4336
+ # Services returns a value in the `Marker` field of the response. You
4337
+ # can retrieve the next set of response records by providing the
4338
+ # returned marker value in the `Marker` parameter and retrying the
4339
+ # request.
4092
4340
  #
4093
4341
  # Constraints: You can specify either the **ClusterIdentifier**
4094
4342
  # parameter or the **Marker** parameter, but not both.
@@ -4256,6 +4504,190 @@ module Aws::Redshift
4256
4504
  req.send_request(options)
4257
4505
  end
4258
4506
 
4507
+ # Shows the status of any inbound or outbound datashares available in
4508
+ # the specified account.
4509
+ #
4510
+ # @option params [String] :data_share_arn
4511
+ # The identifier of the datashare to describe details of.
4512
+ #
4513
+ # @option params [Integer] :max_records
4514
+ # The maximum number of response records to return in each call. If the
4515
+ # number of remaining response records exceeds the specified
4516
+ # `MaxRecords` value, a value is returned in a `marker` field of the
4517
+ # response. You can retrieve the next set of records by retrying the
4518
+ # command with the returned marker value.
4519
+ #
4520
+ # @option params [String] :marker
4521
+ # An optional parameter that specifies the starting point to return a
4522
+ # set of response records. When the results of a DescribeDataShares
4523
+ # request exceed the value specified in `MaxRecords`, AWS returns a
4524
+ # value in the `Marker` field of the response. You can retrieve the next
4525
+ # set of response records by providing the returned marker value in the
4526
+ # `Marker` parameter and retrying the request.
4527
+ #
4528
+ # @return [Types::DescribeDataSharesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4529
+ #
4530
+ # * {Types::DescribeDataSharesResult#data_shares #data_shares} => Array&lt;Types::DataShare&gt;
4531
+ # * {Types::DescribeDataSharesResult#marker #marker} => String
4532
+ #
4533
+ # @example Request syntax with placeholder values
4534
+ #
4535
+ # resp = client.describe_data_shares({
4536
+ # data_share_arn: "String",
4537
+ # max_records: 1,
4538
+ # marker: "String",
4539
+ # })
4540
+ #
4541
+ # @example Response structure
4542
+ #
4543
+ # resp.data_shares #=> Array
4544
+ # resp.data_shares[0].data_share_arn #=> String
4545
+ # resp.data_shares[0].producer_arn #=> String
4546
+ # resp.data_shares[0].allow_publicly_accessible_consumers #=> Boolean
4547
+ # resp.data_shares[0].data_share_associations #=> Array
4548
+ # resp.data_shares[0].data_share_associations[0].consumer_identifier #=> String
4549
+ # resp.data_shares[0].data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
4550
+ # resp.data_shares[0].data_share_associations[0].created_date #=> Time
4551
+ # resp.data_shares[0].data_share_associations[0].status_change_date #=> Time
4552
+ # resp.marker #=> String
4553
+ #
4554
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataShares AWS API Documentation
4555
+ #
4556
+ # @overload describe_data_shares(params = {})
4557
+ # @param [Hash] params ({})
4558
+ def describe_data_shares(params = {}, options = {})
4559
+ req = build_request(:describe_data_shares, params)
4560
+ req.send_request(options)
4561
+ end
4562
+
4563
+ # Returns a list of datashares where the account identifier being called
4564
+ # is a consumer account identifier.
4565
+ #
4566
+ # @option params [String] :consumer_arn
4567
+ # The Amazon Resource Name (ARN) of the consumer that returns in the
4568
+ # list of datashares.
4569
+ #
4570
+ # @option params [String] :status
4571
+ # An identifier giving the status of a datashare in the consumer
4572
+ # cluster. If this field is specified, Amazon Redshift returns the list
4573
+ # of datashares that have the specified status.
4574
+ #
4575
+ # @option params [Integer] :max_records
4576
+ # The maximum number of response records to return in each call. If the
4577
+ # number of remaining response records exceeds the specified
4578
+ # `MaxRecords` value, a value is returned in a `marker` field of the
4579
+ # response. You can retrieve the next set of records by retrying the
4580
+ # command with the returned marker value.
4581
+ #
4582
+ # @option params [String] :marker
4583
+ # An optional parameter that specifies the starting point to return a
4584
+ # set of response records. When the results of a
4585
+ # DescribeDataSharesForConsumer request exceed the value specified in
4586
+ # `MaxRecords`, AWS returns a value in the `Marker` field of the
4587
+ # response. You can retrieve the next set of response records by
4588
+ # providing the returned marker value in the `Marker` parameter and
4589
+ # retrying the request.
4590
+ #
4591
+ # @return [Types::DescribeDataSharesForConsumerResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4592
+ #
4593
+ # * {Types::DescribeDataSharesForConsumerResult#data_shares #data_shares} => Array&lt;Types::DataShare&gt;
4594
+ # * {Types::DescribeDataSharesForConsumerResult#marker #marker} => String
4595
+ #
4596
+ # @example Request syntax with placeholder values
4597
+ #
4598
+ # resp = client.describe_data_shares_for_consumer({
4599
+ # consumer_arn: "String",
4600
+ # status: "ACTIVE", # accepts ACTIVE, AVAILABLE
4601
+ # max_records: 1,
4602
+ # marker: "String",
4603
+ # })
4604
+ #
4605
+ # @example Response structure
4606
+ #
4607
+ # resp.data_shares #=> Array
4608
+ # resp.data_shares[0].data_share_arn #=> String
4609
+ # resp.data_shares[0].producer_arn #=> String
4610
+ # resp.data_shares[0].allow_publicly_accessible_consumers #=> Boolean
4611
+ # resp.data_shares[0].data_share_associations #=> Array
4612
+ # resp.data_shares[0].data_share_associations[0].consumer_identifier #=> String
4613
+ # resp.data_shares[0].data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
4614
+ # resp.data_shares[0].data_share_associations[0].created_date #=> Time
4615
+ # resp.data_shares[0].data_share_associations[0].status_change_date #=> Time
4616
+ # resp.marker #=> String
4617
+ #
4618
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForConsumer AWS API Documentation
4619
+ #
4620
+ # @overload describe_data_shares_for_consumer(params = {})
4621
+ # @param [Hash] params ({})
4622
+ def describe_data_shares_for_consumer(params = {}, options = {})
4623
+ req = build_request(:describe_data_shares_for_consumer, params)
4624
+ req.send_request(options)
4625
+ end
4626
+
4627
+ # Returns a list of datashares when the account identifier being called
4628
+ # is a producer account identifier.
4629
+ #
4630
+ # @option params [String] :producer_arn
4631
+ # The Amazon Resource Name (ARN) of the producer that returns in the
4632
+ # list of datashares.
4633
+ #
4634
+ # @option params [String] :status
4635
+ # An identifier giving the status of a datashare in the producer. If
4636
+ # this field is specified, Amazon Redshift returns the list of
4637
+ # datashares that have the specified status.
4638
+ #
4639
+ # @option params [Integer] :max_records
4640
+ # The maximum number of response records to return in each call. If the
4641
+ # number of remaining response records exceeds the specified
4642
+ # `MaxRecords` value, a value is returned in a `marker` field of the
4643
+ # response. You can retrieve the next set of records by retrying the
4644
+ # command with the returned marker value.
4645
+ #
4646
+ # @option params [String] :marker
4647
+ # An optional parameter that specifies the starting point to return a
4648
+ # set of response records. When the results of a
4649
+ # DescribeDataSharesForProducer request exceed the value specified in
4650
+ # `MaxRecords`, AWS returns a value in the `Marker` field of the
4651
+ # response. You can retrieve the next set of response records by
4652
+ # providing the returned marker value in the `Marker` parameter and
4653
+ # retrying the request.
4654
+ #
4655
+ # @return [Types::DescribeDataSharesForProducerResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4656
+ #
4657
+ # * {Types::DescribeDataSharesForProducerResult#data_shares #data_shares} => Array&lt;Types::DataShare&gt;
4658
+ # * {Types::DescribeDataSharesForProducerResult#marker #marker} => String
4659
+ #
4660
+ # @example Request syntax with placeholder values
4661
+ #
4662
+ # resp = client.describe_data_shares_for_producer({
4663
+ # producer_arn: "String",
4664
+ # status: "ACTIVE", # accepts ACTIVE, AUTHORIZED, PENDING_AUTHORIZATION, DEAUTHORIZED, REJECTED
4665
+ # max_records: 1,
4666
+ # marker: "String",
4667
+ # })
4668
+ #
4669
+ # @example Response structure
4670
+ #
4671
+ # resp.data_shares #=> Array
4672
+ # resp.data_shares[0].data_share_arn #=> String
4673
+ # resp.data_shares[0].producer_arn #=> String
4674
+ # resp.data_shares[0].allow_publicly_accessible_consumers #=> Boolean
4675
+ # resp.data_shares[0].data_share_associations #=> Array
4676
+ # resp.data_shares[0].data_share_associations[0].consumer_identifier #=> String
4677
+ # resp.data_shares[0].data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
4678
+ # resp.data_shares[0].data_share_associations[0].created_date #=> Time
4679
+ # resp.data_shares[0].data_share_associations[0].status_change_date #=> Time
4680
+ # resp.marker #=> String
4681
+ #
4682
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForProducer AWS API Documentation
4683
+ #
4684
+ # @overload describe_data_shares_for_producer(params = {})
4685
+ # @param [Hash] params ({})
4686
+ def describe_data_shares_for_producer(params = {}, options = {})
4687
+ req = build_request(:describe_data_shares_for_producer, params)
4688
+ req.send_request(options)
4689
+ end
4690
+
4259
4691
  # Returns a list of parameter settings for the specified parameter group
4260
4692
  # family.
4261
4693
  #
@@ -4285,10 +4717,10 @@ module Aws::Redshift
4285
4717
  # An optional parameter that specifies the starting point to return a
4286
4718
  # set of response records. When the results of a
4287
4719
  # DescribeDefaultClusterParameters request exceed the value specified in
4288
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
4289
- # response. You can retrieve the next set of response records by
4290
- # providing the returned marker value in the `Marker` parameter and
4291
- # retrying the request.
4720
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
4721
+ # field of the response. You can retrieve the next set of response
4722
+ # records by providing the returned marker value in the `Marker`
4723
+ # parameter and retrying the request.
4292
4724
  #
4293
4725
  # @return [Types::DescribeDefaultClusterParametersResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4294
4726
  #
@@ -4334,7 +4766,7 @@ module Aws::Redshift
4334
4766
  # The cluster identifier associated with the described endpoint.
4335
4767
  #
4336
4768
  # @option params [String] :resource_owner
4337
- # The AWS account ID of the owner of the cluster.
4769
+ # The Amazon Web Services account ID of the owner of the cluster.
4338
4770
  #
4339
4771
  # @option params [String] :endpoint_name
4340
4772
  # The name of the endpoint to be described.
@@ -4410,9 +4842,9 @@ module Aws::Redshift
4410
4842
  # The cluster identifier of the cluster to access.
4411
4843
  #
4412
4844
  # @option params [String] :account
4413
- # The AWS account ID of either the cluster owner (grantor) or grantee.
4414
- # If `Grantee` parameter is true, then the `Account` value is of the
4415
- # grantor.
4845
+ # The AAmazon Web Services account ID of either the cluster owner
4846
+ # (grantor) or grantee. If `Grantee` parameter is true, then the
4847
+ # `Account` value is of the grantor.
4416
4848
  #
4417
4849
  # @option params [Boolean] :grantee
4418
4850
  # Indicates whether to check authorization from a grantor or grantee
@@ -4552,10 +4984,10 @@ module Aws::Redshift
4552
4984
  # An optional parameter that specifies the starting point to return a
4553
4985
  # set of response records. When the results of a
4554
4986
  # DescribeEventSubscriptions request exceed the value specified in
4555
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
4556
- # response. You can retrieve the next set of response records by
4557
- # providing the returned marker value in the `Marker` parameter and
4558
- # retrying the request.
4987
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
4988
+ # field of the response. You can retrieve the next set of response
4989
+ # records by providing the returned marker value in the `Marker`
4990
+ # parameter and retrying the request.
4559
4991
  #
4560
4992
  # @option params [Array<String>] :tag_keys
4561
4993
  # A tag key or keys for which you want to return all matching event
@@ -4710,10 +5142,10 @@ module Aws::Redshift
4710
5142
  # @option params [String] :marker
4711
5143
  # An optional parameter that specifies the starting point to return a
4712
5144
  # set of response records. When the results of a DescribeEvents request
4713
- # exceed the value specified in `MaxRecords`, AWS returns a value in the
4714
- # `Marker` field of the response. You can retrieve the next set of
4715
- # response records by providing the returned marker value in the
4716
- # `Marker` parameter and retrying the request.
5145
+ # exceed the value specified in `MaxRecords`, Amazon Web Services
5146
+ # returns a value in the `Marker` field of the response. You can
5147
+ # retrieve the next set of response records by providing the returned
5148
+ # marker value in the `Marker` parameter and retrying the request.
4717
5149
  #
4718
5150
  # @return [Types::EventsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4719
5151
  #
@@ -4758,7 +5190,7 @@ module Aws::Redshift
4758
5190
 
4759
5191
  # Returns information about the specified HSM client certificate. If no
4760
5192
  # certificate ID is specified, returns information about all the HSM
4761
- # certificates owned by your AWS customer account.
5193
+ # certificates owned by your Amazon Web Services account.
4762
5194
  #
4763
5195
  # If you specify both tag keys and tag values in the same request,
4764
5196
  # Amazon Redshift returns all HSM client certificates that match any
@@ -4774,7 +5206,8 @@ module Aws::Redshift
4774
5206
  # @option params [String] :hsm_client_certificate_identifier
4775
5207
  # The identifier of a specific HSM client certificate for which you want
4776
5208
  # information. If no identifier is specified, information is returned
4777
- # for all HSM client certificates owned by your AWS customer account.
5209
+ # for all HSM client certificates owned by your Amazon Web Services
5210
+ # account.
4778
5211
  #
4779
5212
  # @option params [Integer] :max_records
4780
5213
  # The maximum number of response records to return in each call. If the
@@ -4791,10 +5224,10 @@ module Aws::Redshift
4791
5224
  # An optional parameter that specifies the starting point to return a
4792
5225
  # set of response records. When the results of a
4793
5226
  # DescribeHsmClientCertificates request exceed the value specified in
4794
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
4795
- # response. You can retrieve the next set of response records by
4796
- # providing the returned marker value in the `Marker` parameter and
4797
- # retrying the request.
5227
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
5228
+ # field of the response. You can retrieve the next set of response
5229
+ # records by providing the returned marker value in the `Marker`
5230
+ # parameter and retrying the request.
4798
5231
  #
4799
5232
  # @option params [Array<String>] :tag_keys
4800
5233
  # A tag key or keys for which you want to return all matching HSM client
@@ -4852,8 +5285,8 @@ module Aws::Redshift
4852
5285
 
4853
5286
  # Returns information about the specified Amazon Redshift HSM
4854
5287
  # configuration. If no configuration ID is specified, returns
4855
- # information about all the HSM configurations owned by your AWS
4856
- # customer account.
5288
+ # information about all the HSM configurations owned by your Amazon Web
5289
+ # Services account.
4857
5290
  #
4858
5291
  # If you specify both tag keys and tag values in the same request,
4859
5292
  # Amazon Redshift returns all HSM connections that match any combination
@@ -4869,7 +5302,7 @@ module Aws::Redshift
4869
5302
  # @option params [String] :hsm_configuration_identifier
4870
5303
  # The identifier of a specific Amazon Redshift HSM configuration to be
4871
5304
  # described. If no identifier is specified, information is returned for
4872
- # all HSM configurations owned by your AWS customer account.
5305
+ # all HSM configurations owned by your Amazon Web Services account.
4873
5306
  #
4874
5307
  # @option params [Integer] :max_records
4875
5308
  # The maximum number of response records to return in each call. If the
@@ -4886,10 +5319,10 @@ module Aws::Redshift
4886
5319
  # An optional parameter that specifies the starting point to return a
4887
5320
  # set of response records. When the results of a
4888
5321
  # DescribeHsmConfigurations request exceed the value specified in
4889
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
4890
- # response. You can retrieve the next set of response records by
4891
- # providing the returned marker value in the `Marker` parameter and
4892
- # retrying the request.
5322
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
5323
+ # field of the response. You can retrieve the next set of response
5324
+ # records by providing the returned marker value in the `Marker`
5325
+ # parameter and retrying the request.
4893
5326
  #
4894
5327
  # @option params [Array<String>] :tag_keys
4895
5328
  # A tag key or keys for which you want to return all matching HSM
@@ -5008,9 +5441,9 @@ module Aws::Redshift
5008
5441
  # configurations.
5009
5442
  #
5010
5443
  # @option params [String] :owner_account
5011
- # The AWS customer account used to create or copy the snapshot. Required
5012
- # if you are restoring a snapshot you do not own, optional if you own
5013
- # the snapshot.
5444
+ # The Amazon Web Services account used to create or copy the snapshot.
5445
+ # Required if you are restoring a snapshot you do not own, optional if
5446
+ # you own the snapshot.
5014
5447
  #
5015
5448
  # @option params [Array<Types::NodeConfigurationOptionsFilter>] :filters
5016
5449
  # A set of name, operator, and value items to filter the results.
@@ -5019,10 +5452,10 @@ module Aws::Redshift
5019
5452
  # An optional parameter that specifies the starting point to return a
5020
5453
  # set of response records. When the results of a
5021
5454
  # DescribeNodeConfigurationOptions request exceed the value specified in
5022
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
5023
- # response. You can retrieve the next set of response records by
5024
- # providing the returned marker value in the `Marker` parameter and
5025
- # retrying the request.
5455
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
5456
+ # field of the response. You can retrieve the next set of response
5457
+ # records by providing the returned marker value in the `Marker`
5458
+ # parameter and retrying the request.
5026
5459
  #
5027
5460
  # @option params [Integer] :max_records
5028
5461
  # The maximum number of response records to return in each call. If the
@@ -5080,13 +5513,14 @@ module Aws::Redshift
5080
5513
 
5081
5514
  # Returns a list of orderable cluster options. Before you create a new
5082
5515
  # cluster you can use this operation to find what options are available,
5083
- # such as the EC2 Availability Zones (AZ) in the specific AWS Region
5084
- # that you can specify, and the node types you can request. The node
5085
- # types differ by available storage, memory, CPU and price. With the
5086
- # cost involved you might want to obtain a list of cluster options in
5087
- # the specific region and specify values when creating a cluster. For
5088
- # more information about managing clusters, go to [Amazon Redshift
5089
- # Clusters][1] in the *Amazon Redshift Cluster Management Guide*.
5516
+ # such as the EC2 Availability Zones (AZ) in the specific Amazon Web
5517
+ # Services Region that you can specify, and the node types you can
5518
+ # request. The node types differ by available storage, memory, CPU and
5519
+ # price. With the cost involved you might want to obtain a list of
5520
+ # cluster options in the specific region and specify values when
5521
+ # creating a cluster. For more information about managing clusters, go
5522
+ # to [Amazon Redshift Clusters][1] in the *Amazon Redshift Cluster
5523
+ # Management Guide*.
5090
5524
  #
5091
5525
  #
5092
5526
  #
@@ -5120,10 +5554,10 @@ module Aws::Redshift
5120
5554
  # An optional parameter that specifies the starting point to return a
5121
5555
  # set of response records. When the results of a
5122
5556
  # DescribeOrderableClusterOptions request exceed the value specified in
5123
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
5124
- # response. You can retrieve the next set of response records by
5125
- # providing the returned marker value in the `Marker` parameter and
5126
- # retrying the request.
5557
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
5558
+ # field of the response. You can retrieve the next set of response
5559
+ # records by providing the returned marker value in the `Marker`
5560
+ # parameter and retrying the request.
5127
5561
  #
5128
5562
  # @return [Types::OrderableClusterOptionsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5129
5563
  #
@@ -5166,7 +5600,7 @@ module Aws::Redshift
5166
5600
  # cluster.
5167
5601
  #
5168
5602
  # @option params [required, String] :account_id
5169
- # The AWS account ID that owns the cluster.
5603
+ # The Amazon Web Services account ID that owns the cluster.
5170
5604
  #
5171
5605
  # @option params [required, String] :cluster_identifier
5172
5606
  # The cluster identifier of the cluster whose partner integration is
@@ -5246,10 +5680,10 @@ module Aws::Redshift
5246
5680
  # An optional parameter that specifies the starting point to return a
5247
5681
  # set of response records. When the results of a
5248
5682
  # DescribeReservedNodeOfferings request exceed the value specified in
5249
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
5250
- # response. You can retrieve the next set of response records by
5251
- # providing the returned marker value in the `Marker` parameter and
5252
- # retrying the request.
5683
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
5684
+ # field of the response. You can retrieve the next set of response
5685
+ # records by providing the returned marker value in the `Marker`
5686
+ # parameter and retrying the request.
5253
5687
  #
5254
5688
  # @return [Types::ReservedNodeOfferingsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5255
5689
  #
@@ -5310,10 +5744,11 @@ module Aws::Redshift
5310
5744
  # @option params [String] :marker
5311
5745
  # An optional parameter that specifies the starting point to return a
5312
5746
  # set of response records. When the results of a DescribeReservedNodes
5313
- # request exceed the value specified in `MaxRecords`, AWS returns a
5314
- # value in the `Marker` field of the response. You can retrieve the next
5315
- # set of response records by providing the returned marker value in the
5316
- # `Marker` parameter and retrying the request.
5747
+ # request exceed the value specified in `MaxRecords`, Amazon Web
5748
+ # Services returns a value in the `Marker` field of the response. You
5749
+ # can retrieve the next set of response records by providing the
5750
+ # returned marker value in the `Marker` parameter and retrying the
5751
+ # request.
5317
5752
  #
5318
5753
  # @return [Types::ReservedNodesMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5319
5754
  #
@@ -5372,8 +5807,8 @@ module Aws::Redshift
5372
5807
  # The unique identifier of a cluster whose resize progress you are
5373
5808
  # requesting. This parameter is case-sensitive.
5374
5809
  #
5375
- # By default, resize operations for all clusters defined for an AWS
5376
- # account are returned.
5810
+ # By default, resize operations for all clusters defined for an Amazon
5811
+ # Web Services account are returned.
5377
5812
  #
5378
5813
  # @return [Types::ResizeProgressMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5379
5814
  #
@@ -5460,10 +5895,10 @@ module Aws::Redshift
5460
5895
  # An optional parameter that specifies the starting point to return a
5461
5896
  # set of response records. When the results of a
5462
5897
  # DescribeScheduledActions request exceed the value specified in
5463
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
5464
- # response. You can retrieve the next set of response records by
5465
- # providing the returned marker value in the `Marker` parameter and
5466
- # retrying the request.
5898
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
5899
+ # field of the response. You can retrieve the next set of response
5900
+ # records by providing the returned marker value in the `Marker`
5901
+ # parameter and retrying the request.
5467
5902
  #
5468
5903
  # @option params [Integer] :max_records
5469
5904
  # The maximum number of response records to return in each call. If the
@@ -5531,8 +5966,8 @@ module Aws::Redshift
5531
5966
  req.send_request(options)
5532
5967
  end
5533
5968
 
5534
- # Returns a list of snapshot copy grants owned by the AWS account in the
5535
- # destination region.
5969
+ # Returns a list of snapshot copy grants owned by the Amazon Web
5970
+ # Services account in the destination region.
5536
5971
  #
5537
5972
  # For more information about managing snapshot copy grants, go to
5538
5973
  # [Amazon Redshift Database Encryption][1] in the *Amazon Redshift
@@ -5560,10 +5995,10 @@ module Aws::Redshift
5560
5995
  # An optional parameter that specifies the starting point to return a
5561
5996
  # set of response records. When the results of a
5562
5997
  # `DescribeSnapshotCopyGrant` request exceed the value specified in
5563
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
5564
- # response. You can retrieve the next set of response records by
5565
- # providing the returned marker value in the `Marker` parameter and
5566
- # retrying the request.
5998
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
5999
+ # field of the response. You can retrieve the next set of response
6000
+ # records by providing the returned marker value in the `Marker`
6001
+ # parameter and retrying the request.
5567
6002
  #
5568
6003
  # Constraints: You can specify either the **SnapshotCopyGrantName**
5569
6004
  # parameter or the **Marker** parameter, but not both.
@@ -5961,10 +6396,11 @@ module Aws::Redshift
5961
6396
  # @option params [String] :marker
5962
6397
  # An optional parameter that specifies the starting point to return a
5963
6398
  # set of response records. When the results of a DescribeUsageLimits
5964
- # request exceed the value specified in `MaxRecords`, AWS returns a
5965
- # value in the `Marker` field of the response. You can retrieve the next
5966
- # set of response records by providing the returned marker value in the
5967
- # `Marker` parameter and retrying the request.
6399
+ # request exceed the value specified in `MaxRecords`, Amazon Web
6400
+ # Services returns a value in the `Marker` field of the response. You
6401
+ # can retrieve the next set of response records by providing the
6402
+ # returned marker value in the `Marker` parameter and retrying the
6403
+ # request.
5968
6404
  #
5969
6405
  # @option params [Array<String>] :tag_keys
5970
6406
  # A tag key or keys for which you want to return all matching usage
@@ -6072,9 +6508,9 @@ module Aws::Redshift
6072
6508
  # region for a specified cluster.
6073
6509
  #
6074
6510
  # If your cluster and its snapshots are encrypted using a customer
6075
- # master key (CMK) from AWS KMS, use DeleteSnapshotCopyGrant to delete
6076
- # the grant that grants Amazon Redshift permission to the CMK in the
6077
- # destination region.
6511
+ # master key (CMK) from Key Management Service, use
6512
+ # DeleteSnapshotCopyGrant to delete the grant that grants Amazon
6513
+ # Redshift permission to the CMK in the destination region.
6078
6514
  #
6079
6515
  # @option params [required, String] :cluster_identifier
6080
6516
  # The unique identifier of the source cluster that you want to disable
@@ -6213,6 +6649,56 @@ module Aws::Redshift
6213
6649
  req.send_request(options)
6214
6650
  end
6215
6651
 
6652
+ # From a consumer account, remove association for the specified
6653
+ # datashare.
6654
+ #
6655
+ # @option params [required, String] :data_share_arn
6656
+ # The Amazon Resource Name (ARN) of the datashare to remove association
6657
+ # for.
6658
+ #
6659
+ # @option params [Boolean] :disassociate_entire_account
6660
+ # A value that specifies whether association for the datashare is
6661
+ # removed from the entire account.
6662
+ #
6663
+ # @option params [String] :consumer_arn
6664
+ # The Amazon Resource Name (ARN) of the consumer that association for
6665
+ # the datashare is removed from.
6666
+ #
6667
+ # @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6668
+ #
6669
+ # * {Types::DataShare#data_share_arn #data_share_arn} => String
6670
+ # * {Types::DataShare#producer_arn #producer_arn} => String
6671
+ # * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
6672
+ # * {Types::DataShare#data_share_associations #data_share_associations} => Array&lt;Types::DataShareAssociation&gt;
6673
+ #
6674
+ # @example Request syntax with placeholder values
6675
+ #
6676
+ # resp = client.disassociate_data_share_consumer({
6677
+ # data_share_arn: "String", # required
6678
+ # disassociate_entire_account: false,
6679
+ # consumer_arn: "String",
6680
+ # })
6681
+ #
6682
+ # @example Response structure
6683
+ #
6684
+ # resp.data_share_arn #=> String
6685
+ # resp.producer_arn #=> String
6686
+ # resp.allow_publicly_accessible_consumers #=> Boolean
6687
+ # resp.data_share_associations #=> Array
6688
+ # resp.data_share_associations[0].consumer_identifier #=> String
6689
+ # resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
6690
+ # resp.data_share_associations[0].created_date #=> Time
6691
+ # resp.data_share_associations[0].status_change_date #=> Time
6692
+ #
6693
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisassociateDataShareConsumer AWS API Documentation
6694
+ #
6695
+ # @overload disassociate_data_share_consumer(params = {})
6696
+ # @param [Hash] params ({})
6697
+ def disassociate_data_share_consumer(params = {}, options = {})
6698
+ req = build_request(:disassociate_data_share_consumer, params)
6699
+ req.send_request(options)
6700
+ end
6701
+
6216
6702
  # Starts logging information, such as queries and connection attempts,
6217
6703
  # for the specified Amazon Redshift cluster.
6218
6704
  #
@@ -6297,11 +6783,12 @@ module Aws::Redshift
6297
6783
  # not already have cross-region snapshot copy enabled.
6298
6784
  #
6299
6785
  # @option params [required, String] :destination_region
6300
- # The destination AWS Region that you want to copy snapshots to.
6786
+ # The destination Amazon Web Services Region that you want to copy
6787
+ # snapshots to.
6301
6788
  #
6302
- # Constraints: Must be the name of a valid AWS Region. For more
6303
- # information, see [Regions and Endpoints][1] in the Amazon Web Services
6304
- # General Reference.
6789
+ # Constraints: Must be the name of a valid Amazon Web Services Region.
6790
+ # For more information, see [Regions and Endpoints][1] in the Amazon Web
6791
+ # Services General Reference.
6305
6792
  #
6306
6793
  #
6307
6794
  #
@@ -6316,13 +6803,15 @@ module Aws::Redshift
6316
6803
  # Constraints: Must be at least 1 and no more than 35.
6317
6804
  #
6318
6805
  # @option params [String] :snapshot_copy_grant_name
6319
- # The name of the snapshot copy grant to use when snapshots of an AWS
6320
- # KMS-encrypted cluster are copied to the destination region.
6806
+ # The name of the snapshot copy grant to use when snapshots of an Amazon
6807
+ # Web Services KMS-encrypted cluster are copied to the destination
6808
+ # region.
6321
6809
  #
6322
6810
  # @option params [Integer] :manual_snapshot_retention_period
6323
6811
  # The number of days to retain newly copied snapshots in the destination
6324
- # AWS Region after they are copied from the source AWS Region. If the
6325
- # value is -1, the manual snapshot is retained indefinitely.
6812
+ # Amazon Web Services Region after they are copied from the source
6813
+ # Amazon Web Services Region. If the value is -1, the manual snapshot is
6814
+ # retained indefinitely.
6326
6815
  #
6327
6816
  # The value must be either -1 or an integer between 1 and 3,653.
6328
6817
  #
@@ -6471,7 +6960,7 @@ module Aws::Redshift
6471
6960
  # Authentication to Generate Database User Credentials][1] in the Amazon
6472
6961
  # Redshift Cluster Management Guide.
6473
6962
  #
6474
- # The AWS Identity and Access Management (IAM)user or role that executes
6963
+ # The Identity and Access Management (IAM) user or role that runs
6475
6964
  # GetClusterCredentials must have an IAM policy attached that allows
6476
6965
  # access to all necessary actions and resources. For more information
6477
6966
  # about permissions, see [Resource Policies for
@@ -6684,8 +7173,8 @@ module Aws::Redshift
6684
7173
  # The new value of AQUA configuration status. Possible values include
6685
7174
  # the following.
6686
7175
  #
6687
- # * enabled - Use AQUA if it is available for the current AWS Region and
6688
- # Amazon Redshift node type.
7176
+ # * enabled - Use AQUA if it is available for the current Amazon Web
7177
+ # Services Region and Amazon Redshift node type.
6689
7178
  #
6690
7179
  # * disabled - Don't use AQUA.
6691
7180
  #
@@ -6716,6 +7205,42 @@ module Aws::Redshift
6716
7205
  req.send_request(options)
6717
7206
  end
6718
7207
 
7208
+ # Modifies an authentication profile.
7209
+ #
7210
+ # @option params [required, String] :authentication_profile_name
7211
+ # The name of the authentication profile to replace.
7212
+ #
7213
+ # @option params [required, String] :authentication_profile_content
7214
+ # The new content of the authentication profile in JSON format. The
7215
+ # maximum length of the JSON string is determined by a quota for your
7216
+ # account.
7217
+ #
7218
+ # @return [Types::ModifyAuthenticationProfileResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7219
+ #
7220
+ # * {Types::ModifyAuthenticationProfileResult#authentication_profile_name #authentication_profile_name} => String
7221
+ # * {Types::ModifyAuthenticationProfileResult#authentication_profile_content #authentication_profile_content} => String
7222
+ #
7223
+ # @example Request syntax with placeholder values
7224
+ #
7225
+ # resp = client.modify_authentication_profile({
7226
+ # authentication_profile_name: "AuthenticationProfileNameString", # required
7227
+ # authentication_profile_content: "String", # required
7228
+ # })
7229
+ #
7230
+ # @example Response structure
7231
+ #
7232
+ # resp.authentication_profile_name #=> String
7233
+ # resp.authentication_profile_content #=> String
7234
+ #
7235
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyAuthenticationProfile AWS API Documentation
7236
+ #
7237
+ # @overload modify_authentication_profile(params = {})
7238
+ # @param [Hash] params ({})
7239
+ def modify_authentication_profile(params = {}, options = {})
7240
+ req = build_request(:modify_authentication_profile, params)
7241
+ req.send_request(options)
7242
+ end
7243
+
6719
7244
  # Modifies the settings for a cluster.
6720
7245
  #
6721
7246
  # You can also change node type and the number of nodes to scale up or
@@ -6723,7 +7248,7 @@ module Aws::Redshift
6723
7248
  # number of nodes and the node type even if one of the parameters does
6724
7249
  # not change.
6725
7250
  #
6726
- # You can add another security or parameter group, or change the master
7251
+ # You can add another security or parameter group, or change the admin
6727
7252
  # user password. Resetting a cluster password or modifying the security
6728
7253
  # groups associated with a cluster do not need a reboot. However,
6729
7254
  # modifying a parameter group requires a reboot for parameters to take
@@ -6803,14 +7328,14 @@ module Aws::Redshift
6803
7328
  # possible.
6804
7329
  #
6805
7330
  # @option params [String] :master_user_password
6806
- # The new password for the cluster master user. This change is
7331
+ # The new password for the cluster admin user. This change is
6807
7332
  # asynchronously applied as soon as possible. Between the time of the
6808
7333
  # request and the completion of the request, the `MasterUserPassword`
6809
7334
  # element exists in the `PendingModifiedValues` element of the operation
6810
7335
  # response.
6811
7336
  #
6812
7337
  # <note markdown="1"> Operations never return the password, so this operation provides a way
6813
- # to regain access to the master user account for a cluster if the
7338
+ # to regain access to the admin user account for a cluster if the
6814
7339
  # password is lost.
6815
7340
  #
6816
7341
  # </note>
@@ -6930,7 +7455,8 @@ module Aws::Redshift
6930
7455
  #
6931
7456
  # * Cannot end with a hyphen or contain two consecutive hyphens.
6932
7457
  #
6933
- # * Must be unique for all clusters within an AWS account.
7458
+ # * Must be unique for all clusters within an Amazon Web Services
7459
+ # account.
6934
7460
  #
6935
7461
  # Example: `examplecluster`
6936
7462
  #
@@ -6983,8 +7509,8 @@ module Aws::Redshift
6983
7509
  # If the value is not encrypted (false), then the cluster is decrypted.
6984
7510
  #
6985
7511
  # @option params [String] :kms_key_id
6986
- # The AWS Key Management Service (KMS) key ID of the encryption key that
6987
- # you want to use to encrypt data in the cluster.
7512
+ # The Key Management Service (KMS) key ID of the encryption key that you
7513
+ # want to use to encrypt data in the cluster.
6988
7514
  #
6989
7515
  # @option params [Boolean] :availability_zone_relocation
6990
7516
  # The option to enable relocation for an Amazon Redshift cluster between
@@ -7295,8 +7821,9 @@ module Aws::Redshift
7295
7821
  req.send_request(options)
7296
7822
  end
7297
7823
 
7298
- # Modifies the list of AWS Identity and Access Management (IAM) roles
7299
- # that can be used by the cluster to access other AWS services.
7824
+ # Modifies the list of Identity and Access Management (IAM) roles that
7825
+ # can be used by the cluster to access other Amazon Web Services
7826
+ # services.
7300
7827
  #
7301
7828
  # A cluster can have up to 10 IAM roles associated at any time.
7302
7829
  #
@@ -7606,7 +8133,8 @@ module Aws::Redshift
7606
8133
  req.send_request(options)
7607
8134
  end
7608
8135
 
7609
- # Modifies the parameters of a parameter group.
8136
+ # Modifies the parameters of a parameter group. For the parameters
8137
+ # parameter, it can't contain ASCII characters.
7610
8138
  #
7611
8139
  # For more information about parameters and parameter groups, go to
7612
8140
  # [Amazon Redshift Parameter Groups][1] in the *Amazon Redshift Cluster
@@ -7909,8 +8437,9 @@ module Aws::Redshift
7909
8437
  # The type of source that will be generating the events. For example, if
7910
8438
  # you want to be notified of events generated by a cluster, you would
7911
8439
  # set this parameter to cluster. If this value is not specified, events
7912
- # are returned for all Amazon Redshift objects in your AWS account. You
7913
- # must specify a source type in order to specify source IDs.
8440
+ # are returned for all Amazon Redshift objects in your Amazon Web
8441
+ # Services account. You must specify a source type in order to specify
8442
+ # source IDs.
7914
8443
  #
7915
8444
  # Valid values: cluster, cluster-parameter-group,
7916
8445
  # cluster-security-group, cluster-snapshot, and scheduled-action.
@@ -7930,7 +8459,7 @@ module Aws::Redshift
7930
8459
  # Specifies the Amazon Redshift event categories to be published by the
7931
8460
  # event notification subscription.
7932
8461
  #
7933
- # Values: configuration, management, monitoring, security
8462
+ # Values: configuration, management, monitoring, security, pending
7934
8463
  #
7935
8464
  # @option params [String] :severity
7936
8465
  # Specifies the Amazon Redshift event severity to be published by the
@@ -8084,34 +8613,37 @@ module Aws::Redshift
8084
8613
  req.send_request(options)
8085
8614
  end
8086
8615
 
8087
- # Modifies the number of days to retain snapshots in the destination AWS
8088
- # Region after they are copied from the source AWS Region. By default,
8089
- # this operation only changes the retention period of copied automated
8090
- # snapshots. The retention periods for both new and existing copied
8091
- # automated snapshots are updated with the new retention period. You can
8092
- # set the manual option to change only the retention periods of copied
8093
- # manual snapshots. If you set this option, only newly copied manual
8094
- # snapshots have the new retention period.
8616
+ # Modifies the number of days to retain snapshots in the destination
8617
+ # Amazon Web Services Region after they are copied from the source
8618
+ # Amazon Web Services Region. By default, this operation only changes
8619
+ # the retention period of copied automated snapshots. The retention
8620
+ # periods for both new and existing copied automated snapshots are
8621
+ # updated with the new retention period. You can set the manual option
8622
+ # to change only the retention periods of copied manual snapshots. If
8623
+ # you set this option, only newly copied manual snapshots have the new
8624
+ # retention period.
8095
8625
  #
8096
8626
  # @option params [required, String] :cluster_identifier
8097
8627
  # The unique identifier of the cluster for which you want to change the
8098
8628
  # retention period for either automated or manual snapshots that are
8099
- # copied to a destination AWS Region.
8629
+ # copied to a destination Amazon Web Services Region.
8100
8630
  #
8101
8631
  # Constraints: Must be the valid name of an existing cluster that has
8102
8632
  # cross-region snapshot copy enabled.
8103
8633
  #
8104
8634
  # @option params [required, Integer] :retention_period
8105
8635
  # The number of days to retain automated snapshots in the destination
8106
- # AWS Region after they are copied from the source AWS Region.
8636
+ # Amazon Web Services Region after they are copied from the source
8637
+ # Amazon Web Services Region.
8107
8638
  #
8108
8639
  # By default, this only changes the retention period of copied automated
8109
8640
  # snapshots.
8110
8641
  #
8111
8642
  # If you decrease the retention period for automated snapshots that are
8112
- # copied to a destination AWS Region, Amazon Redshift deletes any
8113
- # existing automated snapshots that were copied to the destination AWS
8114
- # Region and that fall outside of the new retention period.
8643
+ # copied to a destination Amazon Web Services Region, Amazon Redshift
8644
+ # deletes any existing automated snapshots that were copied to the
8645
+ # destination Amazon Web Services Region and that fall outside of the
8646
+ # new retention period.
8115
8647
  #
8116
8648
  # Constraints: Must be at least 1 and no more than 35 for automated
8117
8649
  # snapshots.
@@ -8710,6 +9242,44 @@ module Aws::Redshift
8710
9242
  req.send_request(options)
8711
9243
  end
8712
9244
 
9245
+ # From the consumer account, rejects the specified datashare.
9246
+ #
9247
+ # @option params [required, String] :data_share_arn
9248
+ # The Amazon Resource Name (ARN) of the datashare to reject.
9249
+ #
9250
+ # @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9251
+ #
9252
+ # * {Types::DataShare#data_share_arn #data_share_arn} => String
9253
+ # * {Types::DataShare#producer_arn #producer_arn} => String
9254
+ # * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
9255
+ # * {Types::DataShare#data_share_associations #data_share_associations} => Array&lt;Types::DataShareAssociation&gt;
9256
+ #
9257
+ # @example Request syntax with placeholder values
9258
+ #
9259
+ # resp = client.reject_data_share({
9260
+ # data_share_arn: "String", # required
9261
+ # })
9262
+ #
9263
+ # @example Response structure
9264
+ #
9265
+ # resp.data_share_arn #=> String
9266
+ # resp.producer_arn #=> String
9267
+ # resp.allow_publicly_accessible_consumers #=> Boolean
9268
+ # resp.data_share_associations #=> Array
9269
+ # resp.data_share_associations[0].consumer_identifier #=> String
9270
+ # resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
9271
+ # resp.data_share_associations[0].created_date #=> Time
9272
+ # resp.data_share_associations[0].status_change_date #=> Time
9273
+ #
9274
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RejectDataShare AWS API Documentation
9275
+ #
9276
+ # @overload reject_data_share(params = {})
9277
+ # @param [Hash] params ({})
9278
+ def reject_data_share(params = {}, options = {})
9279
+ req = build_request(:reject_data_share, params)
9280
+ req.send_request(options)
9281
+ end
9282
+
8713
9283
  # Sets one or more parameters of the specified parameter group to their
8714
9284
  # default values and sets the source values of the parameters to
8715
9285
  # "engine-default". To reset the entire parameter group specify the
@@ -8990,7 +9560,8 @@ module Aws::Redshift
8990
9560
  #
8991
9561
  # * Cannot end with a hyphen or contain two consecutive hyphens.
8992
9562
  #
8993
- # * Must be unique for all clusters within an AWS account.
9563
+ # * Must be unique for all clusters within an Amazon Web Services
9564
+ # account.
8994
9565
  #
8995
9566
  # @option params [required, String] :snapshot_identifier
8996
9567
  # The name of the snapshot from which to create the new cluster. This
@@ -9036,9 +9607,9 @@ module Aws::Redshift
9036
9607
  # If `true`, the cluster can be accessed from a public network.
9037
9608
  #
9038
9609
  # @option params [String] :owner_account
9039
- # The AWS customer account used to create or copy the snapshot. Required
9040
- # if you are restoring a snapshot you do not own, optional if you own
9041
- # the snapshot.
9610
+ # The Amazon Web Services account used to create or copy the snapshot.
9611
+ # Required if you are restoring a snapshot you do not own, optional if
9612
+ # you own the snapshot.
9042
9613
  #
9043
9614
  # @option params [String] :hsm_client_certificate_identifier
9044
9615
  # Specifies the name of the HSM client certificate the Amazon Redshift
@@ -9128,8 +9699,8 @@ module Aws::Redshift
9128
9699
  # The value must be either -1 or an integer between 1 and 3,653.
9129
9700
  #
9130
9701
  # @option params [String] :kms_key_id
9131
- # The AWS Key Management Service (KMS) key ID of the encryption key that
9132
- # you want to use to encrypt data in the cluster that you restore from a
9702
+ # The Key Management Service (KMS) key ID of the encryption key that you
9703
+ # want to use to encrypt data in the cluster that you restore from a
9133
9704
  # shared snapshot.
9134
9705
  #
9135
9706
  # @option params [String] :node_type
@@ -9171,10 +9742,10 @@ module Aws::Redshift
9171
9742
  # Reserved.
9172
9743
  #
9173
9744
  # @option params [Array<String>] :iam_roles
9174
- # A list of AWS Identity and Access Management (IAM) roles that can be
9175
- # used by the cluster to access other AWS services. You must supply the
9176
- # IAM roles in their Amazon Resource Name (ARN) format. You can supply
9177
- # up to 10 IAM roles in a single request.
9745
+ # A list of Identity and Access Management (IAM) roles that can be used
9746
+ # by the cluster to access other Amazon Web Services services. You must
9747
+ # supply the IAM roles in their Amazon Resource Name (ARN) format. You
9748
+ # can supply up to 10 IAM roles in a single request.
9178
9749
  #
9179
9750
  # A cluster can have up to 10 IAM roles associated at any time.
9180
9751
  #
@@ -9202,8 +9773,8 @@ module Aws::Redshift
9202
9773
  # (Advanced Query Accelerator) after the cluster is restored. Possible
9203
9774
  # values include the following.
9204
9775
  #
9205
- # * enabled - Use AQUA if it is available for the current AWS Region and
9206
- # Amazon Redshift node type.
9776
+ # * enabled - Use AQUA if it is available for the current Amazon Web
9777
+ # Services Region and Amazon Redshift node type.
9207
9778
  #
9208
9779
  # * disabled - Don't use AQUA.
9209
9780
  #
@@ -9620,11 +10191,11 @@ module Aws::Redshift
9620
10191
  # also be provided and `CIDRIP` cannot be provided.
9621
10192
  #
9622
10193
  # @option params [String] :ec2_security_group_owner_id
9623
- # The AWS account number of the owner of the security group specified in
9624
- # the `EC2SecurityGroupName` parameter. The AWS access key ID is not an
9625
- # acceptable value. If `EC2SecurityGroupOwnerId` is specified,
9626
- # `EC2SecurityGroupName` must also be provided. and `CIDRIP` cannot be
9627
- # provided.
10194
+ # The Amazon Web Services account number of the owner of the security
10195
+ # group specified in the `EC2SecurityGroupName` parameter. The Amazon
10196
+ # Web Services access key ID is not an acceptable value. If
10197
+ # `EC2SecurityGroupOwnerId` is specified, `EC2SecurityGroupName` must
10198
+ # also be provided. and `CIDRIP` cannot be provided.
9628
10199
  #
9629
10200
  # Example: `111122223333`
9630
10201
  #
@@ -9677,7 +10248,7 @@ module Aws::Redshift
9677
10248
  # The cluster to revoke access from.
9678
10249
  #
9679
10250
  # @option params [String] :account
9680
- # The AWS account ID whose access is to be revoked.
10251
+ # The Amazon Web Services account ID whose access is to be revoked.
9681
10252
  #
9682
10253
  # @option params [Array<String>] :vpc_ids
9683
10254
  # The virtual private cloud (VPC) identifiers for which access is to be
@@ -9731,9 +10302,9 @@ module Aws::Redshift
9731
10302
  req.send_request(options)
9732
10303
  end
9733
10304
 
9734
- # Removes the ability of the specified AWS customer account to restore
9735
- # the specified snapshot. If the account is currently restoring the
9736
- # snapshot, the restore will run to completion.
10305
+ # Removes the ability of the specified Amazon Web Services account to
10306
+ # restore the specified snapshot. If the account is currently restoring
10307
+ # the snapshot, the restore will run to completion.
9737
10308
  #
9738
10309
  # For more information about working with snapshots, go to [Amazon
9739
10310
  # Redshift Snapshots][1] in the *Amazon Redshift Cluster Management
@@ -9753,8 +10324,8 @@ module Aws::Redshift
9753
10324
  # the cluster name.
9754
10325
  #
9755
10326
  # @option params [required, String] :account_with_restore_access
9756
- # The identifier of the AWS customer account that can no longer restore
9757
- # the specified snapshot.
10327
+ # The identifier of the Amazon Web Services account that can no longer
10328
+ # restore the specified snapshot.
9758
10329
  #
9759
10330
  # @return [Types::RevokeSnapshotAccessResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9760
10331
  #
@@ -9961,7 +10532,7 @@ module Aws::Redshift
9961
10532
  # Updates the status of a partner integration.
9962
10533
  #
9963
10534
  # @option params [required, String] :account_id
9964
- # The AWS account ID that owns the cluster.
10535
+ # The Amazon Web Services account ID that owns the cluster.
9965
10536
  #
9966
10537
  # @option params [required, String] :cluster_identifier
9967
10538
  # The cluster identifier of the cluster whose partner integration status
@@ -10023,7 +10594,7 @@ module Aws::Redshift
10023
10594
  params: params,
10024
10595
  config: config)
10025
10596
  context[:gem_name] = 'aws-sdk-redshift'
10026
- context[:gem_version] = '1.64.0'
10597
+ context[:gem_version] = '1.68.0'
10027
10598
  Seahorse::Client::Request.new(handlers, context)
10028
10599
  end
10029
10600