aws-sdk-redshift 1.107.0 → 1.109.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift/client.rb +81 -1
- data/lib/aws-sdk-redshift/client_api.rb +66 -0
- data/lib/aws-sdk-redshift/endpoints.rb +14 -0
- data/lib/aws-sdk-redshift/plugins/endpoints.rb +3 -0
- data/lib/aws-sdk-redshift/types.rb +192 -0
- data/lib/aws-sdk-redshift.rb +1 -1
- data/sig/client.rbs +2199 -0
- data/sig/errors.rbs +288 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +2856 -0
- data/sig/waiters.rbs +82 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,2856 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::Redshift
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AcceptReservedNodeExchangeInputMessage
|
12
|
+
attr_accessor reserved_node_id: ::String
|
13
|
+
attr_accessor target_reserved_node_offering_id: ::String
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class AcceptReservedNodeExchangeOutputMessage
|
18
|
+
attr_accessor exchanged_reserved_node: Types::ReservedNode
|
19
|
+
SENSITIVE: []
|
20
|
+
end
|
21
|
+
|
22
|
+
class AccessToClusterDeniedFault < Aws::EmptyStructure
|
23
|
+
end
|
24
|
+
|
25
|
+
class AccessToSnapshotDeniedFault < Aws::EmptyStructure
|
26
|
+
end
|
27
|
+
|
28
|
+
class AccountAttribute
|
29
|
+
attr_accessor attribute_name: ::String
|
30
|
+
attr_accessor attribute_values: ::Array[Types::AttributeValueTarget]
|
31
|
+
SENSITIVE: []
|
32
|
+
end
|
33
|
+
|
34
|
+
class AccountAttributeList
|
35
|
+
attr_accessor account_attributes: ::Array[Types::AccountAttribute]
|
36
|
+
SENSITIVE: []
|
37
|
+
end
|
38
|
+
|
39
|
+
class AccountWithRestoreAccess
|
40
|
+
attr_accessor account_id: ::String
|
41
|
+
attr_accessor account_alias: ::String
|
42
|
+
SENSITIVE: []
|
43
|
+
end
|
44
|
+
|
45
|
+
class AquaConfiguration
|
46
|
+
attr_accessor aqua_status: ("enabled" | "disabled" | "applying")
|
47
|
+
attr_accessor aqua_configuration_status: ("enabled" | "disabled" | "auto")
|
48
|
+
SENSITIVE: []
|
49
|
+
end
|
50
|
+
|
51
|
+
class AssociateDataShareConsumerMessage
|
52
|
+
attr_accessor data_share_arn: ::String
|
53
|
+
attr_accessor associate_entire_account: bool
|
54
|
+
attr_accessor consumer_arn: ::String
|
55
|
+
attr_accessor consumer_region: ::String
|
56
|
+
attr_accessor allow_writes: bool
|
57
|
+
SENSITIVE: []
|
58
|
+
end
|
59
|
+
|
60
|
+
class Association
|
61
|
+
attr_accessor custom_domain_certificate_arn: ::String
|
62
|
+
attr_accessor custom_domain_certificate_expiry_date: ::Time
|
63
|
+
attr_accessor certificate_associations: ::Array[Types::CertificateAssociation]
|
64
|
+
SENSITIVE: []
|
65
|
+
end
|
66
|
+
|
67
|
+
class AttributeValueTarget
|
68
|
+
attr_accessor attribute_value: ::String
|
69
|
+
SENSITIVE: []
|
70
|
+
end
|
71
|
+
|
72
|
+
class AuthenticationProfile
|
73
|
+
attr_accessor authentication_profile_name: ::String
|
74
|
+
attr_accessor authentication_profile_content: ::String
|
75
|
+
SENSITIVE: []
|
76
|
+
end
|
77
|
+
|
78
|
+
class AuthenticationProfileAlreadyExistsFault < Aws::EmptyStructure
|
79
|
+
end
|
80
|
+
|
81
|
+
class AuthenticationProfileNotFoundFault < Aws::EmptyStructure
|
82
|
+
end
|
83
|
+
|
84
|
+
class AuthenticationProfileQuotaExceededFault < Aws::EmptyStructure
|
85
|
+
end
|
86
|
+
|
87
|
+
class AuthorizationAlreadyExistsFault < Aws::EmptyStructure
|
88
|
+
end
|
89
|
+
|
90
|
+
class AuthorizationNotFoundFault < Aws::EmptyStructure
|
91
|
+
end
|
92
|
+
|
93
|
+
class AuthorizationQuotaExceededFault < Aws::EmptyStructure
|
94
|
+
end
|
95
|
+
|
96
|
+
class AuthorizeClusterSecurityGroupIngressMessage
|
97
|
+
attr_accessor cluster_security_group_name: ::String
|
98
|
+
attr_accessor cidrip: ::String
|
99
|
+
attr_accessor ec2_security_group_name: ::String
|
100
|
+
attr_accessor ec2_security_group_owner_id: ::String
|
101
|
+
SENSITIVE: []
|
102
|
+
end
|
103
|
+
|
104
|
+
class AuthorizeClusterSecurityGroupIngressResult
|
105
|
+
attr_accessor cluster_security_group: Types::ClusterSecurityGroup
|
106
|
+
SENSITIVE: []
|
107
|
+
end
|
108
|
+
|
109
|
+
class AuthorizeDataShareMessage
|
110
|
+
attr_accessor data_share_arn: ::String
|
111
|
+
attr_accessor consumer_identifier: ::String
|
112
|
+
attr_accessor allow_writes: bool
|
113
|
+
SENSITIVE: []
|
114
|
+
end
|
115
|
+
|
116
|
+
class AuthorizeEndpointAccessMessage
|
117
|
+
attr_accessor cluster_identifier: ::String
|
118
|
+
attr_accessor account: ::String
|
119
|
+
attr_accessor vpc_ids: ::Array[::String]
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class AuthorizeSnapshotAccessMessage
|
124
|
+
attr_accessor snapshot_identifier: ::String
|
125
|
+
attr_accessor snapshot_arn: ::String
|
126
|
+
attr_accessor snapshot_cluster_identifier: ::String
|
127
|
+
attr_accessor account_with_restore_access: ::String
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
131
|
+
class AuthorizeSnapshotAccessResult
|
132
|
+
attr_accessor snapshot: Types::Snapshot
|
133
|
+
SENSITIVE: []
|
134
|
+
end
|
135
|
+
|
136
|
+
class AuthorizedTokenIssuer
|
137
|
+
attr_accessor trusted_token_issuer_arn: ::String
|
138
|
+
attr_accessor authorized_audiences_list: ::Array[::String]
|
139
|
+
SENSITIVE: []
|
140
|
+
end
|
141
|
+
|
142
|
+
class AvailabilityZone
|
143
|
+
attr_accessor name: ::String
|
144
|
+
attr_accessor supported_platforms: ::Array[Types::SupportedPlatform]
|
145
|
+
SENSITIVE: []
|
146
|
+
end
|
147
|
+
|
148
|
+
class BatchDeleteClusterSnapshotsRequest
|
149
|
+
attr_accessor identifiers: ::Array[Types::DeleteClusterSnapshotMessage]
|
150
|
+
SENSITIVE: []
|
151
|
+
end
|
152
|
+
|
153
|
+
class BatchDeleteClusterSnapshotsResult
|
154
|
+
attr_accessor resources: ::Array[::String]
|
155
|
+
attr_accessor errors: ::Array[Types::SnapshotErrorMessage]
|
156
|
+
SENSITIVE: []
|
157
|
+
end
|
158
|
+
|
159
|
+
class BatchDeleteRequestSizeExceededFault < Aws::EmptyStructure
|
160
|
+
end
|
161
|
+
|
162
|
+
class BatchModifyClusterSnapshotsLimitExceededFault < Aws::EmptyStructure
|
163
|
+
end
|
164
|
+
|
165
|
+
class BatchModifyClusterSnapshotsMessage
|
166
|
+
attr_accessor snapshot_identifier_list: ::Array[::String]
|
167
|
+
attr_accessor manual_snapshot_retention_period: ::Integer
|
168
|
+
attr_accessor force: bool
|
169
|
+
SENSITIVE: []
|
170
|
+
end
|
171
|
+
|
172
|
+
class BatchModifyClusterSnapshotsOutputMessage
|
173
|
+
attr_accessor resources: ::Array[::String]
|
174
|
+
attr_accessor errors: ::Array[Types::SnapshotErrorMessage]
|
175
|
+
SENSITIVE: []
|
176
|
+
end
|
177
|
+
|
178
|
+
class BucketNotFoundFault < Aws::EmptyStructure
|
179
|
+
end
|
180
|
+
|
181
|
+
class CancelResizeMessage
|
182
|
+
attr_accessor cluster_identifier: ::String
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class CertificateAssociation
|
187
|
+
attr_accessor custom_domain_name: ::String
|
188
|
+
attr_accessor cluster_identifier: ::String
|
189
|
+
SENSITIVE: []
|
190
|
+
end
|
191
|
+
|
192
|
+
class Cluster
|
193
|
+
attr_accessor cluster_identifier: ::String
|
194
|
+
attr_accessor node_type: ::String
|
195
|
+
attr_accessor cluster_status: ::String
|
196
|
+
attr_accessor cluster_availability_status: ::String
|
197
|
+
attr_accessor modify_status: ::String
|
198
|
+
attr_accessor master_username: ::String
|
199
|
+
attr_accessor db_name: ::String
|
200
|
+
attr_accessor endpoint: Types::Endpoint
|
201
|
+
attr_accessor cluster_create_time: ::Time
|
202
|
+
attr_accessor automated_snapshot_retention_period: ::Integer
|
203
|
+
attr_accessor manual_snapshot_retention_period: ::Integer
|
204
|
+
attr_accessor cluster_security_groups: ::Array[Types::ClusterSecurityGroupMembership]
|
205
|
+
attr_accessor vpc_security_groups: ::Array[Types::VpcSecurityGroupMembership]
|
206
|
+
attr_accessor cluster_parameter_groups: ::Array[Types::ClusterParameterGroupStatus]
|
207
|
+
attr_accessor cluster_subnet_group_name: ::String
|
208
|
+
attr_accessor vpc_id: ::String
|
209
|
+
attr_accessor availability_zone: ::String
|
210
|
+
attr_accessor preferred_maintenance_window: ::String
|
211
|
+
attr_accessor pending_modified_values: Types::PendingModifiedValues
|
212
|
+
attr_accessor cluster_version: ::String
|
213
|
+
attr_accessor allow_version_upgrade: bool
|
214
|
+
attr_accessor number_of_nodes: ::Integer
|
215
|
+
attr_accessor publicly_accessible: bool
|
216
|
+
attr_accessor encrypted: bool
|
217
|
+
attr_accessor restore_status: Types::RestoreStatus
|
218
|
+
attr_accessor data_transfer_progress: Types::DataTransferProgress
|
219
|
+
attr_accessor hsm_status: Types::HsmStatus
|
220
|
+
attr_accessor cluster_snapshot_copy_status: Types::ClusterSnapshotCopyStatus
|
221
|
+
attr_accessor cluster_public_key: ::String
|
222
|
+
attr_accessor cluster_nodes: ::Array[Types::ClusterNode]
|
223
|
+
attr_accessor elastic_ip_status: Types::ElasticIpStatus
|
224
|
+
attr_accessor cluster_revision_number: ::String
|
225
|
+
attr_accessor tags: ::Array[Types::Tag]
|
226
|
+
attr_accessor kms_key_id: ::String
|
227
|
+
attr_accessor enhanced_vpc_routing: bool
|
228
|
+
attr_accessor iam_roles: ::Array[Types::ClusterIamRole]
|
229
|
+
attr_accessor pending_actions: ::Array[::String]
|
230
|
+
attr_accessor maintenance_track_name: ::String
|
231
|
+
attr_accessor elastic_resize_number_of_node_options: ::String
|
232
|
+
attr_accessor deferred_maintenance_windows: ::Array[Types::DeferredMaintenanceWindow]
|
233
|
+
attr_accessor snapshot_schedule_identifier: ::String
|
234
|
+
attr_accessor snapshot_schedule_state: ("MODIFYING" | "ACTIVE" | "FAILED")
|
235
|
+
attr_accessor expected_next_snapshot_schedule_time: ::Time
|
236
|
+
attr_accessor expected_next_snapshot_schedule_time_status: ::String
|
237
|
+
attr_accessor next_maintenance_window_start_time: ::Time
|
238
|
+
attr_accessor resize_info: Types::ResizeInfo
|
239
|
+
attr_accessor availability_zone_relocation_status: ::String
|
240
|
+
attr_accessor cluster_namespace_arn: ::String
|
241
|
+
attr_accessor total_storage_capacity_in_mega_bytes: ::Integer
|
242
|
+
attr_accessor aqua_configuration: Types::AquaConfiguration
|
243
|
+
attr_accessor default_iam_role_arn: ::String
|
244
|
+
attr_accessor reserved_node_exchange_status: Types::ReservedNodeExchangeStatus
|
245
|
+
attr_accessor custom_domain_name: ::String
|
246
|
+
attr_accessor custom_domain_certificate_arn: ::String
|
247
|
+
attr_accessor custom_domain_certificate_expiry_date: ::Time
|
248
|
+
attr_accessor master_password_secret_arn: ::String
|
249
|
+
attr_accessor master_password_secret_kms_key_id: ::String
|
250
|
+
attr_accessor ip_address_type: ::String
|
251
|
+
attr_accessor multi_az: ::String
|
252
|
+
attr_accessor multi_az_secondary: Types::SecondaryClusterInfo
|
253
|
+
SENSITIVE: []
|
254
|
+
end
|
255
|
+
|
256
|
+
class ClusterAlreadyExistsFault < Aws::EmptyStructure
|
257
|
+
end
|
258
|
+
|
259
|
+
class ClusterAssociatedToSchedule
|
260
|
+
attr_accessor cluster_identifier: ::String
|
261
|
+
attr_accessor schedule_association_state: ("MODIFYING" | "ACTIVE" | "FAILED")
|
262
|
+
SENSITIVE: []
|
263
|
+
end
|
264
|
+
|
265
|
+
class ClusterCredentials
|
266
|
+
attr_accessor db_user: ::String
|
267
|
+
attr_accessor db_password: ::String
|
268
|
+
attr_accessor expiration: ::Time
|
269
|
+
SENSITIVE: [:db_password]
|
270
|
+
end
|
271
|
+
|
272
|
+
class ClusterDbRevision
|
273
|
+
attr_accessor cluster_identifier: ::String
|
274
|
+
attr_accessor current_database_revision: ::String
|
275
|
+
attr_accessor database_revision_release_date: ::Time
|
276
|
+
attr_accessor revision_targets: ::Array[Types::RevisionTarget]
|
277
|
+
SENSITIVE: []
|
278
|
+
end
|
279
|
+
|
280
|
+
class ClusterDbRevisionsMessage
|
281
|
+
attr_accessor marker: ::String
|
282
|
+
attr_accessor cluster_db_revisions: ::Array[Types::ClusterDbRevision]
|
283
|
+
SENSITIVE: []
|
284
|
+
end
|
285
|
+
|
286
|
+
class ClusterExtendedCredentials
|
287
|
+
attr_accessor db_user: ::String
|
288
|
+
attr_accessor db_password: ::String
|
289
|
+
attr_accessor expiration: ::Time
|
290
|
+
attr_accessor next_refresh_time: ::Time
|
291
|
+
SENSITIVE: [:db_password]
|
292
|
+
end
|
293
|
+
|
294
|
+
class ClusterIamRole
|
295
|
+
attr_accessor iam_role_arn: ::String
|
296
|
+
attr_accessor apply_status: ::String
|
297
|
+
SENSITIVE: []
|
298
|
+
end
|
299
|
+
|
300
|
+
class ClusterNode
|
301
|
+
attr_accessor node_role: ::String
|
302
|
+
attr_accessor private_ip_address: ::String
|
303
|
+
attr_accessor public_ip_address: ::String
|
304
|
+
SENSITIVE: []
|
305
|
+
end
|
306
|
+
|
307
|
+
class ClusterNotFoundFault < Aws::EmptyStructure
|
308
|
+
end
|
309
|
+
|
310
|
+
class ClusterOnLatestRevisionFault < Aws::EmptyStructure
|
311
|
+
end
|
312
|
+
|
313
|
+
class ClusterParameterGroup
|
314
|
+
attr_accessor parameter_group_name: ::String
|
315
|
+
attr_accessor parameter_group_family: ::String
|
316
|
+
attr_accessor description: ::String
|
317
|
+
attr_accessor tags: ::Array[Types::Tag]
|
318
|
+
SENSITIVE: []
|
319
|
+
end
|
320
|
+
|
321
|
+
class ClusterParameterGroupAlreadyExistsFault < Aws::EmptyStructure
|
322
|
+
end
|
323
|
+
|
324
|
+
class ClusterParameterGroupDetails
|
325
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
326
|
+
attr_accessor marker: ::String
|
327
|
+
SENSITIVE: []
|
328
|
+
end
|
329
|
+
|
330
|
+
class ClusterParameterGroupNameMessage
|
331
|
+
attr_accessor parameter_group_name: ::String
|
332
|
+
attr_accessor parameter_group_status: ::String
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class ClusterParameterGroupNotFoundFault < Aws::EmptyStructure
|
337
|
+
end
|
338
|
+
|
339
|
+
class ClusterParameterGroupQuotaExceededFault < Aws::EmptyStructure
|
340
|
+
end
|
341
|
+
|
342
|
+
class ClusterParameterGroupStatus
|
343
|
+
attr_accessor parameter_group_name: ::String
|
344
|
+
attr_accessor parameter_apply_status: ::String
|
345
|
+
attr_accessor cluster_parameter_status_list: ::Array[Types::ClusterParameterStatus]
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
|
349
|
+
class ClusterParameterGroupsMessage
|
350
|
+
attr_accessor marker: ::String
|
351
|
+
attr_accessor parameter_groups: ::Array[Types::ClusterParameterGroup]
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class ClusterParameterStatus
|
356
|
+
attr_accessor parameter_name: ::String
|
357
|
+
attr_accessor parameter_apply_status: ::String
|
358
|
+
attr_accessor parameter_apply_error_description: ::String
|
359
|
+
SENSITIVE: []
|
360
|
+
end
|
361
|
+
|
362
|
+
class ClusterQuotaExceededFault < Aws::EmptyStructure
|
363
|
+
end
|
364
|
+
|
365
|
+
class ClusterSecurityGroup
|
366
|
+
attr_accessor cluster_security_group_name: ::String
|
367
|
+
attr_accessor description: ::String
|
368
|
+
attr_accessor ec2_security_groups: ::Array[Types::EC2SecurityGroup]
|
369
|
+
attr_accessor ip_ranges: ::Array[Types::IPRange]
|
370
|
+
attr_accessor tags: ::Array[Types::Tag]
|
371
|
+
SENSITIVE: []
|
372
|
+
end
|
373
|
+
|
374
|
+
class ClusterSecurityGroupAlreadyExistsFault < Aws::EmptyStructure
|
375
|
+
end
|
376
|
+
|
377
|
+
class ClusterSecurityGroupMembership
|
378
|
+
attr_accessor cluster_security_group_name: ::String
|
379
|
+
attr_accessor status: ::String
|
380
|
+
SENSITIVE: []
|
381
|
+
end
|
382
|
+
|
383
|
+
class ClusterSecurityGroupMessage
|
384
|
+
attr_accessor marker: ::String
|
385
|
+
attr_accessor cluster_security_groups: ::Array[Types::ClusterSecurityGroup]
|
386
|
+
SENSITIVE: []
|
387
|
+
end
|
388
|
+
|
389
|
+
class ClusterSecurityGroupNotFoundFault < Aws::EmptyStructure
|
390
|
+
end
|
391
|
+
|
392
|
+
class ClusterSecurityGroupQuotaExceededFault < Aws::EmptyStructure
|
393
|
+
end
|
394
|
+
|
395
|
+
class ClusterSnapshotAlreadyExistsFault < Aws::EmptyStructure
|
396
|
+
end
|
397
|
+
|
398
|
+
class ClusterSnapshotCopyStatus
|
399
|
+
attr_accessor destination_region: ::String
|
400
|
+
attr_accessor retention_period: ::Integer
|
401
|
+
attr_accessor manual_snapshot_retention_period: ::Integer
|
402
|
+
attr_accessor snapshot_copy_grant_name: ::String
|
403
|
+
SENSITIVE: []
|
404
|
+
end
|
405
|
+
|
406
|
+
class ClusterSnapshotNotFoundFault < Aws::EmptyStructure
|
407
|
+
end
|
408
|
+
|
409
|
+
class ClusterSnapshotQuotaExceededFault < Aws::EmptyStructure
|
410
|
+
end
|
411
|
+
|
412
|
+
class ClusterSubnetGroup
|
413
|
+
attr_accessor cluster_subnet_group_name: ::String
|
414
|
+
attr_accessor description: ::String
|
415
|
+
attr_accessor vpc_id: ::String
|
416
|
+
attr_accessor subnet_group_status: ::String
|
417
|
+
attr_accessor subnets: ::Array[Types::Subnet]
|
418
|
+
attr_accessor tags: ::Array[Types::Tag]
|
419
|
+
attr_accessor supported_cluster_ip_address_types: ::Array[::String]
|
420
|
+
SENSITIVE: []
|
421
|
+
end
|
422
|
+
|
423
|
+
class ClusterSubnetGroupAlreadyExistsFault < Aws::EmptyStructure
|
424
|
+
end
|
425
|
+
|
426
|
+
class ClusterSubnetGroupMessage
|
427
|
+
attr_accessor marker: ::String
|
428
|
+
attr_accessor cluster_subnet_groups: ::Array[Types::ClusterSubnetGroup]
|
429
|
+
SENSITIVE: []
|
430
|
+
end
|
431
|
+
|
432
|
+
class ClusterSubnetGroupNotFoundFault < Aws::EmptyStructure
|
433
|
+
end
|
434
|
+
|
435
|
+
class ClusterSubnetGroupQuotaExceededFault < Aws::EmptyStructure
|
436
|
+
end
|
437
|
+
|
438
|
+
class ClusterSubnetQuotaExceededFault < Aws::EmptyStructure
|
439
|
+
end
|
440
|
+
|
441
|
+
class ClusterVersion
|
442
|
+
attr_accessor cluster_version: ::String
|
443
|
+
attr_accessor cluster_parameter_group_family: ::String
|
444
|
+
attr_accessor description: ::String
|
445
|
+
SENSITIVE: []
|
446
|
+
end
|
447
|
+
|
448
|
+
class ClusterVersionsMessage
|
449
|
+
attr_accessor marker: ::String
|
450
|
+
attr_accessor cluster_versions: ::Array[Types::ClusterVersion]
|
451
|
+
SENSITIVE: []
|
452
|
+
end
|
453
|
+
|
454
|
+
class ClustersMessage
|
455
|
+
attr_accessor marker: ::String
|
456
|
+
attr_accessor clusters: ::Array[Types::Cluster]
|
457
|
+
SENSITIVE: []
|
458
|
+
end
|
459
|
+
|
460
|
+
class ConflictPolicyUpdateFault < Aws::EmptyStructure
|
461
|
+
end
|
462
|
+
|
463
|
+
class CopyClusterSnapshotMessage
|
464
|
+
attr_accessor source_snapshot_identifier: ::String
|
465
|
+
attr_accessor source_snapshot_cluster_identifier: ::String
|
466
|
+
attr_accessor target_snapshot_identifier: ::String
|
467
|
+
attr_accessor manual_snapshot_retention_period: ::Integer
|
468
|
+
SENSITIVE: []
|
469
|
+
end
|
470
|
+
|
471
|
+
class CopyClusterSnapshotResult
|
472
|
+
attr_accessor snapshot: Types::Snapshot
|
473
|
+
SENSITIVE: []
|
474
|
+
end
|
475
|
+
|
476
|
+
class CopyToRegionDisabledFault < Aws::EmptyStructure
|
477
|
+
end
|
478
|
+
|
479
|
+
class CreateAuthenticationProfileMessage
|
480
|
+
attr_accessor authentication_profile_name: ::String
|
481
|
+
attr_accessor authentication_profile_content: ::String
|
482
|
+
SENSITIVE: []
|
483
|
+
end
|
484
|
+
|
485
|
+
class CreateAuthenticationProfileResult
|
486
|
+
attr_accessor authentication_profile_name: ::String
|
487
|
+
attr_accessor authentication_profile_content: ::String
|
488
|
+
SENSITIVE: []
|
489
|
+
end
|
490
|
+
|
491
|
+
class CreateClusterMessage
|
492
|
+
attr_accessor db_name: ::String
|
493
|
+
attr_accessor cluster_identifier: ::String
|
494
|
+
attr_accessor cluster_type: ::String
|
495
|
+
attr_accessor node_type: ::String
|
496
|
+
attr_accessor master_username: ::String
|
497
|
+
attr_accessor master_user_password: ::String
|
498
|
+
attr_accessor cluster_security_groups: ::Array[::String]
|
499
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
500
|
+
attr_accessor cluster_subnet_group_name: ::String
|
501
|
+
attr_accessor availability_zone: ::String
|
502
|
+
attr_accessor preferred_maintenance_window: ::String
|
503
|
+
attr_accessor cluster_parameter_group_name: ::String
|
504
|
+
attr_accessor automated_snapshot_retention_period: ::Integer
|
505
|
+
attr_accessor manual_snapshot_retention_period: ::Integer
|
506
|
+
attr_accessor port: ::Integer
|
507
|
+
attr_accessor cluster_version: ::String
|
508
|
+
attr_accessor allow_version_upgrade: bool
|
509
|
+
attr_accessor number_of_nodes: ::Integer
|
510
|
+
attr_accessor publicly_accessible: bool
|
511
|
+
attr_accessor encrypted: bool
|
512
|
+
attr_accessor hsm_client_certificate_identifier: ::String
|
513
|
+
attr_accessor hsm_configuration_identifier: ::String
|
514
|
+
attr_accessor elastic_ip: ::String
|
515
|
+
attr_accessor tags: ::Array[Types::Tag]
|
516
|
+
attr_accessor kms_key_id: ::String
|
517
|
+
attr_accessor enhanced_vpc_routing: bool
|
518
|
+
attr_accessor additional_info: ::String
|
519
|
+
attr_accessor iam_roles: ::Array[::String]
|
520
|
+
attr_accessor maintenance_track_name: ::String
|
521
|
+
attr_accessor snapshot_schedule_identifier: ::String
|
522
|
+
attr_accessor availability_zone_relocation: bool
|
523
|
+
attr_accessor aqua_configuration_status: ("enabled" | "disabled" | "auto")
|
524
|
+
attr_accessor default_iam_role_arn: ::String
|
525
|
+
attr_accessor load_sample_data: ::String
|
526
|
+
attr_accessor manage_master_password: bool
|
527
|
+
attr_accessor master_password_secret_kms_key_id: ::String
|
528
|
+
attr_accessor ip_address_type: ::String
|
529
|
+
attr_accessor multi_az: bool
|
530
|
+
attr_accessor redshift_idc_application_arn: ::String
|
531
|
+
SENSITIVE: [:master_user_password]
|
532
|
+
end
|
533
|
+
|
534
|
+
class CreateClusterParameterGroupMessage
|
535
|
+
attr_accessor parameter_group_name: ::String
|
536
|
+
attr_accessor parameter_group_family: ::String
|
537
|
+
attr_accessor description: ::String
|
538
|
+
attr_accessor tags: ::Array[Types::Tag]
|
539
|
+
SENSITIVE: []
|
540
|
+
end
|
541
|
+
|
542
|
+
class CreateClusterParameterGroupResult
|
543
|
+
attr_accessor cluster_parameter_group: Types::ClusterParameterGroup
|
544
|
+
SENSITIVE: []
|
545
|
+
end
|
546
|
+
|
547
|
+
class CreateClusterResult
|
548
|
+
attr_accessor cluster: Types::Cluster
|
549
|
+
SENSITIVE: []
|
550
|
+
end
|
551
|
+
|
552
|
+
class CreateClusterSecurityGroupMessage
|
553
|
+
attr_accessor cluster_security_group_name: ::String
|
554
|
+
attr_accessor description: ::String
|
555
|
+
attr_accessor tags: ::Array[Types::Tag]
|
556
|
+
SENSITIVE: []
|
557
|
+
end
|
558
|
+
|
559
|
+
class CreateClusterSecurityGroupResult
|
560
|
+
attr_accessor cluster_security_group: Types::ClusterSecurityGroup
|
561
|
+
SENSITIVE: []
|
562
|
+
end
|
563
|
+
|
564
|
+
class CreateClusterSnapshotMessage
|
565
|
+
attr_accessor snapshot_identifier: ::String
|
566
|
+
attr_accessor cluster_identifier: ::String
|
567
|
+
attr_accessor manual_snapshot_retention_period: ::Integer
|
568
|
+
attr_accessor tags: ::Array[Types::Tag]
|
569
|
+
SENSITIVE: []
|
570
|
+
end
|
571
|
+
|
572
|
+
class CreateClusterSnapshotResult
|
573
|
+
attr_accessor snapshot: Types::Snapshot
|
574
|
+
SENSITIVE: []
|
575
|
+
end
|
576
|
+
|
577
|
+
class CreateClusterSubnetGroupMessage
|
578
|
+
attr_accessor cluster_subnet_group_name: ::String
|
579
|
+
attr_accessor description: ::String
|
580
|
+
attr_accessor subnet_ids: ::Array[::String]
|
581
|
+
attr_accessor tags: ::Array[Types::Tag]
|
582
|
+
SENSITIVE: []
|
583
|
+
end
|
584
|
+
|
585
|
+
class CreateClusterSubnetGroupResult
|
586
|
+
attr_accessor cluster_subnet_group: Types::ClusterSubnetGroup
|
587
|
+
SENSITIVE: []
|
588
|
+
end
|
589
|
+
|
590
|
+
class CreateCustomDomainAssociationMessage
|
591
|
+
attr_accessor custom_domain_name: ::String
|
592
|
+
attr_accessor custom_domain_certificate_arn: ::String
|
593
|
+
attr_accessor cluster_identifier: ::String
|
594
|
+
SENSITIVE: []
|
595
|
+
end
|
596
|
+
|
597
|
+
class CreateCustomDomainAssociationResult
|
598
|
+
attr_accessor custom_domain_name: ::String
|
599
|
+
attr_accessor custom_domain_certificate_arn: ::String
|
600
|
+
attr_accessor cluster_identifier: ::String
|
601
|
+
attr_accessor custom_domain_cert_expiry_time: ::String
|
602
|
+
SENSITIVE: []
|
603
|
+
end
|
604
|
+
|
605
|
+
class CreateEndpointAccessMessage
|
606
|
+
attr_accessor cluster_identifier: ::String
|
607
|
+
attr_accessor resource_owner: ::String
|
608
|
+
attr_accessor endpoint_name: ::String
|
609
|
+
attr_accessor subnet_group_name: ::String
|
610
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
611
|
+
SENSITIVE: []
|
612
|
+
end
|
613
|
+
|
614
|
+
class CreateEventSubscriptionMessage
|
615
|
+
attr_accessor subscription_name: ::String
|
616
|
+
attr_accessor sns_topic_arn: ::String
|
617
|
+
attr_accessor source_type: ::String
|
618
|
+
attr_accessor source_ids: ::Array[::String]
|
619
|
+
attr_accessor event_categories: ::Array[::String]
|
620
|
+
attr_accessor severity: ::String
|
621
|
+
attr_accessor enabled: bool
|
622
|
+
attr_accessor tags: ::Array[Types::Tag]
|
623
|
+
SENSITIVE: []
|
624
|
+
end
|
625
|
+
|
626
|
+
class CreateEventSubscriptionResult
|
627
|
+
attr_accessor event_subscription: Types::EventSubscription
|
628
|
+
SENSITIVE: []
|
629
|
+
end
|
630
|
+
|
631
|
+
class CreateHsmClientCertificateMessage
|
632
|
+
attr_accessor hsm_client_certificate_identifier: ::String
|
633
|
+
attr_accessor tags: ::Array[Types::Tag]
|
634
|
+
SENSITIVE: []
|
635
|
+
end
|
636
|
+
|
637
|
+
class CreateHsmClientCertificateResult
|
638
|
+
attr_accessor hsm_client_certificate: Types::HsmClientCertificate
|
639
|
+
SENSITIVE: []
|
640
|
+
end
|
641
|
+
|
642
|
+
class CreateHsmConfigurationMessage
|
643
|
+
attr_accessor hsm_configuration_identifier: ::String
|
644
|
+
attr_accessor description: ::String
|
645
|
+
attr_accessor hsm_ip_address: ::String
|
646
|
+
attr_accessor hsm_partition_name: ::String
|
647
|
+
attr_accessor hsm_partition_password: ::String
|
648
|
+
attr_accessor hsm_server_public_certificate: ::String
|
649
|
+
attr_accessor tags: ::Array[Types::Tag]
|
650
|
+
SENSITIVE: []
|
651
|
+
end
|
652
|
+
|
653
|
+
class CreateHsmConfigurationResult
|
654
|
+
attr_accessor hsm_configuration: Types::HsmConfiguration
|
655
|
+
SENSITIVE: []
|
656
|
+
end
|
657
|
+
|
658
|
+
class CreateRedshiftIdcApplicationMessage
|
659
|
+
attr_accessor idc_instance_arn: ::String
|
660
|
+
attr_accessor redshift_idc_application_name: ::String
|
661
|
+
attr_accessor identity_namespace: ::String
|
662
|
+
attr_accessor idc_display_name: ::String
|
663
|
+
attr_accessor iam_role_arn: ::String
|
664
|
+
attr_accessor authorized_token_issuer_list: ::Array[Types::AuthorizedTokenIssuer]
|
665
|
+
attr_accessor service_integrations: ::Array[Types::ServiceIntegrationsUnion]
|
666
|
+
SENSITIVE: []
|
667
|
+
end
|
668
|
+
|
669
|
+
class CreateRedshiftIdcApplicationResult
|
670
|
+
attr_accessor redshift_idc_application: Types::RedshiftIdcApplication
|
671
|
+
SENSITIVE: []
|
672
|
+
end
|
673
|
+
|
674
|
+
class CreateScheduledActionMessage
|
675
|
+
attr_accessor scheduled_action_name: ::String
|
676
|
+
attr_accessor target_action: Types::ScheduledActionType
|
677
|
+
attr_accessor schedule: ::String
|
678
|
+
attr_accessor iam_role: ::String
|
679
|
+
attr_accessor scheduled_action_description: ::String
|
680
|
+
attr_accessor start_time: ::Time
|
681
|
+
attr_accessor end_time: ::Time
|
682
|
+
attr_accessor enable: bool
|
683
|
+
SENSITIVE: []
|
684
|
+
end
|
685
|
+
|
686
|
+
class CreateSnapshotCopyGrantMessage
|
687
|
+
attr_accessor snapshot_copy_grant_name: ::String
|
688
|
+
attr_accessor kms_key_id: ::String
|
689
|
+
attr_accessor tags: ::Array[Types::Tag]
|
690
|
+
SENSITIVE: []
|
691
|
+
end
|
692
|
+
|
693
|
+
class CreateSnapshotCopyGrantResult
|
694
|
+
attr_accessor snapshot_copy_grant: Types::SnapshotCopyGrant
|
695
|
+
SENSITIVE: []
|
696
|
+
end
|
697
|
+
|
698
|
+
class CreateSnapshotScheduleMessage
|
699
|
+
attr_accessor schedule_definitions: ::Array[::String]
|
700
|
+
attr_accessor schedule_identifier: ::String
|
701
|
+
attr_accessor schedule_description: ::String
|
702
|
+
attr_accessor tags: ::Array[Types::Tag]
|
703
|
+
attr_accessor dry_run: bool
|
704
|
+
attr_accessor next_invocations: ::Integer
|
705
|
+
SENSITIVE: []
|
706
|
+
end
|
707
|
+
|
708
|
+
class CreateTagsMessage
|
709
|
+
attr_accessor resource_name: ::String
|
710
|
+
attr_accessor tags: ::Array[Types::Tag]
|
711
|
+
SENSITIVE: []
|
712
|
+
end
|
713
|
+
|
714
|
+
class CreateUsageLimitMessage
|
715
|
+
attr_accessor cluster_identifier: ::String
|
716
|
+
attr_accessor feature_type: ("spectrum" | "concurrency-scaling" | "cross-region-datasharing")
|
717
|
+
attr_accessor limit_type: ("time" | "data-scanned")
|
718
|
+
attr_accessor amount: ::Integer
|
719
|
+
attr_accessor period: ("daily" | "weekly" | "monthly")
|
720
|
+
attr_accessor breach_action: ("log" | "emit-metric" | "disable")
|
721
|
+
attr_accessor tags: ::Array[Types::Tag]
|
722
|
+
SENSITIVE: []
|
723
|
+
end
|
724
|
+
|
725
|
+
class CustomCnameAssociationFault < Aws::EmptyStructure
|
726
|
+
end
|
727
|
+
|
728
|
+
class CustomDomainAssociationNotFoundFault < Aws::EmptyStructure
|
729
|
+
end
|
730
|
+
|
731
|
+
class CustomDomainAssociationsMessage
|
732
|
+
attr_accessor marker: ::String
|
733
|
+
attr_accessor associations: ::Array[Types::Association]
|
734
|
+
SENSITIVE: []
|
735
|
+
end
|
736
|
+
|
737
|
+
class CustomerStorageMessage
|
738
|
+
attr_accessor total_backup_size_in_mega_bytes: ::Float
|
739
|
+
attr_accessor total_provisioned_storage_in_mega_bytes: ::Float
|
740
|
+
SENSITIVE: []
|
741
|
+
end
|
742
|
+
|
743
|
+
class DataShare
|
744
|
+
attr_accessor data_share_arn: ::String
|
745
|
+
attr_accessor producer_arn: ::String
|
746
|
+
attr_accessor allow_publicly_accessible_consumers: bool
|
747
|
+
attr_accessor data_share_associations: ::Array[Types::DataShareAssociation]
|
748
|
+
attr_accessor managed_by: ::String
|
749
|
+
SENSITIVE: []
|
750
|
+
end
|
751
|
+
|
752
|
+
class DataShareAssociation
|
753
|
+
attr_accessor consumer_identifier: ::String
|
754
|
+
attr_accessor status: ("ACTIVE" | "PENDING_AUTHORIZATION" | "AUTHORIZED" | "DEAUTHORIZED" | "REJECTED" | "AVAILABLE")
|
755
|
+
attr_accessor consumer_region: ::String
|
756
|
+
attr_accessor created_date: ::Time
|
757
|
+
attr_accessor status_change_date: ::Time
|
758
|
+
attr_accessor producer_allowed_writes: bool
|
759
|
+
attr_accessor consumer_accepted_writes: bool
|
760
|
+
SENSITIVE: []
|
761
|
+
end
|
762
|
+
|
763
|
+
class DataTransferProgress
|
764
|
+
attr_accessor status: ::String
|
765
|
+
attr_accessor current_rate_in_mega_bytes_per_second: ::Float
|
766
|
+
attr_accessor total_data_in_mega_bytes: ::Integer
|
767
|
+
attr_accessor data_transferred_in_mega_bytes: ::Integer
|
768
|
+
attr_accessor estimated_time_to_completion_in_seconds: ::Integer
|
769
|
+
attr_accessor elapsed_time_in_seconds: ::Integer
|
770
|
+
SENSITIVE: []
|
771
|
+
end
|
772
|
+
|
773
|
+
class DeauthorizeDataShareMessage
|
774
|
+
attr_accessor data_share_arn: ::String
|
775
|
+
attr_accessor consumer_identifier: ::String
|
776
|
+
SENSITIVE: []
|
777
|
+
end
|
778
|
+
|
779
|
+
class DefaultClusterParameters
|
780
|
+
attr_accessor parameter_group_family: ::String
|
781
|
+
attr_accessor marker: ::String
|
782
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
783
|
+
SENSITIVE: []
|
784
|
+
end
|
785
|
+
|
786
|
+
class DeferredMaintenanceWindow
|
787
|
+
attr_accessor defer_maintenance_identifier: ::String
|
788
|
+
attr_accessor defer_maintenance_start_time: ::Time
|
789
|
+
attr_accessor defer_maintenance_end_time: ::Time
|
790
|
+
SENSITIVE: []
|
791
|
+
end
|
792
|
+
|
793
|
+
class DeleteAuthenticationProfileMessage
|
794
|
+
attr_accessor authentication_profile_name: ::String
|
795
|
+
SENSITIVE: []
|
796
|
+
end
|
797
|
+
|
798
|
+
class DeleteAuthenticationProfileResult
|
799
|
+
attr_accessor authentication_profile_name: ::String
|
800
|
+
SENSITIVE: []
|
801
|
+
end
|
802
|
+
|
803
|
+
class DeleteClusterMessage
|
804
|
+
attr_accessor cluster_identifier: ::String
|
805
|
+
attr_accessor skip_final_cluster_snapshot: bool
|
806
|
+
attr_accessor final_cluster_snapshot_identifier: ::String
|
807
|
+
attr_accessor final_cluster_snapshot_retention_period: ::Integer
|
808
|
+
SENSITIVE: []
|
809
|
+
end
|
810
|
+
|
811
|
+
class DeleteClusterParameterGroupMessage
|
812
|
+
attr_accessor parameter_group_name: ::String
|
813
|
+
SENSITIVE: []
|
814
|
+
end
|
815
|
+
|
816
|
+
class DeleteClusterResult
|
817
|
+
attr_accessor cluster: Types::Cluster
|
818
|
+
SENSITIVE: []
|
819
|
+
end
|
820
|
+
|
821
|
+
class DeleteClusterSecurityGroupMessage
|
822
|
+
attr_accessor cluster_security_group_name: ::String
|
823
|
+
SENSITIVE: []
|
824
|
+
end
|
825
|
+
|
826
|
+
class DeleteClusterSnapshotMessage
|
827
|
+
attr_accessor snapshot_identifier: ::String
|
828
|
+
attr_accessor snapshot_cluster_identifier: ::String
|
829
|
+
SENSITIVE: []
|
830
|
+
end
|
831
|
+
|
832
|
+
class DeleteClusterSnapshotResult
|
833
|
+
attr_accessor snapshot: Types::Snapshot
|
834
|
+
SENSITIVE: []
|
835
|
+
end
|
836
|
+
|
837
|
+
class DeleteClusterSubnetGroupMessage
|
838
|
+
attr_accessor cluster_subnet_group_name: ::String
|
839
|
+
SENSITIVE: []
|
840
|
+
end
|
841
|
+
|
842
|
+
class DeleteCustomDomainAssociationMessage
|
843
|
+
attr_accessor cluster_identifier: ::String
|
844
|
+
attr_accessor custom_domain_name: ::String
|
845
|
+
SENSITIVE: []
|
846
|
+
end
|
847
|
+
|
848
|
+
class DeleteEndpointAccessMessage
|
849
|
+
attr_accessor endpoint_name: ::String
|
850
|
+
SENSITIVE: []
|
851
|
+
end
|
852
|
+
|
853
|
+
class DeleteEventSubscriptionMessage
|
854
|
+
attr_accessor subscription_name: ::String
|
855
|
+
SENSITIVE: []
|
856
|
+
end
|
857
|
+
|
858
|
+
class DeleteHsmClientCertificateMessage
|
859
|
+
attr_accessor hsm_client_certificate_identifier: ::String
|
860
|
+
SENSITIVE: []
|
861
|
+
end
|
862
|
+
|
863
|
+
class DeleteHsmConfigurationMessage
|
864
|
+
attr_accessor hsm_configuration_identifier: ::String
|
865
|
+
SENSITIVE: []
|
866
|
+
end
|
867
|
+
|
868
|
+
class DeleteRedshiftIdcApplicationMessage
|
869
|
+
attr_accessor redshift_idc_application_arn: ::String
|
870
|
+
SENSITIVE: []
|
871
|
+
end
|
872
|
+
|
873
|
+
class DeleteResourcePolicyMessage
|
874
|
+
attr_accessor resource_arn: ::String
|
875
|
+
SENSITIVE: []
|
876
|
+
end
|
877
|
+
|
878
|
+
class DeleteScheduledActionMessage
|
879
|
+
attr_accessor scheduled_action_name: ::String
|
880
|
+
SENSITIVE: []
|
881
|
+
end
|
882
|
+
|
883
|
+
class DeleteSnapshotCopyGrantMessage
|
884
|
+
attr_accessor snapshot_copy_grant_name: ::String
|
885
|
+
SENSITIVE: []
|
886
|
+
end
|
887
|
+
|
888
|
+
class DeleteSnapshotScheduleMessage
|
889
|
+
attr_accessor schedule_identifier: ::String
|
890
|
+
SENSITIVE: []
|
891
|
+
end
|
892
|
+
|
893
|
+
class DeleteTagsMessage
|
894
|
+
attr_accessor resource_name: ::String
|
895
|
+
attr_accessor tag_keys: ::Array[::String]
|
896
|
+
SENSITIVE: []
|
897
|
+
end
|
898
|
+
|
899
|
+
class DeleteUsageLimitMessage
|
900
|
+
attr_accessor usage_limit_id: ::String
|
901
|
+
SENSITIVE: []
|
902
|
+
end
|
903
|
+
|
904
|
+
class DependentServiceAccessDeniedFault < Aws::EmptyStructure
|
905
|
+
end
|
906
|
+
|
907
|
+
class DependentServiceRequestThrottlingFault < Aws::EmptyStructure
|
908
|
+
end
|
909
|
+
|
910
|
+
class DependentServiceUnavailableFault < Aws::EmptyStructure
|
911
|
+
end
|
912
|
+
|
913
|
+
class DescribeAccountAttributesMessage
|
914
|
+
attr_accessor attribute_names: ::Array[::String]
|
915
|
+
SENSITIVE: []
|
916
|
+
end
|
917
|
+
|
918
|
+
class DescribeAuthenticationProfilesMessage
|
919
|
+
attr_accessor authentication_profile_name: ::String
|
920
|
+
SENSITIVE: []
|
921
|
+
end
|
922
|
+
|
923
|
+
class DescribeAuthenticationProfilesResult
|
924
|
+
attr_accessor authentication_profiles: ::Array[Types::AuthenticationProfile]
|
925
|
+
SENSITIVE: []
|
926
|
+
end
|
927
|
+
|
928
|
+
class DescribeClusterDbRevisionsMessage
|
929
|
+
attr_accessor cluster_identifier: ::String
|
930
|
+
attr_accessor max_records: ::Integer
|
931
|
+
attr_accessor marker: ::String
|
932
|
+
SENSITIVE: []
|
933
|
+
end
|
934
|
+
|
935
|
+
class DescribeClusterParameterGroupsMessage
|
936
|
+
attr_accessor parameter_group_name: ::String
|
937
|
+
attr_accessor max_records: ::Integer
|
938
|
+
attr_accessor marker: ::String
|
939
|
+
attr_accessor tag_keys: ::Array[::String]
|
940
|
+
attr_accessor tag_values: ::Array[::String]
|
941
|
+
SENSITIVE: []
|
942
|
+
end
|
943
|
+
|
944
|
+
class DescribeClusterParametersMessage
|
945
|
+
attr_accessor parameter_group_name: ::String
|
946
|
+
attr_accessor source: ::String
|
947
|
+
attr_accessor max_records: ::Integer
|
948
|
+
attr_accessor marker: ::String
|
949
|
+
SENSITIVE: []
|
950
|
+
end
|
951
|
+
|
952
|
+
class DescribeClusterSecurityGroupsMessage
|
953
|
+
attr_accessor cluster_security_group_name: ::String
|
954
|
+
attr_accessor max_records: ::Integer
|
955
|
+
attr_accessor marker: ::String
|
956
|
+
attr_accessor tag_keys: ::Array[::String]
|
957
|
+
attr_accessor tag_values: ::Array[::String]
|
958
|
+
SENSITIVE: []
|
959
|
+
end
|
960
|
+
|
961
|
+
class DescribeClusterSnapshotsMessage
|
962
|
+
attr_accessor cluster_identifier: ::String
|
963
|
+
attr_accessor snapshot_identifier: ::String
|
964
|
+
attr_accessor snapshot_arn: ::String
|
965
|
+
attr_accessor snapshot_type: ::String
|
966
|
+
attr_accessor start_time: ::Time
|
967
|
+
attr_accessor end_time: ::Time
|
968
|
+
attr_accessor max_records: ::Integer
|
969
|
+
attr_accessor marker: ::String
|
970
|
+
attr_accessor owner_account: ::String
|
971
|
+
attr_accessor tag_keys: ::Array[::String]
|
972
|
+
attr_accessor tag_values: ::Array[::String]
|
973
|
+
attr_accessor cluster_exists: bool
|
974
|
+
attr_accessor sorting_entities: ::Array[Types::SnapshotSortingEntity]
|
975
|
+
SENSITIVE: []
|
976
|
+
end
|
977
|
+
|
978
|
+
class DescribeClusterSubnetGroupsMessage
|
979
|
+
attr_accessor cluster_subnet_group_name: ::String
|
980
|
+
attr_accessor max_records: ::Integer
|
981
|
+
attr_accessor marker: ::String
|
982
|
+
attr_accessor tag_keys: ::Array[::String]
|
983
|
+
attr_accessor tag_values: ::Array[::String]
|
984
|
+
SENSITIVE: []
|
985
|
+
end
|
986
|
+
|
987
|
+
class DescribeClusterTracksMessage
|
988
|
+
attr_accessor maintenance_track_name: ::String
|
989
|
+
attr_accessor max_records: ::Integer
|
990
|
+
attr_accessor marker: ::String
|
991
|
+
SENSITIVE: []
|
992
|
+
end
|
993
|
+
|
994
|
+
class DescribeClusterVersionsMessage
|
995
|
+
attr_accessor cluster_version: ::String
|
996
|
+
attr_accessor cluster_parameter_group_family: ::String
|
997
|
+
attr_accessor max_records: ::Integer
|
998
|
+
attr_accessor marker: ::String
|
999
|
+
SENSITIVE: []
|
1000
|
+
end
|
1001
|
+
|
1002
|
+
class DescribeClustersMessage
|
1003
|
+
attr_accessor cluster_identifier: ::String
|
1004
|
+
attr_accessor max_records: ::Integer
|
1005
|
+
attr_accessor marker: ::String
|
1006
|
+
attr_accessor tag_keys: ::Array[::String]
|
1007
|
+
attr_accessor tag_values: ::Array[::String]
|
1008
|
+
SENSITIVE: []
|
1009
|
+
end
|
1010
|
+
|
1011
|
+
class DescribeCustomDomainAssociationsMessage
|
1012
|
+
attr_accessor custom_domain_name: ::String
|
1013
|
+
attr_accessor custom_domain_certificate_arn: ::String
|
1014
|
+
attr_accessor max_records: ::Integer
|
1015
|
+
attr_accessor marker: ::String
|
1016
|
+
SENSITIVE: []
|
1017
|
+
end
|
1018
|
+
|
1019
|
+
class DescribeDataSharesForConsumerMessage
|
1020
|
+
attr_accessor consumer_arn: ::String
|
1021
|
+
attr_accessor status: ("ACTIVE" | "AVAILABLE")
|
1022
|
+
attr_accessor max_records: ::Integer
|
1023
|
+
attr_accessor marker: ::String
|
1024
|
+
SENSITIVE: []
|
1025
|
+
end
|
1026
|
+
|
1027
|
+
class DescribeDataSharesForConsumerResult
|
1028
|
+
attr_accessor data_shares: ::Array[Types::DataShare]
|
1029
|
+
attr_accessor marker: ::String
|
1030
|
+
SENSITIVE: []
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
class DescribeDataSharesForProducerMessage
|
1034
|
+
attr_accessor producer_arn: ::String
|
1035
|
+
attr_accessor status: ("ACTIVE" | "AUTHORIZED" | "PENDING_AUTHORIZATION" | "DEAUTHORIZED" | "REJECTED")
|
1036
|
+
attr_accessor max_records: ::Integer
|
1037
|
+
attr_accessor marker: ::String
|
1038
|
+
SENSITIVE: []
|
1039
|
+
end
|
1040
|
+
|
1041
|
+
class DescribeDataSharesForProducerResult
|
1042
|
+
attr_accessor data_shares: ::Array[Types::DataShare]
|
1043
|
+
attr_accessor marker: ::String
|
1044
|
+
SENSITIVE: []
|
1045
|
+
end
|
1046
|
+
|
1047
|
+
class DescribeDataSharesMessage
|
1048
|
+
attr_accessor data_share_arn: ::String
|
1049
|
+
attr_accessor max_records: ::Integer
|
1050
|
+
attr_accessor marker: ::String
|
1051
|
+
SENSITIVE: []
|
1052
|
+
end
|
1053
|
+
|
1054
|
+
class DescribeDataSharesResult
|
1055
|
+
attr_accessor data_shares: ::Array[Types::DataShare]
|
1056
|
+
attr_accessor marker: ::String
|
1057
|
+
SENSITIVE: []
|
1058
|
+
end
|
1059
|
+
|
1060
|
+
class DescribeDefaultClusterParametersMessage
|
1061
|
+
attr_accessor parameter_group_family: ::String
|
1062
|
+
attr_accessor max_records: ::Integer
|
1063
|
+
attr_accessor marker: ::String
|
1064
|
+
SENSITIVE: []
|
1065
|
+
end
|
1066
|
+
|
1067
|
+
class DescribeDefaultClusterParametersResult
|
1068
|
+
attr_accessor default_cluster_parameters: Types::DefaultClusterParameters
|
1069
|
+
SENSITIVE: []
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
class DescribeEndpointAccessMessage
|
1073
|
+
attr_accessor cluster_identifier: ::String
|
1074
|
+
attr_accessor resource_owner: ::String
|
1075
|
+
attr_accessor endpoint_name: ::String
|
1076
|
+
attr_accessor vpc_id: ::String
|
1077
|
+
attr_accessor max_records: ::Integer
|
1078
|
+
attr_accessor marker: ::String
|
1079
|
+
SENSITIVE: []
|
1080
|
+
end
|
1081
|
+
|
1082
|
+
class DescribeEndpointAuthorizationMessage
|
1083
|
+
attr_accessor cluster_identifier: ::String
|
1084
|
+
attr_accessor account: ::String
|
1085
|
+
attr_accessor grantee: bool
|
1086
|
+
attr_accessor max_records: ::Integer
|
1087
|
+
attr_accessor marker: ::String
|
1088
|
+
SENSITIVE: []
|
1089
|
+
end
|
1090
|
+
|
1091
|
+
class DescribeEventCategoriesMessage
|
1092
|
+
attr_accessor source_type: ::String
|
1093
|
+
SENSITIVE: []
|
1094
|
+
end
|
1095
|
+
|
1096
|
+
class DescribeEventSubscriptionsMessage
|
1097
|
+
attr_accessor subscription_name: ::String
|
1098
|
+
attr_accessor max_records: ::Integer
|
1099
|
+
attr_accessor marker: ::String
|
1100
|
+
attr_accessor tag_keys: ::Array[::String]
|
1101
|
+
attr_accessor tag_values: ::Array[::String]
|
1102
|
+
SENSITIVE: []
|
1103
|
+
end
|
1104
|
+
|
1105
|
+
class DescribeEventsMessage
|
1106
|
+
attr_accessor source_identifier: ::String
|
1107
|
+
attr_accessor source_type: ("cluster" | "cluster-parameter-group" | "cluster-security-group" | "cluster-snapshot" | "scheduled-action")
|
1108
|
+
attr_accessor start_time: ::Time
|
1109
|
+
attr_accessor end_time: ::Time
|
1110
|
+
attr_accessor duration: ::Integer
|
1111
|
+
attr_accessor max_records: ::Integer
|
1112
|
+
attr_accessor marker: ::String
|
1113
|
+
SENSITIVE: []
|
1114
|
+
end
|
1115
|
+
|
1116
|
+
class DescribeHsmClientCertificatesMessage
|
1117
|
+
attr_accessor hsm_client_certificate_identifier: ::String
|
1118
|
+
attr_accessor max_records: ::Integer
|
1119
|
+
attr_accessor marker: ::String
|
1120
|
+
attr_accessor tag_keys: ::Array[::String]
|
1121
|
+
attr_accessor tag_values: ::Array[::String]
|
1122
|
+
SENSITIVE: []
|
1123
|
+
end
|
1124
|
+
|
1125
|
+
class DescribeHsmConfigurationsMessage
|
1126
|
+
attr_accessor hsm_configuration_identifier: ::String
|
1127
|
+
attr_accessor max_records: ::Integer
|
1128
|
+
attr_accessor marker: ::String
|
1129
|
+
attr_accessor tag_keys: ::Array[::String]
|
1130
|
+
attr_accessor tag_values: ::Array[::String]
|
1131
|
+
SENSITIVE: []
|
1132
|
+
end
|
1133
|
+
|
1134
|
+
class DescribeInboundIntegrationsMessage
|
1135
|
+
attr_accessor integration_arn: ::String
|
1136
|
+
attr_accessor target_arn: ::String
|
1137
|
+
attr_accessor max_records: ::Integer
|
1138
|
+
attr_accessor marker: ::String
|
1139
|
+
SENSITIVE: []
|
1140
|
+
end
|
1141
|
+
|
1142
|
+
class DescribeLoggingStatusMessage
|
1143
|
+
attr_accessor cluster_identifier: ::String
|
1144
|
+
SENSITIVE: []
|
1145
|
+
end
|
1146
|
+
|
1147
|
+
class DescribeNodeConfigurationOptionsMessage
|
1148
|
+
attr_accessor action_type: ("restore-cluster" | "recommend-node-config" | "resize-cluster")
|
1149
|
+
attr_accessor cluster_identifier: ::String
|
1150
|
+
attr_accessor snapshot_identifier: ::String
|
1151
|
+
attr_accessor snapshot_arn: ::String
|
1152
|
+
attr_accessor owner_account: ::String
|
1153
|
+
attr_accessor filters: ::Array[Types::NodeConfigurationOptionsFilter]
|
1154
|
+
attr_accessor marker: ::String
|
1155
|
+
attr_accessor max_records: ::Integer
|
1156
|
+
SENSITIVE: []
|
1157
|
+
end
|
1158
|
+
|
1159
|
+
class DescribeOrderableClusterOptionsMessage
|
1160
|
+
attr_accessor cluster_version: ::String
|
1161
|
+
attr_accessor node_type: ::String
|
1162
|
+
attr_accessor max_records: ::Integer
|
1163
|
+
attr_accessor marker: ::String
|
1164
|
+
SENSITIVE: []
|
1165
|
+
end
|
1166
|
+
|
1167
|
+
class DescribePartnersInputMessage
|
1168
|
+
attr_accessor account_id: ::String
|
1169
|
+
attr_accessor cluster_identifier: ::String
|
1170
|
+
attr_accessor database_name: ::String
|
1171
|
+
attr_accessor partner_name: ::String
|
1172
|
+
SENSITIVE: []
|
1173
|
+
end
|
1174
|
+
|
1175
|
+
class DescribePartnersOutputMessage
|
1176
|
+
attr_accessor partner_integration_info_list: ::Array[Types::PartnerIntegrationInfo]
|
1177
|
+
SENSITIVE: []
|
1178
|
+
end
|
1179
|
+
|
1180
|
+
class DescribeRedshiftIdcApplicationsMessage
|
1181
|
+
attr_accessor redshift_idc_application_arn: ::String
|
1182
|
+
attr_accessor max_records: ::Integer
|
1183
|
+
attr_accessor marker: ::String
|
1184
|
+
SENSITIVE: []
|
1185
|
+
end
|
1186
|
+
|
1187
|
+
class DescribeRedshiftIdcApplicationsResult
|
1188
|
+
attr_accessor redshift_idc_applications: ::Array[Types::RedshiftIdcApplication]
|
1189
|
+
attr_accessor marker: ::String
|
1190
|
+
SENSITIVE: []
|
1191
|
+
end
|
1192
|
+
|
1193
|
+
class DescribeReservedNodeExchangeStatusInputMessage
|
1194
|
+
attr_accessor reserved_node_id: ::String
|
1195
|
+
attr_accessor reserved_node_exchange_request_id: ::String
|
1196
|
+
attr_accessor max_records: ::Integer
|
1197
|
+
attr_accessor marker: ::String
|
1198
|
+
SENSITIVE: []
|
1199
|
+
end
|
1200
|
+
|
1201
|
+
class DescribeReservedNodeExchangeStatusOutputMessage
|
1202
|
+
attr_accessor reserved_node_exchange_status_details: ::Array[Types::ReservedNodeExchangeStatus]
|
1203
|
+
attr_accessor marker: ::String
|
1204
|
+
SENSITIVE: []
|
1205
|
+
end
|
1206
|
+
|
1207
|
+
class DescribeReservedNodeOfferingsMessage
|
1208
|
+
attr_accessor reserved_node_offering_id: ::String
|
1209
|
+
attr_accessor max_records: ::Integer
|
1210
|
+
attr_accessor marker: ::String
|
1211
|
+
SENSITIVE: []
|
1212
|
+
end
|
1213
|
+
|
1214
|
+
class DescribeReservedNodesMessage
|
1215
|
+
attr_accessor reserved_node_id: ::String
|
1216
|
+
attr_accessor max_records: ::Integer
|
1217
|
+
attr_accessor marker: ::String
|
1218
|
+
SENSITIVE: []
|
1219
|
+
end
|
1220
|
+
|
1221
|
+
class DescribeResizeMessage
|
1222
|
+
attr_accessor cluster_identifier: ::String
|
1223
|
+
SENSITIVE: []
|
1224
|
+
end
|
1225
|
+
|
1226
|
+
class DescribeScheduledActionsMessage
|
1227
|
+
attr_accessor scheduled_action_name: ::String
|
1228
|
+
attr_accessor target_action_type: ("ResizeCluster" | "PauseCluster" | "ResumeCluster")
|
1229
|
+
attr_accessor start_time: ::Time
|
1230
|
+
attr_accessor end_time: ::Time
|
1231
|
+
attr_accessor active: bool
|
1232
|
+
attr_accessor filters: ::Array[Types::ScheduledActionFilter]
|
1233
|
+
attr_accessor marker: ::String
|
1234
|
+
attr_accessor max_records: ::Integer
|
1235
|
+
SENSITIVE: []
|
1236
|
+
end
|
1237
|
+
|
1238
|
+
class DescribeSnapshotCopyGrantsMessage
|
1239
|
+
attr_accessor snapshot_copy_grant_name: ::String
|
1240
|
+
attr_accessor max_records: ::Integer
|
1241
|
+
attr_accessor marker: ::String
|
1242
|
+
attr_accessor tag_keys: ::Array[::String]
|
1243
|
+
attr_accessor tag_values: ::Array[::String]
|
1244
|
+
SENSITIVE: []
|
1245
|
+
end
|
1246
|
+
|
1247
|
+
class DescribeSnapshotSchedulesMessage
|
1248
|
+
attr_accessor cluster_identifier: ::String
|
1249
|
+
attr_accessor schedule_identifier: ::String
|
1250
|
+
attr_accessor tag_keys: ::Array[::String]
|
1251
|
+
attr_accessor tag_values: ::Array[::String]
|
1252
|
+
attr_accessor marker: ::String
|
1253
|
+
attr_accessor max_records: ::Integer
|
1254
|
+
SENSITIVE: []
|
1255
|
+
end
|
1256
|
+
|
1257
|
+
class DescribeSnapshotSchedulesOutputMessage
|
1258
|
+
attr_accessor snapshot_schedules: ::Array[Types::SnapshotSchedule]
|
1259
|
+
attr_accessor marker: ::String
|
1260
|
+
SENSITIVE: []
|
1261
|
+
end
|
1262
|
+
|
1263
|
+
class DescribeTableRestoreStatusMessage
|
1264
|
+
attr_accessor cluster_identifier: ::String
|
1265
|
+
attr_accessor table_restore_request_id: ::String
|
1266
|
+
attr_accessor max_records: ::Integer
|
1267
|
+
attr_accessor marker: ::String
|
1268
|
+
SENSITIVE: []
|
1269
|
+
end
|
1270
|
+
|
1271
|
+
class DescribeTagsMessage
|
1272
|
+
attr_accessor resource_name: ::String
|
1273
|
+
attr_accessor resource_type: ::String
|
1274
|
+
attr_accessor max_records: ::Integer
|
1275
|
+
attr_accessor marker: ::String
|
1276
|
+
attr_accessor tag_keys: ::Array[::String]
|
1277
|
+
attr_accessor tag_values: ::Array[::String]
|
1278
|
+
SENSITIVE: []
|
1279
|
+
end
|
1280
|
+
|
1281
|
+
class DescribeUsageLimitsMessage
|
1282
|
+
attr_accessor usage_limit_id: ::String
|
1283
|
+
attr_accessor cluster_identifier: ::String
|
1284
|
+
attr_accessor feature_type: ("spectrum" | "concurrency-scaling" | "cross-region-datasharing")
|
1285
|
+
attr_accessor max_records: ::Integer
|
1286
|
+
attr_accessor marker: ::String
|
1287
|
+
attr_accessor tag_keys: ::Array[::String]
|
1288
|
+
attr_accessor tag_values: ::Array[::String]
|
1289
|
+
SENSITIVE: []
|
1290
|
+
end
|
1291
|
+
|
1292
|
+
class DisableLoggingMessage
|
1293
|
+
attr_accessor cluster_identifier: ::String
|
1294
|
+
SENSITIVE: []
|
1295
|
+
end
|
1296
|
+
|
1297
|
+
class DisableSnapshotCopyMessage
|
1298
|
+
attr_accessor cluster_identifier: ::String
|
1299
|
+
SENSITIVE: []
|
1300
|
+
end
|
1301
|
+
|
1302
|
+
class DisableSnapshotCopyResult
|
1303
|
+
attr_accessor cluster: Types::Cluster
|
1304
|
+
SENSITIVE: []
|
1305
|
+
end
|
1306
|
+
|
1307
|
+
class DisassociateDataShareConsumerMessage
|
1308
|
+
attr_accessor data_share_arn: ::String
|
1309
|
+
attr_accessor disassociate_entire_account: bool
|
1310
|
+
attr_accessor consumer_arn: ::String
|
1311
|
+
attr_accessor consumer_region: ::String
|
1312
|
+
SENSITIVE: []
|
1313
|
+
end
|
1314
|
+
|
1315
|
+
class EC2SecurityGroup
|
1316
|
+
attr_accessor status: ::String
|
1317
|
+
attr_accessor ec2_security_group_name: ::String
|
1318
|
+
attr_accessor ec2_security_group_owner_id: ::String
|
1319
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1320
|
+
SENSITIVE: []
|
1321
|
+
end
|
1322
|
+
|
1323
|
+
class ElasticIpStatus
|
1324
|
+
attr_accessor elastic_ip: ::String
|
1325
|
+
attr_accessor status: ::String
|
1326
|
+
SENSITIVE: []
|
1327
|
+
end
|
1328
|
+
|
1329
|
+
class EnableLoggingMessage
|
1330
|
+
attr_accessor cluster_identifier: ::String
|
1331
|
+
attr_accessor bucket_name: ::String
|
1332
|
+
attr_accessor s3_key_prefix: ::String
|
1333
|
+
attr_accessor log_destination_type: ("s3" | "cloudwatch")
|
1334
|
+
attr_accessor log_exports: ::Array[::String]
|
1335
|
+
SENSITIVE: []
|
1336
|
+
end
|
1337
|
+
|
1338
|
+
class EnableSnapshotCopyMessage
|
1339
|
+
attr_accessor cluster_identifier: ::String
|
1340
|
+
attr_accessor destination_region: ::String
|
1341
|
+
attr_accessor retention_period: ::Integer
|
1342
|
+
attr_accessor snapshot_copy_grant_name: ::String
|
1343
|
+
attr_accessor manual_snapshot_retention_period: ::Integer
|
1344
|
+
SENSITIVE: []
|
1345
|
+
end
|
1346
|
+
|
1347
|
+
class EnableSnapshotCopyResult
|
1348
|
+
attr_accessor cluster: Types::Cluster
|
1349
|
+
SENSITIVE: []
|
1350
|
+
end
|
1351
|
+
|
1352
|
+
class Endpoint
|
1353
|
+
attr_accessor address: ::String
|
1354
|
+
attr_accessor port: ::Integer
|
1355
|
+
attr_accessor vpc_endpoints: ::Array[Types::VpcEndpoint]
|
1356
|
+
SENSITIVE: []
|
1357
|
+
end
|
1358
|
+
|
1359
|
+
class EndpointAccess
|
1360
|
+
attr_accessor cluster_identifier: ::String
|
1361
|
+
attr_accessor resource_owner: ::String
|
1362
|
+
attr_accessor subnet_group_name: ::String
|
1363
|
+
attr_accessor endpoint_status: ::String
|
1364
|
+
attr_accessor endpoint_name: ::String
|
1365
|
+
attr_accessor endpoint_create_time: ::Time
|
1366
|
+
attr_accessor port: ::Integer
|
1367
|
+
attr_accessor address: ::String
|
1368
|
+
attr_accessor vpc_security_groups: ::Array[Types::VpcSecurityGroupMembership]
|
1369
|
+
attr_accessor vpc_endpoint: Types::VpcEndpoint
|
1370
|
+
SENSITIVE: []
|
1371
|
+
end
|
1372
|
+
|
1373
|
+
class EndpointAccessList
|
1374
|
+
attr_accessor endpoint_access_list: ::Array[Types::EndpointAccess]
|
1375
|
+
attr_accessor marker: ::String
|
1376
|
+
SENSITIVE: []
|
1377
|
+
end
|
1378
|
+
|
1379
|
+
class EndpointAlreadyExistsFault < Aws::EmptyStructure
|
1380
|
+
end
|
1381
|
+
|
1382
|
+
class EndpointAuthorization
|
1383
|
+
attr_accessor grantor: ::String
|
1384
|
+
attr_accessor grantee: ::String
|
1385
|
+
attr_accessor cluster_identifier: ::String
|
1386
|
+
attr_accessor authorize_time: ::Time
|
1387
|
+
attr_accessor cluster_status: ::String
|
1388
|
+
attr_accessor status: ("Authorized" | "Revoking")
|
1389
|
+
attr_accessor allowed_all_vp_cs: bool
|
1390
|
+
attr_accessor allowed_vp_cs: ::Array[::String]
|
1391
|
+
attr_accessor endpoint_count: ::Integer
|
1392
|
+
SENSITIVE: []
|
1393
|
+
end
|
1394
|
+
|
1395
|
+
class EndpointAuthorizationAlreadyExistsFault < Aws::EmptyStructure
|
1396
|
+
end
|
1397
|
+
|
1398
|
+
class EndpointAuthorizationList
|
1399
|
+
attr_accessor endpoint_authorization_list: ::Array[Types::EndpointAuthorization]
|
1400
|
+
attr_accessor marker: ::String
|
1401
|
+
SENSITIVE: []
|
1402
|
+
end
|
1403
|
+
|
1404
|
+
class EndpointAuthorizationNotFoundFault < Aws::EmptyStructure
|
1405
|
+
end
|
1406
|
+
|
1407
|
+
class EndpointAuthorizationsPerClusterLimitExceededFault < Aws::EmptyStructure
|
1408
|
+
end
|
1409
|
+
|
1410
|
+
class EndpointNotFoundFault < Aws::EmptyStructure
|
1411
|
+
end
|
1412
|
+
|
1413
|
+
class EndpointsPerAuthorizationLimitExceededFault < Aws::EmptyStructure
|
1414
|
+
end
|
1415
|
+
|
1416
|
+
class EndpointsPerClusterLimitExceededFault < Aws::EmptyStructure
|
1417
|
+
end
|
1418
|
+
|
1419
|
+
class Event
|
1420
|
+
attr_accessor source_identifier: ::String
|
1421
|
+
attr_accessor source_type: ("cluster" | "cluster-parameter-group" | "cluster-security-group" | "cluster-snapshot" | "scheduled-action")
|
1422
|
+
attr_accessor message: ::String
|
1423
|
+
attr_accessor event_categories: ::Array[::String]
|
1424
|
+
attr_accessor severity: ::String
|
1425
|
+
attr_accessor date: ::Time
|
1426
|
+
attr_accessor event_id: ::String
|
1427
|
+
SENSITIVE: []
|
1428
|
+
end
|
1429
|
+
|
1430
|
+
class EventCategoriesMap
|
1431
|
+
attr_accessor source_type: ::String
|
1432
|
+
attr_accessor events: ::Array[Types::EventInfoMap]
|
1433
|
+
SENSITIVE: []
|
1434
|
+
end
|
1435
|
+
|
1436
|
+
class EventCategoriesMessage
|
1437
|
+
attr_accessor event_categories_map_list: ::Array[Types::EventCategoriesMap]
|
1438
|
+
SENSITIVE: []
|
1439
|
+
end
|
1440
|
+
|
1441
|
+
class EventInfoMap
|
1442
|
+
attr_accessor event_id: ::String
|
1443
|
+
attr_accessor event_categories: ::Array[::String]
|
1444
|
+
attr_accessor event_description: ::String
|
1445
|
+
attr_accessor severity: ::String
|
1446
|
+
SENSITIVE: []
|
1447
|
+
end
|
1448
|
+
|
1449
|
+
class EventSubscription
|
1450
|
+
attr_accessor customer_aws_id: ::String
|
1451
|
+
attr_accessor cust_subscription_id: ::String
|
1452
|
+
attr_accessor sns_topic_arn: ::String
|
1453
|
+
attr_accessor status: ::String
|
1454
|
+
attr_accessor subscription_creation_time: ::Time
|
1455
|
+
attr_accessor source_type: ::String
|
1456
|
+
attr_accessor source_ids_list: ::Array[::String]
|
1457
|
+
attr_accessor event_categories_list: ::Array[::String]
|
1458
|
+
attr_accessor severity: ::String
|
1459
|
+
attr_accessor enabled: bool
|
1460
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1461
|
+
SENSITIVE: []
|
1462
|
+
end
|
1463
|
+
|
1464
|
+
class EventSubscriptionQuotaExceededFault < Aws::EmptyStructure
|
1465
|
+
end
|
1466
|
+
|
1467
|
+
class EventSubscriptionsMessage
|
1468
|
+
attr_accessor marker: ::String
|
1469
|
+
attr_accessor event_subscriptions_list: ::Array[Types::EventSubscription]
|
1470
|
+
SENSITIVE: []
|
1471
|
+
end
|
1472
|
+
|
1473
|
+
class EventsMessage
|
1474
|
+
attr_accessor marker: ::String
|
1475
|
+
attr_accessor events: ::Array[Types::Event]
|
1476
|
+
SENSITIVE: []
|
1477
|
+
end
|
1478
|
+
|
1479
|
+
class FailoverPrimaryComputeInputMessage
|
1480
|
+
attr_accessor cluster_identifier: ::String
|
1481
|
+
SENSITIVE: []
|
1482
|
+
end
|
1483
|
+
|
1484
|
+
class FailoverPrimaryComputeResult
|
1485
|
+
attr_accessor cluster: Types::Cluster
|
1486
|
+
SENSITIVE: []
|
1487
|
+
end
|
1488
|
+
|
1489
|
+
class GetClusterCredentialsMessage
|
1490
|
+
attr_accessor db_user: ::String
|
1491
|
+
attr_accessor db_name: ::String
|
1492
|
+
attr_accessor cluster_identifier: ::String
|
1493
|
+
attr_accessor duration_seconds: ::Integer
|
1494
|
+
attr_accessor auto_create: bool
|
1495
|
+
attr_accessor db_groups: ::Array[::String]
|
1496
|
+
attr_accessor custom_domain_name: ::String
|
1497
|
+
SENSITIVE: []
|
1498
|
+
end
|
1499
|
+
|
1500
|
+
class GetClusterCredentialsWithIAMMessage
|
1501
|
+
attr_accessor db_name: ::String
|
1502
|
+
attr_accessor cluster_identifier: ::String
|
1503
|
+
attr_accessor duration_seconds: ::Integer
|
1504
|
+
attr_accessor custom_domain_name: ::String
|
1505
|
+
SENSITIVE: []
|
1506
|
+
end
|
1507
|
+
|
1508
|
+
class GetReservedNodeExchangeConfigurationOptionsInputMessage
|
1509
|
+
attr_accessor action_type: ("restore-cluster" | "resize-cluster")
|
1510
|
+
attr_accessor cluster_identifier: ::String
|
1511
|
+
attr_accessor snapshot_identifier: ::String
|
1512
|
+
attr_accessor max_records: ::Integer
|
1513
|
+
attr_accessor marker: ::String
|
1514
|
+
SENSITIVE: []
|
1515
|
+
end
|
1516
|
+
|
1517
|
+
class GetReservedNodeExchangeConfigurationOptionsOutputMessage
|
1518
|
+
attr_accessor marker: ::String
|
1519
|
+
attr_accessor reserved_node_configuration_option_list: ::Array[Types::ReservedNodeConfigurationOption]
|
1520
|
+
SENSITIVE: []
|
1521
|
+
end
|
1522
|
+
|
1523
|
+
class GetReservedNodeExchangeOfferingsInputMessage
|
1524
|
+
attr_accessor reserved_node_id: ::String
|
1525
|
+
attr_accessor max_records: ::Integer
|
1526
|
+
attr_accessor marker: ::String
|
1527
|
+
SENSITIVE: []
|
1528
|
+
end
|
1529
|
+
|
1530
|
+
class GetReservedNodeExchangeOfferingsOutputMessage
|
1531
|
+
attr_accessor marker: ::String
|
1532
|
+
attr_accessor reserved_node_offerings: ::Array[Types::ReservedNodeOffering]
|
1533
|
+
SENSITIVE: []
|
1534
|
+
end
|
1535
|
+
|
1536
|
+
class GetResourcePolicyMessage
|
1537
|
+
attr_accessor resource_arn: ::String
|
1538
|
+
SENSITIVE: []
|
1539
|
+
end
|
1540
|
+
|
1541
|
+
class GetResourcePolicyResult
|
1542
|
+
attr_accessor resource_policy: Types::ResourcePolicy
|
1543
|
+
SENSITIVE: []
|
1544
|
+
end
|
1545
|
+
|
1546
|
+
class HsmClientCertificate
|
1547
|
+
attr_accessor hsm_client_certificate_identifier: ::String
|
1548
|
+
attr_accessor hsm_client_certificate_public_key: ::String
|
1549
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1550
|
+
SENSITIVE: []
|
1551
|
+
end
|
1552
|
+
|
1553
|
+
class HsmClientCertificateAlreadyExistsFault < Aws::EmptyStructure
|
1554
|
+
end
|
1555
|
+
|
1556
|
+
class HsmClientCertificateMessage
|
1557
|
+
attr_accessor marker: ::String
|
1558
|
+
attr_accessor hsm_client_certificates: ::Array[Types::HsmClientCertificate]
|
1559
|
+
SENSITIVE: []
|
1560
|
+
end
|
1561
|
+
|
1562
|
+
class HsmClientCertificateNotFoundFault < Aws::EmptyStructure
|
1563
|
+
end
|
1564
|
+
|
1565
|
+
class HsmClientCertificateQuotaExceededFault < Aws::EmptyStructure
|
1566
|
+
end
|
1567
|
+
|
1568
|
+
class HsmConfiguration
|
1569
|
+
attr_accessor hsm_configuration_identifier: ::String
|
1570
|
+
attr_accessor description: ::String
|
1571
|
+
attr_accessor hsm_ip_address: ::String
|
1572
|
+
attr_accessor hsm_partition_name: ::String
|
1573
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1574
|
+
SENSITIVE: []
|
1575
|
+
end
|
1576
|
+
|
1577
|
+
class HsmConfigurationAlreadyExistsFault < Aws::EmptyStructure
|
1578
|
+
end
|
1579
|
+
|
1580
|
+
class HsmConfigurationMessage
|
1581
|
+
attr_accessor marker: ::String
|
1582
|
+
attr_accessor hsm_configurations: ::Array[Types::HsmConfiguration]
|
1583
|
+
SENSITIVE: []
|
1584
|
+
end
|
1585
|
+
|
1586
|
+
class HsmConfigurationNotFoundFault < Aws::EmptyStructure
|
1587
|
+
end
|
1588
|
+
|
1589
|
+
class HsmConfigurationQuotaExceededFault < Aws::EmptyStructure
|
1590
|
+
end
|
1591
|
+
|
1592
|
+
class HsmStatus
|
1593
|
+
attr_accessor hsm_client_certificate_identifier: ::String
|
1594
|
+
attr_accessor hsm_configuration_identifier: ::String
|
1595
|
+
attr_accessor status: ::String
|
1596
|
+
SENSITIVE: []
|
1597
|
+
end
|
1598
|
+
|
1599
|
+
class IPRange
|
1600
|
+
attr_accessor status: ::String
|
1601
|
+
attr_accessor cidrip: ::String
|
1602
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1603
|
+
SENSITIVE: []
|
1604
|
+
end
|
1605
|
+
|
1606
|
+
class InProgressTableRestoreQuotaExceededFault < Aws::EmptyStructure
|
1607
|
+
end
|
1608
|
+
|
1609
|
+
class InboundIntegration
|
1610
|
+
attr_accessor integration_arn: ::String
|
1611
|
+
attr_accessor source_arn: ::String
|
1612
|
+
attr_accessor target_arn: ::String
|
1613
|
+
attr_accessor status: ("creating" | "active" | "modifying" | "failed" | "deleting" | "syncing" | "needs_attention")
|
1614
|
+
attr_accessor errors: ::Array[Types::IntegrationError]
|
1615
|
+
attr_accessor create_time: ::Time
|
1616
|
+
SENSITIVE: []
|
1617
|
+
end
|
1618
|
+
|
1619
|
+
class InboundIntegrationsMessage
|
1620
|
+
attr_accessor marker: ::String
|
1621
|
+
attr_accessor inbound_integrations: ::Array[Types::InboundIntegration]
|
1622
|
+
SENSITIVE: []
|
1623
|
+
end
|
1624
|
+
|
1625
|
+
class IncompatibleOrderableOptions < Aws::EmptyStructure
|
1626
|
+
end
|
1627
|
+
|
1628
|
+
class InsufficientClusterCapacityFault < Aws::EmptyStructure
|
1629
|
+
end
|
1630
|
+
|
1631
|
+
class InsufficientS3BucketPolicyFault < Aws::EmptyStructure
|
1632
|
+
end
|
1633
|
+
|
1634
|
+
class IntegrationError
|
1635
|
+
attr_accessor error_code: ::String
|
1636
|
+
attr_accessor error_message: ::String
|
1637
|
+
SENSITIVE: []
|
1638
|
+
end
|
1639
|
+
|
1640
|
+
class IntegrationNotFoundFault < Aws::EmptyStructure
|
1641
|
+
end
|
1642
|
+
|
1643
|
+
class InvalidAuthenticationProfileRequestFault < Aws::EmptyStructure
|
1644
|
+
end
|
1645
|
+
|
1646
|
+
class InvalidAuthorizationStateFault < Aws::EmptyStructure
|
1647
|
+
end
|
1648
|
+
|
1649
|
+
class InvalidClusterParameterGroupStateFault < Aws::EmptyStructure
|
1650
|
+
end
|
1651
|
+
|
1652
|
+
class InvalidClusterSecurityGroupStateFault < Aws::EmptyStructure
|
1653
|
+
end
|
1654
|
+
|
1655
|
+
class InvalidClusterSnapshotScheduleStateFault < Aws::EmptyStructure
|
1656
|
+
end
|
1657
|
+
|
1658
|
+
class InvalidClusterSnapshotStateFault < Aws::EmptyStructure
|
1659
|
+
end
|
1660
|
+
|
1661
|
+
class InvalidClusterStateFault < Aws::EmptyStructure
|
1662
|
+
end
|
1663
|
+
|
1664
|
+
class InvalidClusterSubnetGroupStateFault < Aws::EmptyStructure
|
1665
|
+
end
|
1666
|
+
|
1667
|
+
class InvalidClusterSubnetStateFault < Aws::EmptyStructure
|
1668
|
+
end
|
1669
|
+
|
1670
|
+
class InvalidClusterTrackFault < Aws::EmptyStructure
|
1671
|
+
end
|
1672
|
+
|
1673
|
+
class InvalidDataShareFault < Aws::EmptyStructure
|
1674
|
+
end
|
1675
|
+
|
1676
|
+
class InvalidElasticIpFault < Aws::EmptyStructure
|
1677
|
+
end
|
1678
|
+
|
1679
|
+
class InvalidEndpointStateFault < Aws::EmptyStructure
|
1680
|
+
end
|
1681
|
+
|
1682
|
+
class InvalidHsmClientCertificateStateFault < Aws::EmptyStructure
|
1683
|
+
end
|
1684
|
+
|
1685
|
+
class InvalidHsmConfigurationStateFault < Aws::EmptyStructure
|
1686
|
+
end
|
1687
|
+
|
1688
|
+
class InvalidNamespaceFault < Aws::EmptyStructure
|
1689
|
+
end
|
1690
|
+
|
1691
|
+
class InvalidPolicyFault < Aws::EmptyStructure
|
1692
|
+
end
|
1693
|
+
|
1694
|
+
class InvalidReservedNodeStateFault < Aws::EmptyStructure
|
1695
|
+
end
|
1696
|
+
|
1697
|
+
class InvalidRestoreFault < Aws::EmptyStructure
|
1698
|
+
end
|
1699
|
+
|
1700
|
+
class InvalidRetentionPeriodFault < Aws::EmptyStructure
|
1701
|
+
end
|
1702
|
+
|
1703
|
+
class InvalidS3BucketNameFault < Aws::EmptyStructure
|
1704
|
+
end
|
1705
|
+
|
1706
|
+
class InvalidS3KeyPrefixFault < Aws::EmptyStructure
|
1707
|
+
end
|
1708
|
+
|
1709
|
+
class InvalidScheduleFault < Aws::EmptyStructure
|
1710
|
+
end
|
1711
|
+
|
1712
|
+
class InvalidScheduledActionFault < Aws::EmptyStructure
|
1713
|
+
end
|
1714
|
+
|
1715
|
+
class InvalidSnapshotCopyGrantStateFault < Aws::EmptyStructure
|
1716
|
+
end
|
1717
|
+
|
1718
|
+
class InvalidSubnet < Aws::EmptyStructure
|
1719
|
+
end
|
1720
|
+
|
1721
|
+
class InvalidSubscriptionStateFault < Aws::EmptyStructure
|
1722
|
+
end
|
1723
|
+
|
1724
|
+
class InvalidTableRestoreArgumentFault < Aws::EmptyStructure
|
1725
|
+
end
|
1726
|
+
|
1727
|
+
class InvalidTagFault < Aws::EmptyStructure
|
1728
|
+
end
|
1729
|
+
|
1730
|
+
class InvalidUsageLimitFault < Aws::EmptyStructure
|
1731
|
+
end
|
1732
|
+
|
1733
|
+
class InvalidVPCNetworkStateFault < Aws::EmptyStructure
|
1734
|
+
end
|
1735
|
+
|
1736
|
+
class Ipv6CidrBlockNotFoundFault < Aws::EmptyStructure
|
1737
|
+
end
|
1738
|
+
|
1739
|
+
class LakeFormationQuery
|
1740
|
+
attr_accessor authorization: ("Enabled" | "Disabled")
|
1741
|
+
SENSITIVE: []
|
1742
|
+
end
|
1743
|
+
|
1744
|
+
class LakeFormationScopeUnion
|
1745
|
+
attr_accessor lake_formation_query: Types::LakeFormationQuery
|
1746
|
+
attr_accessor unknown: untyped
|
1747
|
+
SENSITIVE: []
|
1748
|
+
|
1749
|
+
class LakeFormationQuery < LakeFormationScopeUnion
|
1750
|
+
end
|
1751
|
+
class Unknown < LakeFormationScopeUnion
|
1752
|
+
end
|
1753
|
+
end
|
1754
|
+
|
1755
|
+
class LimitExceededFault < Aws::EmptyStructure
|
1756
|
+
end
|
1757
|
+
|
1758
|
+
class ListRecommendationsMessage
|
1759
|
+
attr_accessor cluster_identifier: ::String
|
1760
|
+
attr_accessor namespace_arn: ::String
|
1761
|
+
attr_accessor max_records: ::Integer
|
1762
|
+
attr_accessor marker: ::String
|
1763
|
+
SENSITIVE: []
|
1764
|
+
end
|
1765
|
+
|
1766
|
+
class ListRecommendationsResult
|
1767
|
+
attr_accessor recommendations: ::Array[Types::Recommendation]
|
1768
|
+
attr_accessor marker: ::String
|
1769
|
+
SENSITIVE: []
|
1770
|
+
end
|
1771
|
+
|
1772
|
+
class LoggingStatus
|
1773
|
+
attr_accessor logging_enabled: bool
|
1774
|
+
attr_accessor bucket_name: ::String
|
1775
|
+
attr_accessor s3_key_prefix: ::String
|
1776
|
+
attr_accessor last_successful_delivery_time: ::Time
|
1777
|
+
attr_accessor last_failure_time: ::Time
|
1778
|
+
attr_accessor last_failure_message: ::String
|
1779
|
+
attr_accessor log_destination_type: ("s3" | "cloudwatch")
|
1780
|
+
attr_accessor log_exports: ::Array[::String]
|
1781
|
+
SENSITIVE: []
|
1782
|
+
end
|
1783
|
+
|
1784
|
+
class MaintenanceTrack
|
1785
|
+
attr_accessor maintenance_track_name: ::String
|
1786
|
+
attr_accessor database_version: ::String
|
1787
|
+
attr_accessor update_targets: ::Array[Types::UpdateTarget]
|
1788
|
+
SENSITIVE: []
|
1789
|
+
end
|
1790
|
+
|
1791
|
+
class ModifyAquaInputMessage
|
1792
|
+
attr_accessor cluster_identifier: ::String
|
1793
|
+
attr_accessor aqua_configuration_status: ("enabled" | "disabled" | "auto")
|
1794
|
+
SENSITIVE: []
|
1795
|
+
end
|
1796
|
+
|
1797
|
+
class ModifyAquaOutputMessage
|
1798
|
+
attr_accessor aqua_configuration: Types::AquaConfiguration
|
1799
|
+
SENSITIVE: []
|
1800
|
+
end
|
1801
|
+
|
1802
|
+
class ModifyAuthenticationProfileMessage
|
1803
|
+
attr_accessor authentication_profile_name: ::String
|
1804
|
+
attr_accessor authentication_profile_content: ::String
|
1805
|
+
SENSITIVE: []
|
1806
|
+
end
|
1807
|
+
|
1808
|
+
class ModifyAuthenticationProfileResult
|
1809
|
+
attr_accessor authentication_profile_name: ::String
|
1810
|
+
attr_accessor authentication_profile_content: ::String
|
1811
|
+
SENSITIVE: []
|
1812
|
+
end
|
1813
|
+
|
1814
|
+
class ModifyClusterDbRevisionMessage
|
1815
|
+
attr_accessor cluster_identifier: ::String
|
1816
|
+
attr_accessor revision_target: ::String
|
1817
|
+
SENSITIVE: []
|
1818
|
+
end
|
1819
|
+
|
1820
|
+
class ModifyClusterDbRevisionResult
|
1821
|
+
attr_accessor cluster: Types::Cluster
|
1822
|
+
SENSITIVE: []
|
1823
|
+
end
|
1824
|
+
|
1825
|
+
class ModifyClusterIamRolesMessage
|
1826
|
+
attr_accessor cluster_identifier: ::String
|
1827
|
+
attr_accessor add_iam_roles: ::Array[::String]
|
1828
|
+
attr_accessor remove_iam_roles: ::Array[::String]
|
1829
|
+
attr_accessor default_iam_role_arn: ::String
|
1830
|
+
SENSITIVE: []
|
1831
|
+
end
|
1832
|
+
|
1833
|
+
class ModifyClusterIamRolesResult
|
1834
|
+
attr_accessor cluster: Types::Cluster
|
1835
|
+
SENSITIVE: []
|
1836
|
+
end
|
1837
|
+
|
1838
|
+
class ModifyClusterMaintenanceMessage
|
1839
|
+
attr_accessor cluster_identifier: ::String
|
1840
|
+
attr_accessor defer_maintenance: bool
|
1841
|
+
attr_accessor defer_maintenance_identifier: ::String
|
1842
|
+
attr_accessor defer_maintenance_start_time: ::Time
|
1843
|
+
attr_accessor defer_maintenance_end_time: ::Time
|
1844
|
+
attr_accessor defer_maintenance_duration: ::Integer
|
1845
|
+
SENSITIVE: []
|
1846
|
+
end
|
1847
|
+
|
1848
|
+
class ModifyClusterMaintenanceResult
|
1849
|
+
attr_accessor cluster: Types::Cluster
|
1850
|
+
SENSITIVE: []
|
1851
|
+
end
|
1852
|
+
|
1853
|
+
class ModifyClusterMessage
|
1854
|
+
attr_accessor cluster_identifier: ::String
|
1855
|
+
attr_accessor cluster_type: ::String
|
1856
|
+
attr_accessor node_type: ::String
|
1857
|
+
attr_accessor number_of_nodes: ::Integer
|
1858
|
+
attr_accessor cluster_security_groups: ::Array[::String]
|
1859
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
1860
|
+
attr_accessor master_user_password: ::String
|
1861
|
+
attr_accessor cluster_parameter_group_name: ::String
|
1862
|
+
attr_accessor automated_snapshot_retention_period: ::Integer
|
1863
|
+
attr_accessor manual_snapshot_retention_period: ::Integer
|
1864
|
+
attr_accessor preferred_maintenance_window: ::String
|
1865
|
+
attr_accessor cluster_version: ::String
|
1866
|
+
attr_accessor allow_version_upgrade: bool
|
1867
|
+
attr_accessor hsm_client_certificate_identifier: ::String
|
1868
|
+
attr_accessor hsm_configuration_identifier: ::String
|
1869
|
+
attr_accessor new_cluster_identifier: ::String
|
1870
|
+
attr_accessor publicly_accessible: bool
|
1871
|
+
attr_accessor elastic_ip: ::String
|
1872
|
+
attr_accessor enhanced_vpc_routing: bool
|
1873
|
+
attr_accessor maintenance_track_name: ::String
|
1874
|
+
attr_accessor encrypted: bool
|
1875
|
+
attr_accessor kms_key_id: ::String
|
1876
|
+
attr_accessor availability_zone_relocation: bool
|
1877
|
+
attr_accessor availability_zone: ::String
|
1878
|
+
attr_accessor port: ::Integer
|
1879
|
+
attr_accessor manage_master_password: bool
|
1880
|
+
attr_accessor master_password_secret_kms_key_id: ::String
|
1881
|
+
attr_accessor ip_address_type: ::String
|
1882
|
+
attr_accessor multi_az: bool
|
1883
|
+
SENSITIVE: [:master_user_password]
|
1884
|
+
end
|
1885
|
+
|
1886
|
+
class ModifyClusterParameterGroupMessage
|
1887
|
+
attr_accessor parameter_group_name: ::String
|
1888
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
1889
|
+
SENSITIVE: []
|
1890
|
+
end
|
1891
|
+
|
1892
|
+
class ModifyClusterResult
|
1893
|
+
attr_accessor cluster: Types::Cluster
|
1894
|
+
SENSITIVE: []
|
1895
|
+
end
|
1896
|
+
|
1897
|
+
class ModifyClusterSnapshotMessage
|
1898
|
+
attr_accessor snapshot_identifier: ::String
|
1899
|
+
attr_accessor manual_snapshot_retention_period: ::Integer
|
1900
|
+
attr_accessor force: bool
|
1901
|
+
SENSITIVE: []
|
1902
|
+
end
|
1903
|
+
|
1904
|
+
class ModifyClusterSnapshotResult
|
1905
|
+
attr_accessor snapshot: Types::Snapshot
|
1906
|
+
SENSITIVE: []
|
1907
|
+
end
|
1908
|
+
|
1909
|
+
class ModifyClusterSnapshotScheduleMessage
|
1910
|
+
attr_accessor cluster_identifier: ::String
|
1911
|
+
attr_accessor schedule_identifier: ::String
|
1912
|
+
attr_accessor disassociate_schedule: bool
|
1913
|
+
SENSITIVE: []
|
1914
|
+
end
|
1915
|
+
|
1916
|
+
class ModifyClusterSubnetGroupMessage
|
1917
|
+
attr_accessor cluster_subnet_group_name: ::String
|
1918
|
+
attr_accessor description: ::String
|
1919
|
+
attr_accessor subnet_ids: ::Array[::String]
|
1920
|
+
SENSITIVE: []
|
1921
|
+
end
|
1922
|
+
|
1923
|
+
class ModifyClusterSubnetGroupResult
|
1924
|
+
attr_accessor cluster_subnet_group: Types::ClusterSubnetGroup
|
1925
|
+
SENSITIVE: []
|
1926
|
+
end
|
1927
|
+
|
1928
|
+
class ModifyCustomDomainAssociationMessage
|
1929
|
+
attr_accessor custom_domain_name: ::String
|
1930
|
+
attr_accessor custom_domain_certificate_arn: ::String
|
1931
|
+
attr_accessor cluster_identifier: ::String
|
1932
|
+
SENSITIVE: []
|
1933
|
+
end
|
1934
|
+
|
1935
|
+
class ModifyCustomDomainAssociationResult
|
1936
|
+
attr_accessor custom_domain_name: ::String
|
1937
|
+
attr_accessor custom_domain_certificate_arn: ::String
|
1938
|
+
attr_accessor cluster_identifier: ::String
|
1939
|
+
attr_accessor custom_domain_cert_expiry_time: ::String
|
1940
|
+
SENSITIVE: []
|
1941
|
+
end
|
1942
|
+
|
1943
|
+
class ModifyEndpointAccessMessage
|
1944
|
+
attr_accessor endpoint_name: ::String
|
1945
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
1946
|
+
SENSITIVE: []
|
1947
|
+
end
|
1948
|
+
|
1949
|
+
class ModifyEventSubscriptionMessage
|
1950
|
+
attr_accessor subscription_name: ::String
|
1951
|
+
attr_accessor sns_topic_arn: ::String
|
1952
|
+
attr_accessor source_type: ::String
|
1953
|
+
attr_accessor source_ids: ::Array[::String]
|
1954
|
+
attr_accessor event_categories: ::Array[::String]
|
1955
|
+
attr_accessor severity: ::String
|
1956
|
+
attr_accessor enabled: bool
|
1957
|
+
SENSITIVE: []
|
1958
|
+
end
|
1959
|
+
|
1960
|
+
class ModifyEventSubscriptionResult
|
1961
|
+
attr_accessor event_subscription: Types::EventSubscription
|
1962
|
+
SENSITIVE: []
|
1963
|
+
end
|
1964
|
+
|
1965
|
+
class ModifyRedshiftIdcApplicationMessage
|
1966
|
+
attr_accessor redshift_idc_application_arn: ::String
|
1967
|
+
attr_accessor identity_namespace: ::String
|
1968
|
+
attr_accessor iam_role_arn: ::String
|
1969
|
+
attr_accessor idc_display_name: ::String
|
1970
|
+
attr_accessor authorized_token_issuer_list: ::Array[Types::AuthorizedTokenIssuer]
|
1971
|
+
attr_accessor service_integrations: ::Array[Types::ServiceIntegrationsUnion]
|
1972
|
+
SENSITIVE: []
|
1973
|
+
end
|
1974
|
+
|
1975
|
+
class ModifyRedshiftIdcApplicationResult
|
1976
|
+
attr_accessor redshift_idc_application: Types::RedshiftIdcApplication
|
1977
|
+
SENSITIVE: []
|
1978
|
+
end
|
1979
|
+
|
1980
|
+
class ModifyScheduledActionMessage
|
1981
|
+
attr_accessor scheduled_action_name: ::String
|
1982
|
+
attr_accessor target_action: Types::ScheduledActionType
|
1983
|
+
attr_accessor schedule: ::String
|
1984
|
+
attr_accessor iam_role: ::String
|
1985
|
+
attr_accessor scheduled_action_description: ::String
|
1986
|
+
attr_accessor start_time: ::Time
|
1987
|
+
attr_accessor end_time: ::Time
|
1988
|
+
attr_accessor enable: bool
|
1989
|
+
SENSITIVE: []
|
1990
|
+
end
|
1991
|
+
|
1992
|
+
class ModifySnapshotCopyRetentionPeriodMessage
|
1993
|
+
attr_accessor cluster_identifier: ::String
|
1994
|
+
attr_accessor retention_period: ::Integer
|
1995
|
+
attr_accessor manual: bool
|
1996
|
+
SENSITIVE: []
|
1997
|
+
end
|
1998
|
+
|
1999
|
+
class ModifySnapshotCopyRetentionPeriodResult
|
2000
|
+
attr_accessor cluster: Types::Cluster
|
2001
|
+
SENSITIVE: []
|
2002
|
+
end
|
2003
|
+
|
2004
|
+
class ModifySnapshotScheduleMessage
|
2005
|
+
attr_accessor schedule_identifier: ::String
|
2006
|
+
attr_accessor schedule_definitions: ::Array[::String]
|
2007
|
+
SENSITIVE: []
|
2008
|
+
end
|
2009
|
+
|
2010
|
+
class ModifyUsageLimitMessage
|
2011
|
+
attr_accessor usage_limit_id: ::String
|
2012
|
+
attr_accessor amount: ::Integer
|
2013
|
+
attr_accessor breach_action: ("log" | "emit-metric" | "disable")
|
2014
|
+
SENSITIVE: []
|
2015
|
+
end
|
2016
|
+
|
2017
|
+
class NetworkInterface
|
2018
|
+
attr_accessor network_interface_id: ::String
|
2019
|
+
attr_accessor subnet_id: ::String
|
2020
|
+
attr_accessor private_ip_address: ::String
|
2021
|
+
attr_accessor availability_zone: ::String
|
2022
|
+
attr_accessor ipv_6_address: ::String
|
2023
|
+
SENSITIVE: []
|
2024
|
+
end
|
2025
|
+
|
2026
|
+
class NodeConfigurationOption
|
2027
|
+
attr_accessor node_type: ::String
|
2028
|
+
attr_accessor number_of_nodes: ::Integer
|
2029
|
+
attr_accessor estimated_disk_utilization_percent: ::Float
|
2030
|
+
attr_accessor mode: ("standard" | "high-performance")
|
2031
|
+
SENSITIVE: []
|
2032
|
+
end
|
2033
|
+
|
2034
|
+
class NodeConfigurationOptionsFilter
|
2035
|
+
attr_accessor name: ("NodeType" | "NumberOfNodes" | "EstimatedDiskUtilizationPercent" | "Mode")
|
2036
|
+
attr_accessor operator: ("eq" | "lt" | "gt" | "le" | "ge" | "in" | "between")
|
2037
|
+
attr_accessor values: ::Array[::String]
|
2038
|
+
SENSITIVE: []
|
2039
|
+
end
|
2040
|
+
|
2041
|
+
class NodeConfigurationOptionsMessage
|
2042
|
+
attr_accessor node_configuration_option_list: ::Array[Types::NodeConfigurationOption]
|
2043
|
+
attr_accessor marker: ::String
|
2044
|
+
SENSITIVE: []
|
2045
|
+
end
|
2046
|
+
|
2047
|
+
class NumberOfNodesPerClusterLimitExceededFault < Aws::EmptyStructure
|
2048
|
+
end
|
2049
|
+
|
2050
|
+
class NumberOfNodesQuotaExceededFault < Aws::EmptyStructure
|
2051
|
+
end
|
2052
|
+
|
2053
|
+
class OrderableClusterOption
|
2054
|
+
attr_accessor cluster_version: ::String
|
2055
|
+
attr_accessor cluster_type: ::String
|
2056
|
+
attr_accessor node_type: ::String
|
2057
|
+
attr_accessor availability_zones: ::Array[Types::AvailabilityZone]
|
2058
|
+
SENSITIVE: []
|
2059
|
+
end
|
2060
|
+
|
2061
|
+
class OrderableClusterOptionsMessage
|
2062
|
+
attr_accessor orderable_cluster_options: ::Array[Types::OrderableClusterOption]
|
2063
|
+
attr_accessor marker: ::String
|
2064
|
+
SENSITIVE: []
|
2065
|
+
end
|
2066
|
+
|
2067
|
+
class Parameter
|
2068
|
+
attr_accessor parameter_name: ::String
|
2069
|
+
attr_accessor parameter_value: ::String
|
2070
|
+
attr_accessor description: ::String
|
2071
|
+
attr_accessor source: ::String
|
2072
|
+
attr_accessor data_type: ::String
|
2073
|
+
attr_accessor allowed_values: ::String
|
2074
|
+
attr_accessor apply_type: ("static" | "dynamic")
|
2075
|
+
attr_accessor is_modifiable: bool
|
2076
|
+
attr_accessor minimum_engine_version: ::String
|
2077
|
+
SENSITIVE: []
|
2078
|
+
end
|
2079
|
+
|
2080
|
+
class PartnerIntegrationInfo
|
2081
|
+
attr_accessor database_name: ::String
|
2082
|
+
attr_accessor partner_name: ::String
|
2083
|
+
attr_accessor status: ("Active" | "Inactive" | "RuntimeFailure" | "ConnectionFailure")
|
2084
|
+
attr_accessor status_message: ::String
|
2085
|
+
attr_accessor created_at: ::Time
|
2086
|
+
attr_accessor updated_at: ::Time
|
2087
|
+
SENSITIVE: []
|
2088
|
+
end
|
2089
|
+
|
2090
|
+
class PartnerIntegrationInputMessage
|
2091
|
+
attr_accessor account_id: ::String
|
2092
|
+
attr_accessor cluster_identifier: ::String
|
2093
|
+
attr_accessor database_name: ::String
|
2094
|
+
attr_accessor partner_name: ::String
|
2095
|
+
SENSITIVE: []
|
2096
|
+
end
|
2097
|
+
|
2098
|
+
class PartnerIntegrationOutputMessage
|
2099
|
+
attr_accessor database_name: ::String
|
2100
|
+
attr_accessor partner_name: ::String
|
2101
|
+
SENSITIVE: []
|
2102
|
+
end
|
2103
|
+
|
2104
|
+
class PartnerNotFoundFault < Aws::EmptyStructure
|
2105
|
+
end
|
2106
|
+
|
2107
|
+
class PauseClusterMessage
|
2108
|
+
attr_accessor cluster_identifier: ::String
|
2109
|
+
SENSITIVE: []
|
2110
|
+
end
|
2111
|
+
|
2112
|
+
class PauseClusterResult
|
2113
|
+
attr_accessor cluster: Types::Cluster
|
2114
|
+
SENSITIVE: []
|
2115
|
+
end
|
2116
|
+
|
2117
|
+
class PendingModifiedValues
|
2118
|
+
attr_accessor master_user_password: ::String
|
2119
|
+
attr_accessor node_type: ::String
|
2120
|
+
attr_accessor number_of_nodes: ::Integer
|
2121
|
+
attr_accessor cluster_type: ::String
|
2122
|
+
attr_accessor cluster_version: ::String
|
2123
|
+
attr_accessor automated_snapshot_retention_period: ::Integer
|
2124
|
+
attr_accessor cluster_identifier: ::String
|
2125
|
+
attr_accessor publicly_accessible: bool
|
2126
|
+
attr_accessor enhanced_vpc_routing: bool
|
2127
|
+
attr_accessor maintenance_track_name: ::String
|
2128
|
+
attr_accessor encryption_type: ::String
|
2129
|
+
SENSITIVE: [:master_user_password]
|
2130
|
+
end
|
2131
|
+
|
2132
|
+
class PurchaseReservedNodeOfferingMessage
|
2133
|
+
attr_accessor reserved_node_offering_id: ::String
|
2134
|
+
attr_accessor node_count: ::Integer
|
2135
|
+
SENSITIVE: []
|
2136
|
+
end
|
2137
|
+
|
2138
|
+
class PurchaseReservedNodeOfferingResult
|
2139
|
+
attr_accessor reserved_node: Types::ReservedNode
|
2140
|
+
SENSITIVE: []
|
2141
|
+
end
|
2142
|
+
|
2143
|
+
class PutResourcePolicyMessage
|
2144
|
+
attr_accessor resource_arn: ::String
|
2145
|
+
attr_accessor policy: ::String
|
2146
|
+
SENSITIVE: []
|
2147
|
+
end
|
2148
|
+
|
2149
|
+
class PutResourcePolicyResult
|
2150
|
+
attr_accessor resource_policy: Types::ResourcePolicy
|
2151
|
+
SENSITIVE: []
|
2152
|
+
end
|
2153
|
+
|
2154
|
+
class RebootClusterMessage
|
2155
|
+
attr_accessor cluster_identifier: ::String
|
2156
|
+
SENSITIVE: []
|
2157
|
+
end
|
2158
|
+
|
2159
|
+
class RebootClusterResult
|
2160
|
+
attr_accessor cluster: Types::Cluster
|
2161
|
+
SENSITIVE: []
|
2162
|
+
end
|
2163
|
+
|
2164
|
+
class Recommendation
|
2165
|
+
attr_accessor id: ::String
|
2166
|
+
attr_accessor cluster_identifier: ::String
|
2167
|
+
attr_accessor namespace_arn: ::String
|
2168
|
+
attr_accessor created_at: ::Time
|
2169
|
+
attr_accessor recommendation_type: ::String
|
2170
|
+
attr_accessor title: ::String
|
2171
|
+
attr_accessor description: ::String
|
2172
|
+
attr_accessor observation: ::String
|
2173
|
+
attr_accessor impact_ranking: ("HIGH" | "MEDIUM" | "LOW")
|
2174
|
+
attr_accessor recommendation_text: ::String
|
2175
|
+
attr_accessor recommended_actions: ::Array[Types::RecommendedAction]
|
2176
|
+
attr_accessor reference_links: ::Array[Types::ReferenceLink]
|
2177
|
+
SENSITIVE: []
|
2178
|
+
end
|
2179
|
+
|
2180
|
+
class RecommendedAction
|
2181
|
+
attr_accessor text: ::String
|
2182
|
+
attr_accessor database: ::String
|
2183
|
+
attr_accessor command: ::String
|
2184
|
+
attr_accessor type: ("SQL" | "CLI")
|
2185
|
+
SENSITIVE: []
|
2186
|
+
end
|
2187
|
+
|
2188
|
+
class RecurringCharge
|
2189
|
+
attr_accessor recurring_charge_amount: ::Float
|
2190
|
+
attr_accessor recurring_charge_frequency: ::String
|
2191
|
+
SENSITIVE: []
|
2192
|
+
end
|
2193
|
+
|
2194
|
+
class RedshiftIdcApplication
|
2195
|
+
attr_accessor idc_instance_arn: ::String
|
2196
|
+
attr_accessor redshift_idc_application_name: ::String
|
2197
|
+
attr_accessor redshift_idc_application_arn: ::String
|
2198
|
+
attr_accessor identity_namespace: ::String
|
2199
|
+
attr_accessor idc_display_name: ::String
|
2200
|
+
attr_accessor iam_role_arn: ::String
|
2201
|
+
attr_accessor idc_managed_application_arn: ::String
|
2202
|
+
attr_accessor idc_onboard_status: ::String
|
2203
|
+
attr_accessor authorized_token_issuer_list: ::Array[Types::AuthorizedTokenIssuer]
|
2204
|
+
attr_accessor service_integrations: ::Array[Types::ServiceIntegrationsUnion]
|
2205
|
+
SENSITIVE: []
|
2206
|
+
end
|
2207
|
+
|
2208
|
+
class RedshiftIdcApplicationAlreadyExistsFault < Aws::EmptyStructure
|
2209
|
+
end
|
2210
|
+
|
2211
|
+
class RedshiftIdcApplicationNotExistsFault < Aws::EmptyStructure
|
2212
|
+
end
|
2213
|
+
|
2214
|
+
class RedshiftIdcApplicationQuotaExceededFault < Aws::EmptyStructure
|
2215
|
+
end
|
2216
|
+
|
2217
|
+
class ReferenceLink
|
2218
|
+
attr_accessor text: ::String
|
2219
|
+
attr_accessor link: ::String
|
2220
|
+
SENSITIVE: []
|
2221
|
+
end
|
2222
|
+
|
2223
|
+
class RejectDataShareMessage
|
2224
|
+
attr_accessor data_share_arn: ::String
|
2225
|
+
SENSITIVE: []
|
2226
|
+
end
|
2227
|
+
|
2228
|
+
class ReservedNode
|
2229
|
+
attr_accessor reserved_node_id: ::String
|
2230
|
+
attr_accessor reserved_node_offering_id: ::String
|
2231
|
+
attr_accessor node_type: ::String
|
2232
|
+
attr_accessor start_time: ::Time
|
2233
|
+
attr_accessor duration: ::Integer
|
2234
|
+
attr_accessor fixed_price: ::Float
|
2235
|
+
attr_accessor usage_price: ::Float
|
2236
|
+
attr_accessor currency_code: ::String
|
2237
|
+
attr_accessor node_count: ::Integer
|
2238
|
+
attr_accessor state: ::String
|
2239
|
+
attr_accessor offering_type: ::String
|
2240
|
+
attr_accessor recurring_charges: ::Array[Types::RecurringCharge]
|
2241
|
+
attr_accessor reserved_node_offering_type: ("Regular" | "Upgradable")
|
2242
|
+
SENSITIVE: []
|
2243
|
+
end
|
2244
|
+
|
2245
|
+
class ReservedNodeAlreadyExistsFault < Aws::EmptyStructure
|
2246
|
+
end
|
2247
|
+
|
2248
|
+
class ReservedNodeAlreadyMigratedFault < Aws::EmptyStructure
|
2249
|
+
end
|
2250
|
+
|
2251
|
+
class ReservedNodeConfigurationOption
|
2252
|
+
attr_accessor source_reserved_node: Types::ReservedNode
|
2253
|
+
attr_accessor target_reserved_node_count: ::Integer
|
2254
|
+
attr_accessor target_reserved_node_offering: Types::ReservedNodeOffering
|
2255
|
+
SENSITIVE: []
|
2256
|
+
end
|
2257
|
+
|
2258
|
+
class ReservedNodeExchangeNotFoundFault < Aws::EmptyStructure
|
2259
|
+
end
|
2260
|
+
|
2261
|
+
class ReservedNodeExchangeStatus
|
2262
|
+
attr_accessor reserved_node_exchange_request_id: ::String
|
2263
|
+
attr_accessor status: ("REQUESTED" | "PENDING" | "IN_PROGRESS" | "RETRYING" | "SUCCEEDED" | "FAILED")
|
2264
|
+
attr_accessor request_time: ::Time
|
2265
|
+
attr_accessor source_reserved_node_id: ::String
|
2266
|
+
attr_accessor source_reserved_node_type: ::String
|
2267
|
+
attr_accessor source_reserved_node_count: ::Integer
|
2268
|
+
attr_accessor target_reserved_node_offering_id: ::String
|
2269
|
+
attr_accessor target_reserved_node_type: ::String
|
2270
|
+
attr_accessor target_reserved_node_count: ::Integer
|
2271
|
+
SENSITIVE: []
|
2272
|
+
end
|
2273
|
+
|
2274
|
+
class ReservedNodeNotFoundFault < Aws::EmptyStructure
|
2275
|
+
end
|
2276
|
+
|
2277
|
+
class ReservedNodeOffering
|
2278
|
+
attr_accessor reserved_node_offering_id: ::String
|
2279
|
+
attr_accessor node_type: ::String
|
2280
|
+
attr_accessor duration: ::Integer
|
2281
|
+
attr_accessor fixed_price: ::Float
|
2282
|
+
attr_accessor usage_price: ::Float
|
2283
|
+
attr_accessor currency_code: ::String
|
2284
|
+
attr_accessor offering_type: ::String
|
2285
|
+
attr_accessor recurring_charges: ::Array[Types::RecurringCharge]
|
2286
|
+
attr_accessor reserved_node_offering_type: ("Regular" | "Upgradable")
|
2287
|
+
SENSITIVE: []
|
2288
|
+
end
|
2289
|
+
|
2290
|
+
class ReservedNodeOfferingNotFoundFault < Aws::EmptyStructure
|
2291
|
+
end
|
2292
|
+
|
2293
|
+
class ReservedNodeOfferingsMessage
|
2294
|
+
attr_accessor marker: ::String
|
2295
|
+
attr_accessor reserved_node_offerings: ::Array[Types::ReservedNodeOffering]
|
2296
|
+
SENSITIVE: []
|
2297
|
+
end
|
2298
|
+
|
2299
|
+
class ReservedNodeQuotaExceededFault < Aws::EmptyStructure
|
2300
|
+
end
|
2301
|
+
|
2302
|
+
class ReservedNodesMessage
|
2303
|
+
attr_accessor marker: ::String
|
2304
|
+
attr_accessor reserved_nodes: ::Array[Types::ReservedNode]
|
2305
|
+
SENSITIVE: []
|
2306
|
+
end
|
2307
|
+
|
2308
|
+
class ResetClusterParameterGroupMessage
|
2309
|
+
attr_accessor parameter_group_name: ::String
|
2310
|
+
attr_accessor reset_all_parameters: bool
|
2311
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
2312
|
+
SENSITIVE: []
|
2313
|
+
end
|
2314
|
+
|
2315
|
+
class ResizeClusterMessage
|
2316
|
+
attr_accessor cluster_identifier: ::String
|
2317
|
+
attr_accessor cluster_type: ::String
|
2318
|
+
attr_accessor node_type: ::String
|
2319
|
+
attr_accessor number_of_nodes: ::Integer
|
2320
|
+
attr_accessor classic: bool
|
2321
|
+
attr_accessor reserved_node_id: ::String
|
2322
|
+
attr_accessor target_reserved_node_offering_id: ::String
|
2323
|
+
SENSITIVE: []
|
2324
|
+
end
|
2325
|
+
|
2326
|
+
class ResizeClusterResult
|
2327
|
+
attr_accessor cluster: Types::Cluster
|
2328
|
+
SENSITIVE: []
|
2329
|
+
end
|
2330
|
+
|
2331
|
+
class ResizeInfo
|
2332
|
+
attr_accessor resize_type: ::String
|
2333
|
+
attr_accessor allow_cancel_resize: bool
|
2334
|
+
SENSITIVE: []
|
2335
|
+
end
|
2336
|
+
|
2337
|
+
class ResizeNotFoundFault < Aws::EmptyStructure
|
2338
|
+
end
|
2339
|
+
|
2340
|
+
class ResizeProgressMessage
|
2341
|
+
attr_accessor target_node_type: ::String
|
2342
|
+
attr_accessor target_number_of_nodes: ::Integer
|
2343
|
+
attr_accessor target_cluster_type: ::String
|
2344
|
+
attr_accessor status: ::String
|
2345
|
+
attr_accessor import_tables_completed: ::Array[::String]
|
2346
|
+
attr_accessor import_tables_in_progress: ::Array[::String]
|
2347
|
+
attr_accessor import_tables_not_started: ::Array[::String]
|
2348
|
+
attr_accessor avg_resize_rate_in_mega_bytes_per_second: ::Float
|
2349
|
+
attr_accessor total_resize_data_in_mega_bytes: ::Integer
|
2350
|
+
attr_accessor progress_in_mega_bytes: ::Integer
|
2351
|
+
attr_accessor elapsed_time_in_seconds: ::Integer
|
2352
|
+
attr_accessor estimated_time_to_completion_in_seconds: ::Integer
|
2353
|
+
attr_accessor resize_type: ::String
|
2354
|
+
attr_accessor message: ::String
|
2355
|
+
attr_accessor target_encryption_type: ::String
|
2356
|
+
attr_accessor data_transfer_progress_percent: ::Float
|
2357
|
+
SENSITIVE: []
|
2358
|
+
end
|
2359
|
+
|
2360
|
+
class ResourceNotFoundFault < Aws::EmptyStructure
|
2361
|
+
end
|
2362
|
+
|
2363
|
+
class ResourcePolicy
|
2364
|
+
attr_accessor resource_arn: ::String
|
2365
|
+
attr_accessor policy: ::String
|
2366
|
+
SENSITIVE: []
|
2367
|
+
end
|
2368
|
+
|
2369
|
+
class RestoreFromClusterSnapshotMessage
|
2370
|
+
attr_accessor cluster_identifier: ::String
|
2371
|
+
attr_accessor snapshot_identifier: ::String
|
2372
|
+
attr_accessor snapshot_arn: ::String
|
2373
|
+
attr_accessor snapshot_cluster_identifier: ::String
|
2374
|
+
attr_accessor port: ::Integer
|
2375
|
+
attr_accessor availability_zone: ::String
|
2376
|
+
attr_accessor allow_version_upgrade: bool
|
2377
|
+
attr_accessor cluster_subnet_group_name: ::String
|
2378
|
+
attr_accessor publicly_accessible: bool
|
2379
|
+
attr_accessor owner_account: ::String
|
2380
|
+
attr_accessor hsm_client_certificate_identifier: ::String
|
2381
|
+
attr_accessor hsm_configuration_identifier: ::String
|
2382
|
+
attr_accessor elastic_ip: ::String
|
2383
|
+
attr_accessor cluster_parameter_group_name: ::String
|
2384
|
+
attr_accessor cluster_security_groups: ::Array[::String]
|
2385
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
2386
|
+
attr_accessor preferred_maintenance_window: ::String
|
2387
|
+
attr_accessor automated_snapshot_retention_period: ::Integer
|
2388
|
+
attr_accessor manual_snapshot_retention_period: ::Integer
|
2389
|
+
attr_accessor kms_key_id: ::String
|
2390
|
+
attr_accessor node_type: ::String
|
2391
|
+
attr_accessor enhanced_vpc_routing: bool
|
2392
|
+
attr_accessor additional_info: ::String
|
2393
|
+
attr_accessor iam_roles: ::Array[::String]
|
2394
|
+
attr_accessor maintenance_track_name: ::String
|
2395
|
+
attr_accessor snapshot_schedule_identifier: ::String
|
2396
|
+
attr_accessor number_of_nodes: ::Integer
|
2397
|
+
attr_accessor availability_zone_relocation: bool
|
2398
|
+
attr_accessor aqua_configuration_status: ("enabled" | "disabled" | "auto")
|
2399
|
+
attr_accessor default_iam_role_arn: ::String
|
2400
|
+
attr_accessor reserved_node_id: ::String
|
2401
|
+
attr_accessor target_reserved_node_offering_id: ::String
|
2402
|
+
attr_accessor encrypted: bool
|
2403
|
+
attr_accessor manage_master_password: bool
|
2404
|
+
attr_accessor master_password_secret_kms_key_id: ::String
|
2405
|
+
attr_accessor ip_address_type: ::String
|
2406
|
+
attr_accessor multi_az: bool
|
2407
|
+
SENSITIVE: []
|
2408
|
+
end
|
2409
|
+
|
2410
|
+
class RestoreFromClusterSnapshotResult
|
2411
|
+
attr_accessor cluster: Types::Cluster
|
2412
|
+
SENSITIVE: []
|
2413
|
+
end
|
2414
|
+
|
2415
|
+
class RestoreStatus
|
2416
|
+
attr_accessor status: ::String
|
2417
|
+
attr_accessor current_restore_rate_in_mega_bytes_per_second: ::Float
|
2418
|
+
attr_accessor snapshot_size_in_mega_bytes: ::Integer
|
2419
|
+
attr_accessor progress_in_mega_bytes: ::Integer
|
2420
|
+
attr_accessor elapsed_time_in_seconds: ::Integer
|
2421
|
+
attr_accessor estimated_time_to_completion_in_seconds: ::Integer
|
2422
|
+
SENSITIVE: []
|
2423
|
+
end
|
2424
|
+
|
2425
|
+
class RestoreTableFromClusterSnapshotMessage
|
2426
|
+
attr_accessor cluster_identifier: ::String
|
2427
|
+
attr_accessor snapshot_identifier: ::String
|
2428
|
+
attr_accessor source_database_name: ::String
|
2429
|
+
attr_accessor source_schema_name: ::String
|
2430
|
+
attr_accessor source_table_name: ::String
|
2431
|
+
attr_accessor target_database_name: ::String
|
2432
|
+
attr_accessor target_schema_name: ::String
|
2433
|
+
attr_accessor new_table_name: ::String
|
2434
|
+
attr_accessor enable_case_sensitive_identifier: bool
|
2435
|
+
SENSITIVE: []
|
2436
|
+
end
|
2437
|
+
|
2438
|
+
class RestoreTableFromClusterSnapshotResult
|
2439
|
+
attr_accessor table_restore_status: Types::TableRestoreStatus
|
2440
|
+
SENSITIVE: []
|
2441
|
+
end
|
2442
|
+
|
2443
|
+
class ResumeClusterMessage
|
2444
|
+
attr_accessor cluster_identifier: ::String
|
2445
|
+
SENSITIVE: []
|
2446
|
+
end
|
2447
|
+
|
2448
|
+
class ResumeClusterResult
|
2449
|
+
attr_accessor cluster: Types::Cluster
|
2450
|
+
SENSITIVE: []
|
2451
|
+
end
|
2452
|
+
|
2453
|
+
class RevisionTarget
|
2454
|
+
attr_accessor database_revision: ::String
|
2455
|
+
attr_accessor description: ::String
|
2456
|
+
attr_accessor database_revision_release_date: ::Time
|
2457
|
+
SENSITIVE: []
|
2458
|
+
end
|
2459
|
+
|
2460
|
+
class RevokeClusterSecurityGroupIngressMessage
|
2461
|
+
attr_accessor cluster_security_group_name: ::String
|
2462
|
+
attr_accessor cidrip: ::String
|
2463
|
+
attr_accessor ec2_security_group_name: ::String
|
2464
|
+
attr_accessor ec2_security_group_owner_id: ::String
|
2465
|
+
SENSITIVE: []
|
2466
|
+
end
|
2467
|
+
|
2468
|
+
class RevokeClusterSecurityGroupIngressResult
|
2469
|
+
attr_accessor cluster_security_group: Types::ClusterSecurityGroup
|
2470
|
+
SENSITIVE: []
|
2471
|
+
end
|
2472
|
+
|
2473
|
+
class RevokeEndpointAccessMessage
|
2474
|
+
attr_accessor cluster_identifier: ::String
|
2475
|
+
attr_accessor account: ::String
|
2476
|
+
attr_accessor vpc_ids: ::Array[::String]
|
2477
|
+
attr_accessor force: bool
|
2478
|
+
SENSITIVE: []
|
2479
|
+
end
|
2480
|
+
|
2481
|
+
class RevokeSnapshotAccessMessage
|
2482
|
+
attr_accessor snapshot_identifier: ::String
|
2483
|
+
attr_accessor snapshot_arn: ::String
|
2484
|
+
attr_accessor snapshot_cluster_identifier: ::String
|
2485
|
+
attr_accessor account_with_restore_access: ::String
|
2486
|
+
SENSITIVE: []
|
2487
|
+
end
|
2488
|
+
|
2489
|
+
class RevokeSnapshotAccessResult
|
2490
|
+
attr_accessor snapshot: Types::Snapshot
|
2491
|
+
SENSITIVE: []
|
2492
|
+
end
|
2493
|
+
|
2494
|
+
class RotateEncryptionKeyMessage
|
2495
|
+
attr_accessor cluster_identifier: ::String
|
2496
|
+
SENSITIVE: []
|
2497
|
+
end
|
2498
|
+
|
2499
|
+
class RotateEncryptionKeyResult
|
2500
|
+
attr_accessor cluster: Types::Cluster
|
2501
|
+
SENSITIVE: []
|
2502
|
+
end
|
2503
|
+
|
2504
|
+
class SNSInvalidTopicFault < Aws::EmptyStructure
|
2505
|
+
end
|
2506
|
+
|
2507
|
+
class SNSNoAuthorizationFault < Aws::EmptyStructure
|
2508
|
+
end
|
2509
|
+
|
2510
|
+
class SNSTopicArnNotFoundFault < Aws::EmptyStructure
|
2511
|
+
end
|
2512
|
+
|
2513
|
+
class ScheduleDefinitionTypeUnsupportedFault < Aws::EmptyStructure
|
2514
|
+
end
|
2515
|
+
|
2516
|
+
class ScheduledAction
|
2517
|
+
attr_accessor scheduled_action_name: ::String
|
2518
|
+
attr_accessor target_action: Types::ScheduledActionType
|
2519
|
+
attr_accessor schedule: ::String
|
2520
|
+
attr_accessor iam_role: ::String
|
2521
|
+
attr_accessor scheduled_action_description: ::String
|
2522
|
+
attr_accessor state: ("ACTIVE" | "DISABLED")
|
2523
|
+
attr_accessor next_invocations: ::Array[::Time]
|
2524
|
+
attr_accessor start_time: ::Time
|
2525
|
+
attr_accessor end_time: ::Time
|
2526
|
+
SENSITIVE: []
|
2527
|
+
end
|
2528
|
+
|
2529
|
+
class ScheduledActionAlreadyExistsFault < Aws::EmptyStructure
|
2530
|
+
end
|
2531
|
+
|
2532
|
+
class ScheduledActionFilter
|
2533
|
+
attr_accessor name: ("cluster-identifier" | "iam-role")
|
2534
|
+
attr_accessor values: ::Array[::String]
|
2535
|
+
SENSITIVE: []
|
2536
|
+
end
|
2537
|
+
|
2538
|
+
class ScheduledActionNotFoundFault < Aws::EmptyStructure
|
2539
|
+
end
|
2540
|
+
|
2541
|
+
class ScheduledActionQuotaExceededFault < Aws::EmptyStructure
|
2542
|
+
end
|
2543
|
+
|
2544
|
+
class ScheduledActionType
|
2545
|
+
attr_accessor resize_cluster: Types::ResizeClusterMessage
|
2546
|
+
attr_accessor pause_cluster: Types::PauseClusterMessage
|
2547
|
+
attr_accessor resume_cluster: Types::ResumeClusterMessage
|
2548
|
+
SENSITIVE: []
|
2549
|
+
end
|
2550
|
+
|
2551
|
+
class ScheduledActionTypeUnsupportedFault < Aws::EmptyStructure
|
2552
|
+
end
|
2553
|
+
|
2554
|
+
class ScheduledActionsMessage
|
2555
|
+
attr_accessor marker: ::String
|
2556
|
+
attr_accessor scheduled_actions: ::Array[Types::ScheduledAction]
|
2557
|
+
SENSITIVE: []
|
2558
|
+
end
|
2559
|
+
|
2560
|
+
class SecondaryClusterInfo
|
2561
|
+
attr_accessor availability_zone: ::String
|
2562
|
+
attr_accessor cluster_nodes: ::Array[Types::ClusterNode]
|
2563
|
+
SENSITIVE: []
|
2564
|
+
end
|
2565
|
+
|
2566
|
+
class ServiceIntegrationsUnion
|
2567
|
+
attr_accessor lake_formation: ::Array[Types::LakeFormationScopeUnion]
|
2568
|
+
attr_accessor unknown: untyped
|
2569
|
+
SENSITIVE: []
|
2570
|
+
|
2571
|
+
class LakeFormation < ServiceIntegrationsUnion
|
2572
|
+
end
|
2573
|
+
class Unknown < ServiceIntegrationsUnion
|
2574
|
+
end
|
2575
|
+
end
|
2576
|
+
|
2577
|
+
class Snapshot
|
2578
|
+
attr_accessor snapshot_identifier: ::String
|
2579
|
+
attr_accessor cluster_identifier: ::String
|
2580
|
+
attr_accessor snapshot_create_time: ::Time
|
2581
|
+
attr_accessor status: ::String
|
2582
|
+
attr_accessor port: ::Integer
|
2583
|
+
attr_accessor availability_zone: ::String
|
2584
|
+
attr_accessor cluster_create_time: ::Time
|
2585
|
+
attr_accessor master_username: ::String
|
2586
|
+
attr_accessor cluster_version: ::String
|
2587
|
+
attr_accessor engine_full_version: ::String
|
2588
|
+
attr_accessor snapshot_type: ::String
|
2589
|
+
attr_accessor node_type: ::String
|
2590
|
+
attr_accessor number_of_nodes: ::Integer
|
2591
|
+
attr_accessor db_name: ::String
|
2592
|
+
attr_accessor vpc_id: ::String
|
2593
|
+
attr_accessor encrypted: bool
|
2594
|
+
attr_accessor kms_key_id: ::String
|
2595
|
+
attr_accessor encrypted_with_hsm: bool
|
2596
|
+
attr_accessor accounts_with_restore_access: ::Array[Types::AccountWithRestoreAccess]
|
2597
|
+
attr_accessor owner_account: ::String
|
2598
|
+
attr_accessor total_backup_size_in_mega_bytes: ::Float
|
2599
|
+
attr_accessor actual_incremental_backup_size_in_mega_bytes: ::Float
|
2600
|
+
attr_accessor backup_progress_in_mega_bytes: ::Float
|
2601
|
+
attr_accessor current_backup_rate_in_mega_bytes_per_second: ::Float
|
2602
|
+
attr_accessor estimated_seconds_to_completion: ::Integer
|
2603
|
+
attr_accessor elapsed_time_in_seconds: ::Integer
|
2604
|
+
attr_accessor source_region: ::String
|
2605
|
+
attr_accessor tags: ::Array[Types::Tag]
|
2606
|
+
attr_accessor restorable_node_types: ::Array[::String]
|
2607
|
+
attr_accessor enhanced_vpc_routing: bool
|
2608
|
+
attr_accessor maintenance_track_name: ::String
|
2609
|
+
attr_accessor manual_snapshot_retention_period: ::Integer
|
2610
|
+
attr_accessor manual_snapshot_remaining_days: ::Integer
|
2611
|
+
attr_accessor snapshot_retention_start_time: ::Time
|
2612
|
+
attr_accessor master_password_secret_arn: ::String
|
2613
|
+
attr_accessor master_password_secret_kms_key_id: ::String
|
2614
|
+
SENSITIVE: []
|
2615
|
+
end
|
2616
|
+
|
2617
|
+
class SnapshotCopyAlreadyDisabledFault < Aws::EmptyStructure
|
2618
|
+
end
|
2619
|
+
|
2620
|
+
class SnapshotCopyAlreadyEnabledFault < Aws::EmptyStructure
|
2621
|
+
end
|
2622
|
+
|
2623
|
+
class SnapshotCopyDisabledFault < Aws::EmptyStructure
|
2624
|
+
end
|
2625
|
+
|
2626
|
+
class SnapshotCopyGrant
|
2627
|
+
attr_accessor snapshot_copy_grant_name: ::String
|
2628
|
+
attr_accessor kms_key_id: ::String
|
2629
|
+
attr_accessor tags: ::Array[Types::Tag]
|
2630
|
+
SENSITIVE: []
|
2631
|
+
end
|
2632
|
+
|
2633
|
+
class SnapshotCopyGrantAlreadyExistsFault < Aws::EmptyStructure
|
2634
|
+
end
|
2635
|
+
|
2636
|
+
class SnapshotCopyGrantMessage
|
2637
|
+
attr_accessor marker: ::String
|
2638
|
+
attr_accessor snapshot_copy_grants: ::Array[Types::SnapshotCopyGrant]
|
2639
|
+
SENSITIVE: []
|
2640
|
+
end
|
2641
|
+
|
2642
|
+
class SnapshotCopyGrantNotFoundFault < Aws::EmptyStructure
|
2643
|
+
end
|
2644
|
+
|
2645
|
+
class SnapshotCopyGrantQuotaExceededFault < Aws::EmptyStructure
|
2646
|
+
end
|
2647
|
+
|
2648
|
+
class SnapshotErrorMessage
|
2649
|
+
attr_accessor snapshot_identifier: ::String
|
2650
|
+
attr_accessor snapshot_cluster_identifier: ::String
|
2651
|
+
attr_accessor failure_code: ::String
|
2652
|
+
attr_accessor failure_reason: ::String
|
2653
|
+
SENSITIVE: []
|
2654
|
+
end
|
2655
|
+
|
2656
|
+
class SnapshotMessage
|
2657
|
+
attr_accessor marker: ::String
|
2658
|
+
attr_accessor snapshots: ::Array[Types::Snapshot]
|
2659
|
+
SENSITIVE: []
|
2660
|
+
end
|
2661
|
+
|
2662
|
+
class SnapshotSchedule
|
2663
|
+
attr_accessor schedule_definitions: ::Array[::String]
|
2664
|
+
attr_accessor schedule_identifier: ::String
|
2665
|
+
attr_accessor schedule_description: ::String
|
2666
|
+
attr_accessor tags: ::Array[Types::Tag]
|
2667
|
+
attr_accessor next_invocations: ::Array[::Time]
|
2668
|
+
attr_accessor associated_cluster_count: ::Integer
|
2669
|
+
attr_accessor associated_clusters: ::Array[Types::ClusterAssociatedToSchedule]
|
2670
|
+
SENSITIVE: []
|
2671
|
+
end
|
2672
|
+
|
2673
|
+
class SnapshotScheduleAlreadyExistsFault < Aws::EmptyStructure
|
2674
|
+
end
|
2675
|
+
|
2676
|
+
class SnapshotScheduleNotFoundFault < Aws::EmptyStructure
|
2677
|
+
end
|
2678
|
+
|
2679
|
+
class SnapshotScheduleQuotaExceededFault < Aws::EmptyStructure
|
2680
|
+
end
|
2681
|
+
|
2682
|
+
class SnapshotScheduleUpdateInProgressFault < Aws::EmptyStructure
|
2683
|
+
end
|
2684
|
+
|
2685
|
+
class SnapshotSortingEntity
|
2686
|
+
attr_accessor attribute: ("SOURCE_TYPE" | "TOTAL_SIZE" | "CREATE_TIME")
|
2687
|
+
attr_accessor sort_order: ("ASC" | "DESC")
|
2688
|
+
SENSITIVE: []
|
2689
|
+
end
|
2690
|
+
|
2691
|
+
class SourceNotFoundFault < Aws::EmptyStructure
|
2692
|
+
end
|
2693
|
+
|
2694
|
+
class Subnet
|
2695
|
+
attr_accessor subnet_identifier: ::String
|
2696
|
+
attr_accessor subnet_availability_zone: Types::AvailabilityZone
|
2697
|
+
attr_accessor subnet_status: ::String
|
2698
|
+
SENSITIVE: []
|
2699
|
+
end
|
2700
|
+
|
2701
|
+
class SubnetAlreadyInUse < Aws::EmptyStructure
|
2702
|
+
end
|
2703
|
+
|
2704
|
+
class SubscriptionAlreadyExistFault < Aws::EmptyStructure
|
2705
|
+
end
|
2706
|
+
|
2707
|
+
class SubscriptionCategoryNotFoundFault < Aws::EmptyStructure
|
2708
|
+
end
|
2709
|
+
|
2710
|
+
class SubscriptionEventIdNotFoundFault < Aws::EmptyStructure
|
2711
|
+
end
|
2712
|
+
|
2713
|
+
class SubscriptionNotFoundFault < Aws::EmptyStructure
|
2714
|
+
end
|
2715
|
+
|
2716
|
+
class SubscriptionSeverityNotFoundFault < Aws::EmptyStructure
|
2717
|
+
end
|
2718
|
+
|
2719
|
+
class SupportedOperation
|
2720
|
+
attr_accessor operation_name: ::String
|
2721
|
+
SENSITIVE: []
|
2722
|
+
end
|
2723
|
+
|
2724
|
+
class SupportedPlatform
|
2725
|
+
attr_accessor name: ::String
|
2726
|
+
SENSITIVE: []
|
2727
|
+
end
|
2728
|
+
|
2729
|
+
class TableLimitExceededFault < Aws::EmptyStructure
|
2730
|
+
end
|
2731
|
+
|
2732
|
+
class TableRestoreNotFoundFault < Aws::EmptyStructure
|
2733
|
+
end
|
2734
|
+
|
2735
|
+
class TableRestoreStatus
|
2736
|
+
attr_accessor table_restore_request_id: ::String
|
2737
|
+
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "SUCCEEDED" | "FAILED" | "CANCELED")
|
2738
|
+
attr_accessor message: ::String
|
2739
|
+
attr_accessor request_time: ::Time
|
2740
|
+
attr_accessor progress_in_mega_bytes: ::Integer
|
2741
|
+
attr_accessor total_data_in_mega_bytes: ::Integer
|
2742
|
+
attr_accessor cluster_identifier: ::String
|
2743
|
+
attr_accessor snapshot_identifier: ::String
|
2744
|
+
attr_accessor source_database_name: ::String
|
2745
|
+
attr_accessor source_schema_name: ::String
|
2746
|
+
attr_accessor source_table_name: ::String
|
2747
|
+
attr_accessor target_database_name: ::String
|
2748
|
+
attr_accessor target_schema_name: ::String
|
2749
|
+
attr_accessor new_table_name: ::String
|
2750
|
+
SENSITIVE: []
|
2751
|
+
end
|
2752
|
+
|
2753
|
+
class TableRestoreStatusMessage
|
2754
|
+
attr_accessor table_restore_status_details: ::Array[Types::TableRestoreStatus]
|
2755
|
+
attr_accessor marker: ::String
|
2756
|
+
SENSITIVE: []
|
2757
|
+
end
|
2758
|
+
|
2759
|
+
class Tag
|
2760
|
+
attr_accessor key: ::String
|
2761
|
+
attr_accessor value: ::String
|
2762
|
+
SENSITIVE: []
|
2763
|
+
end
|
2764
|
+
|
2765
|
+
class TagLimitExceededFault < Aws::EmptyStructure
|
2766
|
+
end
|
2767
|
+
|
2768
|
+
class TaggedResource
|
2769
|
+
attr_accessor tag: Types::Tag
|
2770
|
+
attr_accessor resource_name: ::String
|
2771
|
+
attr_accessor resource_type: ::String
|
2772
|
+
SENSITIVE: []
|
2773
|
+
end
|
2774
|
+
|
2775
|
+
class TaggedResourceListMessage
|
2776
|
+
attr_accessor tagged_resources: ::Array[Types::TaggedResource]
|
2777
|
+
attr_accessor marker: ::String
|
2778
|
+
SENSITIVE: []
|
2779
|
+
end
|
2780
|
+
|
2781
|
+
class TrackListMessage
|
2782
|
+
attr_accessor maintenance_tracks: ::Array[Types::MaintenanceTrack]
|
2783
|
+
attr_accessor marker: ::String
|
2784
|
+
SENSITIVE: []
|
2785
|
+
end
|
2786
|
+
|
2787
|
+
class UnauthorizedOperation < Aws::EmptyStructure
|
2788
|
+
end
|
2789
|
+
|
2790
|
+
class UnauthorizedPartnerIntegrationFault < Aws::EmptyStructure
|
2791
|
+
end
|
2792
|
+
|
2793
|
+
class UnknownSnapshotCopyRegionFault < Aws::EmptyStructure
|
2794
|
+
end
|
2795
|
+
|
2796
|
+
class UnsupportedOperationFault < Aws::EmptyStructure
|
2797
|
+
end
|
2798
|
+
|
2799
|
+
class UnsupportedOptionFault < Aws::EmptyStructure
|
2800
|
+
end
|
2801
|
+
|
2802
|
+
class UpdatePartnerStatusInputMessage
|
2803
|
+
attr_accessor account_id: ::String
|
2804
|
+
attr_accessor cluster_identifier: ::String
|
2805
|
+
attr_accessor database_name: ::String
|
2806
|
+
attr_accessor partner_name: ::String
|
2807
|
+
attr_accessor status: ("Active" | "Inactive" | "RuntimeFailure" | "ConnectionFailure")
|
2808
|
+
attr_accessor status_message: ::String
|
2809
|
+
SENSITIVE: []
|
2810
|
+
end
|
2811
|
+
|
2812
|
+
class UpdateTarget
|
2813
|
+
attr_accessor maintenance_track_name: ::String
|
2814
|
+
attr_accessor database_version: ::String
|
2815
|
+
attr_accessor supported_operations: ::Array[Types::SupportedOperation]
|
2816
|
+
SENSITIVE: []
|
2817
|
+
end
|
2818
|
+
|
2819
|
+
class UsageLimit
|
2820
|
+
attr_accessor usage_limit_id: ::String
|
2821
|
+
attr_accessor cluster_identifier: ::String
|
2822
|
+
attr_accessor feature_type: ("spectrum" | "concurrency-scaling" | "cross-region-datasharing")
|
2823
|
+
attr_accessor limit_type: ("time" | "data-scanned")
|
2824
|
+
attr_accessor amount: ::Integer
|
2825
|
+
attr_accessor period: ("daily" | "weekly" | "monthly")
|
2826
|
+
attr_accessor breach_action: ("log" | "emit-metric" | "disable")
|
2827
|
+
attr_accessor tags: ::Array[Types::Tag]
|
2828
|
+
SENSITIVE: []
|
2829
|
+
end
|
2830
|
+
|
2831
|
+
class UsageLimitAlreadyExistsFault < Aws::EmptyStructure
|
2832
|
+
end
|
2833
|
+
|
2834
|
+
class UsageLimitList
|
2835
|
+
attr_accessor usage_limits: ::Array[Types::UsageLimit]
|
2836
|
+
attr_accessor marker: ::String
|
2837
|
+
SENSITIVE: []
|
2838
|
+
end
|
2839
|
+
|
2840
|
+
class UsageLimitNotFoundFault < Aws::EmptyStructure
|
2841
|
+
end
|
2842
|
+
|
2843
|
+
class VpcEndpoint
|
2844
|
+
attr_accessor vpc_endpoint_id: ::String
|
2845
|
+
attr_accessor vpc_id: ::String
|
2846
|
+
attr_accessor network_interfaces: ::Array[Types::NetworkInterface]
|
2847
|
+
SENSITIVE: []
|
2848
|
+
end
|
2849
|
+
|
2850
|
+
class VpcSecurityGroupMembership
|
2851
|
+
attr_accessor vpc_security_group_id: ::String
|
2852
|
+
attr_accessor status: ::String
|
2853
|
+
SENSITIVE: []
|
2854
|
+
end
|
2855
|
+
end
|
2856
|
+
end
|