aws-sdk-redshift 1.56.0 → 1.61.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift.rb +1 -1
- data/lib/aws-sdk-redshift/client.rb +541 -4
- data/lib/aws-sdk-redshift/client_api.rb +247 -0
- data/lib/aws-sdk-redshift/customizations.rb +1 -1
- data/lib/aws-sdk-redshift/errors.rb +110 -0
- data/lib/aws-sdk-redshift/types.rb +608 -5
- metadata +4 -4
@@ -2,7 +2,7 @@
|
|
2
2
|
# WARNING ABOUT GENERATED CODE
|
3
3
|
#
|
4
4
|
# This file is generated. See the contributing for info on making contributions:
|
5
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
5
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
6
6
|
#
|
7
7
|
# WARNING ABOUT GENERATED CODE
|
8
8
|
|
@@ -27,6 +27,7 @@ module Aws::Redshift
|
|
27
27
|
# See {Seahorse::Client::RequestContext} for more information.
|
28
28
|
#
|
29
29
|
# ## Error Classes
|
30
|
+
# * {AccessToClusterDeniedFault}
|
30
31
|
# * {AccessToSnapshotDeniedFault}
|
31
32
|
# * {AuthorizationAlreadyExistsFault}
|
32
33
|
# * {AuthorizationNotFoundFault}
|
@@ -54,6 +55,13 @@ module Aws::Redshift
|
|
54
55
|
# * {CopyToRegionDisabledFault}
|
55
56
|
# * {DependentServiceRequestThrottlingFault}
|
56
57
|
# * {DependentServiceUnavailableFault}
|
58
|
+
# * {EndpointAlreadyExistsFault}
|
59
|
+
# * {EndpointAuthorizationAlreadyExistsFault}
|
60
|
+
# * {EndpointAuthorizationNotFoundFault}
|
61
|
+
# * {EndpointAuthorizationsPerClusterLimitExceededFault}
|
62
|
+
# * {EndpointNotFoundFault}
|
63
|
+
# * {EndpointsPerAuthorizationLimitExceededFault}
|
64
|
+
# * {EndpointsPerClusterLimitExceededFault}
|
57
65
|
# * {EventSubscriptionQuotaExceededFault}
|
58
66
|
# * {HsmClientCertificateAlreadyExistsFault}
|
59
67
|
# * {HsmClientCertificateNotFoundFault}
|
@@ -65,6 +73,7 @@ module Aws::Redshift
|
|
65
73
|
# * {IncompatibleOrderableOptions}
|
66
74
|
# * {InsufficientClusterCapacityFault}
|
67
75
|
# * {InsufficientS3BucketPolicyFault}
|
76
|
+
# * {InvalidAuthorizationStateFault}
|
68
77
|
# * {InvalidClusterParameterGroupStateFault}
|
69
78
|
# * {InvalidClusterSecurityGroupStateFault}
|
70
79
|
# * {InvalidClusterSnapshotScheduleStateFault}
|
@@ -74,6 +83,7 @@ module Aws::Redshift
|
|
74
83
|
# * {InvalidClusterSubnetStateFault}
|
75
84
|
# * {InvalidClusterTrackFault}
|
76
85
|
# * {InvalidElasticIpFault}
|
86
|
+
# * {InvalidEndpointStateFault}
|
77
87
|
# * {InvalidHsmClientCertificateStateFault}
|
78
88
|
# * {InvalidHsmConfigurationStateFault}
|
79
89
|
# * {InvalidReservedNodeStateFault}
|
@@ -141,6 +151,16 @@ module Aws::Redshift
|
|
141
151
|
|
142
152
|
extend Aws::Errors::DynamicErrors
|
143
153
|
|
154
|
+
class AccessToClusterDeniedFault < ServiceError
|
155
|
+
|
156
|
+
# @param [Seahorse::Client::RequestContext] context
|
157
|
+
# @param [String] message
|
158
|
+
# @param [Aws::Redshift::Types::AccessToClusterDeniedFault] data
|
159
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
160
|
+
super(context, message, data)
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
144
164
|
class AccessToSnapshotDeniedFault < ServiceError
|
145
165
|
|
146
166
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -411,6 +431,76 @@ module Aws::Redshift
|
|
411
431
|
end
|
412
432
|
end
|
413
433
|
|
434
|
+
class EndpointAlreadyExistsFault < ServiceError
|
435
|
+
|
436
|
+
# @param [Seahorse::Client::RequestContext] context
|
437
|
+
# @param [String] message
|
438
|
+
# @param [Aws::Redshift::Types::EndpointAlreadyExistsFault] data
|
439
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
440
|
+
super(context, message, data)
|
441
|
+
end
|
442
|
+
end
|
443
|
+
|
444
|
+
class EndpointAuthorizationAlreadyExistsFault < ServiceError
|
445
|
+
|
446
|
+
# @param [Seahorse::Client::RequestContext] context
|
447
|
+
# @param [String] message
|
448
|
+
# @param [Aws::Redshift::Types::EndpointAuthorizationAlreadyExistsFault] data
|
449
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
450
|
+
super(context, message, data)
|
451
|
+
end
|
452
|
+
end
|
453
|
+
|
454
|
+
class EndpointAuthorizationNotFoundFault < ServiceError
|
455
|
+
|
456
|
+
# @param [Seahorse::Client::RequestContext] context
|
457
|
+
# @param [String] message
|
458
|
+
# @param [Aws::Redshift::Types::EndpointAuthorizationNotFoundFault] data
|
459
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
460
|
+
super(context, message, data)
|
461
|
+
end
|
462
|
+
end
|
463
|
+
|
464
|
+
class EndpointAuthorizationsPerClusterLimitExceededFault < ServiceError
|
465
|
+
|
466
|
+
# @param [Seahorse::Client::RequestContext] context
|
467
|
+
# @param [String] message
|
468
|
+
# @param [Aws::Redshift::Types::EndpointAuthorizationsPerClusterLimitExceededFault] data
|
469
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
470
|
+
super(context, message, data)
|
471
|
+
end
|
472
|
+
end
|
473
|
+
|
474
|
+
class EndpointNotFoundFault < ServiceError
|
475
|
+
|
476
|
+
# @param [Seahorse::Client::RequestContext] context
|
477
|
+
# @param [String] message
|
478
|
+
# @param [Aws::Redshift::Types::EndpointNotFoundFault] data
|
479
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
480
|
+
super(context, message, data)
|
481
|
+
end
|
482
|
+
end
|
483
|
+
|
484
|
+
class EndpointsPerAuthorizationLimitExceededFault < ServiceError
|
485
|
+
|
486
|
+
# @param [Seahorse::Client::RequestContext] context
|
487
|
+
# @param [String] message
|
488
|
+
# @param [Aws::Redshift::Types::EndpointsPerAuthorizationLimitExceededFault] data
|
489
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
490
|
+
super(context, message, data)
|
491
|
+
end
|
492
|
+
end
|
493
|
+
|
494
|
+
class EndpointsPerClusterLimitExceededFault < ServiceError
|
495
|
+
|
496
|
+
# @param [Seahorse::Client::RequestContext] context
|
497
|
+
# @param [String] message
|
498
|
+
# @param [Aws::Redshift::Types::EndpointsPerClusterLimitExceededFault] data
|
499
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
500
|
+
super(context, message, data)
|
501
|
+
end
|
502
|
+
end
|
503
|
+
|
414
504
|
class EventSubscriptionQuotaExceededFault < ServiceError
|
415
505
|
|
416
506
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -521,6 +611,16 @@ module Aws::Redshift
|
|
521
611
|
end
|
522
612
|
end
|
523
613
|
|
614
|
+
class InvalidAuthorizationStateFault < ServiceError
|
615
|
+
|
616
|
+
# @param [Seahorse::Client::RequestContext] context
|
617
|
+
# @param [String] message
|
618
|
+
# @param [Aws::Redshift::Types::InvalidAuthorizationStateFault] data
|
619
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
620
|
+
super(context, message, data)
|
621
|
+
end
|
622
|
+
end
|
623
|
+
|
524
624
|
class InvalidClusterParameterGroupStateFault < ServiceError
|
525
625
|
|
526
626
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -611,6 +711,16 @@ module Aws::Redshift
|
|
611
711
|
end
|
612
712
|
end
|
613
713
|
|
714
|
+
class InvalidEndpointStateFault < ServiceError
|
715
|
+
|
716
|
+
# @param [Seahorse::Client::RequestContext] context
|
717
|
+
# @param [String] message
|
718
|
+
# @param [Aws::Redshift::Types::InvalidEndpointStateFault] data
|
719
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
720
|
+
super(context, message, data)
|
721
|
+
end
|
722
|
+
end
|
723
|
+
|
614
724
|
class InvalidHsmClientCertificateStateFault < ServiceError
|
615
725
|
|
616
726
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -49,6 +49,12 @@ module Aws::Redshift
|
|
49
49
|
include Aws::Structure
|
50
50
|
end
|
51
51
|
|
52
|
+
# You are not authorized to access the cluster.
|
53
|
+
#
|
54
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AccessToClusterDeniedFault AWS API Documentation
|
55
|
+
#
|
56
|
+
class AccessToClusterDeniedFault < Aws::EmptyStructure; end
|
57
|
+
|
52
58
|
# The owner of the specified snapshot has not authorized your account to
|
53
59
|
# access the snapshot.
|
54
60
|
#
|
@@ -109,6 +115,40 @@ module Aws::Redshift
|
|
109
115
|
include Aws::Structure
|
110
116
|
end
|
111
117
|
|
118
|
+
# The AQUA (Advanced Query Accelerator) configuration of the cluster.
|
119
|
+
#
|
120
|
+
# @!attribute [rw] aqua_status
|
121
|
+
# The value indicates the status of AQUA on the cluster. Possible
|
122
|
+
# values include the following.
|
123
|
+
#
|
124
|
+
# * enabled - AQUA is enabled.
|
125
|
+
#
|
126
|
+
# * disabled - AQUA is not enabled.
|
127
|
+
#
|
128
|
+
# * applying - AQUA status is being applied.
|
129
|
+
# @return [String]
|
130
|
+
#
|
131
|
+
# @!attribute [rw] aqua_configuration_status
|
132
|
+
# The value represents how the cluster is configured to use AQUA.
|
133
|
+
# Possible values include the following.
|
134
|
+
#
|
135
|
+
# * enabled - Use AQUA if it is available for the current AWS Region
|
136
|
+
# and Amazon Redshift node type.
|
137
|
+
#
|
138
|
+
# * disabled - Don't use AQUA.
|
139
|
+
#
|
140
|
+
# * auto - Amazon Redshift determines whether to use AQUA.
|
141
|
+
# @return [String]
|
142
|
+
#
|
143
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AquaConfiguration AWS API Documentation
|
144
|
+
#
|
145
|
+
class AquaConfiguration < Struct.new(
|
146
|
+
:aqua_status,
|
147
|
+
:aqua_configuration_status)
|
148
|
+
SENSITIVE = []
|
149
|
+
include Aws::Structure
|
150
|
+
end
|
151
|
+
|
112
152
|
# Describes an attribute value.
|
113
153
|
#
|
114
154
|
# @!attribute [rw] attribute_value
|
@@ -198,6 +238,37 @@ module Aws::Redshift
|
|
198
238
|
include Aws::Structure
|
199
239
|
end
|
200
240
|
|
241
|
+
# @note When making an API call, you may pass AuthorizeEndpointAccessMessage
|
242
|
+
# data as a hash:
|
243
|
+
#
|
244
|
+
# {
|
245
|
+
# cluster_identifier: "String",
|
246
|
+
# account: "String", # required
|
247
|
+
# vpc_ids: ["String"],
|
248
|
+
# }
|
249
|
+
#
|
250
|
+
# @!attribute [rw] cluster_identifier
|
251
|
+
# The cluster identifier of the cluster to grant access to.
|
252
|
+
# @return [String]
|
253
|
+
#
|
254
|
+
# @!attribute [rw] account
|
255
|
+
# The AWS account ID to grant access to.
|
256
|
+
# @return [String]
|
257
|
+
#
|
258
|
+
# @!attribute [rw] vpc_ids
|
259
|
+
# The virtual private cloud (VPC) identifiers to grant access to.
|
260
|
+
# @return [Array<String>]
|
261
|
+
#
|
262
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AuthorizeEndpointAccessMessage AWS API Documentation
|
263
|
+
#
|
264
|
+
class AuthorizeEndpointAccessMessage < Struct.new(
|
265
|
+
:cluster_identifier,
|
266
|
+
:account,
|
267
|
+
:vpc_ids)
|
268
|
+
SENSITIVE = []
|
269
|
+
include Aws::Structure
|
270
|
+
end
|
271
|
+
|
201
272
|
# @note When making an API call, you may pass AuthorizeSnapshotAccessMessage
|
202
273
|
# data as a hash:
|
203
274
|
#
|
@@ -717,6 +788,10 @@ module Aws::Redshift
|
|
717
788
|
# The total storage capacity of the cluster in megabytes.
|
718
789
|
# @return [Integer]
|
719
790
|
#
|
791
|
+
# @!attribute [rw] aqua_configuration
|
792
|
+
# The AQUA (Advanced Query Accelerator) configuration of the cluster.
|
793
|
+
# @return [Types::AquaConfiguration]
|
794
|
+
#
|
720
795
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Cluster AWS API Documentation
|
721
796
|
#
|
722
797
|
class Cluster < Struct.new(
|
@@ -768,7 +843,8 @@ module Aws::Redshift
|
|
768
843
|
:resize_info,
|
769
844
|
:availability_zone_relocation_status,
|
770
845
|
:cluster_namespace_arn,
|
771
|
-
:total_storage_capacity_in_mega_bytes
|
846
|
+
:total_storage_capacity_in_mega_bytes,
|
847
|
+
:aqua_configuration)
|
772
848
|
SENSITIVE = []
|
773
849
|
include Aws::Structure
|
774
850
|
end
|
@@ -1632,6 +1708,7 @@ module Aws::Redshift
|
|
1632
1708
|
# maintenance_track_name: "String",
|
1633
1709
|
# snapshot_schedule_identifier: "String",
|
1634
1710
|
# availability_zone_relocation: false,
|
1711
|
+
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
1635
1712
|
# }
|
1636
1713
|
#
|
1637
1714
|
# @!attribute [rw] db_name
|
@@ -1993,6 +2070,19 @@ module Aws::Redshift
|
|
1993
2070
|
# between Availability Zones after the cluster is created.
|
1994
2071
|
# @return [Boolean]
|
1995
2072
|
#
|
2073
|
+
# @!attribute [rw] aqua_configuration_status
|
2074
|
+
# The value represents how the cluster is configured to use AQUA
|
2075
|
+
# (Advanced Query Accelerator) when it is created. Possible values
|
2076
|
+
# include the following.
|
2077
|
+
#
|
2078
|
+
# * enabled - Use AQUA if it is available for the current AWS Region
|
2079
|
+
# and Amazon Redshift node type.
|
2080
|
+
#
|
2081
|
+
# * disabled - Don't use AQUA.
|
2082
|
+
#
|
2083
|
+
# * auto - Amazon Redshift determines whether to use AQUA.
|
2084
|
+
# @return [String]
|
2085
|
+
#
|
1996
2086
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateClusterMessage AWS API Documentation
|
1997
2087
|
#
|
1998
2088
|
class CreateClusterMessage < Struct.new(
|
@@ -2026,7 +2116,8 @@ module Aws::Redshift
|
|
2026
2116
|
:iam_roles,
|
2027
2117
|
:maintenance_track_name,
|
2028
2118
|
:snapshot_schedule_identifier,
|
2029
|
-
:availability_zone_relocation
|
2119
|
+
:availability_zone_relocation,
|
2120
|
+
:aqua_configuration_status)
|
2030
2121
|
SENSITIVE = []
|
2031
2122
|
include Aws::Structure
|
2032
2123
|
end
|
@@ -2320,6 +2411,57 @@ module Aws::Redshift
|
|
2320
2411
|
include Aws::Structure
|
2321
2412
|
end
|
2322
2413
|
|
2414
|
+
# @note When making an API call, you may pass CreateEndpointAccessMessage
|
2415
|
+
# data as a hash:
|
2416
|
+
#
|
2417
|
+
# {
|
2418
|
+
# cluster_identifier: "String",
|
2419
|
+
# resource_owner: "String",
|
2420
|
+
# endpoint_name: "String", # required
|
2421
|
+
# subnet_group_name: "String", # required
|
2422
|
+
# vpc_security_group_ids: ["String"],
|
2423
|
+
# }
|
2424
|
+
#
|
2425
|
+
# @!attribute [rw] cluster_identifier
|
2426
|
+
# The cluster identifier of the cluster to access.
|
2427
|
+
# @return [String]
|
2428
|
+
#
|
2429
|
+
# @!attribute [rw] resource_owner
|
2430
|
+
# The AWS account ID of the owner of the cluster. This is only
|
2431
|
+
# required if the cluster is in another AWS account.
|
2432
|
+
# @return [String]
|
2433
|
+
#
|
2434
|
+
# @!attribute [rw] endpoint_name
|
2435
|
+
# The Redshift-managed VPC endpoint name.
|
2436
|
+
#
|
2437
|
+
# An endpoint name must contain 1-30 characters. Valid characters are
|
2438
|
+
# A-Z, a-z, 0-9, and hyphen(-). The first character must be a letter.
|
2439
|
+
# The name can't contain two consecutive hyphens or end with a
|
2440
|
+
# hyphen.
|
2441
|
+
# @return [String]
|
2442
|
+
#
|
2443
|
+
# @!attribute [rw] subnet_group_name
|
2444
|
+
# The subnet group from which Amazon Redshift chooses the subnet to
|
2445
|
+
# deploy the endpoint.
|
2446
|
+
# @return [String]
|
2447
|
+
#
|
2448
|
+
# @!attribute [rw] vpc_security_group_ids
|
2449
|
+
# The security group that defines the ports, protocols, and sources
|
2450
|
+
# for inbound traffic that you are authorizing into your endpoint.
|
2451
|
+
# @return [Array<String>]
|
2452
|
+
#
|
2453
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateEndpointAccessMessage AWS API Documentation
|
2454
|
+
#
|
2455
|
+
class CreateEndpointAccessMessage < Struct.new(
|
2456
|
+
:cluster_identifier,
|
2457
|
+
:resource_owner,
|
2458
|
+
:endpoint_name,
|
2459
|
+
:subnet_group_name,
|
2460
|
+
:vpc_security_group_ids)
|
2461
|
+
SENSITIVE = []
|
2462
|
+
include Aws::Structure
|
2463
|
+
end
|
2464
|
+
|
2323
2465
|
# @note When making an API call, you may pass CreateEventSubscriptionMessage
|
2324
2466
|
# data as a hash:
|
2325
2467
|
#
|
@@ -3193,6 +3335,25 @@ module Aws::Redshift
|
|
3193
3335
|
include Aws::Structure
|
3194
3336
|
end
|
3195
3337
|
|
3338
|
+
# @note When making an API call, you may pass DeleteEndpointAccessMessage
|
3339
|
+
# data as a hash:
|
3340
|
+
#
|
3341
|
+
# {
|
3342
|
+
# endpoint_name: "String", # required
|
3343
|
+
# }
|
3344
|
+
#
|
3345
|
+
# @!attribute [rw] endpoint_name
|
3346
|
+
# The Redshift-managed VPC endpoint to delete.
|
3347
|
+
# @return [String]
|
3348
|
+
#
|
3349
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteEndpointAccessMessage AWS API Documentation
|
3350
|
+
#
|
3351
|
+
class DeleteEndpointAccessMessage < Struct.new(
|
3352
|
+
:endpoint_name)
|
3353
|
+
SENSITIVE = []
|
3354
|
+
include Aws::Structure
|
3355
|
+
end
|
3356
|
+
|
3196
3357
|
# @note When making an API call, you may pass DeleteEventSubscriptionMessage
|
3197
3358
|
# data as a hash:
|
3198
3359
|
#
|
@@ -4109,6 +4270,104 @@ module Aws::Redshift
|
|
4109
4270
|
include Aws::Structure
|
4110
4271
|
end
|
4111
4272
|
|
4273
|
+
# @note When making an API call, you may pass DescribeEndpointAccessMessage
|
4274
|
+
# data as a hash:
|
4275
|
+
#
|
4276
|
+
# {
|
4277
|
+
# cluster_identifier: "String",
|
4278
|
+
# resource_owner: "String",
|
4279
|
+
# endpoint_name: "String",
|
4280
|
+
# vpc_id: "String",
|
4281
|
+
# max_records: 1,
|
4282
|
+
# marker: "String",
|
4283
|
+
# }
|
4284
|
+
#
|
4285
|
+
# @!attribute [rw] cluster_identifier
|
4286
|
+
# The cluster identifier associated with the described endpoint.
|
4287
|
+
# @return [String]
|
4288
|
+
#
|
4289
|
+
# @!attribute [rw] resource_owner
|
4290
|
+
# The AWS account ID of the owner of the cluster.
|
4291
|
+
# @return [String]
|
4292
|
+
#
|
4293
|
+
# @!attribute [rw] endpoint_name
|
4294
|
+
# The name of the endpoint to be described.
|
4295
|
+
# @return [String]
|
4296
|
+
#
|
4297
|
+
# @!attribute [rw] vpc_id
|
4298
|
+
# The virtual private cloud (VPC) identifier with access to the
|
4299
|
+
# cluster.
|
4300
|
+
# @return [String]
|
4301
|
+
#
|
4302
|
+
# @!attribute [rw] max_records
|
4303
|
+
# Reserved for Amazon Redshift internal use.
|
4304
|
+
# @return [Integer]
|
4305
|
+
#
|
4306
|
+
# @!attribute [rw] marker
|
4307
|
+
# Reserved for Amazon Redshift internal use.
|
4308
|
+
# @return [String]
|
4309
|
+
#
|
4310
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEndpointAccessMessage AWS API Documentation
|
4311
|
+
#
|
4312
|
+
class DescribeEndpointAccessMessage < Struct.new(
|
4313
|
+
:cluster_identifier,
|
4314
|
+
:resource_owner,
|
4315
|
+
:endpoint_name,
|
4316
|
+
:vpc_id,
|
4317
|
+
:max_records,
|
4318
|
+
:marker)
|
4319
|
+
SENSITIVE = []
|
4320
|
+
include Aws::Structure
|
4321
|
+
end
|
4322
|
+
|
4323
|
+
# @note When making an API call, you may pass DescribeEndpointAuthorizationMessage
|
4324
|
+
# data as a hash:
|
4325
|
+
#
|
4326
|
+
# {
|
4327
|
+
# cluster_identifier: "String",
|
4328
|
+
# account: "String",
|
4329
|
+
# grantee: false,
|
4330
|
+
# max_records: 1,
|
4331
|
+
# marker: "String",
|
4332
|
+
# }
|
4333
|
+
#
|
4334
|
+
# @!attribute [rw] cluster_identifier
|
4335
|
+
# The cluster identifier of the cluster to access.
|
4336
|
+
# @return [String]
|
4337
|
+
#
|
4338
|
+
# @!attribute [rw] account
|
4339
|
+
# The AWS account ID of either the cluster owner (grantor) or grantee.
|
4340
|
+
# If `Grantee` parameter is true, then the `Account` value is of the
|
4341
|
+
# grantor.
|
4342
|
+
# @return [String]
|
4343
|
+
#
|
4344
|
+
# @!attribute [rw] grantee
|
4345
|
+
# Indicates whether to check authorization from a grantor or grantee
|
4346
|
+
# point of view. If true, Amazon Redshift returns endpoint
|
4347
|
+
# authorizations that you've been granted. If false (default), checks
|
4348
|
+
# authorization from a grantor point of view.
|
4349
|
+
# @return [Boolean]
|
4350
|
+
#
|
4351
|
+
# @!attribute [rw] max_records
|
4352
|
+
# Reserved for Amazon Redshift internal use.
|
4353
|
+
# @return [Integer]
|
4354
|
+
#
|
4355
|
+
# @!attribute [rw] marker
|
4356
|
+
# Reserved for Amazon Redshift internal use.
|
4357
|
+
# @return [String]
|
4358
|
+
#
|
4359
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEndpointAuthorizationMessage AWS API Documentation
|
4360
|
+
#
|
4361
|
+
class DescribeEndpointAuthorizationMessage < Struct.new(
|
4362
|
+
:cluster_identifier,
|
4363
|
+
:account,
|
4364
|
+
:grantee,
|
4365
|
+
:max_records,
|
4366
|
+
:marker)
|
4367
|
+
SENSITIVE = []
|
4368
|
+
include Aws::Structure
|
4369
|
+
end
|
4370
|
+
|
4112
4371
|
# @note When making an API call, you may pass DescribeEventCategoriesMessage
|
4113
4372
|
# data as a hash:
|
4114
4373
|
#
|
@@ -5475,6 +5734,204 @@ module Aws::Redshift
|
|
5475
5734
|
include Aws::Structure
|
5476
5735
|
end
|
5477
5736
|
|
5737
|
+
# Describes a Redshift-managed VPC endpoint.
|
5738
|
+
#
|
5739
|
+
# @!attribute [rw] cluster_identifier
|
5740
|
+
# The cluster identifier of the cluster associated with the endpoint.
|
5741
|
+
# @return [String]
|
5742
|
+
#
|
5743
|
+
# @!attribute [rw] resource_owner
|
5744
|
+
# The AWS account ID of the owner of the cluster.
|
5745
|
+
# @return [String]
|
5746
|
+
#
|
5747
|
+
# @!attribute [rw] subnet_group_name
|
5748
|
+
# The subnet group name where Amazon Redshift chooses to deploy the
|
5749
|
+
# endpoint.
|
5750
|
+
# @return [String]
|
5751
|
+
#
|
5752
|
+
# @!attribute [rw] endpoint_status
|
5753
|
+
# The status of the endpoint.
|
5754
|
+
# @return [String]
|
5755
|
+
#
|
5756
|
+
# @!attribute [rw] endpoint_name
|
5757
|
+
# The name of the endpoint.
|
5758
|
+
# @return [String]
|
5759
|
+
#
|
5760
|
+
# @!attribute [rw] endpoint_create_time
|
5761
|
+
# The time (UTC) that the endpoint was created.
|
5762
|
+
# @return [Time]
|
5763
|
+
#
|
5764
|
+
# @!attribute [rw] port
|
5765
|
+
# The port number on which the cluster accepts incoming connections.
|
5766
|
+
# @return [Integer]
|
5767
|
+
#
|
5768
|
+
# @!attribute [rw] address
|
5769
|
+
# The DNS address of the endpoint.
|
5770
|
+
# @return [String]
|
5771
|
+
#
|
5772
|
+
# @!attribute [rw] vpc_security_groups
|
5773
|
+
# The security groups associated with the endpoint.
|
5774
|
+
# @return [Array<Types::VpcSecurityGroupMembership>]
|
5775
|
+
#
|
5776
|
+
# @!attribute [rw] vpc_endpoint
|
5777
|
+
# The connection endpoint for connecting to an Amazon Redshift cluster
|
5778
|
+
# through the proxy.
|
5779
|
+
# @return [Types::VpcEndpoint]
|
5780
|
+
#
|
5781
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAccess AWS API Documentation
|
5782
|
+
#
|
5783
|
+
class EndpointAccess < Struct.new(
|
5784
|
+
:cluster_identifier,
|
5785
|
+
:resource_owner,
|
5786
|
+
:subnet_group_name,
|
5787
|
+
:endpoint_status,
|
5788
|
+
:endpoint_name,
|
5789
|
+
:endpoint_create_time,
|
5790
|
+
:port,
|
5791
|
+
:address,
|
5792
|
+
:vpc_security_groups,
|
5793
|
+
:vpc_endpoint)
|
5794
|
+
SENSITIVE = []
|
5795
|
+
include Aws::Structure
|
5796
|
+
end
|
5797
|
+
|
5798
|
+
# @!attribute [rw] endpoint_access_list
|
5799
|
+
# The list of endpoints with access to the cluster.
|
5800
|
+
# @return [Array<Types::EndpointAccess>]
|
5801
|
+
#
|
5802
|
+
# @!attribute [rw] marker
|
5803
|
+
# Reserved for Amazon Redshift internal use.
|
5804
|
+
# @return [String]
|
5805
|
+
#
|
5806
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAccessList AWS API Documentation
|
5807
|
+
#
|
5808
|
+
class EndpointAccessList < Struct.new(
|
5809
|
+
:endpoint_access_list,
|
5810
|
+
:marker)
|
5811
|
+
SENSITIVE = []
|
5812
|
+
include Aws::Structure
|
5813
|
+
end
|
5814
|
+
|
5815
|
+
# The account already has a Redshift-managed VPC endpoint with the given
|
5816
|
+
# identifier.
|
5817
|
+
#
|
5818
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAlreadyExistsFault AWS API Documentation
|
5819
|
+
#
|
5820
|
+
class EndpointAlreadyExistsFault < Aws::EmptyStructure; end
|
5821
|
+
|
5822
|
+
# Describes an endpoint authorization for authorizing Redshift-managed
|
5823
|
+
# VPC endpoint access to a cluster across AWS accounts.
|
5824
|
+
#
|
5825
|
+
# @!attribute [rw] grantor
|
5826
|
+
# The AWS account ID of the cluster owner.
|
5827
|
+
# @return [String]
|
5828
|
+
#
|
5829
|
+
# @!attribute [rw] grantee
|
5830
|
+
# The AWS account ID of the grantee of the cluster.
|
5831
|
+
# @return [String]
|
5832
|
+
#
|
5833
|
+
# @!attribute [rw] cluster_identifier
|
5834
|
+
# The cluster identifier.
|
5835
|
+
# @return [String]
|
5836
|
+
#
|
5837
|
+
# @!attribute [rw] authorize_time
|
5838
|
+
# The time (UTC) when the authorization was created.
|
5839
|
+
# @return [Time]
|
5840
|
+
#
|
5841
|
+
# @!attribute [rw] cluster_status
|
5842
|
+
# The status of the cluster.
|
5843
|
+
# @return [String]
|
5844
|
+
#
|
5845
|
+
# @!attribute [rw] status
|
5846
|
+
# The status of the authorization action.
|
5847
|
+
# @return [String]
|
5848
|
+
#
|
5849
|
+
# @!attribute [rw] allowed_all_vp_cs
|
5850
|
+
# Indicates whether all VPCs in the grantee account are allowed access
|
5851
|
+
# to the cluster.
|
5852
|
+
# @return [Boolean]
|
5853
|
+
#
|
5854
|
+
# @!attribute [rw] allowed_vp_cs
|
5855
|
+
# The VPCs allowed access to the cluster.
|
5856
|
+
# @return [Array<String>]
|
5857
|
+
#
|
5858
|
+
# @!attribute [rw] endpoint_count
|
5859
|
+
# The number of Redshift-managed VPC endpoints created for the
|
5860
|
+
# authorization.
|
5861
|
+
# @return [Integer]
|
5862
|
+
#
|
5863
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAuthorization AWS API Documentation
|
5864
|
+
#
|
5865
|
+
class EndpointAuthorization < Struct.new(
|
5866
|
+
:grantor,
|
5867
|
+
:grantee,
|
5868
|
+
:cluster_identifier,
|
5869
|
+
:authorize_time,
|
5870
|
+
:cluster_status,
|
5871
|
+
:status,
|
5872
|
+
:allowed_all_vp_cs,
|
5873
|
+
:allowed_vp_cs,
|
5874
|
+
:endpoint_count)
|
5875
|
+
SENSITIVE = []
|
5876
|
+
include Aws::Structure
|
5877
|
+
end
|
5878
|
+
|
5879
|
+
# The authorization already exists for this endpoint.
|
5880
|
+
#
|
5881
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAuthorizationAlreadyExistsFault AWS API Documentation
|
5882
|
+
#
|
5883
|
+
class EndpointAuthorizationAlreadyExistsFault < Aws::EmptyStructure; end
|
5884
|
+
|
5885
|
+
# @!attribute [rw] endpoint_authorization_list
|
5886
|
+
# The authorizations to an endpoint.
|
5887
|
+
# @return [Array<Types::EndpointAuthorization>]
|
5888
|
+
#
|
5889
|
+
# @!attribute [rw] marker
|
5890
|
+
# Reserved for Amazon Redshift internal use.
|
5891
|
+
# @return [String]
|
5892
|
+
#
|
5893
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAuthorizationList AWS API Documentation
|
5894
|
+
#
|
5895
|
+
class EndpointAuthorizationList < Struct.new(
|
5896
|
+
:endpoint_authorization_list,
|
5897
|
+
:marker)
|
5898
|
+
SENSITIVE = []
|
5899
|
+
include Aws::Structure
|
5900
|
+
end
|
5901
|
+
|
5902
|
+
# The authorization for this endpoint can't be found.
|
5903
|
+
#
|
5904
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAuthorizationNotFoundFault AWS API Documentation
|
5905
|
+
#
|
5906
|
+
class EndpointAuthorizationNotFoundFault < Aws::EmptyStructure; end
|
5907
|
+
|
5908
|
+
# The number of endpoint authorizations per cluster has exceeded its
|
5909
|
+
# limit.
|
5910
|
+
#
|
5911
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAuthorizationsPerClusterLimitExceededFault AWS API Documentation
|
5912
|
+
#
|
5913
|
+
class EndpointAuthorizationsPerClusterLimitExceededFault < Aws::EmptyStructure; end
|
5914
|
+
|
5915
|
+
# The endpoint name doesn't refer to an existing endpoint.
|
5916
|
+
#
|
5917
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointNotFoundFault AWS API Documentation
|
5918
|
+
#
|
5919
|
+
class EndpointNotFoundFault < Aws::EmptyStructure; end
|
5920
|
+
|
5921
|
+
# The number of Redshift-managed VPC endpoints per authorization has
|
5922
|
+
# exceeded its limit.
|
5923
|
+
#
|
5924
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointsPerAuthorizationLimitExceededFault AWS API Documentation
|
5925
|
+
#
|
5926
|
+
class EndpointsPerAuthorizationLimitExceededFault < Aws::EmptyStructure; end
|
5927
|
+
|
5928
|
+
# The number of Redshift-managed VPC endpoints per cluster has exceeded
|
5929
|
+
# its limit.
|
5930
|
+
#
|
5931
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointsPerClusterLimitExceededFault AWS API Documentation
|
5932
|
+
#
|
5933
|
+
class EndpointsPerClusterLimitExceededFault < Aws::EmptyStructure; end
|
5934
|
+
|
5478
5935
|
# Describes an event.
|
5479
5936
|
#
|
5480
5937
|
# @!attribute [rw] source_identifier
|
@@ -6166,6 +6623,12 @@ module Aws::Redshift
|
|
6166
6623
|
#
|
6167
6624
|
class InsufficientS3BucketPolicyFault < Aws::EmptyStructure; end
|
6168
6625
|
|
6626
|
+
# The status of the authorization is not valid.
|
6627
|
+
#
|
6628
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/InvalidAuthorizationStateFault AWS API Documentation
|
6629
|
+
#
|
6630
|
+
class InvalidAuthorizationStateFault < Aws::EmptyStructure; end
|
6631
|
+
|
6169
6632
|
# The cluster parameter group action can not be completed because
|
6170
6633
|
# another task is in progress that involves the parameter group. Wait a
|
6171
6634
|
# few moments and try the operation again.
|
@@ -6223,6 +6686,12 @@ module Aws::Redshift
|
|
6223
6686
|
#
|
6224
6687
|
class InvalidElasticIpFault < Aws::EmptyStructure; end
|
6225
6688
|
|
6689
|
+
# The status of the endpoint is not valid.
|
6690
|
+
#
|
6691
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/InvalidEndpointStateFault AWS API Documentation
|
6692
|
+
#
|
6693
|
+
class InvalidEndpointStateFault < Aws::EmptyStructure; end
|
6694
|
+
|
6226
6695
|
# The specified HSM client certificate is not in the `available` state,
|
6227
6696
|
# or it is still in use by one or more Amazon Redshift clusters.
|
6228
6697
|
#
|
@@ -6413,6 +6882,51 @@ module Aws::Redshift
|
|
6413
6882
|
include Aws::Structure
|
6414
6883
|
end
|
6415
6884
|
|
6885
|
+
# @note When making an API call, you may pass ModifyAquaInputMessage
|
6886
|
+
# data as a hash:
|
6887
|
+
#
|
6888
|
+
# {
|
6889
|
+
# cluster_identifier: "String", # required
|
6890
|
+
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
6891
|
+
# }
|
6892
|
+
#
|
6893
|
+
# @!attribute [rw] cluster_identifier
|
6894
|
+
# The identifier of the cluster to be modified.
|
6895
|
+
# @return [String]
|
6896
|
+
#
|
6897
|
+
# @!attribute [rw] aqua_configuration_status
|
6898
|
+
# The new value of AQUA configuration status. Possible values include
|
6899
|
+
# the following.
|
6900
|
+
#
|
6901
|
+
# * enabled - Use AQUA if it is available for the current AWS Region
|
6902
|
+
# and Amazon Redshift node type.
|
6903
|
+
#
|
6904
|
+
# * disabled - Don't use AQUA.
|
6905
|
+
#
|
6906
|
+
# * auto - Amazon Redshift determines whether to use AQUA.
|
6907
|
+
# @return [String]
|
6908
|
+
#
|
6909
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyAquaInputMessage AWS API Documentation
|
6910
|
+
#
|
6911
|
+
class ModifyAquaInputMessage < Struct.new(
|
6912
|
+
:cluster_identifier,
|
6913
|
+
:aqua_configuration_status)
|
6914
|
+
SENSITIVE = []
|
6915
|
+
include Aws::Structure
|
6916
|
+
end
|
6917
|
+
|
6918
|
+
# @!attribute [rw] aqua_configuration
|
6919
|
+
# The updated AQUA configuration of the cluster.
|
6920
|
+
# @return [Types::AquaConfiguration]
|
6921
|
+
#
|
6922
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyAquaOutputMessage AWS API Documentation
|
6923
|
+
#
|
6924
|
+
class ModifyAquaOutputMessage < Struct.new(
|
6925
|
+
:aqua_configuration)
|
6926
|
+
SENSITIVE = []
|
6927
|
+
include Aws::Structure
|
6928
|
+
end
|
6929
|
+
|
6416
6930
|
# @note When making an API call, you may pass ModifyClusterDbRevisionMessage
|
6417
6931
|
# data as a hash:
|
6418
6932
|
#
|
@@ -7108,6 +7622,32 @@ module Aws::Redshift
|
|
7108
7622
|
include Aws::Structure
|
7109
7623
|
end
|
7110
7624
|
|
7625
|
+
# @note When making an API call, you may pass ModifyEndpointAccessMessage
|
7626
|
+
# data as a hash:
|
7627
|
+
#
|
7628
|
+
# {
|
7629
|
+
# endpoint_name: "String", # required
|
7630
|
+
# vpc_security_group_ids: ["String"],
|
7631
|
+
# }
|
7632
|
+
#
|
7633
|
+
# @!attribute [rw] endpoint_name
|
7634
|
+
# The endpoint to be modified.
|
7635
|
+
# @return [String]
|
7636
|
+
#
|
7637
|
+
# @!attribute [rw] vpc_security_group_ids
|
7638
|
+
# The complete list of VPC security groups associated with the
|
7639
|
+
# endpoint after the endpoint is modified.
|
7640
|
+
# @return [Array<String>]
|
7641
|
+
#
|
7642
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyEndpointAccessMessage AWS API Documentation
|
7643
|
+
#
|
7644
|
+
class ModifyEndpointAccessMessage < Struct.new(
|
7645
|
+
:endpoint_name,
|
7646
|
+
:vpc_security_group_ids)
|
7647
|
+
SENSITIVE = []
|
7648
|
+
include Aws::Structure
|
7649
|
+
end
|
7650
|
+
|
7111
7651
|
# @note When making an API call, you may pass ModifyEventSubscriptionMessage
|
7112
7652
|
# data as a hash:
|
7113
7653
|
#
|
@@ -8428,6 +8968,7 @@ module Aws::Redshift
|
|
8428
8968
|
# snapshot_schedule_identifier: "String",
|
8429
8969
|
# number_of_nodes: 1,
|
8430
8970
|
# availability_zone_relocation: false,
|
8971
|
+
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
8431
8972
|
# }
|
8432
8973
|
#
|
8433
8974
|
# @!attribute [rw] cluster_identifier
|
@@ -8680,6 +9221,19 @@ module Aws::Redshift
|
|
8680
9221
|
# between Availability Zones after the cluster is restored.
|
8681
9222
|
# @return [Boolean]
|
8682
9223
|
#
|
9224
|
+
# @!attribute [rw] aqua_configuration_status
|
9225
|
+
# The value represents how the cluster is configured to use AQUA
|
9226
|
+
# (Advanced Query Accelerator) after the cluster is restored. Possible
|
9227
|
+
# values include the following.
|
9228
|
+
#
|
9229
|
+
# * enabled - Use AQUA if it is available for the current AWS Region
|
9230
|
+
# and Amazon Redshift node type.
|
9231
|
+
#
|
9232
|
+
# * disabled - Don't use AQUA.
|
9233
|
+
#
|
9234
|
+
# * auto - Amazon Redshift determines whether to use AQUA.
|
9235
|
+
# @return [String]
|
9236
|
+
#
|
8683
9237
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshotMessage AWS API Documentation
|
8684
9238
|
#
|
8685
9239
|
class RestoreFromClusterSnapshotMessage < Struct.new(
|
@@ -8709,7 +9263,8 @@ module Aws::Redshift
|
|
8709
9263
|
:maintenance_track_name,
|
8710
9264
|
:snapshot_schedule_identifier,
|
8711
9265
|
:number_of_nodes,
|
8712
|
-
:availability_zone_relocation
|
9266
|
+
:availability_zone_relocation,
|
9267
|
+
:aqua_configuration_status)
|
8713
9268
|
SENSITIVE = []
|
8714
9269
|
include Aws::Structure
|
8715
9270
|
end
|
@@ -8789,6 +9344,7 @@ module Aws::Redshift
|
|
8789
9344
|
# target_database_name: "String",
|
8790
9345
|
# target_schema_name: "String",
|
8791
9346
|
# new_table_name: "String", # required
|
9347
|
+
# enable_case_sensitive_identifier: false,
|
8792
9348
|
# }
|
8793
9349
|
#
|
8794
9350
|
# @!attribute [rw] cluster_identifier
|
@@ -8829,6 +9385,12 @@ module Aws::Redshift
|
|
8829
9385
|
# The name of the table to create as a result of the current request.
|
8830
9386
|
# @return [String]
|
8831
9387
|
#
|
9388
|
+
# @!attribute [rw] enable_case_sensitive_identifier
|
9389
|
+
# Indicates whether name identifiers for database, schema, and table
|
9390
|
+
# are case sensitive. If `true`, the names are case sensitive. If
|
9391
|
+
# `false` (default), the names are not case sensitive.
|
9392
|
+
# @return [Boolean]
|
9393
|
+
#
|
8832
9394
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreTableFromClusterSnapshotMessage AWS API Documentation
|
8833
9395
|
#
|
8834
9396
|
class RestoreTableFromClusterSnapshotMessage < Struct.new(
|
@@ -8839,7 +9401,8 @@ module Aws::Redshift
|
|
8839
9401
|
:source_table_name,
|
8840
9402
|
:target_database_name,
|
8841
9403
|
:target_schema_name,
|
8842
|
-
:new_table_name
|
9404
|
+
:new_table_name,
|
9405
|
+
:enable_case_sensitive_identifier)
|
8843
9406
|
SENSITIVE = []
|
8844
9407
|
include Aws::Structure
|
8845
9408
|
end
|
@@ -8978,6 +9541,46 @@ module Aws::Redshift
|
|
8978
9541
|
include Aws::Structure
|
8979
9542
|
end
|
8980
9543
|
|
9544
|
+
# @note When making an API call, you may pass RevokeEndpointAccessMessage
|
9545
|
+
# data as a hash:
|
9546
|
+
#
|
9547
|
+
# {
|
9548
|
+
# cluster_identifier: "String",
|
9549
|
+
# account: "String",
|
9550
|
+
# vpc_ids: ["String"],
|
9551
|
+
# force: false,
|
9552
|
+
# }
|
9553
|
+
#
|
9554
|
+
# @!attribute [rw] cluster_identifier
|
9555
|
+
# The cluster to revoke access from.
|
9556
|
+
# @return [String]
|
9557
|
+
#
|
9558
|
+
# @!attribute [rw] account
|
9559
|
+
# The AWS account ID whose access is to be revoked.
|
9560
|
+
# @return [String]
|
9561
|
+
#
|
9562
|
+
# @!attribute [rw] vpc_ids
|
9563
|
+
# The virtual private cloud (VPC) identifiers for which access is to
|
9564
|
+
# be revoked.
|
9565
|
+
# @return [Array<String>]
|
9566
|
+
#
|
9567
|
+
# @!attribute [rw] force
|
9568
|
+
# Indicates whether to force the revoke action. If true, the
|
9569
|
+
# Redshift-managed VPC endpoints associated with the endpoint
|
9570
|
+
# authorization are also deleted.
|
9571
|
+
# @return [Boolean]
|
9572
|
+
#
|
9573
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RevokeEndpointAccessMessage AWS API Documentation
|
9574
|
+
#
|
9575
|
+
class RevokeEndpointAccessMessage < Struct.new(
|
9576
|
+
:cluster_identifier,
|
9577
|
+
:account,
|
9578
|
+
:vpc_ids,
|
9579
|
+
:force)
|
9580
|
+
SENSITIVE = []
|
9581
|
+
include Aws::Structure
|
9582
|
+
end
|
9583
|
+
|
8981
9584
|
# @note When making an API call, you may pass RevokeSnapshotAccessMessage
|
8982
9585
|
# data as a hash:
|
8983
9586
|
#
|
@@ -10266,7 +10869,7 @@ module Aws::Redshift
|
|
10266
10869
|
#
|
10267
10870
|
class UsageLimitNotFoundFault < Aws::EmptyStructure; end
|
10268
10871
|
|
10269
|
-
# The connection endpoint for connecting an Amazon Redshift cluster
|
10872
|
+
# The connection endpoint for connecting to an Amazon Redshift cluster
|
10270
10873
|
# through the proxy.
|
10271
10874
|
#
|
10272
10875
|
# @!attribute [rw] vpc_endpoint_id
|