aws-sdk-redshift 1.64.0 → 1.65.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift.rb +1 -1
- data/lib/aws-sdk-redshift/client.rb +331 -200
- data/lib/aws-sdk-redshift/client_api.rb +99 -0
- data/lib/aws-sdk-redshift/errors.rb +44 -0
- data/lib/aws-sdk-redshift/types.rb +425 -223
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 777c92c3d81b2c05575bc7d7811dbf2a07447788091658e22fae0c75ee036046
|
4
|
+
data.tar.gz: '0872c758736acbf6c50ff82cff87688210a3606d1caf519e40f530d73adbf1bd'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 685f757bc9e8baa5b86020ccc3101ab8240c3e6f15b21d6958d6614254f388a275f4d1efaf90d3a02dbb6c46f8a889741e10c0324708940388b47e981c30f3ce
|
7
|
+
data.tar.gz: 5d969ec81ba82aa09c9af82a985d10dbae62d5b444292d00712a0473f7c47ff8f0d7663ec19f1a9192f200f6523d87f0655ea28e8cec1bc47273a1cab2fcaf13
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.65.0
|
data/lib/aws-sdk-redshift.rb
CHANGED
@@ -384,7 +384,7 @@ module Aws::Redshift
|
|
384
384
|
# website.
|
385
385
|
#
|
386
386
|
# @option params [required, String] :account_id
|
387
|
-
# The
|
387
|
+
# The Region 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
|
@@ -433,8 +433,7 @@ module Aws::Redshift
|
|
433
433
|
#
|
434
434
|
# If you authorize access to an Amazon EC2 security group, specify
|
435
435
|
# *EC2SecurityGroupName* and *EC2SecurityGroupOwnerId*. The Amazon EC2
|
436
|
-
# security group and Amazon Redshift cluster must be in the same
|
437
|
-
# Region.
|
436
|
+
# security group and Amazon Redshift cluster must be in the same Region.
|
438
437
|
#
|
439
438
|
# If you authorize access to a CIDR/IP address range, specify *CIDRIP*.
|
440
439
|
# For an overview of CIDR blocks, see the Wikipedia article on
|
@@ -461,9 +460,9 @@ module Aws::Redshift
|
|
461
460
|
# The EC2 security group to be added the Amazon Redshift security group.
|
462
461
|
#
|
463
462
|
# @option params [String] :ec2_security_group_owner_id
|
464
|
-
# The
|
465
|
-
#
|
466
|
-
# acceptable value.
|
463
|
+
# The account number of the owner of the security group specified by the
|
464
|
+
# *EC2SecurityGroupName* parameter. The Amazon Web Services Access Key
|
465
|
+
# ID is not an acceptable value.
|
467
466
|
#
|
468
467
|
# Example: `111122223333`
|
469
468
|
#
|
@@ -516,7 +515,7 @@ module Aws::Redshift
|
|
516
515
|
# The cluster identifier of the cluster to grant access to.
|
517
516
|
#
|
518
517
|
# @option params [required, String] :account
|
519
|
-
# The
|
518
|
+
# The account ID to grant access to.
|
520
519
|
#
|
521
520
|
# @option params [Array<String>] :vpc_ids
|
522
521
|
# The virtual private cloud (VPC) identifiers to grant access to.
|
@@ -563,8 +562,7 @@ module Aws::Redshift
|
|
563
562
|
req.send_request(options)
|
564
563
|
end
|
565
564
|
|
566
|
-
# Authorizes the specified
|
567
|
-
# snapshot.
|
565
|
+
# Authorizes the specified account to restore the specified snapshot.
|
568
566
|
#
|
569
567
|
# For more information about working with snapshots, go to [Amazon
|
570
568
|
# Redshift Snapshots][1] in the *Amazon Redshift Cluster Management
|
@@ -584,10 +582,11 @@ module Aws::Redshift
|
|
584
582
|
# the cluster name.
|
585
583
|
#
|
586
584
|
# @option params [required, String] :account_with_restore_access
|
587
|
-
# The identifier of the
|
588
|
-
#
|
585
|
+
# The identifier of the account authorized to restore the specified
|
586
|
+
# snapshot.
|
589
587
|
#
|
590
|
-
# To share a snapshot with
|
588
|
+
# To share a snapshot with Amazon Web Services Support, specify
|
589
|
+
# amazon-redshift-support.
|
591
590
|
#
|
592
591
|
# @return [Types::AuthorizeSnapshotAccessResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
593
592
|
#
|
@@ -860,7 +859,7 @@ module Aws::Redshift
|
|
860
859
|
#
|
861
860
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
862
861
|
#
|
863
|
-
# * Must be unique for the
|
862
|
+
# * Must be unique for the account that is making the request.
|
864
863
|
#
|
865
864
|
# @option params [Integer] :manual_snapshot_retention_period
|
866
865
|
# The number of days that a manual snapshot is retained. If the value is
|
@@ -934,6 +933,41 @@ module Aws::Redshift
|
|
934
933
|
req.send_request(options)
|
935
934
|
end
|
936
935
|
|
936
|
+
# Creates an authentication profile with the specified parameters.
|
937
|
+
#
|
938
|
+
# @option params [required, String] :authentication_profile_name
|
939
|
+
# The name of the authentication profile to be created.
|
940
|
+
#
|
941
|
+
# @option params [required, String] :authentication_profile_content
|
942
|
+
# The content of the authentication profile in JSON format. The maximum
|
943
|
+
# length of the JSON string is determined by a quota for your account.
|
944
|
+
#
|
945
|
+
# @return [Types::CreateAuthenticationProfileResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
946
|
+
#
|
947
|
+
# * {Types::CreateAuthenticationProfileResult#authentication_profile_name #authentication_profile_name} => String
|
948
|
+
# * {Types::CreateAuthenticationProfileResult#authentication_profile_content #authentication_profile_content} => String
|
949
|
+
#
|
950
|
+
# @example Request syntax with placeholder values
|
951
|
+
#
|
952
|
+
# resp = client.create_authentication_profile({
|
953
|
+
# authentication_profile_name: "AuthenticationProfileNameString", # required
|
954
|
+
# authentication_profile_content: "String", # required
|
955
|
+
# })
|
956
|
+
#
|
957
|
+
# @example Response structure
|
958
|
+
#
|
959
|
+
# resp.authentication_profile_name #=> String
|
960
|
+
# resp.authentication_profile_content #=> String
|
961
|
+
#
|
962
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateAuthenticationProfile AWS API Documentation
|
963
|
+
#
|
964
|
+
# @overload create_authentication_profile(params = {})
|
965
|
+
# @param [Hash] params ({})
|
966
|
+
def create_authentication_profile(params = {}, options = {})
|
967
|
+
req = build_request(:create_authentication_profile, params)
|
968
|
+
req.send_request(options)
|
969
|
+
end
|
970
|
+
|
937
971
|
# Creates a new cluster with the specified parameters.
|
938
972
|
#
|
939
973
|
# To create a cluster in Virtual Private Cloud (VPC), you must provide a
|
@@ -989,7 +1023,7 @@ module Aws::Redshift
|
|
989
1023
|
#
|
990
1024
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
991
1025
|
#
|
992
|
-
# * Must be unique for all clusters within an
|
1026
|
+
# * Must be unique for all clusters within an account.
|
993
1027
|
#
|
994
1028
|
# Example: `myexamplecluster`
|
995
1029
|
#
|
@@ -1018,7 +1052,7 @@ module Aws::Redshift
|
|
1018
1052
|
# [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes
|
1019
1053
|
#
|
1020
1054
|
# @option params [required, String] :master_username
|
1021
|
-
# The user name associated with the
|
1055
|
+
# The user name associated with the admin user account for the cluster
|
1022
1056
|
# that is being created.
|
1023
1057
|
#
|
1024
1058
|
# Constraints:
|
@@ -1036,7 +1070,7 @@ module Aws::Redshift
|
|
1036
1070
|
# [1]: https://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html
|
1037
1071
|
#
|
1038
1072
|
# @option params [required, String] :master_user_password
|
1039
|
-
# The password associated with the
|
1073
|
+
# The password associated with the admin user account for the cluster
|
1040
1074
|
# that is being created.
|
1041
1075
|
#
|
1042
1076
|
# Constraints:
|
@@ -1230,8 +1264,8 @@ module Aws::Redshift
|
|
1230
1264
|
# A list of tag instances.
|
1231
1265
|
#
|
1232
1266
|
# @option params [String] :kms_key_id
|
1233
|
-
# The
|
1234
|
-
#
|
1267
|
+
# The Key Management Service (KMS) key ID of the encryption key that you
|
1268
|
+
# want to use to encrypt data in the cluster.
|
1235
1269
|
#
|
1236
1270
|
# @option params [Boolean] :enhanced_vpc_routing
|
1237
1271
|
# An option that specifies whether to create the cluster with enhanced
|
@@ -1252,10 +1286,10 @@ module Aws::Redshift
|
|
1252
1286
|
# Reserved.
|
1253
1287
|
#
|
1254
1288
|
# @option params [Array<String>] :iam_roles
|
1255
|
-
# A list of
|
1256
|
-
#
|
1257
|
-
# IAM roles in their Amazon Resource Name (ARN) format. You
|
1258
|
-
# up to 10 IAM roles in a single request.
|
1289
|
+
# A list of Identity and Access Management (IAM) roles that can be used
|
1290
|
+
# by the cluster to access other Amazon Web Services services. You must
|
1291
|
+
# supply the IAM roles in their Amazon Resource Name (ARN) format. You
|
1292
|
+
# can supply up to 10 IAM roles in a single request.
|
1259
1293
|
#
|
1260
1294
|
# A cluster can have up to 10 IAM roles associated with it at any time.
|
1261
1295
|
#
|
@@ -1276,7 +1310,7 @@ module Aws::Redshift
|
|
1276
1310
|
# (Advanced Query Accelerator) when it is created. Possible values
|
1277
1311
|
# include the following.
|
1278
1312
|
#
|
1279
|
-
# * enabled - Use AQUA if it is available for the current
|
1313
|
+
# * enabled - Use AQUA if it is available for the current Region and
|
1280
1314
|
# Amazon Redshift node type.
|
1281
1315
|
#
|
1282
1316
|
# * disabled - Don't use AQUA.
|
@@ -1477,7 +1511,7 @@ module Aws::Redshift
|
|
1477
1511
|
#
|
1478
1512
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
1479
1513
|
#
|
1480
|
-
# * Must be unique withing your
|
1514
|
+
# * Must be unique withing your account.
|
1481
1515
|
#
|
1482
1516
|
# <note markdown="1"> This value is stored as a lower-case string.
|
1483
1517
|
#
|
@@ -1490,7 +1524,7 @@ module Aws::Redshift
|
|
1490
1524
|
#
|
1491
1525
|
# To get a list of valid parameter group family names, you can call
|
1492
1526
|
# DescribeClusterParameterGroups. By default, Amazon Redshift returns a
|
1493
|
-
# list of all the parameter groups that are owned by your
|
1527
|
+
# list of all the parameter groups that are owned by your account,
|
1494
1528
|
# including the default parameter groups for each Amazon Redshift engine
|
1495
1529
|
# version. The parameter group family names associated with the default
|
1496
1530
|
# parameter groups provide you the valid values. For example, a valid
|
@@ -1559,7 +1593,7 @@ module Aws::Redshift
|
|
1559
1593
|
#
|
1560
1594
|
# * Must not be "Default".
|
1561
1595
|
#
|
1562
|
-
# * Must be unique for all security groups that are created by your
|
1596
|
+
# * Must be unique for all security groups that are created by your
|
1563
1597
|
# account.
|
1564
1598
|
#
|
1565
1599
|
# Example: `examplesecuritygroup`
|
@@ -1630,7 +1664,7 @@ module Aws::Redshift
|
|
1630
1664
|
#
|
1631
1665
|
# @option params [required, String] :snapshot_identifier
|
1632
1666
|
# A unique identifier for the snapshot that you are requesting. This
|
1633
|
-
# identifier must be unique for all snapshots within the
|
1667
|
+
# identifier must be unique for all snapshots within the account.
|
1634
1668
|
#
|
1635
1669
|
# Constraints:
|
1636
1670
|
#
|
@@ -1748,7 +1782,7 @@ module Aws::Redshift
|
|
1748
1782
|
#
|
1749
1783
|
# * Must not be "Default".
|
1750
1784
|
#
|
1751
|
-
# * Must be unique for all subnet groups that are created by your
|
1785
|
+
# * Must be unique for all subnet groups that are created by your
|
1752
1786
|
# account.
|
1753
1787
|
#
|
1754
1788
|
# Example: `examplesubnetgroup`
|
@@ -1812,8 +1846,8 @@ module Aws::Redshift
|
|
1812
1846
|
# The cluster identifier of the cluster to access.
|
1813
1847
|
#
|
1814
1848
|
# @option params [String] :resource_owner
|
1815
|
-
# The
|
1816
|
-
#
|
1849
|
+
# The account ID of the owner of the cluster. This is only required if
|
1850
|
+
# the cluster is in another account.
|
1817
1851
|
#
|
1818
1852
|
# @option params [required, String] :endpoint_name
|
1819
1853
|
# The Redshift-managed VPC endpoint name.
|
@@ -1903,11 +1937,11 @@ module Aws::Redshift
|
|
1903
1937
|
# type = cluster and source identifier = my-cluster-1, notifications
|
1904
1938
|
# will be sent for all the cluster events for my-cluster-1. If you
|
1905
1939
|
# 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
|
1940
|
+
# receive notice of the events for the objects of that type in your
|
1907
1941
|
# account. If you do not specify either the SourceType nor the
|
1908
1942
|
# SourceIdentifier, you will be notified of events generated from all
|
1909
|
-
# Amazon Redshift sources belonging to your
|
1910
|
-
#
|
1943
|
+
# Amazon Redshift sources belonging to your account. You must specify a
|
1944
|
+
# source type if you specify a source ID.
|
1911
1945
|
#
|
1912
1946
|
# @option params [required, String] :subscription_name
|
1913
1947
|
# The name of the event subscription to be created.
|
@@ -1931,8 +1965,8 @@ module Aws::Redshift
|
|
1931
1965
|
# The type of source that will be generating the events. For example, if
|
1932
1966
|
# you want to be notified of events generated by a cluster, you would
|
1933
1967
|
# set this parameter to cluster. If this value is not specified, events
|
1934
|
-
# are returned for all Amazon Redshift objects in your
|
1935
|
-
#
|
1968
|
+
# are returned for all Amazon Redshift objects in your account. You must
|
1969
|
+
# specify a source type in order to specify source IDs.
|
1936
1970
|
#
|
1937
1971
|
# Valid values: cluster, cluster-parameter-group,
|
1938
1972
|
# cluster-security-group, cluster-snapshot, and scheduled-action.
|
@@ -2259,8 +2293,8 @@ module Aws::Redshift
|
|
2259
2293
|
end
|
2260
2294
|
|
2261
2295
|
# Creates a snapshot copy grant that permits Amazon Redshift to use a
|
2262
|
-
# customer master key (CMK) from
|
2263
|
-
#
|
2296
|
+
# customer master key (CMK) from Key Management Service (KMS) to encrypt
|
2297
|
+
# copied snapshots in a destination region.
|
2264
2298
|
#
|
2265
2299
|
# For more information about managing snapshot copy grants, go to
|
2266
2300
|
# [Amazon Redshift Database Encryption][1] in the *Amazon Redshift
|
@@ -2272,7 +2306,7 @@ module Aws::Redshift
|
|
2272
2306
|
#
|
2273
2307
|
# @option params [required, String] :snapshot_copy_grant_name
|
2274
2308
|
# The name of the snapshot copy grant. This name must be unique in the
|
2275
|
-
# region for the
|
2309
|
+
# region for the account.
|
2276
2310
|
#
|
2277
2311
|
# Constraints:
|
2278
2312
|
#
|
@@ -2284,7 +2318,7 @@ module Aws::Redshift
|
|
2284
2318
|
#
|
2285
2319
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
2286
2320
|
#
|
2287
|
-
# * Must be unique for all clusters within an
|
2321
|
+
# * Must be unique for all clusters within an account.
|
2288
2322
|
#
|
2289
2323
|
# @option params [String] :kms_key_id
|
2290
2324
|
# The unique identifier of the customer master key (CMK) to which to
|
@@ -2528,6 +2562,34 @@ module Aws::Redshift
|
|
2528
2562
|
req.send_request(options)
|
2529
2563
|
end
|
2530
2564
|
|
2565
|
+
# Deletes an authentication profile.
|
2566
|
+
#
|
2567
|
+
# @option params [required, String] :authentication_profile_name
|
2568
|
+
# The name of the authentication profile to delete.
|
2569
|
+
#
|
2570
|
+
# @return [Types::DeleteAuthenticationProfileResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2571
|
+
#
|
2572
|
+
# * {Types::DeleteAuthenticationProfileResult#authentication_profile_name #authentication_profile_name} => String
|
2573
|
+
#
|
2574
|
+
# @example Request syntax with placeholder values
|
2575
|
+
#
|
2576
|
+
# resp = client.delete_authentication_profile({
|
2577
|
+
# authentication_profile_name: "AuthenticationProfileNameString", # required
|
2578
|
+
# })
|
2579
|
+
#
|
2580
|
+
# @example Response structure
|
2581
|
+
#
|
2582
|
+
# resp.authentication_profile_name #=> String
|
2583
|
+
#
|
2584
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteAuthenticationProfile AWS API Documentation
|
2585
|
+
#
|
2586
|
+
# @overload delete_authentication_profile(params = {})
|
2587
|
+
# @param [Hash] params ({})
|
2588
|
+
def delete_authentication_profile(params = {}, options = {})
|
2589
|
+
req = build_request(:delete_authentication_profile, params)
|
2590
|
+
req.send_request(options)
|
2591
|
+
end
|
2592
|
+
|
2531
2593
|
# Deletes a previously provisioned cluster without its final snapshot
|
2532
2594
|
# being created. A successful response from the web service indicates
|
2533
2595
|
# that the request was received correctly. Use DescribeClusters to
|
@@ -3034,7 +3096,7 @@ module Aws::Redshift
|
|
3034
3096
|
# website.
|
3035
3097
|
#
|
3036
3098
|
# @option params [required, String] :account_id
|
3037
|
-
# The
|
3099
|
+
# The Region ID that owns the cluster.
|
3038
3100
|
#
|
3039
3101
|
# @option params [required, String] :cluster_identifier
|
3040
3102
|
# The cluster identifier of the cluster that receives data from the
|
@@ -3222,6 +3284,37 @@ module Aws::Redshift
|
|
3222
3284
|
req.send_request(options)
|
3223
3285
|
end
|
3224
3286
|
|
3287
|
+
# Describes an authentication profile.
|
3288
|
+
#
|
3289
|
+
# @option params [String] :authentication_profile_name
|
3290
|
+
# The name of the authentication profile to describe. If not specified
|
3291
|
+
# then all authentication profiles owned by the account are listed.
|
3292
|
+
#
|
3293
|
+
# @return [Types::DescribeAuthenticationProfilesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3294
|
+
#
|
3295
|
+
# * {Types::DescribeAuthenticationProfilesResult#authentication_profiles #authentication_profiles} => Array<Types::AuthenticationProfile>
|
3296
|
+
#
|
3297
|
+
# @example Request syntax with placeholder values
|
3298
|
+
#
|
3299
|
+
# resp = client.describe_authentication_profiles({
|
3300
|
+
# authentication_profile_name: "AuthenticationProfileNameString",
|
3301
|
+
# })
|
3302
|
+
#
|
3303
|
+
# @example Response structure
|
3304
|
+
#
|
3305
|
+
# resp.authentication_profiles #=> Array
|
3306
|
+
# resp.authentication_profiles[0].authentication_profile_name #=> String
|
3307
|
+
# resp.authentication_profiles[0].authentication_profile_content #=> String
|
3308
|
+
#
|
3309
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeAuthenticationProfiles AWS API Documentation
|
3310
|
+
#
|
3311
|
+
# @overload describe_authentication_profiles(params = {})
|
3312
|
+
# @param [Hash] params ({})
|
3313
|
+
def describe_authentication_profiles(params = {}, options = {})
|
3314
|
+
req = build_request(:describe_authentication_profiles, params)
|
3315
|
+
req.send_request(options)
|
3316
|
+
end
|
3317
|
+
|
3225
3318
|
# Returns an array of `ClusterDbRevision` objects.
|
3226
3319
|
#
|
3227
3320
|
# @option params [String] :cluster_identifier
|
@@ -3335,10 +3428,10 @@ module Aws::Redshift
|
|
3335
3428
|
# An optional parameter that specifies the starting point to return a
|
3336
3429
|
# set of response records. When the results of a
|
3337
3430
|
# DescribeClusterParameterGroups request exceed the value specified in
|
3338
|
-
# `MaxRecords`,
|
3339
|
-
# response. You can retrieve the next set of response
|
3340
|
-
# providing the returned marker value in the `Marker`
|
3341
|
-
# retrying the request.
|
3431
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
3432
|
+
# field of the response. You can retrieve the next set of response
|
3433
|
+
# records by providing the returned marker value in the `Marker`
|
3434
|
+
# parameter and retrying the request.
|
3342
3435
|
#
|
3343
3436
|
# @option params [Array<String>] :tag_keys
|
3344
3437
|
# A tag key or keys for which you want to return all matching cluster
|
@@ -3440,10 +3533,10 @@ module Aws::Redshift
|
|
3440
3533
|
# An optional parameter that specifies the starting point to return a
|
3441
3534
|
# set of response records. When the results of a
|
3442
3535
|
# DescribeClusterParameters request exceed the value specified in
|
3443
|
-
# `MaxRecords`,
|
3444
|
-
# response. You can retrieve the next set of response
|
3445
|
-
# providing the returned marker value in the `Marker`
|
3446
|
-
# retrying the request.
|
3536
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
3537
|
+
# field of the response. You can retrieve the next set of response
|
3538
|
+
# records by providing the returned marker value in the `Marker`
|
3539
|
+
# parameter and retrying the request.
|
3447
3540
|
#
|
3448
3541
|
# @return [Types::ClusterParameterGroupDetails] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3449
3542
|
#
|
@@ -3529,10 +3622,10 @@ module Aws::Redshift
|
|
3529
3622
|
# An optional parameter that specifies the starting point to return a
|
3530
3623
|
# set of response records. When the results of a
|
3531
3624
|
# DescribeClusterSecurityGroups request exceed the value specified in
|
3532
|
-
# `MaxRecords`,
|
3533
|
-
# response. You can retrieve the next set of response
|
3534
|
-
# providing the returned marker value in the `Marker`
|
3535
|
-
# retrying the request.
|
3625
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
3626
|
+
# field of the response. You can retrieve the next set of response
|
3627
|
+
# records by providing the returned marker value in the `Marker`
|
3628
|
+
# parameter and retrying the request.
|
3536
3629
|
#
|
3537
3630
|
# Constraints: You can specify either the **ClusterSecurityGroupName**
|
3538
3631
|
# parameter or the **Marker** parameter, but not both.
|
@@ -3606,9 +3699,8 @@ module Aws::Redshift
|
|
3606
3699
|
|
3607
3700
|
# Returns one or more snapshot objects, which contain metadata about
|
3608
3701
|
# your cluster snapshots. By default, this operation returns information
|
3609
|
-
# about all snapshots of all clusters that are owned by
|
3610
|
-
#
|
3611
|
-
# AWS customer accounts.
|
3702
|
+
# about all snapshots of all clusters that are owned by your account. No
|
3703
|
+
# information is returned for snapshots owned by inactive accounts.
|
3612
3704
|
#
|
3613
3705
|
# If you specify both tag keys and tag values in the same request,
|
3614
3706
|
# Amazon Redshift returns all snapshots that match any combination of
|
@@ -3673,16 +3765,16 @@ module Aws::Redshift
|
|
3673
3765
|
# An optional parameter that specifies the starting point to return a
|
3674
3766
|
# set of response records. When the results of a
|
3675
3767
|
# DescribeClusterSnapshots request exceed the value specified in
|
3676
|
-
# `MaxRecords`,
|
3677
|
-
# response. You can retrieve the next set of response
|
3678
|
-
# providing the returned marker value in the `Marker`
|
3679
|
-
# retrying the request.
|
3768
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
3769
|
+
# field of the response. You can retrieve the next set of response
|
3770
|
+
# records by providing the returned marker value in the `Marker`
|
3771
|
+
# parameter and retrying the request.
|
3680
3772
|
#
|
3681
3773
|
# @option params [String] :owner_account
|
3682
|
-
# The
|
3683
|
-
#
|
3684
|
-
#
|
3685
|
-
#
|
3774
|
+
# The account used to create or copy the snapshot. Use this field to
|
3775
|
+
# filter the results to snapshots owned by a particular account. To
|
3776
|
+
# describe snapshots you own, either specify your account, or do not
|
3777
|
+
# specify the parameter.
|
3686
3778
|
#
|
3687
3779
|
# @option params [Array<String>] :tag_keys
|
3688
3780
|
# A tag key or keys for which you want to return all matching cluster
|
@@ -3814,7 +3906,7 @@ module Aws::Redshift
|
|
3814
3906
|
# Returns one or more cluster subnet group objects, which contain
|
3815
3907
|
# metadata about your cluster subnet groups. By default, this operation
|
3816
3908
|
# returns information about all cluster subnet groups that are defined
|
3817
|
-
# in
|
3909
|
+
# in your account.
|
3818
3910
|
#
|
3819
3911
|
# If you specify both tag keys and tag values in the same request,
|
3820
3912
|
# Amazon Redshift returns all subnet groups that match any combination
|
@@ -3845,10 +3937,10 @@ module Aws::Redshift
|
|
3845
3937
|
# An optional parameter that specifies the starting point to return a
|
3846
3938
|
# set of response records. When the results of a
|
3847
3939
|
# DescribeClusterSubnetGroups request exceed the value specified in
|
3848
|
-
# `MaxRecords`,
|
3849
|
-
# response. You can retrieve the next set of response
|
3850
|
-
# providing the returned marker value in the `Marker`
|
3851
|
-
# retrying the request.
|
3940
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
3941
|
+
# field of the response. You can retrieve the next set of response
|
3942
|
+
# records by providing the returned marker value in the `Marker`
|
3943
|
+
# parameter and retrying the request.
|
3852
3944
|
#
|
3853
3945
|
# @option params [Array<String>] :tag_keys
|
3854
3946
|
# A tag key or keys for which you want to return all matching cluster
|
@@ -4006,10 +4098,11 @@ module Aws::Redshift
|
|
4006
4098
|
# @option params [String] :marker
|
4007
4099
|
# An optional parameter that specifies the starting point to return a
|
4008
4100
|
# set of response records. When the results of a DescribeClusterVersions
|
4009
|
-
# request exceed the value specified in `MaxRecords`,
|
4010
|
-
# value in the `Marker` field of the response. You
|
4011
|
-
# set of response records by providing the
|
4012
|
-
# `Marker` parameter and retrying the
|
4101
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
4102
|
+
# Services returns a value in the `Marker` field of the response. You
|
4103
|
+
# can retrieve the next set of response records by providing the
|
4104
|
+
# returned marker value in the `Marker` parameter and retrying the
|
4105
|
+
# request.
|
4013
4106
|
#
|
4014
4107
|
# @return [Types::ClusterVersionsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4015
4108
|
#
|
@@ -4085,10 +4178,11 @@ module Aws::Redshift
|
|
4085
4178
|
# @option params [String] :marker
|
4086
4179
|
# An optional parameter that specifies the starting point to return a
|
4087
4180
|
# set of response records. When the results of a DescribeClusters
|
4088
|
-
# request exceed the value specified in `MaxRecords`,
|
4089
|
-
# value in the `Marker` field of the response. You
|
4090
|
-
# set of response records by providing the
|
4091
|
-
# `Marker` parameter and retrying the
|
4181
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
4182
|
+
# Services returns a value in the `Marker` field of the response. You
|
4183
|
+
# can retrieve the next set of response records by providing the
|
4184
|
+
# returned marker value in the `Marker` parameter and retrying the
|
4185
|
+
# request.
|
4092
4186
|
#
|
4093
4187
|
# Constraints: You can specify either the **ClusterIdentifier**
|
4094
4188
|
# parameter or the **Marker** parameter, but not both.
|
@@ -4285,10 +4379,10 @@ module Aws::Redshift
|
|
4285
4379
|
# An optional parameter that specifies the starting point to return a
|
4286
4380
|
# set of response records. When the results of a
|
4287
4381
|
# DescribeDefaultClusterParameters request exceed the value specified in
|
4288
|
-
# `MaxRecords`,
|
4289
|
-
# response. You can retrieve the next set of response
|
4290
|
-
# providing the returned marker value in the `Marker`
|
4291
|
-
# retrying the request.
|
4382
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4383
|
+
# field of the response. You can retrieve the next set of response
|
4384
|
+
# records by providing the returned marker value in the `Marker`
|
4385
|
+
# parameter and retrying the request.
|
4292
4386
|
#
|
4293
4387
|
# @return [Types::DescribeDefaultClusterParametersResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4294
4388
|
#
|
@@ -4334,7 +4428,7 @@ module Aws::Redshift
|
|
4334
4428
|
# The cluster identifier associated with the described endpoint.
|
4335
4429
|
#
|
4336
4430
|
# @option params [String] :resource_owner
|
4337
|
-
# The
|
4431
|
+
# The account ID of the owner of the cluster.
|
4338
4432
|
#
|
4339
4433
|
# @option params [String] :endpoint_name
|
4340
4434
|
# The name of the endpoint to be described.
|
@@ -4410,8 +4504,8 @@ module Aws::Redshift
|
|
4410
4504
|
# The cluster identifier of the cluster to access.
|
4411
4505
|
#
|
4412
4506
|
# @option params [String] :account
|
4413
|
-
# The
|
4414
|
-
#
|
4507
|
+
# The Aaccount ID of either the cluster owner (grantor) or grantee. If
|
4508
|
+
# `Grantee` parameter is true, then the `Account` value is of the
|
4415
4509
|
# grantor.
|
4416
4510
|
#
|
4417
4511
|
# @option params [Boolean] :grantee
|
@@ -4552,10 +4646,10 @@ module Aws::Redshift
|
|
4552
4646
|
# An optional parameter that specifies the starting point to return a
|
4553
4647
|
# set of response records. When the results of a
|
4554
4648
|
# DescribeEventSubscriptions request exceed the value specified in
|
4555
|
-
# `MaxRecords`,
|
4556
|
-
# response. You can retrieve the next set of response
|
4557
|
-
# providing the returned marker value in the `Marker`
|
4558
|
-
# retrying the request.
|
4649
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4650
|
+
# field of the response. You can retrieve the next set of response
|
4651
|
+
# records by providing the returned marker value in the `Marker`
|
4652
|
+
# parameter and retrying the request.
|
4559
4653
|
#
|
4560
4654
|
# @option params [Array<String>] :tag_keys
|
4561
4655
|
# A tag key or keys for which you want to return all matching event
|
@@ -4710,10 +4804,10 @@ module Aws::Redshift
|
|
4710
4804
|
# @option params [String] :marker
|
4711
4805
|
# An optional parameter that specifies the starting point to return a
|
4712
4806
|
# set of response records. When the results of a DescribeEvents request
|
4713
|
-
# exceed the value specified in `MaxRecords`,
|
4714
|
-
# `Marker` field of the response. You can
|
4715
|
-
# response records by providing the returned
|
4716
|
-
# `Marker` parameter and retrying the request.
|
4807
|
+
# exceed the value specified in `MaxRecords`, Amazon Web Services
|
4808
|
+
# returns a value in the `Marker` field of the response. You can
|
4809
|
+
# retrieve the next set of response records by providing the returned
|
4810
|
+
# marker value in the `Marker` parameter and retrying the request.
|
4717
4811
|
#
|
4718
4812
|
# @return [Types::EventsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4719
4813
|
#
|
@@ -4758,7 +4852,7 @@ module Aws::Redshift
|
|
4758
4852
|
|
4759
4853
|
# Returns information about the specified HSM client certificate. If no
|
4760
4854
|
# certificate ID is specified, returns information about all the HSM
|
4761
|
-
# certificates owned by your
|
4855
|
+
# certificates owned by your account.
|
4762
4856
|
#
|
4763
4857
|
# If you specify both tag keys and tag values in the same request,
|
4764
4858
|
# Amazon Redshift returns all HSM client certificates that match any
|
@@ -4774,7 +4868,7 @@ module Aws::Redshift
|
|
4774
4868
|
# @option params [String] :hsm_client_certificate_identifier
|
4775
4869
|
# The identifier of a specific HSM client certificate for which you want
|
4776
4870
|
# information. If no identifier is specified, information is returned
|
4777
|
-
# for all HSM client certificates owned by your
|
4871
|
+
# for all HSM client certificates owned by your account.
|
4778
4872
|
#
|
4779
4873
|
# @option params [Integer] :max_records
|
4780
4874
|
# The maximum number of response records to return in each call. If the
|
@@ -4791,10 +4885,10 @@ module Aws::Redshift
|
|
4791
4885
|
# An optional parameter that specifies the starting point to return a
|
4792
4886
|
# set of response records. When the results of a
|
4793
4887
|
# DescribeHsmClientCertificates request exceed the value specified in
|
4794
|
-
# `MaxRecords`,
|
4795
|
-
# response. You can retrieve the next set of response
|
4796
|
-
# providing the returned marker value in the `Marker`
|
4797
|
-
# retrying the request.
|
4888
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4889
|
+
# field of the response. You can retrieve the next set of response
|
4890
|
+
# records by providing the returned marker value in the `Marker`
|
4891
|
+
# parameter and retrying the request.
|
4798
4892
|
#
|
4799
4893
|
# @option params [Array<String>] :tag_keys
|
4800
4894
|
# A tag key or keys for which you want to return all matching HSM client
|
@@ -4852,8 +4946,7 @@ module Aws::Redshift
|
|
4852
4946
|
|
4853
4947
|
# Returns information about the specified Amazon Redshift HSM
|
4854
4948
|
# configuration. If no configuration ID is specified, returns
|
4855
|
-
# information about all the HSM configurations owned by your
|
4856
|
-
# customer account.
|
4949
|
+
# information about all the HSM configurations owned by your account.
|
4857
4950
|
#
|
4858
4951
|
# If you specify both tag keys and tag values in the same request,
|
4859
4952
|
# Amazon Redshift returns all HSM connections that match any combination
|
@@ -4869,7 +4962,7 @@ module Aws::Redshift
|
|
4869
4962
|
# @option params [String] :hsm_configuration_identifier
|
4870
4963
|
# The identifier of a specific Amazon Redshift HSM configuration to be
|
4871
4964
|
# described. If no identifier is specified, information is returned for
|
4872
|
-
# all HSM configurations owned by your
|
4965
|
+
# all HSM configurations owned by your account.
|
4873
4966
|
#
|
4874
4967
|
# @option params [Integer] :max_records
|
4875
4968
|
# The maximum number of response records to return in each call. If the
|
@@ -4886,10 +4979,10 @@ module Aws::Redshift
|
|
4886
4979
|
# An optional parameter that specifies the starting point to return a
|
4887
4980
|
# set of response records. When the results of a
|
4888
4981
|
# DescribeHsmConfigurations request exceed the value specified in
|
4889
|
-
# `MaxRecords`,
|
4890
|
-
# response. You can retrieve the next set of response
|
4891
|
-
# providing the returned marker value in the `Marker`
|
4892
|
-
# retrying the request.
|
4982
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4983
|
+
# field of the response. You can retrieve the next set of response
|
4984
|
+
# records by providing the returned marker value in the `Marker`
|
4985
|
+
# parameter and retrying the request.
|
4893
4986
|
#
|
4894
4987
|
# @option params [Array<String>] :tag_keys
|
4895
4988
|
# A tag key or keys for which you want to return all matching HSM
|
@@ -5008,9 +5101,8 @@ module Aws::Redshift
|
|
5008
5101
|
# configurations.
|
5009
5102
|
#
|
5010
5103
|
# @option params [String] :owner_account
|
5011
|
-
# The
|
5012
|
-
#
|
5013
|
-
# the snapshot.
|
5104
|
+
# The account used to create or copy the snapshot. Required if you are
|
5105
|
+
# restoring a snapshot you do not own, optional if you own the snapshot.
|
5014
5106
|
#
|
5015
5107
|
# @option params [Array<Types::NodeConfigurationOptionsFilter>] :filters
|
5016
5108
|
# A set of name, operator, and value items to filter the results.
|
@@ -5019,10 +5111,10 @@ module Aws::Redshift
|
|
5019
5111
|
# An optional parameter that specifies the starting point to return a
|
5020
5112
|
# set of response records. When the results of a
|
5021
5113
|
# DescribeNodeConfigurationOptions request exceed the value specified in
|
5022
|
-
# `MaxRecords`,
|
5023
|
-
# response. You can retrieve the next set of response
|
5024
|
-
# providing the returned marker value in the `Marker`
|
5025
|
-
# retrying the request.
|
5114
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
5115
|
+
# field of the response. You can retrieve the next set of response
|
5116
|
+
# records by providing the returned marker value in the `Marker`
|
5117
|
+
# parameter and retrying the request.
|
5026
5118
|
#
|
5027
5119
|
# @option params [Integer] :max_records
|
5028
5120
|
# The maximum number of response records to return in each call. If the
|
@@ -5080,12 +5172,12 @@ module Aws::Redshift
|
|
5080
5172
|
|
5081
5173
|
# Returns a list of orderable cluster options. Before you create a new
|
5082
5174
|
# cluster you can use this operation to find what options are available,
|
5083
|
-
# such as the EC2 Availability Zones (AZ) in the specific
|
5084
|
-
#
|
5085
|
-
#
|
5086
|
-
#
|
5087
|
-
#
|
5088
|
-
#
|
5175
|
+
# such as the EC2 Availability Zones (AZ) in the specific Region that
|
5176
|
+
# you can specify, and the node types you can request. The node types
|
5177
|
+
# differ by available storage, memory, CPU and price. With the cost
|
5178
|
+
# involved you might want to obtain a list of cluster options in the
|
5179
|
+
# specific region and specify values when creating a cluster. For more
|
5180
|
+
# information about managing clusters, go to [Amazon Redshift
|
5089
5181
|
# Clusters][1] in the *Amazon Redshift Cluster Management Guide*.
|
5090
5182
|
#
|
5091
5183
|
#
|
@@ -5120,10 +5212,10 @@ module Aws::Redshift
|
|
5120
5212
|
# An optional parameter that specifies the starting point to return a
|
5121
5213
|
# set of response records. When the results of a
|
5122
5214
|
# DescribeOrderableClusterOptions request exceed the value specified in
|
5123
|
-
# `MaxRecords`,
|
5124
|
-
# response. You can retrieve the next set of response
|
5125
|
-
# providing the returned marker value in the `Marker`
|
5126
|
-
# retrying the request.
|
5215
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
5216
|
+
# field of the response. You can retrieve the next set of response
|
5217
|
+
# records by providing the returned marker value in the `Marker`
|
5218
|
+
# parameter and retrying the request.
|
5127
5219
|
#
|
5128
5220
|
# @return [Types::OrderableClusterOptionsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5129
5221
|
#
|
@@ -5166,7 +5258,7 @@ module Aws::Redshift
|
|
5166
5258
|
# cluster.
|
5167
5259
|
#
|
5168
5260
|
# @option params [required, String] :account_id
|
5169
|
-
# The
|
5261
|
+
# The Region ID that owns the cluster.
|
5170
5262
|
#
|
5171
5263
|
# @option params [required, String] :cluster_identifier
|
5172
5264
|
# The cluster identifier of the cluster whose partner integration is
|
@@ -5246,10 +5338,10 @@ module Aws::Redshift
|
|
5246
5338
|
# An optional parameter that specifies the starting point to return a
|
5247
5339
|
# set of response records. When the results of a
|
5248
5340
|
# DescribeReservedNodeOfferings request exceed the value specified in
|
5249
|
-
# `MaxRecords`,
|
5250
|
-
# response. You can retrieve the next set of response
|
5251
|
-
# providing the returned marker value in the `Marker`
|
5252
|
-
# retrying the request.
|
5341
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
5342
|
+
# field of the response. You can retrieve the next set of response
|
5343
|
+
# records by providing the returned marker value in the `Marker`
|
5344
|
+
# parameter and retrying the request.
|
5253
5345
|
#
|
5254
5346
|
# @return [Types::ReservedNodeOfferingsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5255
5347
|
#
|
@@ -5310,10 +5402,11 @@ module Aws::Redshift
|
|
5310
5402
|
# @option params [String] :marker
|
5311
5403
|
# An optional parameter that specifies the starting point to return a
|
5312
5404
|
# set of response records. When the results of a DescribeReservedNodes
|
5313
|
-
# request exceed the value specified in `MaxRecords`,
|
5314
|
-
# value in the `Marker` field of the response. You
|
5315
|
-
# set of response records by providing the
|
5316
|
-
# `Marker` parameter and retrying the
|
5405
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
5406
|
+
# Services returns a value in the `Marker` field of the response. You
|
5407
|
+
# can retrieve the next set of response records by providing the
|
5408
|
+
# returned marker value in the `Marker` parameter and retrying the
|
5409
|
+
# request.
|
5317
5410
|
#
|
5318
5411
|
# @return [Types::ReservedNodesMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5319
5412
|
#
|
@@ -5372,8 +5465,8 @@ module Aws::Redshift
|
|
5372
5465
|
# The unique identifier of a cluster whose resize progress you are
|
5373
5466
|
# requesting. This parameter is case-sensitive.
|
5374
5467
|
#
|
5375
|
-
# By default, resize operations for all clusters defined for an
|
5376
|
-
#
|
5468
|
+
# By default, resize operations for all clusters defined for an account
|
5469
|
+
# are returned.
|
5377
5470
|
#
|
5378
5471
|
# @return [Types::ResizeProgressMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5379
5472
|
#
|
@@ -5460,10 +5553,10 @@ module Aws::Redshift
|
|
5460
5553
|
# An optional parameter that specifies the starting point to return a
|
5461
5554
|
# set of response records. When the results of a
|
5462
5555
|
# DescribeScheduledActions request exceed the value specified in
|
5463
|
-
# `MaxRecords`,
|
5464
|
-
# response. You can retrieve the next set of response
|
5465
|
-
# providing the returned marker value in the `Marker`
|
5466
|
-
# retrying the request.
|
5556
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
5557
|
+
# field of the response. You can retrieve the next set of response
|
5558
|
+
# records by providing the returned marker value in the `Marker`
|
5559
|
+
# parameter and retrying the request.
|
5467
5560
|
#
|
5468
5561
|
# @option params [Integer] :max_records
|
5469
5562
|
# The maximum number of response records to return in each call. If the
|
@@ -5531,7 +5624,7 @@ module Aws::Redshift
|
|
5531
5624
|
req.send_request(options)
|
5532
5625
|
end
|
5533
5626
|
|
5534
|
-
# Returns a list of snapshot copy grants owned by the
|
5627
|
+
# Returns a list of snapshot copy grants owned by the account in the
|
5535
5628
|
# destination region.
|
5536
5629
|
#
|
5537
5630
|
# For more information about managing snapshot copy grants, go to
|
@@ -5560,10 +5653,10 @@ module Aws::Redshift
|
|
5560
5653
|
# An optional parameter that specifies the starting point to return a
|
5561
5654
|
# set of response records. When the results of a
|
5562
5655
|
# `DescribeSnapshotCopyGrant` request exceed the value specified in
|
5563
|
-
# `MaxRecords`,
|
5564
|
-
# response. You can retrieve the next set of response
|
5565
|
-
# providing the returned marker value in the `Marker`
|
5566
|
-
# retrying the request.
|
5656
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
5657
|
+
# field of the response. You can retrieve the next set of response
|
5658
|
+
# records by providing the returned marker value in the `Marker`
|
5659
|
+
# parameter and retrying the request.
|
5567
5660
|
#
|
5568
5661
|
# Constraints: You can specify either the **SnapshotCopyGrantName**
|
5569
5662
|
# parameter or the **Marker** parameter, but not both.
|
@@ -5961,10 +6054,11 @@ module Aws::Redshift
|
|
5961
6054
|
# @option params [String] :marker
|
5962
6055
|
# An optional parameter that specifies the starting point to return a
|
5963
6056
|
# set of response records. When the results of a DescribeUsageLimits
|
5964
|
-
# request exceed the value specified in `MaxRecords`,
|
5965
|
-
# value in the `Marker` field of the response. You
|
5966
|
-
# set of response records by providing the
|
5967
|
-
# `Marker` parameter and retrying the
|
6057
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
6058
|
+
# Services returns a value in the `Marker` field of the response. You
|
6059
|
+
# can retrieve the next set of response records by providing the
|
6060
|
+
# returned marker value in the `Marker` parameter and retrying the
|
6061
|
+
# request.
|
5968
6062
|
#
|
5969
6063
|
# @option params [Array<String>] :tag_keys
|
5970
6064
|
# A tag key or keys for which you want to return all matching usage
|
@@ -6072,9 +6166,9 @@ module Aws::Redshift
|
|
6072
6166
|
# region for a specified cluster.
|
6073
6167
|
#
|
6074
6168
|
# If your cluster and its snapshots are encrypted using a customer
|
6075
|
-
# master key (CMK) from
|
6076
|
-
# the grant that grants Amazon
|
6077
|
-
# destination region.
|
6169
|
+
# master key (CMK) from Key Management Service, use
|
6170
|
+
# DeleteSnapshotCopyGrant to delete the grant that grants Amazon
|
6171
|
+
# Redshift permission to the CMK in the destination region.
|
6078
6172
|
#
|
6079
6173
|
# @option params [required, String] :cluster_identifier
|
6080
6174
|
# The unique identifier of the source cluster that you want to disable
|
@@ -6297,11 +6391,11 @@ module Aws::Redshift
|
|
6297
6391
|
# not already have cross-region snapshot copy enabled.
|
6298
6392
|
#
|
6299
6393
|
# @option params [required, String] :destination_region
|
6300
|
-
# The destination
|
6394
|
+
# The destination Region that you want to copy snapshots to.
|
6301
6395
|
#
|
6302
|
-
# Constraints: Must be the name of a valid
|
6303
|
-
#
|
6304
|
-
#
|
6396
|
+
# Constraints: Must be the name of a valid Region. For more information,
|
6397
|
+
# see [Regions and Endpoints][1] in the Amazon Web Services General
|
6398
|
+
# Reference.
|
6305
6399
|
#
|
6306
6400
|
#
|
6307
6401
|
#
|
@@ -6316,13 +6410,14 @@ module Aws::Redshift
|
|
6316
6410
|
# Constraints: Must be at least 1 and no more than 35.
|
6317
6411
|
#
|
6318
6412
|
# @option params [String] :snapshot_copy_grant_name
|
6319
|
-
# The name of the snapshot copy grant to use when snapshots of an
|
6320
|
-
# KMS-encrypted cluster are copied to the destination
|
6413
|
+
# The name of the snapshot copy grant to use when snapshots of an Amazon
|
6414
|
+
# Web Services KMS-encrypted cluster are copied to the destination
|
6415
|
+
# region.
|
6321
6416
|
#
|
6322
6417
|
# @option params [Integer] :manual_snapshot_retention_period
|
6323
6418
|
# The number of days to retain newly copied snapshots in the destination
|
6324
|
-
#
|
6325
|
-
#
|
6419
|
+
# Region after they are copied from the source Region. If the value is
|
6420
|
+
# -1, the manual snapshot is retained indefinitely.
|
6326
6421
|
#
|
6327
6422
|
# The value must be either -1 or an integer between 1 and 3,653.
|
6328
6423
|
#
|
@@ -6471,7 +6566,7 @@ module Aws::Redshift
|
|
6471
6566
|
# Authentication to Generate Database User Credentials][1] in the Amazon
|
6472
6567
|
# Redshift Cluster Management Guide.
|
6473
6568
|
#
|
6474
|
-
# The
|
6569
|
+
# The Identity and Access Management (IAM) user or role that runs
|
6475
6570
|
# GetClusterCredentials must have an IAM policy attached that allows
|
6476
6571
|
# access to all necessary actions and resources. For more information
|
6477
6572
|
# about permissions, see [Resource Policies for
|
@@ -6684,7 +6779,7 @@ module Aws::Redshift
|
|
6684
6779
|
# The new value of AQUA configuration status. Possible values include
|
6685
6780
|
# the following.
|
6686
6781
|
#
|
6687
|
-
# * enabled - Use AQUA if it is available for the current
|
6782
|
+
# * enabled - Use AQUA if it is available for the current Region and
|
6688
6783
|
# Amazon Redshift node type.
|
6689
6784
|
#
|
6690
6785
|
# * disabled - Don't use AQUA.
|
@@ -6716,6 +6811,42 @@ module Aws::Redshift
|
|
6716
6811
|
req.send_request(options)
|
6717
6812
|
end
|
6718
6813
|
|
6814
|
+
# Modifies an authentication profile.
|
6815
|
+
#
|
6816
|
+
# @option params [required, String] :authentication_profile_name
|
6817
|
+
# The name of the authentication profile to replace.
|
6818
|
+
#
|
6819
|
+
# @option params [required, String] :authentication_profile_content
|
6820
|
+
# The new content of the authentication profile in JSON format. The
|
6821
|
+
# maximum length of the JSON string is determined by a quota for your
|
6822
|
+
# account.
|
6823
|
+
#
|
6824
|
+
# @return [Types::ModifyAuthenticationProfileResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6825
|
+
#
|
6826
|
+
# * {Types::ModifyAuthenticationProfileResult#authentication_profile_name #authentication_profile_name} => String
|
6827
|
+
# * {Types::ModifyAuthenticationProfileResult#authentication_profile_content #authentication_profile_content} => String
|
6828
|
+
#
|
6829
|
+
# @example Request syntax with placeholder values
|
6830
|
+
#
|
6831
|
+
# resp = client.modify_authentication_profile({
|
6832
|
+
# authentication_profile_name: "AuthenticationProfileNameString", # required
|
6833
|
+
# authentication_profile_content: "String", # required
|
6834
|
+
# })
|
6835
|
+
#
|
6836
|
+
# @example Response structure
|
6837
|
+
#
|
6838
|
+
# resp.authentication_profile_name #=> String
|
6839
|
+
# resp.authentication_profile_content #=> String
|
6840
|
+
#
|
6841
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyAuthenticationProfile AWS API Documentation
|
6842
|
+
#
|
6843
|
+
# @overload modify_authentication_profile(params = {})
|
6844
|
+
# @param [Hash] params ({})
|
6845
|
+
def modify_authentication_profile(params = {}, options = {})
|
6846
|
+
req = build_request(:modify_authentication_profile, params)
|
6847
|
+
req.send_request(options)
|
6848
|
+
end
|
6849
|
+
|
6719
6850
|
# Modifies the settings for a cluster.
|
6720
6851
|
#
|
6721
6852
|
# You can also change node type and the number of nodes to scale up or
|
@@ -6723,7 +6854,7 @@ module Aws::Redshift
|
|
6723
6854
|
# number of nodes and the node type even if one of the parameters does
|
6724
6855
|
# not change.
|
6725
6856
|
#
|
6726
|
-
# You can add another security or parameter group, or change the
|
6857
|
+
# You can add another security or parameter group, or change the admin
|
6727
6858
|
# user password. Resetting a cluster password or modifying the security
|
6728
6859
|
# groups associated with a cluster do not need a reboot. However,
|
6729
6860
|
# modifying a parameter group requires a reboot for parameters to take
|
@@ -6803,14 +6934,14 @@ module Aws::Redshift
|
|
6803
6934
|
# possible.
|
6804
6935
|
#
|
6805
6936
|
# @option params [String] :master_user_password
|
6806
|
-
# The new password for the cluster
|
6937
|
+
# The new password for the cluster admin user. This change is
|
6807
6938
|
# asynchronously applied as soon as possible. Between the time of the
|
6808
6939
|
# request and the completion of the request, the `MasterUserPassword`
|
6809
6940
|
# element exists in the `PendingModifiedValues` element of the operation
|
6810
6941
|
# response.
|
6811
6942
|
#
|
6812
6943
|
# <note markdown="1"> Operations never return the password, so this operation provides a way
|
6813
|
-
# to regain access to the
|
6944
|
+
# to regain access to the admin user account for a cluster if the
|
6814
6945
|
# password is lost.
|
6815
6946
|
#
|
6816
6947
|
# </note>
|
@@ -6930,7 +7061,7 @@ module Aws::Redshift
|
|
6930
7061
|
#
|
6931
7062
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
6932
7063
|
#
|
6933
|
-
# * Must be unique for all clusters within an
|
7064
|
+
# * Must be unique for all clusters within an account.
|
6934
7065
|
#
|
6935
7066
|
# Example: `examplecluster`
|
6936
7067
|
#
|
@@ -6983,8 +7114,8 @@ module Aws::Redshift
|
|
6983
7114
|
# If the value is not encrypted (false), then the cluster is decrypted.
|
6984
7115
|
#
|
6985
7116
|
# @option params [String] :kms_key_id
|
6986
|
-
# The
|
6987
|
-
#
|
7117
|
+
# The Key Management Service (KMS) key ID of the encryption key that you
|
7118
|
+
# want to use to encrypt data in the cluster.
|
6988
7119
|
#
|
6989
7120
|
# @option params [Boolean] :availability_zone_relocation
|
6990
7121
|
# The option to enable relocation for an Amazon Redshift cluster between
|
@@ -7295,8 +7426,9 @@ module Aws::Redshift
|
|
7295
7426
|
req.send_request(options)
|
7296
7427
|
end
|
7297
7428
|
|
7298
|
-
# Modifies the list of
|
7299
|
-
#
|
7429
|
+
# Modifies the list of Identity and Access Management (IAM) roles that
|
7430
|
+
# can be used by the cluster to access other Amazon Web Services
|
7431
|
+
# services.
|
7300
7432
|
#
|
7301
7433
|
# A cluster can have up to 10 IAM roles associated at any time.
|
7302
7434
|
#
|
@@ -7909,8 +8041,8 @@ module Aws::Redshift
|
|
7909
8041
|
# The type of source that will be generating the events. For example, if
|
7910
8042
|
# you want to be notified of events generated by a cluster, you would
|
7911
8043
|
# set this parameter to cluster. If this value is not specified, events
|
7912
|
-
# are returned for all Amazon Redshift objects in your
|
7913
|
-
#
|
8044
|
+
# are returned for all Amazon Redshift objects in your account. You must
|
8045
|
+
# specify a source type in order to specify source IDs.
|
7914
8046
|
#
|
7915
8047
|
# Valid values: cluster, cluster-parameter-group,
|
7916
8048
|
# cluster-security-group, cluster-snapshot, and scheduled-action.
|
@@ -8084,9 +8216,9 @@ module Aws::Redshift
|
|
8084
8216
|
req.send_request(options)
|
8085
8217
|
end
|
8086
8218
|
|
8087
|
-
# Modifies the number of days to retain snapshots in the destination
|
8088
|
-
# Region after they are copied from the source
|
8089
|
-
#
|
8219
|
+
# Modifies the number of days to retain snapshots in the destination
|
8220
|
+
# Region after they are copied from the source Region. By default, this
|
8221
|
+
# operation only changes the retention period of copied automated
|
8090
8222
|
# snapshots. The retention periods for both new and existing copied
|
8091
8223
|
# automated snapshots are updated with the new retention period. You can
|
8092
8224
|
# set the manual option to change only the retention periods of copied
|
@@ -8096,22 +8228,22 @@ module Aws::Redshift
|
|
8096
8228
|
# @option params [required, String] :cluster_identifier
|
8097
8229
|
# The unique identifier of the cluster for which you want to change the
|
8098
8230
|
# retention period for either automated or manual snapshots that are
|
8099
|
-
# copied to a destination
|
8231
|
+
# copied to a destination Region.
|
8100
8232
|
#
|
8101
8233
|
# Constraints: Must be the valid name of an existing cluster that has
|
8102
8234
|
# cross-region snapshot copy enabled.
|
8103
8235
|
#
|
8104
8236
|
# @option params [required, Integer] :retention_period
|
8105
8237
|
# The number of days to retain automated snapshots in the destination
|
8106
|
-
#
|
8238
|
+
# Region after they are copied from the source Region.
|
8107
8239
|
#
|
8108
8240
|
# By default, this only changes the retention period of copied automated
|
8109
8241
|
# snapshots.
|
8110
8242
|
#
|
8111
8243
|
# If you decrease the retention period for automated snapshots that are
|
8112
|
-
# copied to a destination
|
8113
|
-
#
|
8114
|
-
#
|
8244
|
+
# copied to a destination Region, Amazon Redshift deletes any existing
|
8245
|
+
# automated snapshots that were copied to the destination Region and
|
8246
|
+
# that fall outside of the new retention period.
|
8115
8247
|
#
|
8116
8248
|
# Constraints: Must be at least 1 and no more than 35 for automated
|
8117
8249
|
# snapshots.
|
@@ -8990,7 +9122,7 @@ module Aws::Redshift
|
|
8990
9122
|
#
|
8991
9123
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
8992
9124
|
#
|
8993
|
-
# * Must be unique for all clusters within an
|
9125
|
+
# * Must be unique for all clusters within an account.
|
8994
9126
|
#
|
8995
9127
|
# @option params [required, String] :snapshot_identifier
|
8996
9128
|
# The name of the snapshot from which to create the new cluster. This
|
@@ -9036,9 +9168,8 @@ module Aws::Redshift
|
|
9036
9168
|
# If `true`, the cluster can be accessed from a public network.
|
9037
9169
|
#
|
9038
9170
|
# @option params [String] :owner_account
|
9039
|
-
# The
|
9040
|
-
#
|
9041
|
-
# the snapshot.
|
9171
|
+
# The account used to create or copy the snapshot. Required if you are
|
9172
|
+
# restoring a snapshot you do not own, optional if you own the snapshot.
|
9042
9173
|
#
|
9043
9174
|
# @option params [String] :hsm_client_certificate_identifier
|
9044
9175
|
# Specifies the name of the HSM client certificate the Amazon Redshift
|
@@ -9128,8 +9259,8 @@ module Aws::Redshift
|
|
9128
9259
|
# The value must be either -1 or an integer between 1 and 3,653.
|
9129
9260
|
#
|
9130
9261
|
# @option params [String] :kms_key_id
|
9131
|
-
# The
|
9132
|
-
#
|
9262
|
+
# The Key Management Service (KMS) key ID of the encryption key that you
|
9263
|
+
# want to use to encrypt data in the cluster that you restore from a
|
9133
9264
|
# shared snapshot.
|
9134
9265
|
#
|
9135
9266
|
# @option params [String] :node_type
|
@@ -9171,10 +9302,10 @@ module Aws::Redshift
|
|
9171
9302
|
# Reserved.
|
9172
9303
|
#
|
9173
9304
|
# @option params [Array<String>] :iam_roles
|
9174
|
-
# A list of
|
9175
|
-
#
|
9176
|
-
# IAM roles in their Amazon Resource Name (ARN) format. You
|
9177
|
-
# up to 10 IAM roles in a single request.
|
9305
|
+
# A list of Identity and Access Management (IAM) roles that can be used
|
9306
|
+
# by the cluster to access other Amazon Web Services services. You must
|
9307
|
+
# supply the IAM roles in their Amazon Resource Name (ARN) format. You
|
9308
|
+
# can supply up to 10 IAM roles in a single request.
|
9178
9309
|
#
|
9179
9310
|
# A cluster can have up to 10 IAM roles associated at any time.
|
9180
9311
|
#
|
@@ -9202,7 +9333,7 @@ module Aws::Redshift
|
|
9202
9333
|
# (Advanced Query Accelerator) after the cluster is restored. Possible
|
9203
9334
|
# values include the following.
|
9204
9335
|
#
|
9205
|
-
# * enabled - Use AQUA if it is available for the current
|
9336
|
+
# * enabled - Use AQUA if it is available for the current Region and
|
9206
9337
|
# Amazon Redshift node type.
|
9207
9338
|
#
|
9208
9339
|
# * disabled - Don't use AQUA.
|
@@ -9620,11 +9751,11 @@ module Aws::Redshift
|
|
9620
9751
|
# also be provided and `CIDRIP` cannot be provided.
|
9621
9752
|
#
|
9622
9753
|
# @option params [String] :ec2_security_group_owner_id
|
9623
|
-
# The
|
9624
|
-
#
|
9625
|
-
# acceptable value. If `EC2SecurityGroupOwnerId` is
|
9626
|
-
# `EC2SecurityGroupName` must also be provided. and `CIDRIP`
|
9627
|
-
# provided.
|
9754
|
+
# The account number of the owner of the security group specified in the
|
9755
|
+
# `EC2SecurityGroupName` parameter. The Amazon Web Services access key
|
9756
|
+
# ID is not an acceptable value. If `EC2SecurityGroupOwnerId` is
|
9757
|
+
# specified, `EC2SecurityGroupName` must also be provided. and `CIDRIP`
|
9758
|
+
# cannot be provided.
|
9628
9759
|
#
|
9629
9760
|
# Example: `111122223333`
|
9630
9761
|
#
|
@@ -9677,7 +9808,7 @@ module Aws::Redshift
|
|
9677
9808
|
# The cluster to revoke access from.
|
9678
9809
|
#
|
9679
9810
|
# @option params [String] :account
|
9680
|
-
# The
|
9811
|
+
# The account ID whose access is to be revoked.
|
9681
9812
|
#
|
9682
9813
|
# @option params [Array<String>] :vpc_ids
|
9683
9814
|
# The virtual private cloud (VPC) identifiers for which access is to be
|
@@ -9731,9 +9862,9 @@ module Aws::Redshift
|
|
9731
9862
|
req.send_request(options)
|
9732
9863
|
end
|
9733
9864
|
|
9734
|
-
# Removes the ability of the specified
|
9735
|
-
#
|
9736
|
-
#
|
9865
|
+
# Removes the ability of the specified account to restore the specified
|
9866
|
+
# snapshot. If the account is currently restoring the snapshot, the
|
9867
|
+
# restore will run to completion.
|
9737
9868
|
#
|
9738
9869
|
# For more information about working with snapshots, go to [Amazon
|
9739
9870
|
# Redshift Snapshots][1] in the *Amazon Redshift Cluster Management
|
@@ -9753,8 +9884,8 @@ module Aws::Redshift
|
|
9753
9884
|
# the cluster name.
|
9754
9885
|
#
|
9755
9886
|
# @option params [required, String] :account_with_restore_access
|
9756
|
-
# The identifier of the
|
9757
|
-
#
|
9887
|
+
# The identifier of the account that can no longer restore the specified
|
9888
|
+
# snapshot.
|
9758
9889
|
#
|
9759
9890
|
# @return [Types::RevokeSnapshotAccessResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9760
9891
|
#
|
@@ -9961,7 +10092,7 @@ module Aws::Redshift
|
|
9961
10092
|
# Updates the status of a partner integration.
|
9962
10093
|
#
|
9963
10094
|
# @option params [required, String] :account_id
|
9964
|
-
# The
|
10095
|
+
# The Region ID that owns the cluster.
|
9965
10096
|
#
|
9966
10097
|
# @option params [required, String] :cluster_identifier
|
9967
10098
|
# The cluster identifier of the cluster whose partner integration status
|
@@ -10023,7 +10154,7 @@ module Aws::Redshift
|
|
10023
10154
|
params: params,
|
10024
10155
|
config: config)
|
10025
10156
|
context[:gem_name] = 'aws-sdk-redshift'
|
10026
|
-
context[:gem_version] = '1.
|
10157
|
+
context[:gem_version] = '1.65.0'
|
10027
10158
|
Seahorse::Client::Request.new(handlers, context)
|
10028
10159
|
end
|
10029
10160
|
|