aws-sdk-redshift 1.61.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift.rb +1 -1
- data/lib/aws-sdk-redshift/client.rb +541 -200
- data/lib/aws-sdk-redshift/client_api.rb +212 -0
- data/lib/aws-sdk-redshift/errors.rb +66 -0
- data/lib/aws-sdk-redshift/types.rb +657 -226
- metadata +3 -4
@@ -93,17 +93,16 @@ module Aws::Redshift
|
|
93
93
|
include Aws::Structure
|
94
94
|
end
|
95
95
|
|
96
|
-
# Describes an
|
96
|
+
# Describes an account authorized to restore a snapshot.
|
97
97
|
#
|
98
98
|
# @!attribute [rw] account_id
|
99
|
-
# The identifier of an
|
100
|
-
# snapshot.
|
99
|
+
# The identifier of an account authorized to restore a snapshot.
|
101
100
|
# @return [String]
|
102
101
|
#
|
103
102
|
# @!attribute [rw] account_alias
|
104
|
-
# The identifier of an
|
105
|
-
# snapshot. For
|
106
|
-
# `amazon-redshift-support`.
|
103
|
+
# The identifier of an Amazon Web Services support account authorized
|
104
|
+
# to restore a snapshot. For Amazon Web Services Support, the
|
105
|
+
# identifier is `amazon-redshift-support`.
|
107
106
|
# @return [String]
|
108
107
|
#
|
109
108
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AccountWithRestoreAccess AWS API Documentation
|
@@ -132,8 +131,8 @@ module Aws::Redshift
|
|
132
131
|
# The value represents how the cluster is configured to use AQUA.
|
133
132
|
# Possible values include the following.
|
134
133
|
#
|
135
|
-
# * enabled - Use AQUA if it is available for the current
|
136
|
-
#
|
134
|
+
# * enabled - Use AQUA if it is available for the current Region and
|
135
|
+
# Amazon Redshift node type.
|
137
136
|
#
|
138
137
|
# * disabled - Don't use AQUA.
|
139
138
|
#
|
@@ -163,6 +162,47 @@ module Aws::Redshift
|
|
163
162
|
include Aws::Structure
|
164
163
|
end
|
165
164
|
|
165
|
+
# Describes an authentication profile.
|
166
|
+
#
|
167
|
+
# @!attribute [rw] authentication_profile_name
|
168
|
+
# The name of the authentication profile.
|
169
|
+
# @return [String]
|
170
|
+
#
|
171
|
+
# @!attribute [rw] authentication_profile_content
|
172
|
+
# The content of the authentication profile in JSON format. The
|
173
|
+
# maximum length of the JSON string is determined by a quota for your
|
174
|
+
# account.
|
175
|
+
# @return [String]
|
176
|
+
#
|
177
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AuthenticationProfile AWS API Documentation
|
178
|
+
#
|
179
|
+
class AuthenticationProfile < Struct.new(
|
180
|
+
:authentication_profile_name,
|
181
|
+
:authentication_profile_content)
|
182
|
+
SENSITIVE = []
|
183
|
+
include Aws::Structure
|
184
|
+
end
|
185
|
+
|
186
|
+
# The authentication profile already exists.
|
187
|
+
#
|
188
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AuthenticationProfileAlreadyExistsFault AWS API Documentation
|
189
|
+
#
|
190
|
+
class AuthenticationProfileAlreadyExistsFault < Aws::EmptyStructure; end
|
191
|
+
|
192
|
+
# The authentication profile can't be found.
|
193
|
+
#
|
194
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AuthenticationProfileNotFoundFault AWS API Documentation
|
195
|
+
#
|
196
|
+
class AuthenticationProfileNotFoundFault < Aws::EmptyStructure; end
|
197
|
+
|
198
|
+
# The size or number of authentication profiles has exceeded the quota.
|
199
|
+
# The maximum length of the JSON string and maximum number of
|
200
|
+
# authentication profiles is determined by a quota for your account.
|
201
|
+
#
|
202
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AuthenticationProfileQuotaExceededFault AWS API Documentation
|
203
|
+
#
|
204
|
+
class AuthenticationProfileQuotaExceededFault < Aws::EmptyStructure; end
|
205
|
+
|
166
206
|
# The specified CIDR block or EC2 security group is already authorized
|
167
207
|
# for the specified cluster security group.
|
168
208
|
#
|
@@ -208,9 +248,9 @@ module Aws::Redshift
|
|
208
248
|
# @return [String]
|
209
249
|
#
|
210
250
|
# @!attribute [rw] ec2_security_group_owner_id
|
211
|
-
# The
|
212
|
-
#
|
213
|
-
# not an acceptable value.
|
251
|
+
# The account number of the owner of the security group specified by
|
252
|
+
# the *EC2SecurityGroupName* parameter. The Amazon Web Services Access
|
253
|
+
# Key ID is not an acceptable value.
|
214
254
|
#
|
215
255
|
# Example: `111122223333`
|
216
256
|
# @return [String]
|
@@ -252,7 +292,7 @@ module Aws::Redshift
|
|
252
292
|
# @return [String]
|
253
293
|
#
|
254
294
|
# @!attribute [rw] account
|
255
|
-
# The
|
295
|
+
# The account ID to grant access to.
|
256
296
|
# @return [String]
|
257
297
|
#
|
258
298
|
# @!attribute [rw] vpc_ids
|
@@ -290,10 +330,10 @@ module Aws::Redshift
|
|
290
330
|
# @return [String]
|
291
331
|
#
|
292
332
|
# @!attribute [rw] account_with_restore_access
|
293
|
-
# The identifier of the
|
294
|
-
#
|
333
|
+
# The identifier of the account authorized to restore the specified
|
334
|
+
# snapshot.
|
295
335
|
#
|
296
|
-
# To share a snapshot with
|
336
|
+
# To share a snapshot with Amazon Web Services Support, specify
|
297
337
|
# amazon-redshift-support.
|
298
338
|
# @return [String]
|
299
339
|
#
|
@@ -551,8 +591,8 @@ module Aws::Redshift
|
|
551
591
|
# @return [String]
|
552
592
|
#
|
553
593
|
# @!attribute [rw] master_username
|
554
|
-
# The
|
555
|
-
#
|
594
|
+
# The admin user name for the cluster. This name is used to connect to
|
595
|
+
# the database that is specified in the **DBName** parameter.
|
556
596
|
# @return [String]
|
557
597
|
#
|
558
598
|
# @!attribute [rw] db_name
|
@@ -698,8 +738,8 @@ module Aws::Redshift
|
|
698
738
|
# @return [Array<Types::Tag>]
|
699
739
|
#
|
700
740
|
# @!attribute [rw] kms_key_id
|
701
|
-
# The
|
702
|
-
#
|
741
|
+
# The Key Management Service (KMS) key ID of the encryption key used
|
742
|
+
# to encrypt data in the cluster.
|
703
743
|
# @return [String]
|
704
744
|
#
|
705
745
|
# @!attribute [rw] enhanced_vpc_routing
|
@@ -719,8 +759,8 @@ module Aws::Redshift
|
|
719
759
|
# @return [Boolean]
|
720
760
|
#
|
721
761
|
# @!attribute [rw] iam_roles
|
722
|
-
# A list of
|
723
|
-
# used by the cluster to access other
|
762
|
+
# A list of Identity and Access Management (IAM) roles that can be
|
763
|
+
# used by the cluster to access other Amazon Web Services services.
|
724
764
|
# @return [Array<Types::ClusterIamRole>]
|
725
765
|
#
|
726
766
|
# @!attribute [rw] pending_actions
|
@@ -953,8 +993,9 @@ module Aws::Redshift
|
|
953
993
|
include Aws::Structure
|
954
994
|
end
|
955
995
|
|
956
|
-
# An
|
957
|
-
#
|
996
|
+
# An Identity and Access Management (IAM) role that can be used by the
|
997
|
+
# associated Amazon Redshift cluster to access other Amazon Web Services
|
998
|
+
# services.
|
958
999
|
#
|
959
1000
|
# @!attribute [rw] iam_role_arn
|
960
1001
|
# The Amazon Resource Name (ARN) of the IAM role, for example,
|
@@ -1626,7 +1667,7 @@ module Aws::Redshift
|
|
1626
1667
|
#
|
1627
1668
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
1628
1669
|
#
|
1629
|
-
# * Must be unique for the
|
1670
|
+
# * Must be unique for the account that is making the request.
|
1630
1671
|
# @return [String]
|
1631
1672
|
#
|
1632
1673
|
# @!attribute [rw] manual_snapshot_retention_period
|
@@ -1668,6 +1709,50 @@ module Aws::Redshift
|
|
1668
1709
|
#
|
1669
1710
|
class CopyToRegionDisabledFault < Aws::EmptyStructure; end
|
1670
1711
|
|
1712
|
+
# @note When making an API call, you may pass CreateAuthenticationProfileMessage
|
1713
|
+
# data as a hash:
|
1714
|
+
#
|
1715
|
+
# {
|
1716
|
+
# authentication_profile_name: "AuthenticationProfileNameString", # required
|
1717
|
+
# authentication_profile_content: "String", # required
|
1718
|
+
# }
|
1719
|
+
#
|
1720
|
+
# @!attribute [rw] authentication_profile_name
|
1721
|
+
# The name of the authentication profile to be created.
|
1722
|
+
# @return [String]
|
1723
|
+
#
|
1724
|
+
# @!attribute [rw] authentication_profile_content
|
1725
|
+
# The content of the authentication profile in JSON format. The
|
1726
|
+
# maximum length of the JSON string is determined by a quota for your
|
1727
|
+
# account.
|
1728
|
+
# @return [String]
|
1729
|
+
#
|
1730
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateAuthenticationProfileMessage AWS API Documentation
|
1731
|
+
#
|
1732
|
+
class CreateAuthenticationProfileMessage < Struct.new(
|
1733
|
+
:authentication_profile_name,
|
1734
|
+
:authentication_profile_content)
|
1735
|
+
SENSITIVE = []
|
1736
|
+
include Aws::Structure
|
1737
|
+
end
|
1738
|
+
|
1739
|
+
# @!attribute [rw] authentication_profile_name
|
1740
|
+
# The name of the authentication profile that was created.
|
1741
|
+
# @return [String]
|
1742
|
+
#
|
1743
|
+
# @!attribute [rw] authentication_profile_content
|
1744
|
+
# The content of the authentication profile in JSON format.
|
1745
|
+
# @return [String]
|
1746
|
+
#
|
1747
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateAuthenticationProfileResult AWS API Documentation
|
1748
|
+
#
|
1749
|
+
class CreateAuthenticationProfileResult < Struct.new(
|
1750
|
+
:authentication_profile_name,
|
1751
|
+
:authentication_profile_content)
|
1752
|
+
SENSITIVE = []
|
1753
|
+
include Aws::Structure
|
1754
|
+
end
|
1755
|
+
|
1671
1756
|
# @note When making an API call, you may pass CreateClusterMessage
|
1672
1757
|
# data as a hash:
|
1673
1758
|
#
|
@@ -1754,7 +1839,7 @@ module Aws::Redshift
|
|
1754
1839
|
#
|
1755
1840
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
1756
1841
|
#
|
1757
|
-
# * Must be unique for all clusters within an
|
1842
|
+
# * Must be unique for all clusters within an account.
|
1758
1843
|
#
|
1759
1844
|
# Example: `myexamplecluster`
|
1760
1845
|
# @return [String]
|
@@ -1786,8 +1871,8 @@ module Aws::Redshift
|
|
1786
1871
|
# @return [String]
|
1787
1872
|
#
|
1788
1873
|
# @!attribute [rw] master_username
|
1789
|
-
# The user name associated with the
|
1790
|
-
#
|
1874
|
+
# The user name associated with the admin user account for the cluster
|
1875
|
+
# that is being created.
|
1791
1876
|
#
|
1792
1877
|
# Constraints:
|
1793
1878
|
#
|
@@ -1806,7 +1891,7 @@ module Aws::Redshift
|
|
1806
1891
|
# @return [String]
|
1807
1892
|
#
|
1808
1893
|
# @!attribute [rw] master_user_password
|
1809
|
-
# The password associated with the
|
1894
|
+
# The password associated with the admin user account for the cluster
|
1810
1895
|
# that is being created.
|
1811
1896
|
#
|
1812
1897
|
# Constraints:
|
@@ -2021,8 +2106,8 @@ module Aws::Redshift
|
|
2021
2106
|
# @return [Array<Types::Tag>]
|
2022
2107
|
#
|
2023
2108
|
# @!attribute [rw] kms_key_id
|
2024
|
-
# The
|
2025
|
-
#
|
2109
|
+
# The Key Management Service (KMS) key ID of the encryption key that
|
2110
|
+
# you want to use to encrypt data in the cluster.
|
2026
2111
|
# @return [String]
|
2027
2112
|
#
|
2028
2113
|
# @!attribute [rw] enhanced_vpc_routing
|
@@ -2046,10 +2131,10 @@ module Aws::Redshift
|
|
2046
2131
|
# @return [String]
|
2047
2132
|
#
|
2048
2133
|
# @!attribute [rw] iam_roles
|
2049
|
-
# A list of
|
2050
|
-
# used by the cluster to access other
|
2051
|
-
# the IAM roles in their Amazon Resource Name (ARN)
|
2052
|
-
# supply up to 10 IAM roles in a single request.
|
2134
|
+
# A list of Identity and Access Management (IAM) roles that can be
|
2135
|
+
# used by the cluster to access other Amazon Web Services services.
|
2136
|
+
# You must supply the IAM roles in their Amazon Resource Name (ARN)
|
2137
|
+
# format. You can supply up to 10 IAM roles in a single request.
|
2053
2138
|
#
|
2054
2139
|
# A cluster can have up to 10 IAM roles associated with it at any
|
2055
2140
|
# time.
|
@@ -2075,8 +2160,8 @@ module Aws::Redshift
|
|
2075
2160
|
# (Advanced Query Accelerator) when it is created. Possible values
|
2076
2161
|
# include the following.
|
2077
2162
|
#
|
2078
|
-
# * enabled - Use AQUA if it is available for the current
|
2079
|
-
#
|
2163
|
+
# * enabled - Use AQUA if it is available for the current Region and
|
2164
|
+
# Amazon Redshift node type.
|
2080
2165
|
#
|
2081
2166
|
# * disabled - Don't use AQUA.
|
2082
2167
|
#
|
@@ -2148,7 +2233,7 @@ module Aws::Redshift
|
|
2148
2233
|
#
|
2149
2234
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
2150
2235
|
#
|
2151
|
-
# * Must be unique withing your
|
2236
|
+
# * Must be unique withing your account.
|
2152
2237
|
#
|
2153
2238
|
# <note markdown="1"> This value is stored as a lower-case string.
|
2154
2239
|
#
|
@@ -2162,11 +2247,11 @@ module Aws::Redshift
|
|
2162
2247
|
#
|
2163
2248
|
# To get a list of valid parameter group family names, you can call
|
2164
2249
|
# DescribeClusterParameterGroups. By default, Amazon Redshift returns
|
2165
|
-
# a list of all the parameter groups that are owned by your
|
2166
|
-
#
|
2167
|
-
#
|
2168
|
-
#
|
2169
|
-
#
|
2250
|
+
# a list of all the parameter groups that are owned by your account,
|
2251
|
+
# including the default parameter groups for each Amazon Redshift
|
2252
|
+
# engine version. The parameter group family names associated with the
|
2253
|
+
# default parameter groups provide you the valid values. For example,
|
2254
|
+
# a valid family name is "redshift-1.0".
|
2170
2255
|
# @return [String]
|
2171
2256
|
#
|
2172
2257
|
# @!attribute [rw] description
|
@@ -2237,7 +2322,7 @@ module Aws::Redshift
|
|
2237
2322
|
# * Must not be "Default".
|
2238
2323
|
#
|
2239
2324
|
# * Must be unique for all security groups that are created by your
|
2240
|
-
#
|
2325
|
+
# account.
|
2241
2326
|
#
|
2242
2327
|
# Example: `examplesecuritygroup`
|
2243
2328
|
# @return [String]
|
@@ -2289,7 +2374,7 @@ module Aws::Redshift
|
|
2289
2374
|
#
|
2290
2375
|
# @!attribute [rw] snapshot_identifier
|
2291
2376
|
# A unique identifier for the snapshot that you are requesting. This
|
2292
|
-
# identifier must be unique for all snapshots within the
|
2377
|
+
# identifier must be unique for all snapshots within the account.
|
2293
2378
|
#
|
2294
2379
|
# Constraints:
|
2295
2380
|
#
|
@@ -2369,7 +2454,7 @@ module Aws::Redshift
|
|
2369
2454
|
#
|
2370
2455
|
# * Must not be "Default".
|
2371
2456
|
#
|
2372
|
-
# * Must be unique for all subnet groups that are created by your
|
2457
|
+
# * Must be unique for all subnet groups that are created by your
|
2373
2458
|
# account.
|
2374
2459
|
#
|
2375
2460
|
# Example: `examplesubnetgroup`
|
@@ -2427,8 +2512,8 @@ module Aws::Redshift
|
|
2427
2512
|
# @return [String]
|
2428
2513
|
#
|
2429
2514
|
# @!attribute [rw] resource_owner
|
2430
|
-
# The
|
2431
|
-
#
|
2515
|
+
# The account ID of the owner of the cluster. This is only required if
|
2516
|
+
# the cluster is in another account.
|
2432
2517
|
# @return [String]
|
2433
2518
|
#
|
2434
2519
|
# @!attribute [rw] endpoint_name
|
@@ -2505,9 +2590,8 @@ module Aws::Redshift
|
|
2505
2590
|
# The type of source that will be generating the events. For example,
|
2506
2591
|
# if you want to be notified of events generated by a cluster, you
|
2507
2592
|
# would set this parameter to cluster. If this value is not specified,
|
2508
|
-
# events are returned for all Amazon Redshift objects in your
|
2509
|
-
#
|
2510
|
-
# IDs.
|
2593
|
+
# events are returned for all Amazon Redshift objects in your account.
|
2594
|
+
# You must specify a source type in order to specify source IDs.
|
2511
2595
|
#
|
2512
2596
|
# Valid values: cluster, cluster-parameter-group,
|
2513
2597
|
# cluster-security-group, cluster-snapshot, and scheduled-action.
|
@@ -2806,7 +2890,7 @@ module Aws::Redshift
|
|
2806
2890
|
#
|
2807
2891
|
# @!attribute [rw] snapshot_copy_grant_name
|
2808
2892
|
# The name of the snapshot copy grant. This name must be unique in the
|
2809
|
-
# region for the
|
2893
|
+
# region for the account.
|
2810
2894
|
#
|
2811
2895
|
# Constraints:
|
2812
2896
|
#
|
@@ -2818,7 +2902,7 @@ module Aws::Redshift
|
|
2818
2902
|
#
|
2819
2903
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
2820
2904
|
#
|
2821
|
-
# * Must be unique for all clusters within an
|
2905
|
+
# * Must be unique for all clusters within an account.
|
2822
2906
|
# @return [String]
|
2823
2907
|
#
|
2824
2908
|
# @!attribute [rw] kms_key_id
|
@@ -2844,7 +2928,7 @@ module Aws::Redshift
|
|
2844
2928
|
# @!attribute [rw] snapshot_copy_grant
|
2845
2929
|
# The snapshot copy grant that grants Amazon Redshift permission to
|
2846
2930
|
# encrypt copied snapshots with the specified customer master key
|
2847
|
-
# (CMK) from
|
2931
|
+
# (CMK) from Amazon Web Services KMS in the destination region.
|
2848
2932
|
#
|
2849
2933
|
# For more information about managing snapshot copy grants, go to
|
2850
2934
|
# [Amazon Redshift Database Encryption][1] in the *Amazon Redshift
|
@@ -3143,6 +3227,37 @@ module Aws::Redshift
|
|
3143
3227
|
include Aws::Structure
|
3144
3228
|
end
|
3145
3229
|
|
3230
|
+
# @note When making an API call, you may pass DeleteAuthenticationProfileMessage
|
3231
|
+
# data as a hash:
|
3232
|
+
#
|
3233
|
+
# {
|
3234
|
+
# authentication_profile_name: "AuthenticationProfileNameString", # required
|
3235
|
+
# }
|
3236
|
+
#
|
3237
|
+
# @!attribute [rw] authentication_profile_name
|
3238
|
+
# The name of the authentication profile to delete.
|
3239
|
+
# @return [String]
|
3240
|
+
#
|
3241
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteAuthenticationProfileMessage AWS API Documentation
|
3242
|
+
#
|
3243
|
+
class DeleteAuthenticationProfileMessage < Struct.new(
|
3244
|
+
:authentication_profile_name)
|
3245
|
+
SENSITIVE = []
|
3246
|
+
include Aws::Structure
|
3247
|
+
end
|
3248
|
+
|
3249
|
+
# @!attribute [rw] authentication_profile_name
|
3250
|
+
# The name of the authentication profile that was deleted.
|
3251
|
+
# @return [String]
|
3252
|
+
#
|
3253
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteAuthenticationProfileResult AWS API Documentation
|
3254
|
+
#
|
3255
|
+
class DeleteAuthenticationProfileResult < Struct.new(
|
3256
|
+
:authentication_profile_name)
|
3257
|
+
SENSITIVE = []
|
3258
|
+
include Aws::Structure
|
3259
|
+
end
|
3260
|
+
|
3146
3261
|
# @note When making an API call, you may pass DeleteClusterMessage
|
3147
3262
|
# data as a hash:
|
3148
3263
|
#
|
@@ -3554,6 +3669,38 @@ module Aws::Redshift
|
|
3554
3669
|
include Aws::Structure
|
3555
3670
|
end
|
3556
3671
|
|
3672
|
+
# @note When making an API call, you may pass DescribeAuthenticationProfilesMessage
|
3673
|
+
# data as a hash:
|
3674
|
+
#
|
3675
|
+
# {
|
3676
|
+
# authentication_profile_name: "AuthenticationProfileNameString",
|
3677
|
+
# }
|
3678
|
+
#
|
3679
|
+
# @!attribute [rw] authentication_profile_name
|
3680
|
+
# The name of the authentication profile to describe. If not specified
|
3681
|
+
# then all authentication profiles owned by the account are listed.
|
3682
|
+
# @return [String]
|
3683
|
+
#
|
3684
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeAuthenticationProfilesMessage AWS API Documentation
|
3685
|
+
#
|
3686
|
+
class DescribeAuthenticationProfilesMessage < Struct.new(
|
3687
|
+
:authentication_profile_name)
|
3688
|
+
SENSITIVE = []
|
3689
|
+
include Aws::Structure
|
3690
|
+
end
|
3691
|
+
|
3692
|
+
# @!attribute [rw] authentication_profiles
|
3693
|
+
# The list of authentication profiles.
|
3694
|
+
# @return [Array<Types::AuthenticationProfile>]
|
3695
|
+
#
|
3696
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeAuthenticationProfilesResult AWS API Documentation
|
3697
|
+
#
|
3698
|
+
class DescribeAuthenticationProfilesResult < Struct.new(
|
3699
|
+
:authentication_profiles)
|
3700
|
+
SENSITIVE = []
|
3701
|
+
include Aws::Structure
|
3702
|
+
end
|
3703
|
+
|
3557
3704
|
# @note When making an API call, you may pass DescribeClusterDbRevisionsMessage
|
3558
3705
|
# data as a hash:
|
3559
3706
|
#
|
@@ -3638,10 +3785,10 @@ module Aws::Redshift
|
|
3638
3785
|
# An optional parameter that specifies the starting point to return a
|
3639
3786
|
# set of response records. When the results of a
|
3640
3787
|
# DescribeClusterParameterGroups request exceed the value specified in
|
3641
|
-
# `MaxRecords`,
|
3642
|
-
# response. You can retrieve the next set of response
|
3643
|
-
# providing the returned marker value in the `Marker`
|
3644
|
-
# retrying the request.
|
3788
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
3789
|
+
# field of the response. You can retrieve the next set of response
|
3790
|
+
# records by providing the returned marker value in the `Marker`
|
3791
|
+
# parameter and retrying the request.
|
3645
3792
|
# @return [String]
|
3646
3793
|
#
|
3647
3794
|
# @!attribute [rw] tag_keys
|
@@ -3717,10 +3864,10 @@ module Aws::Redshift
|
|
3717
3864
|
# An optional parameter that specifies the starting point to return a
|
3718
3865
|
# set of response records. When the results of a
|
3719
3866
|
# DescribeClusterParameters request exceed the value specified in
|
3720
|
-
# `MaxRecords`,
|
3721
|
-
# response. You can retrieve the next set of response
|
3722
|
-
# providing the returned marker value in the `Marker`
|
3723
|
-
# retrying the request.
|
3867
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
3868
|
+
# field of the response. You can retrieve the next set of response
|
3869
|
+
# records by providing the returned marker value in the `Marker`
|
3870
|
+
# parameter and retrying the request.
|
3724
3871
|
# @return [String]
|
3725
3872
|
#
|
3726
3873
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeClusterParametersMessage AWS API Documentation
|
@@ -3769,10 +3916,10 @@ module Aws::Redshift
|
|
3769
3916
|
# An optional parameter that specifies the starting point to return a
|
3770
3917
|
# set of response records. When the results of a
|
3771
3918
|
# DescribeClusterSecurityGroups request exceed the value specified in
|
3772
|
-
# `MaxRecords`,
|
3773
|
-
# response. You can retrieve the next set of response
|
3774
|
-
# providing the returned marker value in the `Marker`
|
3775
|
-
# retrying the request.
|
3919
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
3920
|
+
# field of the response. You can retrieve the next set of response
|
3921
|
+
# records by providing the returned marker value in the `Marker`
|
3922
|
+
# parameter and retrying the request.
|
3776
3923
|
#
|
3777
3924
|
# Constraints: You can specify either the **ClusterSecurityGroupName**
|
3778
3925
|
# parameter or the **Marker** parameter, but not both.
|
@@ -3892,17 +4039,17 @@ module Aws::Redshift
|
|
3892
4039
|
# An optional parameter that specifies the starting point to return a
|
3893
4040
|
# set of response records. When the results of a
|
3894
4041
|
# DescribeClusterSnapshots request exceed the value specified in
|
3895
|
-
# `MaxRecords`,
|
3896
|
-
# response. You can retrieve the next set of response
|
3897
|
-
# providing the returned marker value in the `Marker`
|
3898
|
-
# retrying the request.
|
4042
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4043
|
+
# field of the response. You can retrieve the next set of response
|
4044
|
+
# records by providing the returned marker value in the `Marker`
|
4045
|
+
# parameter and retrying the request.
|
3899
4046
|
# @return [String]
|
3900
4047
|
#
|
3901
4048
|
# @!attribute [rw] owner_account
|
3902
|
-
# The
|
3903
|
-
#
|
3904
|
-
#
|
3905
|
-
#
|
4049
|
+
# The account used to create or copy the snapshot. Use this field to
|
4050
|
+
# filter the results to snapshots owned by a particular account. To
|
4051
|
+
# describe snapshots you own, either specify your account, or do not
|
4052
|
+
# specify the parameter.
|
3906
4053
|
# @return [String]
|
3907
4054
|
#
|
3908
4055
|
# @!attribute [rw] tag_keys
|
@@ -4000,10 +4147,10 @@ module Aws::Redshift
|
|
4000
4147
|
# An optional parameter that specifies the starting point to return a
|
4001
4148
|
# set of response records. When the results of a
|
4002
4149
|
# DescribeClusterSubnetGroups request exceed the value specified in
|
4003
|
-
# `MaxRecords`,
|
4004
|
-
# response. You can retrieve the next set of response
|
4005
|
-
# providing the returned marker value in the `Marker`
|
4006
|
-
# retrying the request.
|
4150
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4151
|
+
# field of the response. You can retrieve the next set of response
|
4152
|
+
# records by providing the returned marker value in the `Marker`
|
4153
|
+
# parameter and retrying the request.
|
4007
4154
|
# @return [String]
|
4008
4155
|
#
|
4009
4156
|
# @!attribute [rw] tag_keys
|
@@ -4121,10 +4268,10 @@ module Aws::Redshift
|
|
4121
4268
|
# An optional parameter that specifies the starting point to return a
|
4122
4269
|
# set of response records. When the results of a
|
4123
4270
|
# DescribeClusterVersions request exceed the value specified in
|
4124
|
-
# `MaxRecords`,
|
4125
|
-
# response. You can retrieve the next set of response
|
4126
|
-
# providing the returned marker value in the `Marker`
|
4127
|
-
# retrying the request.
|
4271
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4272
|
+
# field of the response. You can retrieve the next set of response
|
4273
|
+
# records by providing the returned marker value in the `Marker`
|
4274
|
+
# parameter and retrying the request.
|
4128
4275
|
# @return [String]
|
4129
4276
|
#
|
4130
4277
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeClusterVersionsMessage AWS API Documentation
|
@@ -4172,10 +4319,11 @@ module Aws::Redshift
|
|
4172
4319
|
# @!attribute [rw] marker
|
4173
4320
|
# An optional parameter that specifies the starting point to return a
|
4174
4321
|
# set of response records. When the results of a DescribeClusters
|
4175
|
-
# request exceed the value specified in `MaxRecords`,
|
4176
|
-
# value in the `Marker` field of the response. You
|
4177
|
-
# next set of response records by providing the
|
4178
|
-
# in the `Marker` parameter and retrying the
|
4322
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
4323
|
+
# Services returns a value in the `Marker` field of the response. You
|
4324
|
+
# can retrieve the next set of response records by providing the
|
4325
|
+
# returned marker value in the `Marker` parameter and retrying the
|
4326
|
+
# request.
|
4179
4327
|
#
|
4180
4328
|
# Constraints: You can specify either the **ClusterIdentifier**
|
4181
4329
|
# parameter or the **Marker** parameter, but not both.
|
@@ -4241,10 +4389,10 @@ module Aws::Redshift
|
|
4241
4389
|
# An optional parameter that specifies the starting point to return a
|
4242
4390
|
# set of response records. When the results of a
|
4243
4391
|
# DescribeDefaultClusterParameters request exceed the value specified
|
4244
|
-
# in `MaxRecords`,
|
4245
|
-
# response. You can retrieve the next set of response
|
4246
|
-
# providing the returned marker value in the `Marker`
|
4247
|
-
# retrying the request.
|
4392
|
+
# in `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4393
|
+
# field of the response. You can retrieve the next set of response
|
4394
|
+
# records by providing the returned marker value in the `Marker`
|
4395
|
+
# parameter and retrying the request.
|
4248
4396
|
# @return [String]
|
4249
4397
|
#
|
4250
4398
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDefaultClusterParametersMessage AWS API Documentation
|
@@ -4287,7 +4435,7 @@ module Aws::Redshift
|
|
4287
4435
|
# @return [String]
|
4288
4436
|
#
|
4289
4437
|
# @!attribute [rw] resource_owner
|
4290
|
-
# The
|
4438
|
+
# The account ID of the owner of the cluster.
|
4291
4439
|
# @return [String]
|
4292
4440
|
#
|
4293
4441
|
# @!attribute [rw] endpoint_name
|
@@ -4300,11 +4448,17 @@ module Aws::Redshift
|
|
4300
4448
|
# @return [String]
|
4301
4449
|
#
|
4302
4450
|
# @!attribute [rw] max_records
|
4303
|
-
#
|
4451
|
+
# The maximum number of records to include in the response. If more
|
4452
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
4453
|
+
# token called a `Marker` is included in the response so that the
|
4454
|
+
# remaining results can be retrieved.
|
4304
4455
|
# @return [Integer]
|
4305
4456
|
#
|
4306
4457
|
# @!attribute [rw] marker
|
4307
|
-
#
|
4458
|
+
# An optional pagination token provided by a previous
|
4459
|
+
# `DescribeEndpointAccess` request. If this parameter is specified,
|
4460
|
+
# the response includes only records beyond the marker, up to the
|
4461
|
+
# value specified by the `MaxRecords` parameter.
|
4308
4462
|
# @return [String]
|
4309
4463
|
#
|
4310
4464
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEndpointAccessMessage AWS API Documentation
|
@@ -4336,8 +4490,8 @@ module Aws::Redshift
|
|
4336
4490
|
# @return [String]
|
4337
4491
|
#
|
4338
4492
|
# @!attribute [rw] account
|
4339
|
-
# The
|
4340
|
-
#
|
4493
|
+
# The Aaccount ID of either the cluster owner (grantor) or grantee. If
|
4494
|
+
# `Grantee` parameter is true, then the `Account` value is of the
|
4341
4495
|
# grantor.
|
4342
4496
|
# @return [String]
|
4343
4497
|
#
|
@@ -4349,11 +4503,17 @@ module Aws::Redshift
|
|
4349
4503
|
# @return [Boolean]
|
4350
4504
|
#
|
4351
4505
|
# @!attribute [rw] max_records
|
4352
|
-
#
|
4506
|
+
# The maximum number of records to include in the response. If more
|
4507
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
4508
|
+
# token called a `Marker` is included in the response so that the
|
4509
|
+
# remaining results can be retrieved.
|
4353
4510
|
# @return [Integer]
|
4354
4511
|
#
|
4355
4512
|
# @!attribute [rw] marker
|
4356
|
-
#
|
4513
|
+
# An optional pagination token provided by a previous
|
4514
|
+
# `DescribeEndpointAuthorization` request. If this parameter is
|
4515
|
+
# specified, the response includes only records beyond the marker, up
|
4516
|
+
# to the value specified by the `MaxRecords` parameter.
|
4357
4517
|
# @return [String]
|
4358
4518
|
#
|
4359
4519
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEndpointAuthorizationMessage AWS API Documentation
|
@@ -4423,10 +4583,10 @@ module Aws::Redshift
|
|
4423
4583
|
# An optional parameter that specifies the starting point to return a
|
4424
4584
|
# set of response records. When the results of a
|
4425
4585
|
# DescribeEventSubscriptions request exceed the value specified in
|
4426
|
-
# `MaxRecords`,
|
4427
|
-
# response. You can retrieve the next set of response
|
4428
|
-
# providing the returned marker value in the `Marker`
|
4429
|
-
# retrying the request.
|
4586
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4587
|
+
# field of the response. You can retrieve the next set of response
|
4588
|
+
# records by providing the returned marker value in the `Marker`
|
4589
|
+
# parameter and retrying the request.
|
4430
4590
|
# @return [String]
|
4431
4591
|
#
|
4432
4592
|
# @!attribute [rw] tag_keys
|
@@ -4565,10 +4725,11 @@ module Aws::Redshift
|
|
4565
4725
|
# @!attribute [rw] marker
|
4566
4726
|
# An optional parameter that specifies the starting point to return a
|
4567
4727
|
# set of response records. When the results of a DescribeEvents
|
4568
|
-
# request exceed the value specified in `MaxRecords`,
|
4569
|
-
# value in the `Marker` field of the response. You
|
4570
|
-
# next set of response records by providing the
|
4571
|
-
# in the `Marker` parameter and retrying the
|
4728
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
4729
|
+
# Services returns a value in the `Marker` field of the response. You
|
4730
|
+
# can retrieve the next set of response records by providing the
|
4731
|
+
# returned marker value in the `Marker` parameter and retrying the
|
4732
|
+
# request.
|
4572
4733
|
# @return [String]
|
4573
4734
|
#
|
4574
4735
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEventsMessage AWS API Documentation
|
@@ -4599,8 +4760,7 @@ module Aws::Redshift
|
|
4599
4760
|
# @!attribute [rw] hsm_client_certificate_identifier
|
4600
4761
|
# The identifier of a specific HSM client certificate for which you
|
4601
4762
|
# want information. If no identifier is specified, information is
|
4602
|
-
# returned for all HSM client certificates owned by your
|
4603
|
-
# account.
|
4763
|
+
# returned for all HSM client certificates owned by your account.
|
4604
4764
|
# @return [String]
|
4605
4765
|
#
|
4606
4766
|
# @!attribute [rw] max_records
|
@@ -4619,10 +4779,10 @@ module Aws::Redshift
|
|
4619
4779
|
# An optional parameter that specifies the starting point to return a
|
4620
4780
|
# set of response records. When the results of a
|
4621
4781
|
# DescribeHsmClientCertificates request exceed the value specified in
|
4622
|
-
# `MaxRecords`,
|
4623
|
-
# response. You can retrieve the next set of response
|
4624
|
-
# providing the returned marker value in the `Marker`
|
4625
|
-
# retrying the request.
|
4782
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4783
|
+
# field of the response. You can retrieve the next set of response
|
4784
|
+
# records by providing the returned marker value in the `Marker`
|
4785
|
+
# parameter and retrying the request.
|
4626
4786
|
# @return [String]
|
4627
4787
|
#
|
4628
4788
|
# @!attribute [rw] tag_keys
|
@@ -4671,7 +4831,7 @@ module Aws::Redshift
|
|
4671
4831
|
# @!attribute [rw] hsm_configuration_identifier
|
4672
4832
|
# The identifier of a specific Amazon Redshift HSM configuration to be
|
4673
4833
|
# described. If no identifier is specified, information is returned
|
4674
|
-
# for all HSM configurations owned by your
|
4834
|
+
# for all HSM configurations owned by your account.
|
4675
4835
|
# @return [String]
|
4676
4836
|
#
|
4677
4837
|
# @!attribute [rw] max_records
|
@@ -4690,10 +4850,10 @@ module Aws::Redshift
|
|
4690
4850
|
# An optional parameter that specifies the starting point to return a
|
4691
4851
|
# set of response records. When the results of a
|
4692
4852
|
# DescribeHsmConfigurations request exceed the value specified in
|
4693
|
-
# `MaxRecords`,
|
4694
|
-
# response. You can retrieve the next set of response
|
4695
|
-
# providing the returned marker value in the `Marker`
|
4696
|
-
# retrying the request.
|
4853
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4854
|
+
# field of the response. You can retrieve the next set of response
|
4855
|
+
# records by providing the returned marker value in the `Marker`
|
4856
|
+
# parameter and retrying the request.
|
4697
4857
|
# @return [String]
|
4698
4858
|
#
|
4699
4859
|
# @!attribute [rw] tag_keys
|
@@ -4788,9 +4948,9 @@ module Aws::Redshift
|
|
4788
4948
|
# @return [String]
|
4789
4949
|
#
|
4790
4950
|
# @!attribute [rw] owner_account
|
4791
|
-
# The
|
4792
|
-
#
|
4793
|
-
#
|
4951
|
+
# The account used to create or copy the snapshot. Required if you are
|
4952
|
+
# restoring a snapshot you do not own, optional if you own the
|
4953
|
+
# snapshot.
|
4794
4954
|
# @return [String]
|
4795
4955
|
#
|
4796
4956
|
# @!attribute [rw] filters
|
@@ -4801,10 +4961,10 @@ module Aws::Redshift
|
|
4801
4961
|
# An optional parameter that specifies the starting point to return a
|
4802
4962
|
# set of response records. When the results of a
|
4803
4963
|
# DescribeNodeConfigurationOptions request exceed the value specified
|
4804
|
-
# in `MaxRecords`,
|
4805
|
-
# response. You can retrieve the next set of response
|
4806
|
-
# providing the returned marker value in the `Marker`
|
4807
|
-
# retrying the request.
|
4964
|
+
# in `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4965
|
+
# field of the response. You can retrieve the next set of response
|
4966
|
+
# records by providing the returned marker value in the `Marker`
|
4967
|
+
# parameter and retrying the request.
|
4808
4968
|
# @return [String]
|
4809
4969
|
#
|
4810
4970
|
# @!attribute [rw] max_records
|
@@ -4874,10 +5034,10 @@ module Aws::Redshift
|
|
4874
5034
|
# An optional parameter that specifies the starting point to return a
|
4875
5035
|
# set of response records. When the results of a
|
4876
5036
|
# DescribeOrderableClusterOptions request exceed the value specified
|
4877
|
-
# in `MaxRecords`,
|
4878
|
-
# response. You can retrieve the next set of response
|
4879
|
-
# providing the returned marker value in the `Marker`
|
4880
|
-
# retrying the request.
|
5037
|
+
# in `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
5038
|
+
# field of the response. You can retrieve the next set of response
|
5039
|
+
# records by providing the returned marker value in the `Marker`
|
5040
|
+
# parameter and retrying the request.
|
4881
5041
|
# @return [String]
|
4882
5042
|
#
|
4883
5043
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeOrderableClusterOptionsMessage AWS API Documentation
|
@@ -4891,6 +5051,59 @@ module Aws::Redshift
|
|
4891
5051
|
include Aws::Structure
|
4892
5052
|
end
|
4893
5053
|
|
5054
|
+
# @note When making an API call, you may pass DescribePartnersInputMessage
|
5055
|
+
# data as a hash:
|
5056
|
+
#
|
5057
|
+
# {
|
5058
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
5059
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
5060
|
+
# database_name: "PartnerIntegrationDatabaseName",
|
5061
|
+
# partner_name: "PartnerIntegrationPartnerName",
|
5062
|
+
# }
|
5063
|
+
#
|
5064
|
+
# @!attribute [rw] account_id
|
5065
|
+
# The Region ID that owns the cluster.
|
5066
|
+
# @return [String]
|
5067
|
+
#
|
5068
|
+
# @!attribute [rw] cluster_identifier
|
5069
|
+
# The cluster identifier of the cluster whose partner integration is
|
5070
|
+
# being described.
|
5071
|
+
# @return [String]
|
5072
|
+
#
|
5073
|
+
# @!attribute [rw] database_name
|
5074
|
+
# The name of the database whose partner integration is being
|
5075
|
+
# described. If database name is not specified, then all databases in
|
5076
|
+
# the cluster are described.
|
5077
|
+
# @return [String]
|
5078
|
+
#
|
5079
|
+
# @!attribute [rw] partner_name
|
5080
|
+
# The name of the partner that is being described. If partner name is
|
5081
|
+
# not specified, then all partner integrations are described.
|
5082
|
+
# @return [String]
|
5083
|
+
#
|
5084
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribePartnersInputMessage AWS API Documentation
|
5085
|
+
#
|
5086
|
+
class DescribePartnersInputMessage < Struct.new(
|
5087
|
+
:account_id,
|
5088
|
+
:cluster_identifier,
|
5089
|
+
:database_name,
|
5090
|
+
:partner_name)
|
5091
|
+
SENSITIVE = []
|
5092
|
+
include Aws::Structure
|
5093
|
+
end
|
5094
|
+
|
5095
|
+
# @!attribute [rw] partner_integration_info_list
|
5096
|
+
# A list of partner integrations.
|
5097
|
+
# @return [Array<Types::PartnerIntegrationInfo>]
|
5098
|
+
#
|
5099
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribePartnersOutputMessage AWS API Documentation
|
5100
|
+
#
|
5101
|
+
class DescribePartnersOutputMessage < Struct.new(
|
5102
|
+
:partner_integration_info_list)
|
5103
|
+
SENSITIVE = []
|
5104
|
+
include Aws::Structure
|
5105
|
+
end
|
5106
|
+
|
4894
5107
|
# @note When making an API call, you may pass DescribeReservedNodeOfferingsMessage
|
4895
5108
|
# data as a hash:
|
4896
5109
|
#
|
@@ -4920,10 +5133,10 @@ module Aws::Redshift
|
|
4920
5133
|
# An optional parameter that specifies the starting point to return a
|
4921
5134
|
# set of response records. When the results of a
|
4922
5135
|
# DescribeReservedNodeOfferings request exceed the value specified in
|
4923
|
-
# `MaxRecords`,
|
4924
|
-
# response. You can retrieve the next set of response
|
4925
|
-
# providing the returned marker value in the `Marker`
|
4926
|
-
# retrying the request.
|
5136
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
5137
|
+
# field of the response. You can retrieve the next set of response
|
5138
|
+
# records by providing the returned marker value in the `Marker`
|
5139
|
+
# parameter and retrying the request.
|
4927
5140
|
# @return [String]
|
4928
5141
|
#
|
4929
5142
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeReservedNodeOfferingsMessage AWS API Documentation
|
@@ -4964,10 +5177,11 @@ module Aws::Redshift
|
|
4964
5177
|
# @!attribute [rw] marker
|
4965
5178
|
# An optional parameter that specifies the starting point to return a
|
4966
5179
|
# set of response records. When the results of a DescribeReservedNodes
|
4967
|
-
# request exceed the value specified in `MaxRecords`,
|
4968
|
-
# value in the `Marker` field of the response. You
|
4969
|
-
# next set of response records by providing the
|
4970
|
-
# in the `Marker` parameter and retrying the
|
5180
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
5181
|
+
# Services returns a value in the `Marker` field of the response. You
|
5182
|
+
# can retrieve the next set of response records by providing the
|
5183
|
+
# returned marker value in the `Marker` parameter and retrying the
|
5184
|
+
# request.
|
4971
5185
|
# @return [String]
|
4972
5186
|
#
|
4973
5187
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeReservedNodesMessage AWS API Documentation
|
@@ -4991,7 +5205,7 @@ module Aws::Redshift
|
|
4991
5205
|
# The unique identifier of a cluster whose resize progress you are
|
4992
5206
|
# requesting. This parameter is case-sensitive.
|
4993
5207
|
#
|
4994
|
-
# By default, resize operations for all clusters defined for an
|
5208
|
+
# By default, resize operations for all clusters defined for an
|
4995
5209
|
# account are returned.
|
4996
5210
|
# @return [String]
|
4997
5211
|
#
|
@@ -5055,10 +5269,10 @@ module Aws::Redshift
|
|
5055
5269
|
# An optional parameter that specifies the starting point to return a
|
5056
5270
|
# set of response records. When the results of a
|
5057
5271
|
# DescribeScheduledActions request exceed the value specified in
|
5058
|
-
# `MaxRecords`,
|
5059
|
-
# response. You can retrieve the next set of response
|
5060
|
-
# providing the returned marker value in the `Marker`
|
5061
|
-
# retrying the request.
|
5272
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
5273
|
+
# field of the response. You can retrieve the next set of response
|
5274
|
+
# records by providing the returned marker value in the `Marker`
|
5275
|
+
# parameter and retrying the request.
|
5062
5276
|
# @return [String]
|
5063
5277
|
#
|
5064
5278
|
# @!attribute [rw] max_records
|
@@ -5121,10 +5335,10 @@ module Aws::Redshift
|
|
5121
5335
|
# An optional parameter that specifies the starting point to return a
|
5122
5336
|
# set of response records. When the results of a
|
5123
5337
|
# `DescribeSnapshotCopyGrant` request exceed the value specified in
|
5124
|
-
# `MaxRecords`,
|
5125
|
-
# response. You can retrieve the next set of response
|
5126
|
-
# providing the returned marker value in the `Marker`
|
5127
|
-
# retrying the request.
|
5338
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
5339
|
+
# field of the response. You can retrieve the next set of response
|
5340
|
+
# records by providing the returned marker value in the `Marker`
|
5341
|
+
# parameter and retrying the request.
|
5128
5342
|
#
|
5129
5343
|
# Constraints: You can specify either the **SnapshotCopyGrantName**
|
5130
5344
|
# parameter or the **Marker** parameter, but not both.
|
@@ -5430,10 +5644,11 @@ module Aws::Redshift
|
|
5430
5644
|
# @!attribute [rw] marker
|
5431
5645
|
# An optional parameter that specifies the starting point to return a
|
5432
5646
|
# set of response records. When the results of a DescribeUsageLimits
|
5433
|
-
# request exceed the value specified in `MaxRecords`,
|
5434
|
-
# value in the `Marker` field of the response. You
|
5435
|
-
# next set of response records by providing the
|
5436
|
-
# in the `Marker` parameter and retrying the
|
5647
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
5648
|
+
# Services returns a value in the `Marker` field of the response. You
|
5649
|
+
# can retrieve the next set of response records by providing the
|
5650
|
+
# returned marker value in the `Marker` parameter and retrying the
|
5651
|
+
# request.
|
5437
5652
|
# @return [String]
|
5438
5653
|
#
|
5439
5654
|
# @!attribute [rw] tag_keys
|
@@ -5537,8 +5752,8 @@ module Aws::Redshift
|
|
5537
5752
|
# @return [String]
|
5538
5753
|
#
|
5539
5754
|
# @!attribute [rw] ec2_security_group_owner_id
|
5540
|
-
# The
|
5541
|
-
# `EC2SecurityGroupName` field.
|
5755
|
+
# The account ID of the owner of the EC2 security group specified in
|
5756
|
+
# the `EC2SecurityGroupName` field.
|
5542
5757
|
# @return [String]
|
5543
5758
|
#
|
5544
5759
|
# @!attribute [rw] tags
|
@@ -5652,9 +5867,9 @@ module Aws::Redshift
|
|
5652
5867
|
# @return [String]
|
5653
5868
|
#
|
5654
5869
|
# @!attribute [rw] destination_region
|
5655
|
-
# The destination
|
5870
|
+
# The destination Region that you want to copy snapshots to.
|
5656
5871
|
#
|
5657
|
-
# Constraints: Must be the name of a valid
|
5872
|
+
# Constraints: Must be the name of a valid Region. For more
|
5658
5873
|
# information, see [Regions and Endpoints][1] in the Amazon Web
|
5659
5874
|
# Services General Reference.
|
5660
5875
|
#
|
@@ -5673,15 +5888,15 @@ module Aws::Redshift
|
|
5673
5888
|
# @return [Integer]
|
5674
5889
|
#
|
5675
5890
|
# @!attribute [rw] snapshot_copy_grant_name
|
5676
|
-
# The name of the snapshot copy grant to use when snapshots of an
|
5677
|
-
# KMS-encrypted cluster are copied to the
|
5891
|
+
# The name of the snapshot copy grant to use when snapshots of an
|
5892
|
+
# Amazon Web Services KMS-encrypted cluster are copied to the
|
5893
|
+
# destination region.
|
5678
5894
|
# @return [String]
|
5679
5895
|
#
|
5680
5896
|
# @!attribute [rw] manual_snapshot_retention_period
|
5681
5897
|
# The number of days to retain newly copied snapshots in the
|
5682
|
-
# destination
|
5683
|
-
#
|
5684
|
-
# indefinitely.
|
5898
|
+
# destination Region after they are copied from the source Region. If
|
5899
|
+
# the value is -1, the manual snapshot is retained indefinitely.
|
5685
5900
|
#
|
5686
5901
|
# The value must be either -1 or an integer between 1 and 3,653.
|
5687
5902
|
# @return [Integer]
|
@@ -5741,7 +5956,7 @@ module Aws::Redshift
|
|
5741
5956
|
# @return [String]
|
5742
5957
|
#
|
5743
5958
|
# @!attribute [rw] resource_owner
|
5744
|
-
# The
|
5959
|
+
# The account ID of the owner of the cluster.
|
5745
5960
|
# @return [String]
|
5746
5961
|
#
|
5747
5962
|
# @!attribute [rw] subnet_group_name
|
@@ -5800,7 +6015,10 @@ module Aws::Redshift
|
|
5800
6015
|
# @return [Array<Types::EndpointAccess>]
|
5801
6016
|
#
|
5802
6017
|
# @!attribute [rw] marker
|
5803
|
-
#
|
6018
|
+
# An optional pagination token provided by a previous
|
6019
|
+
# `DescribeEndpointAccess` request. If this parameter is specified,
|
6020
|
+
# the response includes only records beyond the marker, up to the
|
6021
|
+
# value specified by the `MaxRecords` parameter.
|
5804
6022
|
# @return [String]
|
5805
6023
|
#
|
5806
6024
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAccessList AWS API Documentation
|
@@ -5820,14 +6038,14 @@ module Aws::Redshift
|
|
5820
6038
|
class EndpointAlreadyExistsFault < Aws::EmptyStructure; end
|
5821
6039
|
|
5822
6040
|
# Describes an endpoint authorization for authorizing Redshift-managed
|
5823
|
-
# VPC endpoint access to a cluster across
|
6041
|
+
# VPC endpoint access to a cluster across accounts.
|
5824
6042
|
#
|
5825
6043
|
# @!attribute [rw] grantor
|
5826
|
-
# The
|
6044
|
+
# The account ID of the cluster owner.
|
5827
6045
|
# @return [String]
|
5828
6046
|
#
|
5829
6047
|
# @!attribute [rw] grantee
|
5830
|
-
# The
|
6048
|
+
# The account ID of the grantee of the cluster.
|
5831
6049
|
# @return [String]
|
5832
6050
|
#
|
5833
6051
|
# @!attribute [rw] cluster_identifier
|
@@ -5887,7 +6105,10 @@ module Aws::Redshift
|
|
5887
6105
|
# @return [Array<Types::EndpointAuthorization>]
|
5888
6106
|
#
|
5889
6107
|
# @!attribute [rw] marker
|
5890
|
-
#
|
6108
|
+
# An optional pagination token provided by a previous
|
6109
|
+
# `DescribeEndpointAuthorization` request. If this parameter is
|
6110
|
+
# specified, the response includes only records beyond the marker, up
|
6111
|
+
# to the value specified by the `MaxRecords` parameter.
|
5891
6112
|
# @return [String]
|
5892
6113
|
#
|
5893
6114
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAuthorizationList AWS API Documentation
|
@@ -6046,8 +6267,8 @@ module Aws::Redshift
|
|
6046
6267
|
# Describes event subscriptions.
|
6047
6268
|
#
|
6048
6269
|
# @!attribute [rw] customer_aws_id
|
6049
|
-
# The
|
6050
|
-
#
|
6270
|
+
# The account associated with the Amazon Redshift event notification
|
6271
|
+
# subscription.
|
6051
6272
|
# @return [String]
|
6052
6273
|
#
|
6053
6274
|
# @!attribute [rw] cust_subscription_id
|
@@ -6623,6 +6844,14 @@ module Aws::Redshift
|
|
6623
6844
|
#
|
6624
6845
|
class InsufficientS3BucketPolicyFault < Aws::EmptyStructure; end
|
6625
6846
|
|
6847
|
+
# The authentication profile request is not valid. The profile name
|
6848
|
+
# can't be null or empty. The authentication profile API operation must
|
6849
|
+
# be available in the Region.
|
6850
|
+
#
|
6851
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/InvalidAuthenticationProfileRequestFault AWS API Documentation
|
6852
|
+
#
|
6853
|
+
class InvalidAuthenticationProfileRequestFault < Aws::EmptyStructure; end
|
6854
|
+
|
6626
6855
|
# The status of the authorization is not valid.
|
6627
6856
|
#
|
6628
6857
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/InvalidAuthorizationStateFault AWS API Documentation
|
@@ -6806,7 +7035,8 @@ module Aws::Redshift
|
|
6806
7035
|
#
|
6807
7036
|
class InvalidVPCNetworkStateFault < Aws::EmptyStructure; end
|
6808
7037
|
|
6809
|
-
# The encryption key has exceeded its grant limit in
|
7038
|
+
# The encryption key has exceeded its grant limit in Amazon Web Services
|
7039
|
+
# KMS.
|
6810
7040
|
#
|
6811
7041
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/LimitExceededFault AWS API Documentation
|
6812
7042
|
#
|
@@ -6898,8 +7128,8 @@ module Aws::Redshift
|
|
6898
7128
|
# The new value of AQUA configuration status. Possible values include
|
6899
7129
|
# the following.
|
6900
7130
|
#
|
6901
|
-
# * enabled - Use AQUA if it is available for the current
|
6902
|
-
#
|
7131
|
+
# * enabled - Use AQUA if it is available for the current Region and
|
7132
|
+
# Amazon Redshift node type.
|
6903
7133
|
#
|
6904
7134
|
# * disabled - Don't use AQUA.
|
6905
7135
|
#
|
@@ -6927,6 +7157,50 @@ module Aws::Redshift
|
|
6927
7157
|
include Aws::Structure
|
6928
7158
|
end
|
6929
7159
|
|
7160
|
+
# @note When making an API call, you may pass ModifyAuthenticationProfileMessage
|
7161
|
+
# data as a hash:
|
7162
|
+
#
|
7163
|
+
# {
|
7164
|
+
# authentication_profile_name: "AuthenticationProfileNameString", # required
|
7165
|
+
# authentication_profile_content: "String", # required
|
7166
|
+
# }
|
7167
|
+
#
|
7168
|
+
# @!attribute [rw] authentication_profile_name
|
7169
|
+
# The name of the authentication profile to replace.
|
7170
|
+
# @return [String]
|
7171
|
+
#
|
7172
|
+
# @!attribute [rw] authentication_profile_content
|
7173
|
+
# The new content of the authentication profile in JSON format. The
|
7174
|
+
# maximum length of the JSON string is determined by a quota for your
|
7175
|
+
# account.
|
7176
|
+
# @return [String]
|
7177
|
+
#
|
7178
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyAuthenticationProfileMessage AWS API Documentation
|
7179
|
+
#
|
7180
|
+
class ModifyAuthenticationProfileMessage < Struct.new(
|
7181
|
+
:authentication_profile_name,
|
7182
|
+
:authentication_profile_content)
|
7183
|
+
SENSITIVE = []
|
7184
|
+
include Aws::Structure
|
7185
|
+
end
|
7186
|
+
|
7187
|
+
# @!attribute [rw] authentication_profile_name
|
7188
|
+
# The name of the authentication profile that was replaced.
|
7189
|
+
# @return [String]
|
7190
|
+
#
|
7191
|
+
# @!attribute [rw] authentication_profile_content
|
7192
|
+
# The updated content of the authentication profile in JSON format.
|
7193
|
+
# @return [String]
|
7194
|
+
#
|
7195
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyAuthenticationProfileResult AWS API Documentation
|
7196
|
+
#
|
7197
|
+
class ModifyAuthenticationProfileResult < Struct.new(
|
7198
|
+
:authentication_profile_name,
|
7199
|
+
:authentication_profile_content)
|
7200
|
+
SENSITIVE = []
|
7201
|
+
include Aws::Structure
|
7202
|
+
end
|
7203
|
+
|
6930
7204
|
# @note When making an API call, you may pass ModifyClusterDbRevisionMessage
|
6931
7205
|
# data as a hash:
|
6932
7206
|
#
|
@@ -7187,14 +7461,14 @@ module Aws::Redshift
|
|
7187
7461
|
# @return [Array<String>]
|
7188
7462
|
#
|
7189
7463
|
# @!attribute [rw] master_user_password
|
7190
|
-
# The new password for the cluster
|
7464
|
+
# The new password for the cluster admin user. This change is
|
7191
7465
|
# asynchronously applied as soon as possible. Between the time of the
|
7192
7466
|
# request and the completion of the request, the `MasterUserPassword`
|
7193
7467
|
# element exists in the `PendingModifiedValues` element of the
|
7194
7468
|
# operation response.
|
7195
7469
|
#
|
7196
7470
|
# <note markdown="1"> Operations never return the password, so this operation provides a
|
7197
|
-
# way to regain access to the
|
7471
|
+
# way to regain access to the admin user account for a cluster if the
|
7198
7472
|
# password is lost.
|
7199
7473
|
#
|
7200
7474
|
# </note>
|
@@ -7323,7 +7597,7 @@ module Aws::Redshift
|
|
7323
7597
|
#
|
7324
7598
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
7325
7599
|
#
|
7326
|
-
# * Must be unique for all clusters within an
|
7600
|
+
# * Must be unique for all clusters within an account.
|
7327
7601
|
#
|
7328
7602
|
# Example: `examplecluster`
|
7329
7603
|
# @return [String]
|
@@ -7384,8 +7658,8 @@ module Aws::Redshift
|
|
7384
7658
|
# @return [Boolean]
|
7385
7659
|
#
|
7386
7660
|
# @!attribute [rw] kms_key_id
|
7387
|
-
# The
|
7388
|
-
#
|
7661
|
+
# The Key Management Service (KMS) key ID of the encryption key that
|
7662
|
+
# you want to use to encrypt data in the cluster.
|
7389
7663
|
# @return [String]
|
7390
7664
|
#
|
7391
7665
|
# @!attribute [rw] availability_zone_relocation
|
@@ -7675,9 +7949,8 @@ module Aws::Redshift
|
|
7675
7949
|
# The type of source that will be generating the events. For example,
|
7676
7950
|
# if you want to be notified of events generated by a cluster, you
|
7677
7951
|
# would set this parameter to cluster. If this value is not specified,
|
7678
|
-
# events are returned for all Amazon Redshift objects in your
|
7679
|
-
#
|
7680
|
-
# IDs.
|
7952
|
+
# events are returned for all Amazon Redshift objects in your account.
|
7953
|
+
# You must specify a source type in order to specify source IDs.
|
7681
7954
|
#
|
7682
7955
|
# Valid values: cluster, cluster-parameter-group,
|
7683
7956
|
# cluster-security-group, cluster-snapshot, and scheduled-action.
|
@@ -7835,7 +8108,7 @@ module Aws::Redshift
|
|
7835
8108
|
# @!attribute [rw] cluster_identifier
|
7836
8109
|
# The unique identifier of the cluster for which you want to change
|
7837
8110
|
# the retention period for either automated or manual snapshots that
|
7838
|
-
# are copied to a destination
|
8111
|
+
# are copied to a destination Region.
|
7839
8112
|
#
|
7840
8113
|
# Constraints: Must be the valid name of an existing cluster that has
|
7841
8114
|
# cross-region snapshot copy enabled.
|
@@ -7843,14 +8116,14 @@ module Aws::Redshift
|
|
7843
8116
|
#
|
7844
8117
|
# @!attribute [rw] retention_period
|
7845
8118
|
# The number of days to retain automated snapshots in the destination
|
7846
|
-
#
|
8119
|
+
# Region after they are copied from the source Region.
|
7847
8120
|
#
|
7848
8121
|
# By default, this only changes the retention period of copied
|
7849
8122
|
# automated snapshots.
|
7850
8123
|
#
|
7851
8124
|
# If you decrease the retention period for automated snapshots that
|
7852
|
-
# are copied to a destination
|
7853
|
-
# existing automated snapshots that were copied to the destination
|
8125
|
+
# are copied to a destination Region, Amazon Redshift deletes any
|
8126
|
+
# existing automated snapshots that were copied to the destination
|
7854
8127
|
# Region and that fall outside of the new retention period.
|
7855
8128
|
#
|
7856
8129
|
# Constraints: Must be at least 1 and no more than 35 for automated
|
@@ -8228,6 +8501,107 @@ module Aws::Redshift
|
|
8228
8501
|
include Aws::Structure
|
8229
8502
|
end
|
8230
8503
|
|
8504
|
+
# Describes a partner integration.
|
8505
|
+
#
|
8506
|
+
# @!attribute [rw] database_name
|
8507
|
+
# The name of the database that receives data from a partner.
|
8508
|
+
# @return [String]
|
8509
|
+
#
|
8510
|
+
# @!attribute [rw] partner_name
|
8511
|
+
# The name of the partner.
|
8512
|
+
# @return [String]
|
8513
|
+
#
|
8514
|
+
# @!attribute [rw] status
|
8515
|
+
# The partner integration status.
|
8516
|
+
# @return [String]
|
8517
|
+
#
|
8518
|
+
# @!attribute [rw] status_message
|
8519
|
+
# The status message provided by the partner.
|
8520
|
+
# @return [String]
|
8521
|
+
#
|
8522
|
+
# @!attribute [rw] created_at
|
8523
|
+
# The date (UTC) that the partner integration was created.
|
8524
|
+
# @return [Time]
|
8525
|
+
#
|
8526
|
+
# @!attribute [rw] updated_at
|
8527
|
+
# The date (UTC) that the partner integration status was last updated
|
8528
|
+
# by the partner.
|
8529
|
+
# @return [Time]
|
8530
|
+
#
|
8531
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PartnerIntegrationInfo AWS API Documentation
|
8532
|
+
#
|
8533
|
+
class PartnerIntegrationInfo < Struct.new(
|
8534
|
+
:database_name,
|
8535
|
+
:partner_name,
|
8536
|
+
:status,
|
8537
|
+
:status_message,
|
8538
|
+
:created_at,
|
8539
|
+
:updated_at)
|
8540
|
+
SENSITIVE = []
|
8541
|
+
include Aws::Structure
|
8542
|
+
end
|
8543
|
+
|
8544
|
+
# @note When making an API call, you may pass PartnerIntegrationInputMessage
|
8545
|
+
# data as a hash:
|
8546
|
+
#
|
8547
|
+
# {
|
8548
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
8549
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
8550
|
+
# database_name: "PartnerIntegrationDatabaseName", # required
|
8551
|
+
# partner_name: "PartnerIntegrationPartnerName", # required
|
8552
|
+
# }
|
8553
|
+
#
|
8554
|
+
# @!attribute [rw] account_id
|
8555
|
+
# The Region ID that owns the cluster.
|
8556
|
+
# @return [String]
|
8557
|
+
#
|
8558
|
+
# @!attribute [rw] cluster_identifier
|
8559
|
+
# The cluster identifier of the cluster that receives data from the
|
8560
|
+
# partner.
|
8561
|
+
# @return [String]
|
8562
|
+
#
|
8563
|
+
# @!attribute [rw] database_name
|
8564
|
+
# The name of the database that receives data from the partner.
|
8565
|
+
# @return [String]
|
8566
|
+
#
|
8567
|
+
# @!attribute [rw] partner_name
|
8568
|
+
# The name of the partner that is authorized to send data.
|
8569
|
+
# @return [String]
|
8570
|
+
#
|
8571
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PartnerIntegrationInputMessage AWS API Documentation
|
8572
|
+
#
|
8573
|
+
class PartnerIntegrationInputMessage < Struct.new(
|
8574
|
+
:account_id,
|
8575
|
+
:cluster_identifier,
|
8576
|
+
:database_name,
|
8577
|
+
:partner_name)
|
8578
|
+
SENSITIVE = []
|
8579
|
+
include Aws::Structure
|
8580
|
+
end
|
8581
|
+
|
8582
|
+
# @!attribute [rw] database_name
|
8583
|
+
# The name of the database that receives data from the partner.
|
8584
|
+
# @return [String]
|
8585
|
+
#
|
8586
|
+
# @!attribute [rw] partner_name
|
8587
|
+
# The name of the partner that is authorized to send data.
|
8588
|
+
# @return [String]
|
8589
|
+
#
|
8590
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PartnerIntegrationOutputMessage AWS API Documentation
|
8591
|
+
#
|
8592
|
+
class PartnerIntegrationOutputMessage < Struct.new(
|
8593
|
+
:database_name,
|
8594
|
+
:partner_name)
|
8595
|
+
SENSITIVE = []
|
8596
|
+
include Aws::Structure
|
8597
|
+
end
|
8598
|
+
|
8599
|
+
# The name of the partner was not found.
|
8600
|
+
#
|
8601
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PartnerNotFoundFault AWS API Documentation
|
8602
|
+
#
|
8603
|
+
class PartnerNotFoundFault < Aws::EmptyStructure; end
|
8604
|
+
|
8231
8605
|
# Describes a pause cluster operation. For example, a scheduled action
|
8232
8606
|
# to run the `PauseCluster` API operation.
|
8233
8607
|
#
|
@@ -8267,8 +8641,8 @@ module Aws::Redshift
|
|
8267
8641
|
# applied.
|
8268
8642
|
#
|
8269
8643
|
# @!attribute [rw] master_user_password
|
8270
|
-
# The pending or in-progress change of the
|
8271
|
-
#
|
8644
|
+
# The pending or in-progress change of the admin user password for the
|
8645
|
+
# cluster.
|
8272
8646
|
# @return [String]
|
8273
8647
|
#
|
8274
8648
|
# @!attribute [rw] node_type
|
@@ -8985,7 +9359,7 @@ module Aws::Redshift
|
|
8985
9359
|
#
|
8986
9360
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
8987
9361
|
#
|
8988
|
-
# * Must be unique for all clusters within an
|
9362
|
+
# * Must be unique for all clusters within an account.
|
8989
9363
|
# @return [String]
|
8990
9364
|
#
|
8991
9365
|
# @!attribute [rw] snapshot_identifier
|
@@ -9039,9 +9413,9 @@ module Aws::Redshift
|
|
9039
9413
|
# @return [Boolean]
|
9040
9414
|
#
|
9041
9415
|
# @!attribute [rw] owner_account
|
9042
|
-
# The
|
9043
|
-
#
|
9044
|
-
#
|
9416
|
+
# The account used to create or copy the snapshot. Required if you are
|
9417
|
+
# restoring a snapshot you do not own, optional if you own the
|
9418
|
+
# snapshot.
|
9045
9419
|
# @return [String]
|
9046
9420
|
#
|
9047
9421
|
# @!attribute [rw] hsm_client_certificate_identifier
|
@@ -9141,9 +9515,9 @@ module Aws::Redshift
|
|
9141
9515
|
# @return [Integer]
|
9142
9516
|
#
|
9143
9517
|
# @!attribute [rw] kms_key_id
|
9144
|
-
# The
|
9145
|
-
#
|
9146
|
-
#
|
9518
|
+
# The Key Management Service (KMS) key ID of the encryption key that
|
9519
|
+
# you want to use to encrypt data in the cluster that you restore from
|
9520
|
+
# a shared snapshot.
|
9147
9521
|
# @return [String]
|
9148
9522
|
#
|
9149
9523
|
# @!attribute [rw] node_type
|
@@ -9188,10 +9562,10 @@ module Aws::Redshift
|
|
9188
9562
|
# @return [String]
|
9189
9563
|
#
|
9190
9564
|
# @!attribute [rw] iam_roles
|
9191
|
-
# A list of
|
9192
|
-
# used by the cluster to access other
|
9193
|
-
# the IAM roles in their Amazon Resource Name (ARN)
|
9194
|
-
# supply up to 10 IAM roles in a single request.
|
9565
|
+
# A list of Identity and Access Management (IAM) roles that can be
|
9566
|
+
# used by the cluster to access other Amazon Web Services services.
|
9567
|
+
# You must supply the IAM roles in their Amazon Resource Name (ARN)
|
9568
|
+
# format. You can supply up to 10 IAM roles in a single request.
|
9195
9569
|
#
|
9196
9570
|
# A cluster can have up to 10 IAM roles associated at any time.
|
9197
9571
|
# @return [Array<String>]
|
@@ -9226,8 +9600,8 @@ module Aws::Redshift
|
|
9226
9600
|
# (Advanced Query Accelerator) after the cluster is restored. Possible
|
9227
9601
|
# values include the following.
|
9228
9602
|
#
|
9229
|
-
# * enabled - Use AQUA if it is available for the current
|
9230
|
-
#
|
9603
|
+
# * enabled - Use AQUA if it is available for the current Region and
|
9604
|
+
# Amazon Redshift node type.
|
9231
9605
|
#
|
9232
9606
|
# * disabled - Don't use AQUA.
|
9233
9607
|
#
|
@@ -9509,11 +9883,11 @@ module Aws::Redshift
|
|
9509
9883
|
# @return [String]
|
9510
9884
|
#
|
9511
9885
|
# @!attribute [rw] ec2_security_group_owner_id
|
9512
|
-
# The
|
9513
|
-
#
|
9514
|
-
# not an acceptable value. If `EC2SecurityGroupOwnerId` is
|
9515
|
-
# `EC2SecurityGroupName` must also be provided. and
|
9516
|
-
# provided.
|
9886
|
+
# The account number of the owner of the security group specified in
|
9887
|
+
# the `EC2SecurityGroupName` parameter. The Amazon Web Services access
|
9888
|
+
# key ID is not an acceptable value. If `EC2SecurityGroupOwnerId` is
|
9889
|
+
# specified, `EC2SecurityGroupName` must also be provided. and
|
9890
|
+
# `CIDRIP` cannot be provided.
|
9517
9891
|
#
|
9518
9892
|
# Example: `111122223333`
|
9519
9893
|
# @return [String]
|
@@ -9556,7 +9930,7 @@ module Aws::Redshift
|
|
9556
9930
|
# @return [String]
|
9557
9931
|
#
|
9558
9932
|
# @!attribute [rw] account
|
9559
|
-
# The
|
9933
|
+
# The account ID whose access is to be revoked.
|
9560
9934
|
# @return [String]
|
9561
9935
|
#
|
9562
9936
|
# @!attribute [rw] vpc_ids
|
@@ -9603,8 +9977,8 @@ module Aws::Redshift
|
|
9603
9977
|
# @return [String]
|
9604
9978
|
#
|
9605
9979
|
# @!attribute [rw] account_with_restore_access
|
9606
|
-
# The identifier of the
|
9607
|
-
#
|
9980
|
+
# The identifier of the account that can no longer restore the
|
9981
|
+
# specified snapshot.
|
9608
9982
|
# @return [String]
|
9609
9983
|
#
|
9610
9984
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RevokeSnapshotAccessMessage AWS API Documentation
|
@@ -9878,10 +10252,10 @@ module Aws::Redshift
|
|
9878
10252
|
# An optional parameter that specifies the starting point to return a
|
9879
10253
|
# set of response records. When the results of a
|
9880
10254
|
# DescribeScheduledActions request exceed the value specified in
|
9881
|
-
# `MaxRecords`,
|
9882
|
-
# response. You can retrieve the next set of response
|
9883
|
-
# providing the returned marker value in the `Marker`
|
9884
|
-
# retrying the request.
|
10255
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
10256
|
+
# field of the response. You can retrieve the next set of response
|
10257
|
+
# records by providing the returned marker value in the `Marker`
|
10258
|
+
# parameter and retrying the request.
|
9885
10259
|
# @return [String]
|
9886
10260
|
#
|
9887
10261
|
# @!attribute [rw] scheduled_actions
|
@@ -9938,7 +10312,7 @@ module Aws::Redshift
|
|
9938
10312
|
# @return [Time]
|
9939
10313
|
#
|
9940
10314
|
# @!attribute [rw] master_username
|
9941
|
-
# The
|
10315
|
+
# The admin user name for the cluster.
|
9942
10316
|
# @return [String]
|
9943
10317
|
#
|
9944
10318
|
# @!attribute [rw] cluster_version
|
@@ -9979,9 +10353,9 @@ module Aws::Redshift
|
|
9979
10353
|
# @return [Boolean]
|
9980
10354
|
#
|
9981
10355
|
# @!attribute [rw] kms_key_id
|
9982
|
-
# The
|
9983
|
-
#
|
9984
|
-
#
|
10356
|
+
# The Key Management Service (KMS) key ID of the encryption key that
|
10357
|
+
# was used to encrypt data in the cluster from which the snapshot was
|
10358
|
+
# taken.
|
9985
10359
|
# @return [String]
|
9986
10360
|
#
|
9987
10361
|
# @!attribute [rw] encrypted_with_hsm
|
@@ -9991,16 +10365,16 @@ module Aws::Redshift
|
|
9991
10365
|
# @return [Boolean]
|
9992
10366
|
#
|
9993
10367
|
# @!attribute [rw] accounts_with_restore_access
|
9994
|
-
# A list of the
|
9995
|
-
#
|
9996
|
-
#
|
10368
|
+
# A list of the accounts authorized to restore the snapshot. Returns
|
10369
|
+
# `null` if no accounts are authorized. Visible only to the snapshot
|
10370
|
+
# owner.
|
9997
10371
|
# @return [Array<Types::AccountWithRestoreAccess>]
|
9998
10372
|
#
|
9999
10373
|
# @!attribute [rw] owner_account
|
10000
|
-
# For manual snapshots, the
|
10001
|
-
#
|
10002
|
-
#
|
10003
|
-
#
|
10374
|
+
# For manual snapshots, the account used to create or copy the
|
10375
|
+
# snapshot. For automatic snapshots, the owner of the cluster. The
|
10376
|
+
# owner can perform all snapshot actions, such as sharing a manual
|
10377
|
+
# snapshot.
|
10004
10378
|
# @return [String]
|
10005
10379
|
#
|
10006
10380
|
# @!attribute [rw] total_backup_size_in_mega_bytes
|
@@ -10144,7 +10518,7 @@ module Aws::Redshift
|
|
10144
10518
|
|
10145
10519
|
# The snapshot copy grant that grants Amazon Redshift permission to
|
10146
10520
|
# encrypt copied snapshots with the specified customer master key (CMK)
|
10147
|
-
# from
|
10521
|
+
# from Amazon Web Services KMS in the destination region.
|
10148
10522
|
#
|
10149
10523
|
# For more information about managing snapshot copy grants, go to
|
10150
10524
|
# [Amazon Redshift Database Encryption][1] in the *Amazon Redshift
|
@@ -10159,8 +10533,8 @@ module Aws::Redshift
|
|
10159
10533
|
# @return [String]
|
10160
10534
|
#
|
10161
10535
|
# @!attribute [rw] kms_key_id
|
10162
|
-
# The unique identifier of the customer master key (CMK) in
|
10163
|
-
# which Amazon Redshift is granted permission.
|
10536
|
+
# The unique identifier of the customer master key (CMK) in Amazon Web
|
10537
|
+
# Services KMS to which Amazon Redshift is granted permission.
|
10164
10538
|
# @return [String]
|
10165
10539
|
#
|
10166
10540
|
# @!attribute [rw] tags
|
@@ -10188,10 +10562,10 @@ module Aws::Redshift
|
|
10188
10562
|
# An optional parameter that specifies the starting point to return a
|
10189
10563
|
# set of response records. When the results of a
|
10190
10564
|
# `DescribeSnapshotCopyGrant` request exceed the value specified in
|
10191
|
-
# `MaxRecords`,
|
10192
|
-
# response. You can retrieve the next set of response
|
10193
|
-
# providing the returned marker value in the `Marker`
|
10194
|
-
# retrying the request.
|
10565
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
10566
|
+
# field of the response. You can retrieve the next set of response
|
10567
|
+
# records by providing the returned marker value in the `Marker`
|
10568
|
+
# parameter and retrying the request.
|
10195
10569
|
#
|
10196
10570
|
# Constraints: You can specify either the **SnapshotCopyGrantName**
|
10197
10571
|
# parameter or the **Marker** parameter, but not both.
|
@@ -10218,8 +10592,8 @@ module Aws::Redshift
|
|
10218
10592
|
#
|
10219
10593
|
class SnapshotCopyGrantNotFoundFault < Aws::EmptyStructure; end
|
10220
10594
|
|
10221
|
-
# The
|
10222
|
-
#
|
10595
|
+
# The account has exceeded the maximum number of snapshot copy grants in
|
10596
|
+
# this region.
|
10223
10597
|
#
|
10224
10598
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/SnapshotCopyGrantQuotaExceededFault AWS API Documentation
|
10225
10599
|
#
|
@@ -10733,6 +11107,12 @@ module Aws::Redshift
|
|
10733
11107
|
#
|
10734
11108
|
class UnauthorizedOperation < Aws::EmptyStructure; end
|
10735
11109
|
|
11110
|
+
# The partner integration is not authorized.
|
11111
|
+
#
|
11112
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/UnauthorizedPartnerIntegrationFault AWS API Documentation
|
11113
|
+
#
|
11114
|
+
class UnauthorizedPartnerIntegrationFault < Aws::EmptyStructure; end
|
11115
|
+
|
10736
11116
|
# The specified region is incorrect or does not exist.
|
10737
11117
|
#
|
10738
11118
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/UnknownSnapshotCopyRegionFault AWS API Documentation
|
@@ -10751,6 +11131,57 @@ module Aws::Redshift
|
|
10751
11131
|
#
|
10752
11132
|
class UnsupportedOptionFault < Aws::EmptyStructure; end
|
10753
11133
|
|
11134
|
+
# @note When making an API call, you may pass UpdatePartnerStatusInputMessage
|
11135
|
+
# data as a hash:
|
11136
|
+
#
|
11137
|
+
# {
|
11138
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
11139
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
11140
|
+
# database_name: "PartnerIntegrationDatabaseName", # required
|
11141
|
+
# partner_name: "PartnerIntegrationPartnerName", # required
|
11142
|
+
# status: "Active", # required, accepts Active, Inactive, RuntimeFailure, ConnectionFailure
|
11143
|
+
# status_message: "PartnerIntegrationStatusMessage",
|
11144
|
+
# }
|
11145
|
+
#
|
11146
|
+
# @!attribute [rw] account_id
|
11147
|
+
# The Region ID that owns the cluster.
|
11148
|
+
# @return [String]
|
11149
|
+
#
|
11150
|
+
# @!attribute [rw] cluster_identifier
|
11151
|
+
# The cluster identifier of the cluster whose partner integration
|
11152
|
+
# status is being updated.
|
11153
|
+
# @return [String]
|
11154
|
+
#
|
11155
|
+
# @!attribute [rw] database_name
|
11156
|
+
# The name of the database whose partner integration status is being
|
11157
|
+
# updated.
|
11158
|
+
# @return [String]
|
11159
|
+
#
|
11160
|
+
# @!attribute [rw] partner_name
|
11161
|
+
# The name of the partner whose integration status is being updated.
|
11162
|
+
# @return [String]
|
11163
|
+
#
|
11164
|
+
# @!attribute [rw] status
|
11165
|
+
# The value of the updated status.
|
11166
|
+
# @return [String]
|
11167
|
+
#
|
11168
|
+
# @!attribute [rw] status_message
|
11169
|
+
# The status message provided by the partner.
|
11170
|
+
# @return [String]
|
11171
|
+
#
|
11172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/UpdatePartnerStatusInputMessage AWS API Documentation
|
11173
|
+
#
|
11174
|
+
class UpdatePartnerStatusInputMessage < Struct.new(
|
11175
|
+
:account_id,
|
11176
|
+
:cluster_identifier,
|
11177
|
+
:database_name,
|
11178
|
+
:partner_name,
|
11179
|
+
:status,
|
11180
|
+
:status_message)
|
11181
|
+
SENSITIVE = []
|
11182
|
+
include Aws::Structure
|
11183
|
+
end
|
11184
|
+
|
10754
11185
|
# A maintenance track that you can switch the current track to.
|
10755
11186
|
#
|
10756
11187
|
# @!attribute [rw] maintenance_track_name
|