aws-sdk-redshift 1.57.0 → 1.62.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 +652 -4
- data/lib/aws-sdk-redshift/client_api.rb +329 -0
- data/lib/aws-sdk-redshift/errors.rb +132 -0
- data/lib/aws-sdk-redshift/types.rb +720 -2
- metadata +3 -3
@@ -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}
|
@@ -93,6 +103,7 @@ module Aws::Redshift
|
|
93
103
|
# * {LimitExceededFault}
|
94
104
|
# * {NumberOfNodesPerClusterLimitExceededFault}
|
95
105
|
# * {NumberOfNodesQuotaExceededFault}
|
106
|
+
# * {PartnerNotFoundFault}
|
96
107
|
# * {ReservedNodeAlreadyExistsFault}
|
97
108
|
# * {ReservedNodeAlreadyMigratedFault}
|
98
109
|
# * {ReservedNodeNotFoundFault}
|
@@ -129,6 +140,7 @@ module Aws::Redshift
|
|
129
140
|
# * {TableRestoreNotFoundFault}
|
130
141
|
# * {TagLimitExceededFault}
|
131
142
|
# * {UnauthorizedOperation}
|
143
|
+
# * {UnauthorizedPartnerIntegrationFault}
|
132
144
|
# * {UnknownSnapshotCopyRegionFault}
|
133
145
|
# * {UnsupportedOperationFault}
|
134
146
|
# * {UnsupportedOptionFault}
|
@@ -141,6 +153,16 @@ module Aws::Redshift
|
|
141
153
|
|
142
154
|
extend Aws::Errors::DynamicErrors
|
143
155
|
|
156
|
+
class AccessToClusterDeniedFault < ServiceError
|
157
|
+
|
158
|
+
# @param [Seahorse::Client::RequestContext] context
|
159
|
+
# @param [String] message
|
160
|
+
# @param [Aws::Redshift::Types::AccessToClusterDeniedFault] data
|
161
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
162
|
+
super(context, message, data)
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
144
166
|
class AccessToSnapshotDeniedFault < ServiceError
|
145
167
|
|
146
168
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -411,6 +433,76 @@ module Aws::Redshift
|
|
411
433
|
end
|
412
434
|
end
|
413
435
|
|
436
|
+
class EndpointAlreadyExistsFault < ServiceError
|
437
|
+
|
438
|
+
# @param [Seahorse::Client::RequestContext] context
|
439
|
+
# @param [String] message
|
440
|
+
# @param [Aws::Redshift::Types::EndpointAlreadyExistsFault] data
|
441
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
442
|
+
super(context, message, data)
|
443
|
+
end
|
444
|
+
end
|
445
|
+
|
446
|
+
class EndpointAuthorizationAlreadyExistsFault < ServiceError
|
447
|
+
|
448
|
+
# @param [Seahorse::Client::RequestContext] context
|
449
|
+
# @param [String] message
|
450
|
+
# @param [Aws::Redshift::Types::EndpointAuthorizationAlreadyExistsFault] data
|
451
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
452
|
+
super(context, message, data)
|
453
|
+
end
|
454
|
+
end
|
455
|
+
|
456
|
+
class EndpointAuthorizationNotFoundFault < ServiceError
|
457
|
+
|
458
|
+
# @param [Seahorse::Client::RequestContext] context
|
459
|
+
# @param [String] message
|
460
|
+
# @param [Aws::Redshift::Types::EndpointAuthorizationNotFoundFault] data
|
461
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
462
|
+
super(context, message, data)
|
463
|
+
end
|
464
|
+
end
|
465
|
+
|
466
|
+
class EndpointAuthorizationsPerClusterLimitExceededFault < ServiceError
|
467
|
+
|
468
|
+
# @param [Seahorse::Client::RequestContext] context
|
469
|
+
# @param [String] message
|
470
|
+
# @param [Aws::Redshift::Types::EndpointAuthorizationsPerClusterLimitExceededFault] data
|
471
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
472
|
+
super(context, message, data)
|
473
|
+
end
|
474
|
+
end
|
475
|
+
|
476
|
+
class EndpointNotFoundFault < ServiceError
|
477
|
+
|
478
|
+
# @param [Seahorse::Client::RequestContext] context
|
479
|
+
# @param [String] message
|
480
|
+
# @param [Aws::Redshift::Types::EndpointNotFoundFault] data
|
481
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
482
|
+
super(context, message, data)
|
483
|
+
end
|
484
|
+
end
|
485
|
+
|
486
|
+
class EndpointsPerAuthorizationLimitExceededFault < ServiceError
|
487
|
+
|
488
|
+
# @param [Seahorse::Client::RequestContext] context
|
489
|
+
# @param [String] message
|
490
|
+
# @param [Aws::Redshift::Types::EndpointsPerAuthorizationLimitExceededFault] data
|
491
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
492
|
+
super(context, message, data)
|
493
|
+
end
|
494
|
+
end
|
495
|
+
|
496
|
+
class EndpointsPerClusterLimitExceededFault < ServiceError
|
497
|
+
|
498
|
+
# @param [Seahorse::Client::RequestContext] context
|
499
|
+
# @param [String] message
|
500
|
+
# @param [Aws::Redshift::Types::EndpointsPerClusterLimitExceededFault] data
|
501
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
502
|
+
super(context, message, data)
|
503
|
+
end
|
504
|
+
end
|
505
|
+
|
414
506
|
class EventSubscriptionQuotaExceededFault < ServiceError
|
415
507
|
|
416
508
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -521,6 +613,16 @@ module Aws::Redshift
|
|
521
613
|
end
|
522
614
|
end
|
523
615
|
|
616
|
+
class InvalidAuthorizationStateFault < ServiceError
|
617
|
+
|
618
|
+
# @param [Seahorse::Client::RequestContext] context
|
619
|
+
# @param [String] message
|
620
|
+
# @param [Aws::Redshift::Types::InvalidAuthorizationStateFault] data
|
621
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
622
|
+
super(context, message, data)
|
623
|
+
end
|
624
|
+
end
|
625
|
+
|
524
626
|
class InvalidClusterParameterGroupStateFault < ServiceError
|
525
627
|
|
526
628
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -611,6 +713,16 @@ module Aws::Redshift
|
|
611
713
|
end
|
612
714
|
end
|
613
715
|
|
716
|
+
class InvalidEndpointStateFault < ServiceError
|
717
|
+
|
718
|
+
# @param [Seahorse::Client::RequestContext] context
|
719
|
+
# @param [String] message
|
720
|
+
# @param [Aws::Redshift::Types::InvalidEndpointStateFault] data
|
721
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
722
|
+
super(context, message, data)
|
723
|
+
end
|
724
|
+
end
|
725
|
+
|
614
726
|
class InvalidHsmClientCertificateStateFault < ServiceError
|
615
727
|
|
616
728
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -801,6 +913,16 @@ module Aws::Redshift
|
|
801
913
|
end
|
802
914
|
end
|
803
915
|
|
916
|
+
class PartnerNotFoundFault < ServiceError
|
917
|
+
|
918
|
+
# @param [Seahorse::Client::RequestContext] context
|
919
|
+
# @param [String] message
|
920
|
+
# @param [Aws::Redshift::Types::PartnerNotFoundFault] data
|
921
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
922
|
+
super(context, message, data)
|
923
|
+
end
|
924
|
+
end
|
925
|
+
|
804
926
|
class ReservedNodeAlreadyExistsFault < ServiceError
|
805
927
|
|
806
928
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -1161,6 +1283,16 @@ module Aws::Redshift
|
|
1161
1283
|
end
|
1162
1284
|
end
|
1163
1285
|
|
1286
|
+
class UnauthorizedPartnerIntegrationFault < ServiceError
|
1287
|
+
|
1288
|
+
# @param [Seahorse::Client::RequestContext] context
|
1289
|
+
# @param [String] message
|
1290
|
+
# @param [Aws::Redshift::Types::UnauthorizedPartnerIntegrationFault] data
|
1291
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1292
|
+
super(context, message, data)
|
1293
|
+
end
|
1294
|
+
end
|
1295
|
+
|
1164
1296
|
class UnknownSnapshotCopyRegionFault < ServiceError
|
1165
1297
|
|
1166
1298
|
# @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
|
#
|
@@ -232,6 +238,37 @@ module Aws::Redshift
|
|
232
238
|
include Aws::Structure
|
233
239
|
end
|
234
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
|
+
|
235
272
|
# @note When making an API call, you may pass AuthorizeSnapshotAccessMessage
|
236
273
|
# data as a hash:
|
237
274
|
#
|
@@ -2374,6 +2411,57 @@ module Aws::Redshift
|
|
2374
2411
|
include Aws::Structure
|
2375
2412
|
end
|
2376
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
|
+
|
2377
2465
|
# @note When making an API call, you may pass CreateEventSubscriptionMessage
|
2378
2466
|
# data as a hash:
|
2379
2467
|
#
|
@@ -3247,6 +3335,25 @@ module Aws::Redshift
|
|
3247
3335
|
include Aws::Structure
|
3248
3336
|
end
|
3249
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
|
+
|
3250
3357
|
# @note When making an API call, you may pass DeleteEventSubscriptionMessage
|
3251
3358
|
# data as a hash:
|
3252
3359
|
#
|
@@ -4163,6 +4270,116 @@ module Aws::Redshift
|
|
4163
4270
|
include Aws::Structure
|
4164
4271
|
end
|
4165
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
|
+
# The maximum number of records to include in the response. If more
|
4304
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
4305
|
+
# token called a `Marker` is included in the response so that the
|
4306
|
+
# remaining results can be retrieved.
|
4307
|
+
# @return [Integer]
|
4308
|
+
#
|
4309
|
+
# @!attribute [rw] marker
|
4310
|
+
# An optional pagination token provided by a previous
|
4311
|
+
# `DescribeEndpointAccess` request. If this parameter is specified,
|
4312
|
+
# the response includes only records beyond the marker, up to the
|
4313
|
+
# value specified by the `MaxRecords` parameter.
|
4314
|
+
# @return [String]
|
4315
|
+
#
|
4316
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEndpointAccessMessage AWS API Documentation
|
4317
|
+
#
|
4318
|
+
class DescribeEndpointAccessMessage < Struct.new(
|
4319
|
+
:cluster_identifier,
|
4320
|
+
:resource_owner,
|
4321
|
+
:endpoint_name,
|
4322
|
+
:vpc_id,
|
4323
|
+
:max_records,
|
4324
|
+
:marker)
|
4325
|
+
SENSITIVE = []
|
4326
|
+
include Aws::Structure
|
4327
|
+
end
|
4328
|
+
|
4329
|
+
# @note When making an API call, you may pass DescribeEndpointAuthorizationMessage
|
4330
|
+
# data as a hash:
|
4331
|
+
#
|
4332
|
+
# {
|
4333
|
+
# cluster_identifier: "String",
|
4334
|
+
# account: "String",
|
4335
|
+
# grantee: false,
|
4336
|
+
# max_records: 1,
|
4337
|
+
# marker: "String",
|
4338
|
+
# }
|
4339
|
+
#
|
4340
|
+
# @!attribute [rw] cluster_identifier
|
4341
|
+
# The cluster identifier of the cluster to access.
|
4342
|
+
# @return [String]
|
4343
|
+
#
|
4344
|
+
# @!attribute [rw] account
|
4345
|
+
# The AWS account ID of either the cluster owner (grantor) or grantee.
|
4346
|
+
# If `Grantee` parameter is true, then the `Account` value is of the
|
4347
|
+
# grantor.
|
4348
|
+
# @return [String]
|
4349
|
+
#
|
4350
|
+
# @!attribute [rw] grantee
|
4351
|
+
# Indicates whether to check authorization from a grantor or grantee
|
4352
|
+
# point of view. If true, Amazon Redshift returns endpoint
|
4353
|
+
# authorizations that you've been granted. If false (default), checks
|
4354
|
+
# authorization from a grantor point of view.
|
4355
|
+
# @return [Boolean]
|
4356
|
+
#
|
4357
|
+
# @!attribute [rw] max_records
|
4358
|
+
# The maximum number of records to include in the response. If more
|
4359
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
4360
|
+
# token called a `Marker` is included in the response so that the
|
4361
|
+
# remaining results can be retrieved.
|
4362
|
+
# @return [Integer]
|
4363
|
+
#
|
4364
|
+
# @!attribute [rw] marker
|
4365
|
+
# An optional pagination token provided by a previous
|
4366
|
+
# `DescribeEndpointAuthorization` request. If this parameter is
|
4367
|
+
# specified, the response includes only records beyond the marker, up
|
4368
|
+
# to the value specified by the `MaxRecords` parameter.
|
4369
|
+
# @return [String]
|
4370
|
+
#
|
4371
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEndpointAuthorizationMessage AWS API Documentation
|
4372
|
+
#
|
4373
|
+
class DescribeEndpointAuthorizationMessage < Struct.new(
|
4374
|
+
:cluster_identifier,
|
4375
|
+
:account,
|
4376
|
+
:grantee,
|
4377
|
+
:max_records,
|
4378
|
+
:marker)
|
4379
|
+
SENSITIVE = []
|
4380
|
+
include Aws::Structure
|
4381
|
+
end
|
4382
|
+
|
4166
4383
|
# @note When making an API call, you may pass DescribeEventCategoriesMessage
|
4167
4384
|
# data as a hash:
|
4168
4385
|
#
|
@@ -4686,6 +4903,59 @@ module Aws::Redshift
|
|
4686
4903
|
include Aws::Structure
|
4687
4904
|
end
|
4688
4905
|
|
4906
|
+
# @note When making an API call, you may pass DescribePartnersInputMessage
|
4907
|
+
# data as a hash:
|
4908
|
+
#
|
4909
|
+
# {
|
4910
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
4911
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
4912
|
+
# database_name: "PartnerIntegrationDatabaseName",
|
4913
|
+
# partner_name: "PartnerIntegrationPartnerName",
|
4914
|
+
# }
|
4915
|
+
#
|
4916
|
+
# @!attribute [rw] account_id
|
4917
|
+
# The AWS account ID that owns the cluster.
|
4918
|
+
# @return [String]
|
4919
|
+
#
|
4920
|
+
# @!attribute [rw] cluster_identifier
|
4921
|
+
# The cluster identifier of the cluster whose partner integration is
|
4922
|
+
# being described.
|
4923
|
+
# @return [String]
|
4924
|
+
#
|
4925
|
+
# @!attribute [rw] database_name
|
4926
|
+
# The name of the database whose partner integration is being
|
4927
|
+
# described. If database name is not specified, then all databases in
|
4928
|
+
# the cluster are described.
|
4929
|
+
# @return [String]
|
4930
|
+
#
|
4931
|
+
# @!attribute [rw] partner_name
|
4932
|
+
# The name of the partner that is being described. If partner name is
|
4933
|
+
# not specified, then all partner integrations are described.
|
4934
|
+
# @return [String]
|
4935
|
+
#
|
4936
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribePartnersInputMessage AWS API Documentation
|
4937
|
+
#
|
4938
|
+
class DescribePartnersInputMessage < Struct.new(
|
4939
|
+
:account_id,
|
4940
|
+
:cluster_identifier,
|
4941
|
+
:database_name,
|
4942
|
+
:partner_name)
|
4943
|
+
SENSITIVE = []
|
4944
|
+
include Aws::Structure
|
4945
|
+
end
|
4946
|
+
|
4947
|
+
# @!attribute [rw] partner_integration_info_list
|
4948
|
+
# A list of partner integrations.
|
4949
|
+
# @return [Array<Types::PartnerIntegrationInfo>]
|
4950
|
+
#
|
4951
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribePartnersOutputMessage AWS API Documentation
|
4952
|
+
#
|
4953
|
+
class DescribePartnersOutputMessage < Struct.new(
|
4954
|
+
:partner_integration_info_list)
|
4955
|
+
SENSITIVE = []
|
4956
|
+
include Aws::Structure
|
4957
|
+
end
|
4958
|
+
|
4689
4959
|
# @note When making an API call, you may pass DescribeReservedNodeOfferingsMessage
|
4690
4960
|
# data as a hash:
|
4691
4961
|
#
|
@@ -5529,6 +5799,210 @@ module Aws::Redshift
|
|
5529
5799
|
include Aws::Structure
|
5530
5800
|
end
|
5531
5801
|
|
5802
|
+
# Describes a Redshift-managed VPC endpoint.
|
5803
|
+
#
|
5804
|
+
# @!attribute [rw] cluster_identifier
|
5805
|
+
# The cluster identifier of the cluster associated with the endpoint.
|
5806
|
+
# @return [String]
|
5807
|
+
#
|
5808
|
+
# @!attribute [rw] resource_owner
|
5809
|
+
# The AWS account ID of the owner of the cluster.
|
5810
|
+
# @return [String]
|
5811
|
+
#
|
5812
|
+
# @!attribute [rw] subnet_group_name
|
5813
|
+
# The subnet group name where Amazon Redshift chooses to deploy the
|
5814
|
+
# endpoint.
|
5815
|
+
# @return [String]
|
5816
|
+
#
|
5817
|
+
# @!attribute [rw] endpoint_status
|
5818
|
+
# The status of the endpoint.
|
5819
|
+
# @return [String]
|
5820
|
+
#
|
5821
|
+
# @!attribute [rw] endpoint_name
|
5822
|
+
# The name of the endpoint.
|
5823
|
+
# @return [String]
|
5824
|
+
#
|
5825
|
+
# @!attribute [rw] endpoint_create_time
|
5826
|
+
# The time (UTC) that the endpoint was created.
|
5827
|
+
# @return [Time]
|
5828
|
+
#
|
5829
|
+
# @!attribute [rw] port
|
5830
|
+
# The port number on which the cluster accepts incoming connections.
|
5831
|
+
# @return [Integer]
|
5832
|
+
#
|
5833
|
+
# @!attribute [rw] address
|
5834
|
+
# The DNS address of the endpoint.
|
5835
|
+
# @return [String]
|
5836
|
+
#
|
5837
|
+
# @!attribute [rw] vpc_security_groups
|
5838
|
+
# The security groups associated with the endpoint.
|
5839
|
+
# @return [Array<Types::VpcSecurityGroupMembership>]
|
5840
|
+
#
|
5841
|
+
# @!attribute [rw] vpc_endpoint
|
5842
|
+
# The connection endpoint for connecting to an Amazon Redshift cluster
|
5843
|
+
# through the proxy.
|
5844
|
+
# @return [Types::VpcEndpoint]
|
5845
|
+
#
|
5846
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAccess AWS API Documentation
|
5847
|
+
#
|
5848
|
+
class EndpointAccess < Struct.new(
|
5849
|
+
:cluster_identifier,
|
5850
|
+
:resource_owner,
|
5851
|
+
:subnet_group_name,
|
5852
|
+
:endpoint_status,
|
5853
|
+
:endpoint_name,
|
5854
|
+
:endpoint_create_time,
|
5855
|
+
:port,
|
5856
|
+
:address,
|
5857
|
+
:vpc_security_groups,
|
5858
|
+
:vpc_endpoint)
|
5859
|
+
SENSITIVE = []
|
5860
|
+
include Aws::Structure
|
5861
|
+
end
|
5862
|
+
|
5863
|
+
# @!attribute [rw] endpoint_access_list
|
5864
|
+
# The list of endpoints with access to the cluster.
|
5865
|
+
# @return [Array<Types::EndpointAccess>]
|
5866
|
+
#
|
5867
|
+
# @!attribute [rw] marker
|
5868
|
+
# An optional pagination token provided by a previous
|
5869
|
+
# `DescribeEndpointAccess` request. If this parameter is specified,
|
5870
|
+
# the response includes only records beyond the marker, up to the
|
5871
|
+
# value specified by the `MaxRecords` parameter.
|
5872
|
+
# @return [String]
|
5873
|
+
#
|
5874
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAccessList AWS API Documentation
|
5875
|
+
#
|
5876
|
+
class EndpointAccessList < Struct.new(
|
5877
|
+
:endpoint_access_list,
|
5878
|
+
:marker)
|
5879
|
+
SENSITIVE = []
|
5880
|
+
include Aws::Structure
|
5881
|
+
end
|
5882
|
+
|
5883
|
+
# The account already has a Redshift-managed VPC endpoint with the given
|
5884
|
+
# identifier.
|
5885
|
+
#
|
5886
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAlreadyExistsFault AWS API Documentation
|
5887
|
+
#
|
5888
|
+
class EndpointAlreadyExistsFault < Aws::EmptyStructure; end
|
5889
|
+
|
5890
|
+
# Describes an endpoint authorization for authorizing Redshift-managed
|
5891
|
+
# VPC endpoint access to a cluster across AWS accounts.
|
5892
|
+
#
|
5893
|
+
# @!attribute [rw] grantor
|
5894
|
+
# The AWS account ID of the cluster owner.
|
5895
|
+
# @return [String]
|
5896
|
+
#
|
5897
|
+
# @!attribute [rw] grantee
|
5898
|
+
# The AWS account ID of the grantee of the cluster.
|
5899
|
+
# @return [String]
|
5900
|
+
#
|
5901
|
+
# @!attribute [rw] cluster_identifier
|
5902
|
+
# The cluster identifier.
|
5903
|
+
# @return [String]
|
5904
|
+
#
|
5905
|
+
# @!attribute [rw] authorize_time
|
5906
|
+
# The time (UTC) when the authorization was created.
|
5907
|
+
# @return [Time]
|
5908
|
+
#
|
5909
|
+
# @!attribute [rw] cluster_status
|
5910
|
+
# The status of the cluster.
|
5911
|
+
# @return [String]
|
5912
|
+
#
|
5913
|
+
# @!attribute [rw] status
|
5914
|
+
# The status of the authorization action.
|
5915
|
+
# @return [String]
|
5916
|
+
#
|
5917
|
+
# @!attribute [rw] allowed_all_vp_cs
|
5918
|
+
# Indicates whether all VPCs in the grantee account are allowed access
|
5919
|
+
# to the cluster.
|
5920
|
+
# @return [Boolean]
|
5921
|
+
#
|
5922
|
+
# @!attribute [rw] allowed_vp_cs
|
5923
|
+
# The VPCs allowed access to the cluster.
|
5924
|
+
# @return [Array<String>]
|
5925
|
+
#
|
5926
|
+
# @!attribute [rw] endpoint_count
|
5927
|
+
# The number of Redshift-managed VPC endpoints created for the
|
5928
|
+
# authorization.
|
5929
|
+
# @return [Integer]
|
5930
|
+
#
|
5931
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAuthorization AWS API Documentation
|
5932
|
+
#
|
5933
|
+
class EndpointAuthorization < Struct.new(
|
5934
|
+
:grantor,
|
5935
|
+
:grantee,
|
5936
|
+
:cluster_identifier,
|
5937
|
+
:authorize_time,
|
5938
|
+
:cluster_status,
|
5939
|
+
:status,
|
5940
|
+
:allowed_all_vp_cs,
|
5941
|
+
:allowed_vp_cs,
|
5942
|
+
:endpoint_count)
|
5943
|
+
SENSITIVE = []
|
5944
|
+
include Aws::Structure
|
5945
|
+
end
|
5946
|
+
|
5947
|
+
# The authorization already exists for this endpoint.
|
5948
|
+
#
|
5949
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAuthorizationAlreadyExistsFault AWS API Documentation
|
5950
|
+
#
|
5951
|
+
class EndpointAuthorizationAlreadyExistsFault < Aws::EmptyStructure; end
|
5952
|
+
|
5953
|
+
# @!attribute [rw] endpoint_authorization_list
|
5954
|
+
# The authorizations to an endpoint.
|
5955
|
+
# @return [Array<Types::EndpointAuthorization>]
|
5956
|
+
#
|
5957
|
+
# @!attribute [rw] marker
|
5958
|
+
# An optional pagination token provided by a previous
|
5959
|
+
# `DescribeEndpointAuthorization` request. If this parameter is
|
5960
|
+
# specified, the response includes only records beyond the marker, up
|
5961
|
+
# to the value specified by the `MaxRecords` parameter.
|
5962
|
+
# @return [String]
|
5963
|
+
#
|
5964
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAuthorizationList AWS API Documentation
|
5965
|
+
#
|
5966
|
+
class EndpointAuthorizationList < Struct.new(
|
5967
|
+
:endpoint_authorization_list,
|
5968
|
+
:marker)
|
5969
|
+
SENSITIVE = []
|
5970
|
+
include Aws::Structure
|
5971
|
+
end
|
5972
|
+
|
5973
|
+
# The authorization for this endpoint can't be found.
|
5974
|
+
#
|
5975
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAuthorizationNotFoundFault AWS API Documentation
|
5976
|
+
#
|
5977
|
+
class EndpointAuthorizationNotFoundFault < Aws::EmptyStructure; end
|
5978
|
+
|
5979
|
+
# The number of endpoint authorizations per cluster has exceeded its
|
5980
|
+
# limit.
|
5981
|
+
#
|
5982
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAuthorizationsPerClusterLimitExceededFault AWS API Documentation
|
5983
|
+
#
|
5984
|
+
class EndpointAuthorizationsPerClusterLimitExceededFault < Aws::EmptyStructure; end
|
5985
|
+
|
5986
|
+
# The endpoint name doesn't refer to an existing endpoint.
|
5987
|
+
#
|
5988
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointNotFoundFault AWS API Documentation
|
5989
|
+
#
|
5990
|
+
class EndpointNotFoundFault < Aws::EmptyStructure; end
|
5991
|
+
|
5992
|
+
# The number of Redshift-managed VPC endpoints per authorization has
|
5993
|
+
# exceeded its limit.
|
5994
|
+
#
|
5995
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointsPerAuthorizationLimitExceededFault AWS API Documentation
|
5996
|
+
#
|
5997
|
+
class EndpointsPerAuthorizationLimitExceededFault < Aws::EmptyStructure; end
|
5998
|
+
|
5999
|
+
# The number of Redshift-managed VPC endpoints per cluster has exceeded
|
6000
|
+
# its limit.
|
6001
|
+
#
|
6002
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointsPerClusterLimitExceededFault AWS API Documentation
|
6003
|
+
#
|
6004
|
+
class EndpointsPerClusterLimitExceededFault < Aws::EmptyStructure; end
|
6005
|
+
|
5532
6006
|
# Describes an event.
|
5533
6007
|
#
|
5534
6008
|
# @!attribute [rw] source_identifier
|
@@ -6220,6 +6694,12 @@ module Aws::Redshift
|
|
6220
6694
|
#
|
6221
6695
|
class InsufficientS3BucketPolicyFault < Aws::EmptyStructure; end
|
6222
6696
|
|
6697
|
+
# The status of the authorization is not valid.
|
6698
|
+
#
|
6699
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/InvalidAuthorizationStateFault AWS API Documentation
|
6700
|
+
#
|
6701
|
+
class InvalidAuthorizationStateFault < Aws::EmptyStructure; end
|
6702
|
+
|
6223
6703
|
# The cluster parameter group action can not be completed because
|
6224
6704
|
# another task is in progress that involves the parameter group. Wait a
|
6225
6705
|
# few moments and try the operation again.
|
@@ -6277,6 +6757,12 @@ module Aws::Redshift
|
|
6277
6757
|
#
|
6278
6758
|
class InvalidElasticIpFault < Aws::EmptyStructure; end
|
6279
6759
|
|
6760
|
+
# The status of the endpoint is not valid.
|
6761
|
+
#
|
6762
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/InvalidEndpointStateFault AWS API Documentation
|
6763
|
+
#
|
6764
|
+
class InvalidEndpointStateFault < Aws::EmptyStructure; end
|
6765
|
+
|
6280
6766
|
# The specified HSM client certificate is not in the `available` state,
|
6281
6767
|
# or it is still in use by one or more Amazon Redshift clusters.
|
6282
6768
|
#
|
@@ -7207,6 +7693,32 @@ module Aws::Redshift
|
|
7207
7693
|
include Aws::Structure
|
7208
7694
|
end
|
7209
7695
|
|
7696
|
+
# @note When making an API call, you may pass ModifyEndpointAccessMessage
|
7697
|
+
# data as a hash:
|
7698
|
+
#
|
7699
|
+
# {
|
7700
|
+
# endpoint_name: "String", # required
|
7701
|
+
# vpc_security_group_ids: ["String"],
|
7702
|
+
# }
|
7703
|
+
#
|
7704
|
+
# @!attribute [rw] endpoint_name
|
7705
|
+
# The endpoint to be modified.
|
7706
|
+
# @return [String]
|
7707
|
+
#
|
7708
|
+
# @!attribute [rw] vpc_security_group_ids
|
7709
|
+
# The complete list of VPC security groups associated with the
|
7710
|
+
# endpoint after the endpoint is modified.
|
7711
|
+
# @return [Array<String>]
|
7712
|
+
#
|
7713
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyEndpointAccessMessage AWS API Documentation
|
7714
|
+
#
|
7715
|
+
class ModifyEndpointAccessMessage < Struct.new(
|
7716
|
+
:endpoint_name,
|
7717
|
+
:vpc_security_group_ids)
|
7718
|
+
SENSITIVE = []
|
7719
|
+
include Aws::Structure
|
7720
|
+
end
|
7721
|
+
|
7210
7722
|
# @note When making an API call, you may pass ModifyEventSubscriptionMessage
|
7211
7723
|
# data as a hash:
|
7212
7724
|
#
|
@@ -7787,6 +8299,107 @@ module Aws::Redshift
|
|
7787
8299
|
include Aws::Structure
|
7788
8300
|
end
|
7789
8301
|
|
8302
|
+
# Describes a partner integration.
|
8303
|
+
#
|
8304
|
+
# @!attribute [rw] database_name
|
8305
|
+
# The name of the database that receives data from a partner.
|
8306
|
+
# @return [String]
|
8307
|
+
#
|
8308
|
+
# @!attribute [rw] partner_name
|
8309
|
+
# The name of the partner.
|
8310
|
+
# @return [String]
|
8311
|
+
#
|
8312
|
+
# @!attribute [rw] status
|
8313
|
+
# The partner integration status.
|
8314
|
+
# @return [String]
|
8315
|
+
#
|
8316
|
+
# @!attribute [rw] status_message
|
8317
|
+
# The status message provided by the partner.
|
8318
|
+
# @return [String]
|
8319
|
+
#
|
8320
|
+
# @!attribute [rw] created_at
|
8321
|
+
# The date (UTC) that the partner integration was created.
|
8322
|
+
# @return [Time]
|
8323
|
+
#
|
8324
|
+
# @!attribute [rw] updated_at
|
8325
|
+
# The date (UTC) that the partner integration status was last updated
|
8326
|
+
# by the partner.
|
8327
|
+
# @return [Time]
|
8328
|
+
#
|
8329
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PartnerIntegrationInfo AWS API Documentation
|
8330
|
+
#
|
8331
|
+
class PartnerIntegrationInfo < Struct.new(
|
8332
|
+
:database_name,
|
8333
|
+
:partner_name,
|
8334
|
+
:status,
|
8335
|
+
:status_message,
|
8336
|
+
:created_at,
|
8337
|
+
:updated_at)
|
8338
|
+
SENSITIVE = []
|
8339
|
+
include Aws::Structure
|
8340
|
+
end
|
8341
|
+
|
8342
|
+
# @note When making an API call, you may pass PartnerIntegrationInputMessage
|
8343
|
+
# data as a hash:
|
8344
|
+
#
|
8345
|
+
# {
|
8346
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
8347
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
8348
|
+
# database_name: "PartnerIntegrationDatabaseName", # required
|
8349
|
+
# partner_name: "PartnerIntegrationPartnerName", # required
|
8350
|
+
# }
|
8351
|
+
#
|
8352
|
+
# @!attribute [rw] account_id
|
8353
|
+
# The AWS account ID that owns the cluster.
|
8354
|
+
# @return [String]
|
8355
|
+
#
|
8356
|
+
# @!attribute [rw] cluster_identifier
|
8357
|
+
# The cluster identifier of the cluster that receives data from the
|
8358
|
+
# partner.
|
8359
|
+
# @return [String]
|
8360
|
+
#
|
8361
|
+
# @!attribute [rw] database_name
|
8362
|
+
# The name of the database that receives data from the partner.
|
8363
|
+
# @return [String]
|
8364
|
+
#
|
8365
|
+
# @!attribute [rw] partner_name
|
8366
|
+
# The name of the partner that is authorized to send data.
|
8367
|
+
# @return [String]
|
8368
|
+
#
|
8369
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PartnerIntegrationInputMessage AWS API Documentation
|
8370
|
+
#
|
8371
|
+
class PartnerIntegrationInputMessage < Struct.new(
|
8372
|
+
:account_id,
|
8373
|
+
:cluster_identifier,
|
8374
|
+
:database_name,
|
8375
|
+
:partner_name)
|
8376
|
+
SENSITIVE = []
|
8377
|
+
include Aws::Structure
|
8378
|
+
end
|
8379
|
+
|
8380
|
+
# @!attribute [rw] database_name
|
8381
|
+
# The name of the database that receives data from the partner.
|
8382
|
+
# @return [String]
|
8383
|
+
#
|
8384
|
+
# @!attribute [rw] partner_name
|
8385
|
+
# The name of the partner that is authorized to send data.
|
8386
|
+
# @return [String]
|
8387
|
+
#
|
8388
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PartnerIntegrationOutputMessage AWS API Documentation
|
8389
|
+
#
|
8390
|
+
class PartnerIntegrationOutputMessage < Struct.new(
|
8391
|
+
:database_name,
|
8392
|
+
:partner_name)
|
8393
|
+
SENSITIVE = []
|
8394
|
+
include Aws::Structure
|
8395
|
+
end
|
8396
|
+
|
8397
|
+
# The name of the partner was not found.
|
8398
|
+
#
|
8399
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PartnerNotFoundFault AWS API Documentation
|
8400
|
+
#
|
8401
|
+
class PartnerNotFoundFault < Aws::EmptyStructure; end
|
8402
|
+
|
7790
8403
|
# Describes a pause cluster operation. For example, a scheduled action
|
7791
8404
|
# to run the `PauseCluster` API operation.
|
7792
8405
|
#
|
@@ -8903,6 +9516,7 @@ module Aws::Redshift
|
|
8903
9516
|
# target_database_name: "String",
|
8904
9517
|
# target_schema_name: "String",
|
8905
9518
|
# new_table_name: "String", # required
|
9519
|
+
# enable_case_sensitive_identifier: false,
|
8906
9520
|
# }
|
8907
9521
|
#
|
8908
9522
|
# @!attribute [rw] cluster_identifier
|
@@ -8943,6 +9557,12 @@ module Aws::Redshift
|
|
8943
9557
|
# The name of the table to create as a result of the current request.
|
8944
9558
|
# @return [String]
|
8945
9559
|
#
|
9560
|
+
# @!attribute [rw] enable_case_sensitive_identifier
|
9561
|
+
# Indicates whether name identifiers for database, schema, and table
|
9562
|
+
# are case sensitive. If `true`, the names are case sensitive. If
|
9563
|
+
# `false` (default), the names are not case sensitive.
|
9564
|
+
# @return [Boolean]
|
9565
|
+
#
|
8946
9566
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreTableFromClusterSnapshotMessage AWS API Documentation
|
8947
9567
|
#
|
8948
9568
|
class RestoreTableFromClusterSnapshotMessage < Struct.new(
|
@@ -8953,7 +9573,8 @@ module Aws::Redshift
|
|
8953
9573
|
:source_table_name,
|
8954
9574
|
:target_database_name,
|
8955
9575
|
:target_schema_name,
|
8956
|
-
:new_table_name
|
9576
|
+
:new_table_name,
|
9577
|
+
:enable_case_sensitive_identifier)
|
8957
9578
|
SENSITIVE = []
|
8958
9579
|
include Aws::Structure
|
8959
9580
|
end
|
@@ -9092,6 +9713,46 @@ module Aws::Redshift
|
|
9092
9713
|
include Aws::Structure
|
9093
9714
|
end
|
9094
9715
|
|
9716
|
+
# @note When making an API call, you may pass RevokeEndpointAccessMessage
|
9717
|
+
# data as a hash:
|
9718
|
+
#
|
9719
|
+
# {
|
9720
|
+
# cluster_identifier: "String",
|
9721
|
+
# account: "String",
|
9722
|
+
# vpc_ids: ["String"],
|
9723
|
+
# force: false,
|
9724
|
+
# }
|
9725
|
+
#
|
9726
|
+
# @!attribute [rw] cluster_identifier
|
9727
|
+
# The cluster to revoke access from.
|
9728
|
+
# @return [String]
|
9729
|
+
#
|
9730
|
+
# @!attribute [rw] account
|
9731
|
+
# The AWS account ID whose access is to be revoked.
|
9732
|
+
# @return [String]
|
9733
|
+
#
|
9734
|
+
# @!attribute [rw] vpc_ids
|
9735
|
+
# The virtual private cloud (VPC) identifiers for which access is to
|
9736
|
+
# be revoked.
|
9737
|
+
# @return [Array<String>]
|
9738
|
+
#
|
9739
|
+
# @!attribute [rw] force
|
9740
|
+
# Indicates whether to force the revoke action. If true, the
|
9741
|
+
# Redshift-managed VPC endpoints associated with the endpoint
|
9742
|
+
# authorization are also deleted.
|
9743
|
+
# @return [Boolean]
|
9744
|
+
#
|
9745
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RevokeEndpointAccessMessage AWS API Documentation
|
9746
|
+
#
|
9747
|
+
class RevokeEndpointAccessMessage < Struct.new(
|
9748
|
+
:cluster_identifier,
|
9749
|
+
:account,
|
9750
|
+
:vpc_ids,
|
9751
|
+
:force)
|
9752
|
+
SENSITIVE = []
|
9753
|
+
include Aws::Structure
|
9754
|
+
end
|
9755
|
+
|
9095
9756
|
# @note When making an API call, you may pass RevokeSnapshotAccessMessage
|
9096
9757
|
# data as a hash:
|
9097
9758
|
#
|
@@ -10244,6 +10905,12 @@ module Aws::Redshift
|
|
10244
10905
|
#
|
10245
10906
|
class UnauthorizedOperation < Aws::EmptyStructure; end
|
10246
10907
|
|
10908
|
+
# The partner integration is not authorized.
|
10909
|
+
#
|
10910
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/UnauthorizedPartnerIntegrationFault AWS API Documentation
|
10911
|
+
#
|
10912
|
+
class UnauthorizedPartnerIntegrationFault < Aws::EmptyStructure; end
|
10913
|
+
|
10247
10914
|
# The specified region is incorrect or does not exist.
|
10248
10915
|
#
|
10249
10916
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/UnknownSnapshotCopyRegionFault AWS API Documentation
|
@@ -10262,6 +10929,57 @@ module Aws::Redshift
|
|
10262
10929
|
#
|
10263
10930
|
class UnsupportedOptionFault < Aws::EmptyStructure; end
|
10264
10931
|
|
10932
|
+
# @note When making an API call, you may pass UpdatePartnerStatusInputMessage
|
10933
|
+
# data as a hash:
|
10934
|
+
#
|
10935
|
+
# {
|
10936
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
10937
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
10938
|
+
# database_name: "PartnerIntegrationDatabaseName", # required
|
10939
|
+
# partner_name: "PartnerIntegrationPartnerName", # required
|
10940
|
+
# status: "Active", # required, accepts Active, Inactive, RuntimeFailure, ConnectionFailure
|
10941
|
+
# status_message: "PartnerIntegrationStatusMessage",
|
10942
|
+
# }
|
10943
|
+
#
|
10944
|
+
# @!attribute [rw] account_id
|
10945
|
+
# The AWS account ID that owns the cluster.
|
10946
|
+
# @return [String]
|
10947
|
+
#
|
10948
|
+
# @!attribute [rw] cluster_identifier
|
10949
|
+
# The cluster identifier of the cluster whose partner integration
|
10950
|
+
# status is being updated.
|
10951
|
+
# @return [String]
|
10952
|
+
#
|
10953
|
+
# @!attribute [rw] database_name
|
10954
|
+
# The name of the database whose partner integration status is being
|
10955
|
+
# updated.
|
10956
|
+
# @return [String]
|
10957
|
+
#
|
10958
|
+
# @!attribute [rw] partner_name
|
10959
|
+
# The name of the partner whose integration status is being updated.
|
10960
|
+
# @return [String]
|
10961
|
+
#
|
10962
|
+
# @!attribute [rw] status
|
10963
|
+
# The value of the updated status.
|
10964
|
+
# @return [String]
|
10965
|
+
#
|
10966
|
+
# @!attribute [rw] status_message
|
10967
|
+
# The status message provided by the partner.
|
10968
|
+
# @return [String]
|
10969
|
+
#
|
10970
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/UpdatePartnerStatusInputMessage AWS API Documentation
|
10971
|
+
#
|
10972
|
+
class UpdatePartnerStatusInputMessage < Struct.new(
|
10973
|
+
:account_id,
|
10974
|
+
:cluster_identifier,
|
10975
|
+
:database_name,
|
10976
|
+
:partner_name,
|
10977
|
+
:status,
|
10978
|
+
:status_message)
|
10979
|
+
SENSITIVE = []
|
10980
|
+
include Aws::Structure
|
10981
|
+
end
|
10982
|
+
|
10265
10983
|
# A maintenance track that you can switch the current track to.
|
10266
10984
|
#
|
10267
10985
|
# @!attribute [rw] maintenance_track_name
|
@@ -10380,7 +11098,7 @@ module Aws::Redshift
|
|
10380
11098
|
#
|
10381
11099
|
class UsageLimitNotFoundFault < Aws::EmptyStructure; end
|
10382
11100
|
|
10383
|
-
# The connection endpoint for connecting an Amazon Redshift cluster
|
11101
|
+
# The connection endpoint for connecting to an Amazon Redshift cluster
|
10384
11102
|
# through the proxy.
|
10385
11103
|
#
|
10386
11104
|
# @!attribute [rw] vpc_endpoint_id
|