aws-sdk-redshift 1.106.0 → 1.108.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift/client.rb +1 -1
- data/lib/aws-sdk-redshift/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-redshift.rb +1 -1
- data/sig/client.rbs +2185 -0
- data/sig/errors.rbs +288 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +2812 -0
- data/sig/waiters.rbs +82 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,2812 @@
|
|
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 LoggingStatus
|
1759
|
+
attr_accessor logging_enabled: bool
|
1760
|
+
attr_accessor bucket_name: ::String
|
1761
|
+
attr_accessor s3_key_prefix: ::String
|
1762
|
+
attr_accessor last_successful_delivery_time: ::Time
|
1763
|
+
attr_accessor last_failure_time: ::Time
|
1764
|
+
attr_accessor last_failure_message: ::String
|
1765
|
+
attr_accessor log_destination_type: ("s3" | "cloudwatch")
|
1766
|
+
attr_accessor log_exports: ::Array[::String]
|
1767
|
+
SENSITIVE: []
|
1768
|
+
end
|
1769
|
+
|
1770
|
+
class MaintenanceTrack
|
1771
|
+
attr_accessor maintenance_track_name: ::String
|
1772
|
+
attr_accessor database_version: ::String
|
1773
|
+
attr_accessor update_targets: ::Array[Types::UpdateTarget]
|
1774
|
+
SENSITIVE: []
|
1775
|
+
end
|
1776
|
+
|
1777
|
+
class ModifyAquaInputMessage
|
1778
|
+
attr_accessor cluster_identifier: ::String
|
1779
|
+
attr_accessor aqua_configuration_status: ("enabled" | "disabled" | "auto")
|
1780
|
+
SENSITIVE: []
|
1781
|
+
end
|
1782
|
+
|
1783
|
+
class ModifyAquaOutputMessage
|
1784
|
+
attr_accessor aqua_configuration: Types::AquaConfiguration
|
1785
|
+
SENSITIVE: []
|
1786
|
+
end
|
1787
|
+
|
1788
|
+
class ModifyAuthenticationProfileMessage
|
1789
|
+
attr_accessor authentication_profile_name: ::String
|
1790
|
+
attr_accessor authentication_profile_content: ::String
|
1791
|
+
SENSITIVE: []
|
1792
|
+
end
|
1793
|
+
|
1794
|
+
class ModifyAuthenticationProfileResult
|
1795
|
+
attr_accessor authentication_profile_name: ::String
|
1796
|
+
attr_accessor authentication_profile_content: ::String
|
1797
|
+
SENSITIVE: []
|
1798
|
+
end
|
1799
|
+
|
1800
|
+
class ModifyClusterDbRevisionMessage
|
1801
|
+
attr_accessor cluster_identifier: ::String
|
1802
|
+
attr_accessor revision_target: ::String
|
1803
|
+
SENSITIVE: []
|
1804
|
+
end
|
1805
|
+
|
1806
|
+
class ModifyClusterDbRevisionResult
|
1807
|
+
attr_accessor cluster: Types::Cluster
|
1808
|
+
SENSITIVE: []
|
1809
|
+
end
|
1810
|
+
|
1811
|
+
class ModifyClusterIamRolesMessage
|
1812
|
+
attr_accessor cluster_identifier: ::String
|
1813
|
+
attr_accessor add_iam_roles: ::Array[::String]
|
1814
|
+
attr_accessor remove_iam_roles: ::Array[::String]
|
1815
|
+
attr_accessor default_iam_role_arn: ::String
|
1816
|
+
SENSITIVE: []
|
1817
|
+
end
|
1818
|
+
|
1819
|
+
class ModifyClusterIamRolesResult
|
1820
|
+
attr_accessor cluster: Types::Cluster
|
1821
|
+
SENSITIVE: []
|
1822
|
+
end
|
1823
|
+
|
1824
|
+
class ModifyClusterMaintenanceMessage
|
1825
|
+
attr_accessor cluster_identifier: ::String
|
1826
|
+
attr_accessor defer_maintenance: bool
|
1827
|
+
attr_accessor defer_maintenance_identifier: ::String
|
1828
|
+
attr_accessor defer_maintenance_start_time: ::Time
|
1829
|
+
attr_accessor defer_maintenance_end_time: ::Time
|
1830
|
+
attr_accessor defer_maintenance_duration: ::Integer
|
1831
|
+
SENSITIVE: []
|
1832
|
+
end
|
1833
|
+
|
1834
|
+
class ModifyClusterMaintenanceResult
|
1835
|
+
attr_accessor cluster: Types::Cluster
|
1836
|
+
SENSITIVE: []
|
1837
|
+
end
|
1838
|
+
|
1839
|
+
class ModifyClusterMessage
|
1840
|
+
attr_accessor cluster_identifier: ::String
|
1841
|
+
attr_accessor cluster_type: ::String
|
1842
|
+
attr_accessor node_type: ::String
|
1843
|
+
attr_accessor number_of_nodes: ::Integer
|
1844
|
+
attr_accessor cluster_security_groups: ::Array[::String]
|
1845
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
1846
|
+
attr_accessor master_user_password: ::String
|
1847
|
+
attr_accessor cluster_parameter_group_name: ::String
|
1848
|
+
attr_accessor automated_snapshot_retention_period: ::Integer
|
1849
|
+
attr_accessor manual_snapshot_retention_period: ::Integer
|
1850
|
+
attr_accessor preferred_maintenance_window: ::String
|
1851
|
+
attr_accessor cluster_version: ::String
|
1852
|
+
attr_accessor allow_version_upgrade: bool
|
1853
|
+
attr_accessor hsm_client_certificate_identifier: ::String
|
1854
|
+
attr_accessor hsm_configuration_identifier: ::String
|
1855
|
+
attr_accessor new_cluster_identifier: ::String
|
1856
|
+
attr_accessor publicly_accessible: bool
|
1857
|
+
attr_accessor elastic_ip: ::String
|
1858
|
+
attr_accessor enhanced_vpc_routing: bool
|
1859
|
+
attr_accessor maintenance_track_name: ::String
|
1860
|
+
attr_accessor encrypted: bool
|
1861
|
+
attr_accessor kms_key_id: ::String
|
1862
|
+
attr_accessor availability_zone_relocation: bool
|
1863
|
+
attr_accessor availability_zone: ::String
|
1864
|
+
attr_accessor port: ::Integer
|
1865
|
+
attr_accessor manage_master_password: bool
|
1866
|
+
attr_accessor master_password_secret_kms_key_id: ::String
|
1867
|
+
attr_accessor ip_address_type: ::String
|
1868
|
+
attr_accessor multi_az: bool
|
1869
|
+
SENSITIVE: [:master_user_password]
|
1870
|
+
end
|
1871
|
+
|
1872
|
+
class ModifyClusterParameterGroupMessage
|
1873
|
+
attr_accessor parameter_group_name: ::String
|
1874
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
1875
|
+
SENSITIVE: []
|
1876
|
+
end
|
1877
|
+
|
1878
|
+
class ModifyClusterResult
|
1879
|
+
attr_accessor cluster: Types::Cluster
|
1880
|
+
SENSITIVE: []
|
1881
|
+
end
|
1882
|
+
|
1883
|
+
class ModifyClusterSnapshotMessage
|
1884
|
+
attr_accessor snapshot_identifier: ::String
|
1885
|
+
attr_accessor manual_snapshot_retention_period: ::Integer
|
1886
|
+
attr_accessor force: bool
|
1887
|
+
SENSITIVE: []
|
1888
|
+
end
|
1889
|
+
|
1890
|
+
class ModifyClusterSnapshotResult
|
1891
|
+
attr_accessor snapshot: Types::Snapshot
|
1892
|
+
SENSITIVE: []
|
1893
|
+
end
|
1894
|
+
|
1895
|
+
class ModifyClusterSnapshotScheduleMessage
|
1896
|
+
attr_accessor cluster_identifier: ::String
|
1897
|
+
attr_accessor schedule_identifier: ::String
|
1898
|
+
attr_accessor disassociate_schedule: bool
|
1899
|
+
SENSITIVE: []
|
1900
|
+
end
|
1901
|
+
|
1902
|
+
class ModifyClusterSubnetGroupMessage
|
1903
|
+
attr_accessor cluster_subnet_group_name: ::String
|
1904
|
+
attr_accessor description: ::String
|
1905
|
+
attr_accessor subnet_ids: ::Array[::String]
|
1906
|
+
SENSITIVE: []
|
1907
|
+
end
|
1908
|
+
|
1909
|
+
class ModifyClusterSubnetGroupResult
|
1910
|
+
attr_accessor cluster_subnet_group: Types::ClusterSubnetGroup
|
1911
|
+
SENSITIVE: []
|
1912
|
+
end
|
1913
|
+
|
1914
|
+
class ModifyCustomDomainAssociationMessage
|
1915
|
+
attr_accessor custom_domain_name: ::String
|
1916
|
+
attr_accessor custom_domain_certificate_arn: ::String
|
1917
|
+
attr_accessor cluster_identifier: ::String
|
1918
|
+
SENSITIVE: []
|
1919
|
+
end
|
1920
|
+
|
1921
|
+
class ModifyCustomDomainAssociationResult
|
1922
|
+
attr_accessor custom_domain_name: ::String
|
1923
|
+
attr_accessor custom_domain_certificate_arn: ::String
|
1924
|
+
attr_accessor cluster_identifier: ::String
|
1925
|
+
attr_accessor custom_domain_cert_expiry_time: ::String
|
1926
|
+
SENSITIVE: []
|
1927
|
+
end
|
1928
|
+
|
1929
|
+
class ModifyEndpointAccessMessage
|
1930
|
+
attr_accessor endpoint_name: ::String
|
1931
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
1932
|
+
SENSITIVE: []
|
1933
|
+
end
|
1934
|
+
|
1935
|
+
class ModifyEventSubscriptionMessage
|
1936
|
+
attr_accessor subscription_name: ::String
|
1937
|
+
attr_accessor sns_topic_arn: ::String
|
1938
|
+
attr_accessor source_type: ::String
|
1939
|
+
attr_accessor source_ids: ::Array[::String]
|
1940
|
+
attr_accessor event_categories: ::Array[::String]
|
1941
|
+
attr_accessor severity: ::String
|
1942
|
+
attr_accessor enabled: bool
|
1943
|
+
SENSITIVE: []
|
1944
|
+
end
|
1945
|
+
|
1946
|
+
class ModifyEventSubscriptionResult
|
1947
|
+
attr_accessor event_subscription: Types::EventSubscription
|
1948
|
+
SENSITIVE: []
|
1949
|
+
end
|
1950
|
+
|
1951
|
+
class ModifyRedshiftIdcApplicationMessage
|
1952
|
+
attr_accessor redshift_idc_application_arn: ::String
|
1953
|
+
attr_accessor identity_namespace: ::String
|
1954
|
+
attr_accessor iam_role_arn: ::String
|
1955
|
+
attr_accessor idc_display_name: ::String
|
1956
|
+
attr_accessor authorized_token_issuer_list: ::Array[Types::AuthorizedTokenIssuer]
|
1957
|
+
attr_accessor service_integrations: ::Array[Types::ServiceIntegrationsUnion]
|
1958
|
+
SENSITIVE: []
|
1959
|
+
end
|
1960
|
+
|
1961
|
+
class ModifyRedshiftIdcApplicationResult
|
1962
|
+
attr_accessor redshift_idc_application: Types::RedshiftIdcApplication
|
1963
|
+
SENSITIVE: []
|
1964
|
+
end
|
1965
|
+
|
1966
|
+
class ModifyScheduledActionMessage
|
1967
|
+
attr_accessor scheduled_action_name: ::String
|
1968
|
+
attr_accessor target_action: Types::ScheduledActionType
|
1969
|
+
attr_accessor schedule: ::String
|
1970
|
+
attr_accessor iam_role: ::String
|
1971
|
+
attr_accessor scheduled_action_description: ::String
|
1972
|
+
attr_accessor start_time: ::Time
|
1973
|
+
attr_accessor end_time: ::Time
|
1974
|
+
attr_accessor enable: bool
|
1975
|
+
SENSITIVE: []
|
1976
|
+
end
|
1977
|
+
|
1978
|
+
class ModifySnapshotCopyRetentionPeriodMessage
|
1979
|
+
attr_accessor cluster_identifier: ::String
|
1980
|
+
attr_accessor retention_period: ::Integer
|
1981
|
+
attr_accessor manual: bool
|
1982
|
+
SENSITIVE: []
|
1983
|
+
end
|
1984
|
+
|
1985
|
+
class ModifySnapshotCopyRetentionPeriodResult
|
1986
|
+
attr_accessor cluster: Types::Cluster
|
1987
|
+
SENSITIVE: []
|
1988
|
+
end
|
1989
|
+
|
1990
|
+
class ModifySnapshotScheduleMessage
|
1991
|
+
attr_accessor schedule_identifier: ::String
|
1992
|
+
attr_accessor schedule_definitions: ::Array[::String]
|
1993
|
+
SENSITIVE: []
|
1994
|
+
end
|
1995
|
+
|
1996
|
+
class ModifyUsageLimitMessage
|
1997
|
+
attr_accessor usage_limit_id: ::String
|
1998
|
+
attr_accessor amount: ::Integer
|
1999
|
+
attr_accessor breach_action: ("log" | "emit-metric" | "disable")
|
2000
|
+
SENSITIVE: []
|
2001
|
+
end
|
2002
|
+
|
2003
|
+
class NetworkInterface
|
2004
|
+
attr_accessor network_interface_id: ::String
|
2005
|
+
attr_accessor subnet_id: ::String
|
2006
|
+
attr_accessor private_ip_address: ::String
|
2007
|
+
attr_accessor availability_zone: ::String
|
2008
|
+
attr_accessor ipv_6_address: ::String
|
2009
|
+
SENSITIVE: []
|
2010
|
+
end
|
2011
|
+
|
2012
|
+
class NodeConfigurationOption
|
2013
|
+
attr_accessor node_type: ::String
|
2014
|
+
attr_accessor number_of_nodes: ::Integer
|
2015
|
+
attr_accessor estimated_disk_utilization_percent: ::Float
|
2016
|
+
attr_accessor mode: ("standard" | "high-performance")
|
2017
|
+
SENSITIVE: []
|
2018
|
+
end
|
2019
|
+
|
2020
|
+
class NodeConfigurationOptionsFilter
|
2021
|
+
attr_accessor name: ("NodeType" | "NumberOfNodes" | "EstimatedDiskUtilizationPercent" | "Mode")
|
2022
|
+
attr_accessor operator: ("eq" | "lt" | "gt" | "le" | "ge" | "in" | "between")
|
2023
|
+
attr_accessor values: ::Array[::String]
|
2024
|
+
SENSITIVE: []
|
2025
|
+
end
|
2026
|
+
|
2027
|
+
class NodeConfigurationOptionsMessage
|
2028
|
+
attr_accessor node_configuration_option_list: ::Array[Types::NodeConfigurationOption]
|
2029
|
+
attr_accessor marker: ::String
|
2030
|
+
SENSITIVE: []
|
2031
|
+
end
|
2032
|
+
|
2033
|
+
class NumberOfNodesPerClusterLimitExceededFault < Aws::EmptyStructure
|
2034
|
+
end
|
2035
|
+
|
2036
|
+
class NumberOfNodesQuotaExceededFault < Aws::EmptyStructure
|
2037
|
+
end
|
2038
|
+
|
2039
|
+
class OrderableClusterOption
|
2040
|
+
attr_accessor cluster_version: ::String
|
2041
|
+
attr_accessor cluster_type: ::String
|
2042
|
+
attr_accessor node_type: ::String
|
2043
|
+
attr_accessor availability_zones: ::Array[Types::AvailabilityZone]
|
2044
|
+
SENSITIVE: []
|
2045
|
+
end
|
2046
|
+
|
2047
|
+
class OrderableClusterOptionsMessage
|
2048
|
+
attr_accessor orderable_cluster_options: ::Array[Types::OrderableClusterOption]
|
2049
|
+
attr_accessor marker: ::String
|
2050
|
+
SENSITIVE: []
|
2051
|
+
end
|
2052
|
+
|
2053
|
+
class Parameter
|
2054
|
+
attr_accessor parameter_name: ::String
|
2055
|
+
attr_accessor parameter_value: ::String
|
2056
|
+
attr_accessor description: ::String
|
2057
|
+
attr_accessor source: ::String
|
2058
|
+
attr_accessor data_type: ::String
|
2059
|
+
attr_accessor allowed_values: ::String
|
2060
|
+
attr_accessor apply_type: ("static" | "dynamic")
|
2061
|
+
attr_accessor is_modifiable: bool
|
2062
|
+
attr_accessor minimum_engine_version: ::String
|
2063
|
+
SENSITIVE: []
|
2064
|
+
end
|
2065
|
+
|
2066
|
+
class PartnerIntegrationInfo
|
2067
|
+
attr_accessor database_name: ::String
|
2068
|
+
attr_accessor partner_name: ::String
|
2069
|
+
attr_accessor status: ("Active" | "Inactive" | "RuntimeFailure" | "ConnectionFailure")
|
2070
|
+
attr_accessor status_message: ::String
|
2071
|
+
attr_accessor created_at: ::Time
|
2072
|
+
attr_accessor updated_at: ::Time
|
2073
|
+
SENSITIVE: []
|
2074
|
+
end
|
2075
|
+
|
2076
|
+
class PartnerIntegrationInputMessage
|
2077
|
+
attr_accessor account_id: ::String
|
2078
|
+
attr_accessor cluster_identifier: ::String
|
2079
|
+
attr_accessor database_name: ::String
|
2080
|
+
attr_accessor partner_name: ::String
|
2081
|
+
SENSITIVE: []
|
2082
|
+
end
|
2083
|
+
|
2084
|
+
class PartnerIntegrationOutputMessage
|
2085
|
+
attr_accessor database_name: ::String
|
2086
|
+
attr_accessor partner_name: ::String
|
2087
|
+
SENSITIVE: []
|
2088
|
+
end
|
2089
|
+
|
2090
|
+
class PartnerNotFoundFault < Aws::EmptyStructure
|
2091
|
+
end
|
2092
|
+
|
2093
|
+
class PauseClusterMessage
|
2094
|
+
attr_accessor cluster_identifier: ::String
|
2095
|
+
SENSITIVE: []
|
2096
|
+
end
|
2097
|
+
|
2098
|
+
class PauseClusterResult
|
2099
|
+
attr_accessor cluster: Types::Cluster
|
2100
|
+
SENSITIVE: []
|
2101
|
+
end
|
2102
|
+
|
2103
|
+
class PendingModifiedValues
|
2104
|
+
attr_accessor master_user_password: ::String
|
2105
|
+
attr_accessor node_type: ::String
|
2106
|
+
attr_accessor number_of_nodes: ::Integer
|
2107
|
+
attr_accessor cluster_type: ::String
|
2108
|
+
attr_accessor cluster_version: ::String
|
2109
|
+
attr_accessor automated_snapshot_retention_period: ::Integer
|
2110
|
+
attr_accessor cluster_identifier: ::String
|
2111
|
+
attr_accessor publicly_accessible: bool
|
2112
|
+
attr_accessor enhanced_vpc_routing: bool
|
2113
|
+
attr_accessor maintenance_track_name: ::String
|
2114
|
+
attr_accessor encryption_type: ::String
|
2115
|
+
SENSITIVE: [:master_user_password]
|
2116
|
+
end
|
2117
|
+
|
2118
|
+
class PurchaseReservedNodeOfferingMessage
|
2119
|
+
attr_accessor reserved_node_offering_id: ::String
|
2120
|
+
attr_accessor node_count: ::Integer
|
2121
|
+
SENSITIVE: []
|
2122
|
+
end
|
2123
|
+
|
2124
|
+
class PurchaseReservedNodeOfferingResult
|
2125
|
+
attr_accessor reserved_node: Types::ReservedNode
|
2126
|
+
SENSITIVE: []
|
2127
|
+
end
|
2128
|
+
|
2129
|
+
class PutResourcePolicyMessage
|
2130
|
+
attr_accessor resource_arn: ::String
|
2131
|
+
attr_accessor policy: ::String
|
2132
|
+
SENSITIVE: []
|
2133
|
+
end
|
2134
|
+
|
2135
|
+
class PutResourcePolicyResult
|
2136
|
+
attr_accessor resource_policy: Types::ResourcePolicy
|
2137
|
+
SENSITIVE: []
|
2138
|
+
end
|
2139
|
+
|
2140
|
+
class RebootClusterMessage
|
2141
|
+
attr_accessor cluster_identifier: ::String
|
2142
|
+
SENSITIVE: []
|
2143
|
+
end
|
2144
|
+
|
2145
|
+
class RebootClusterResult
|
2146
|
+
attr_accessor cluster: Types::Cluster
|
2147
|
+
SENSITIVE: []
|
2148
|
+
end
|
2149
|
+
|
2150
|
+
class RecurringCharge
|
2151
|
+
attr_accessor recurring_charge_amount: ::Float
|
2152
|
+
attr_accessor recurring_charge_frequency: ::String
|
2153
|
+
SENSITIVE: []
|
2154
|
+
end
|
2155
|
+
|
2156
|
+
class RedshiftIdcApplication
|
2157
|
+
attr_accessor idc_instance_arn: ::String
|
2158
|
+
attr_accessor redshift_idc_application_name: ::String
|
2159
|
+
attr_accessor redshift_idc_application_arn: ::String
|
2160
|
+
attr_accessor identity_namespace: ::String
|
2161
|
+
attr_accessor idc_display_name: ::String
|
2162
|
+
attr_accessor iam_role_arn: ::String
|
2163
|
+
attr_accessor idc_managed_application_arn: ::String
|
2164
|
+
attr_accessor idc_onboard_status: ::String
|
2165
|
+
attr_accessor authorized_token_issuer_list: ::Array[Types::AuthorizedTokenIssuer]
|
2166
|
+
attr_accessor service_integrations: ::Array[Types::ServiceIntegrationsUnion]
|
2167
|
+
SENSITIVE: []
|
2168
|
+
end
|
2169
|
+
|
2170
|
+
class RedshiftIdcApplicationAlreadyExistsFault < Aws::EmptyStructure
|
2171
|
+
end
|
2172
|
+
|
2173
|
+
class RedshiftIdcApplicationNotExistsFault < Aws::EmptyStructure
|
2174
|
+
end
|
2175
|
+
|
2176
|
+
class RedshiftIdcApplicationQuotaExceededFault < Aws::EmptyStructure
|
2177
|
+
end
|
2178
|
+
|
2179
|
+
class RejectDataShareMessage
|
2180
|
+
attr_accessor data_share_arn: ::String
|
2181
|
+
SENSITIVE: []
|
2182
|
+
end
|
2183
|
+
|
2184
|
+
class ReservedNode
|
2185
|
+
attr_accessor reserved_node_id: ::String
|
2186
|
+
attr_accessor reserved_node_offering_id: ::String
|
2187
|
+
attr_accessor node_type: ::String
|
2188
|
+
attr_accessor start_time: ::Time
|
2189
|
+
attr_accessor duration: ::Integer
|
2190
|
+
attr_accessor fixed_price: ::Float
|
2191
|
+
attr_accessor usage_price: ::Float
|
2192
|
+
attr_accessor currency_code: ::String
|
2193
|
+
attr_accessor node_count: ::Integer
|
2194
|
+
attr_accessor state: ::String
|
2195
|
+
attr_accessor offering_type: ::String
|
2196
|
+
attr_accessor recurring_charges: ::Array[Types::RecurringCharge]
|
2197
|
+
attr_accessor reserved_node_offering_type: ("Regular" | "Upgradable")
|
2198
|
+
SENSITIVE: []
|
2199
|
+
end
|
2200
|
+
|
2201
|
+
class ReservedNodeAlreadyExistsFault < Aws::EmptyStructure
|
2202
|
+
end
|
2203
|
+
|
2204
|
+
class ReservedNodeAlreadyMigratedFault < Aws::EmptyStructure
|
2205
|
+
end
|
2206
|
+
|
2207
|
+
class ReservedNodeConfigurationOption
|
2208
|
+
attr_accessor source_reserved_node: Types::ReservedNode
|
2209
|
+
attr_accessor target_reserved_node_count: ::Integer
|
2210
|
+
attr_accessor target_reserved_node_offering: Types::ReservedNodeOffering
|
2211
|
+
SENSITIVE: []
|
2212
|
+
end
|
2213
|
+
|
2214
|
+
class ReservedNodeExchangeNotFoundFault < Aws::EmptyStructure
|
2215
|
+
end
|
2216
|
+
|
2217
|
+
class ReservedNodeExchangeStatus
|
2218
|
+
attr_accessor reserved_node_exchange_request_id: ::String
|
2219
|
+
attr_accessor status: ("REQUESTED" | "PENDING" | "IN_PROGRESS" | "RETRYING" | "SUCCEEDED" | "FAILED")
|
2220
|
+
attr_accessor request_time: ::Time
|
2221
|
+
attr_accessor source_reserved_node_id: ::String
|
2222
|
+
attr_accessor source_reserved_node_type: ::String
|
2223
|
+
attr_accessor source_reserved_node_count: ::Integer
|
2224
|
+
attr_accessor target_reserved_node_offering_id: ::String
|
2225
|
+
attr_accessor target_reserved_node_type: ::String
|
2226
|
+
attr_accessor target_reserved_node_count: ::Integer
|
2227
|
+
SENSITIVE: []
|
2228
|
+
end
|
2229
|
+
|
2230
|
+
class ReservedNodeNotFoundFault < Aws::EmptyStructure
|
2231
|
+
end
|
2232
|
+
|
2233
|
+
class ReservedNodeOffering
|
2234
|
+
attr_accessor reserved_node_offering_id: ::String
|
2235
|
+
attr_accessor node_type: ::String
|
2236
|
+
attr_accessor duration: ::Integer
|
2237
|
+
attr_accessor fixed_price: ::Float
|
2238
|
+
attr_accessor usage_price: ::Float
|
2239
|
+
attr_accessor currency_code: ::String
|
2240
|
+
attr_accessor offering_type: ::String
|
2241
|
+
attr_accessor recurring_charges: ::Array[Types::RecurringCharge]
|
2242
|
+
attr_accessor reserved_node_offering_type: ("Regular" | "Upgradable")
|
2243
|
+
SENSITIVE: []
|
2244
|
+
end
|
2245
|
+
|
2246
|
+
class ReservedNodeOfferingNotFoundFault < Aws::EmptyStructure
|
2247
|
+
end
|
2248
|
+
|
2249
|
+
class ReservedNodeOfferingsMessage
|
2250
|
+
attr_accessor marker: ::String
|
2251
|
+
attr_accessor reserved_node_offerings: ::Array[Types::ReservedNodeOffering]
|
2252
|
+
SENSITIVE: []
|
2253
|
+
end
|
2254
|
+
|
2255
|
+
class ReservedNodeQuotaExceededFault < Aws::EmptyStructure
|
2256
|
+
end
|
2257
|
+
|
2258
|
+
class ReservedNodesMessage
|
2259
|
+
attr_accessor marker: ::String
|
2260
|
+
attr_accessor reserved_nodes: ::Array[Types::ReservedNode]
|
2261
|
+
SENSITIVE: []
|
2262
|
+
end
|
2263
|
+
|
2264
|
+
class ResetClusterParameterGroupMessage
|
2265
|
+
attr_accessor parameter_group_name: ::String
|
2266
|
+
attr_accessor reset_all_parameters: bool
|
2267
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
2268
|
+
SENSITIVE: []
|
2269
|
+
end
|
2270
|
+
|
2271
|
+
class ResizeClusterMessage
|
2272
|
+
attr_accessor cluster_identifier: ::String
|
2273
|
+
attr_accessor cluster_type: ::String
|
2274
|
+
attr_accessor node_type: ::String
|
2275
|
+
attr_accessor number_of_nodes: ::Integer
|
2276
|
+
attr_accessor classic: bool
|
2277
|
+
attr_accessor reserved_node_id: ::String
|
2278
|
+
attr_accessor target_reserved_node_offering_id: ::String
|
2279
|
+
SENSITIVE: []
|
2280
|
+
end
|
2281
|
+
|
2282
|
+
class ResizeClusterResult
|
2283
|
+
attr_accessor cluster: Types::Cluster
|
2284
|
+
SENSITIVE: []
|
2285
|
+
end
|
2286
|
+
|
2287
|
+
class ResizeInfo
|
2288
|
+
attr_accessor resize_type: ::String
|
2289
|
+
attr_accessor allow_cancel_resize: bool
|
2290
|
+
SENSITIVE: []
|
2291
|
+
end
|
2292
|
+
|
2293
|
+
class ResizeNotFoundFault < Aws::EmptyStructure
|
2294
|
+
end
|
2295
|
+
|
2296
|
+
class ResizeProgressMessage
|
2297
|
+
attr_accessor target_node_type: ::String
|
2298
|
+
attr_accessor target_number_of_nodes: ::Integer
|
2299
|
+
attr_accessor target_cluster_type: ::String
|
2300
|
+
attr_accessor status: ::String
|
2301
|
+
attr_accessor import_tables_completed: ::Array[::String]
|
2302
|
+
attr_accessor import_tables_in_progress: ::Array[::String]
|
2303
|
+
attr_accessor import_tables_not_started: ::Array[::String]
|
2304
|
+
attr_accessor avg_resize_rate_in_mega_bytes_per_second: ::Float
|
2305
|
+
attr_accessor total_resize_data_in_mega_bytes: ::Integer
|
2306
|
+
attr_accessor progress_in_mega_bytes: ::Integer
|
2307
|
+
attr_accessor elapsed_time_in_seconds: ::Integer
|
2308
|
+
attr_accessor estimated_time_to_completion_in_seconds: ::Integer
|
2309
|
+
attr_accessor resize_type: ::String
|
2310
|
+
attr_accessor message: ::String
|
2311
|
+
attr_accessor target_encryption_type: ::String
|
2312
|
+
attr_accessor data_transfer_progress_percent: ::Float
|
2313
|
+
SENSITIVE: []
|
2314
|
+
end
|
2315
|
+
|
2316
|
+
class ResourceNotFoundFault < Aws::EmptyStructure
|
2317
|
+
end
|
2318
|
+
|
2319
|
+
class ResourcePolicy
|
2320
|
+
attr_accessor resource_arn: ::String
|
2321
|
+
attr_accessor policy: ::String
|
2322
|
+
SENSITIVE: []
|
2323
|
+
end
|
2324
|
+
|
2325
|
+
class RestoreFromClusterSnapshotMessage
|
2326
|
+
attr_accessor cluster_identifier: ::String
|
2327
|
+
attr_accessor snapshot_identifier: ::String
|
2328
|
+
attr_accessor snapshot_arn: ::String
|
2329
|
+
attr_accessor snapshot_cluster_identifier: ::String
|
2330
|
+
attr_accessor port: ::Integer
|
2331
|
+
attr_accessor availability_zone: ::String
|
2332
|
+
attr_accessor allow_version_upgrade: bool
|
2333
|
+
attr_accessor cluster_subnet_group_name: ::String
|
2334
|
+
attr_accessor publicly_accessible: bool
|
2335
|
+
attr_accessor owner_account: ::String
|
2336
|
+
attr_accessor hsm_client_certificate_identifier: ::String
|
2337
|
+
attr_accessor hsm_configuration_identifier: ::String
|
2338
|
+
attr_accessor elastic_ip: ::String
|
2339
|
+
attr_accessor cluster_parameter_group_name: ::String
|
2340
|
+
attr_accessor cluster_security_groups: ::Array[::String]
|
2341
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
2342
|
+
attr_accessor preferred_maintenance_window: ::String
|
2343
|
+
attr_accessor automated_snapshot_retention_period: ::Integer
|
2344
|
+
attr_accessor manual_snapshot_retention_period: ::Integer
|
2345
|
+
attr_accessor kms_key_id: ::String
|
2346
|
+
attr_accessor node_type: ::String
|
2347
|
+
attr_accessor enhanced_vpc_routing: bool
|
2348
|
+
attr_accessor additional_info: ::String
|
2349
|
+
attr_accessor iam_roles: ::Array[::String]
|
2350
|
+
attr_accessor maintenance_track_name: ::String
|
2351
|
+
attr_accessor snapshot_schedule_identifier: ::String
|
2352
|
+
attr_accessor number_of_nodes: ::Integer
|
2353
|
+
attr_accessor availability_zone_relocation: bool
|
2354
|
+
attr_accessor aqua_configuration_status: ("enabled" | "disabled" | "auto")
|
2355
|
+
attr_accessor default_iam_role_arn: ::String
|
2356
|
+
attr_accessor reserved_node_id: ::String
|
2357
|
+
attr_accessor target_reserved_node_offering_id: ::String
|
2358
|
+
attr_accessor encrypted: bool
|
2359
|
+
attr_accessor manage_master_password: bool
|
2360
|
+
attr_accessor master_password_secret_kms_key_id: ::String
|
2361
|
+
attr_accessor ip_address_type: ::String
|
2362
|
+
attr_accessor multi_az: bool
|
2363
|
+
SENSITIVE: []
|
2364
|
+
end
|
2365
|
+
|
2366
|
+
class RestoreFromClusterSnapshotResult
|
2367
|
+
attr_accessor cluster: Types::Cluster
|
2368
|
+
SENSITIVE: []
|
2369
|
+
end
|
2370
|
+
|
2371
|
+
class RestoreStatus
|
2372
|
+
attr_accessor status: ::String
|
2373
|
+
attr_accessor current_restore_rate_in_mega_bytes_per_second: ::Float
|
2374
|
+
attr_accessor snapshot_size_in_mega_bytes: ::Integer
|
2375
|
+
attr_accessor progress_in_mega_bytes: ::Integer
|
2376
|
+
attr_accessor elapsed_time_in_seconds: ::Integer
|
2377
|
+
attr_accessor estimated_time_to_completion_in_seconds: ::Integer
|
2378
|
+
SENSITIVE: []
|
2379
|
+
end
|
2380
|
+
|
2381
|
+
class RestoreTableFromClusterSnapshotMessage
|
2382
|
+
attr_accessor cluster_identifier: ::String
|
2383
|
+
attr_accessor snapshot_identifier: ::String
|
2384
|
+
attr_accessor source_database_name: ::String
|
2385
|
+
attr_accessor source_schema_name: ::String
|
2386
|
+
attr_accessor source_table_name: ::String
|
2387
|
+
attr_accessor target_database_name: ::String
|
2388
|
+
attr_accessor target_schema_name: ::String
|
2389
|
+
attr_accessor new_table_name: ::String
|
2390
|
+
attr_accessor enable_case_sensitive_identifier: bool
|
2391
|
+
SENSITIVE: []
|
2392
|
+
end
|
2393
|
+
|
2394
|
+
class RestoreTableFromClusterSnapshotResult
|
2395
|
+
attr_accessor table_restore_status: Types::TableRestoreStatus
|
2396
|
+
SENSITIVE: []
|
2397
|
+
end
|
2398
|
+
|
2399
|
+
class ResumeClusterMessage
|
2400
|
+
attr_accessor cluster_identifier: ::String
|
2401
|
+
SENSITIVE: []
|
2402
|
+
end
|
2403
|
+
|
2404
|
+
class ResumeClusterResult
|
2405
|
+
attr_accessor cluster: Types::Cluster
|
2406
|
+
SENSITIVE: []
|
2407
|
+
end
|
2408
|
+
|
2409
|
+
class RevisionTarget
|
2410
|
+
attr_accessor database_revision: ::String
|
2411
|
+
attr_accessor description: ::String
|
2412
|
+
attr_accessor database_revision_release_date: ::Time
|
2413
|
+
SENSITIVE: []
|
2414
|
+
end
|
2415
|
+
|
2416
|
+
class RevokeClusterSecurityGroupIngressMessage
|
2417
|
+
attr_accessor cluster_security_group_name: ::String
|
2418
|
+
attr_accessor cidrip: ::String
|
2419
|
+
attr_accessor ec2_security_group_name: ::String
|
2420
|
+
attr_accessor ec2_security_group_owner_id: ::String
|
2421
|
+
SENSITIVE: []
|
2422
|
+
end
|
2423
|
+
|
2424
|
+
class RevokeClusterSecurityGroupIngressResult
|
2425
|
+
attr_accessor cluster_security_group: Types::ClusterSecurityGroup
|
2426
|
+
SENSITIVE: []
|
2427
|
+
end
|
2428
|
+
|
2429
|
+
class RevokeEndpointAccessMessage
|
2430
|
+
attr_accessor cluster_identifier: ::String
|
2431
|
+
attr_accessor account: ::String
|
2432
|
+
attr_accessor vpc_ids: ::Array[::String]
|
2433
|
+
attr_accessor force: bool
|
2434
|
+
SENSITIVE: []
|
2435
|
+
end
|
2436
|
+
|
2437
|
+
class RevokeSnapshotAccessMessage
|
2438
|
+
attr_accessor snapshot_identifier: ::String
|
2439
|
+
attr_accessor snapshot_arn: ::String
|
2440
|
+
attr_accessor snapshot_cluster_identifier: ::String
|
2441
|
+
attr_accessor account_with_restore_access: ::String
|
2442
|
+
SENSITIVE: []
|
2443
|
+
end
|
2444
|
+
|
2445
|
+
class RevokeSnapshotAccessResult
|
2446
|
+
attr_accessor snapshot: Types::Snapshot
|
2447
|
+
SENSITIVE: []
|
2448
|
+
end
|
2449
|
+
|
2450
|
+
class RotateEncryptionKeyMessage
|
2451
|
+
attr_accessor cluster_identifier: ::String
|
2452
|
+
SENSITIVE: []
|
2453
|
+
end
|
2454
|
+
|
2455
|
+
class RotateEncryptionKeyResult
|
2456
|
+
attr_accessor cluster: Types::Cluster
|
2457
|
+
SENSITIVE: []
|
2458
|
+
end
|
2459
|
+
|
2460
|
+
class SNSInvalidTopicFault < Aws::EmptyStructure
|
2461
|
+
end
|
2462
|
+
|
2463
|
+
class SNSNoAuthorizationFault < Aws::EmptyStructure
|
2464
|
+
end
|
2465
|
+
|
2466
|
+
class SNSTopicArnNotFoundFault < Aws::EmptyStructure
|
2467
|
+
end
|
2468
|
+
|
2469
|
+
class ScheduleDefinitionTypeUnsupportedFault < Aws::EmptyStructure
|
2470
|
+
end
|
2471
|
+
|
2472
|
+
class ScheduledAction
|
2473
|
+
attr_accessor scheduled_action_name: ::String
|
2474
|
+
attr_accessor target_action: Types::ScheduledActionType
|
2475
|
+
attr_accessor schedule: ::String
|
2476
|
+
attr_accessor iam_role: ::String
|
2477
|
+
attr_accessor scheduled_action_description: ::String
|
2478
|
+
attr_accessor state: ("ACTIVE" | "DISABLED")
|
2479
|
+
attr_accessor next_invocations: ::Array[::Time]
|
2480
|
+
attr_accessor start_time: ::Time
|
2481
|
+
attr_accessor end_time: ::Time
|
2482
|
+
SENSITIVE: []
|
2483
|
+
end
|
2484
|
+
|
2485
|
+
class ScheduledActionAlreadyExistsFault < Aws::EmptyStructure
|
2486
|
+
end
|
2487
|
+
|
2488
|
+
class ScheduledActionFilter
|
2489
|
+
attr_accessor name: ("cluster-identifier" | "iam-role")
|
2490
|
+
attr_accessor values: ::Array[::String]
|
2491
|
+
SENSITIVE: []
|
2492
|
+
end
|
2493
|
+
|
2494
|
+
class ScheduledActionNotFoundFault < Aws::EmptyStructure
|
2495
|
+
end
|
2496
|
+
|
2497
|
+
class ScheduledActionQuotaExceededFault < Aws::EmptyStructure
|
2498
|
+
end
|
2499
|
+
|
2500
|
+
class ScheduledActionType
|
2501
|
+
attr_accessor resize_cluster: Types::ResizeClusterMessage
|
2502
|
+
attr_accessor pause_cluster: Types::PauseClusterMessage
|
2503
|
+
attr_accessor resume_cluster: Types::ResumeClusterMessage
|
2504
|
+
SENSITIVE: []
|
2505
|
+
end
|
2506
|
+
|
2507
|
+
class ScheduledActionTypeUnsupportedFault < Aws::EmptyStructure
|
2508
|
+
end
|
2509
|
+
|
2510
|
+
class ScheduledActionsMessage
|
2511
|
+
attr_accessor marker: ::String
|
2512
|
+
attr_accessor scheduled_actions: ::Array[Types::ScheduledAction]
|
2513
|
+
SENSITIVE: []
|
2514
|
+
end
|
2515
|
+
|
2516
|
+
class SecondaryClusterInfo
|
2517
|
+
attr_accessor availability_zone: ::String
|
2518
|
+
attr_accessor cluster_nodes: ::Array[Types::ClusterNode]
|
2519
|
+
SENSITIVE: []
|
2520
|
+
end
|
2521
|
+
|
2522
|
+
class ServiceIntegrationsUnion
|
2523
|
+
attr_accessor lake_formation: ::Array[Types::LakeFormationScopeUnion]
|
2524
|
+
attr_accessor unknown: untyped
|
2525
|
+
SENSITIVE: []
|
2526
|
+
|
2527
|
+
class LakeFormation < ServiceIntegrationsUnion
|
2528
|
+
end
|
2529
|
+
class Unknown < ServiceIntegrationsUnion
|
2530
|
+
end
|
2531
|
+
end
|
2532
|
+
|
2533
|
+
class Snapshot
|
2534
|
+
attr_accessor snapshot_identifier: ::String
|
2535
|
+
attr_accessor cluster_identifier: ::String
|
2536
|
+
attr_accessor snapshot_create_time: ::Time
|
2537
|
+
attr_accessor status: ::String
|
2538
|
+
attr_accessor port: ::Integer
|
2539
|
+
attr_accessor availability_zone: ::String
|
2540
|
+
attr_accessor cluster_create_time: ::Time
|
2541
|
+
attr_accessor master_username: ::String
|
2542
|
+
attr_accessor cluster_version: ::String
|
2543
|
+
attr_accessor engine_full_version: ::String
|
2544
|
+
attr_accessor snapshot_type: ::String
|
2545
|
+
attr_accessor node_type: ::String
|
2546
|
+
attr_accessor number_of_nodes: ::Integer
|
2547
|
+
attr_accessor db_name: ::String
|
2548
|
+
attr_accessor vpc_id: ::String
|
2549
|
+
attr_accessor encrypted: bool
|
2550
|
+
attr_accessor kms_key_id: ::String
|
2551
|
+
attr_accessor encrypted_with_hsm: bool
|
2552
|
+
attr_accessor accounts_with_restore_access: ::Array[Types::AccountWithRestoreAccess]
|
2553
|
+
attr_accessor owner_account: ::String
|
2554
|
+
attr_accessor total_backup_size_in_mega_bytes: ::Float
|
2555
|
+
attr_accessor actual_incremental_backup_size_in_mega_bytes: ::Float
|
2556
|
+
attr_accessor backup_progress_in_mega_bytes: ::Float
|
2557
|
+
attr_accessor current_backup_rate_in_mega_bytes_per_second: ::Float
|
2558
|
+
attr_accessor estimated_seconds_to_completion: ::Integer
|
2559
|
+
attr_accessor elapsed_time_in_seconds: ::Integer
|
2560
|
+
attr_accessor source_region: ::String
|
2561
|
+
attr_accessor tags: ::Array[Types::Tag]
|
2562
|
+
attr_accessor restorable_node_types: ::Array[::String]
|
2563
|
+
attr_accessor enhanced_vpc_routing: bool
|
2564
|
+
attr_accessor maintenance_track_name: ::String
|
2565
|
+
attr_accessor manual_snapshot_retention_period: ::Integer
|
2566
|
+
attr_accessor manual_snapshot_remaining_days: ::Integer
|
2567
|
+
attr_accessor snapshot_retention_start_time: ::Time
|
2568
|
+
attr_accessor master_password_secret_arn: ::String
|
2569
|
+
attr_accessor master_password_secret_kms_key_id: ::String
|
2570
|
+
SENSITIVE: []
|
2571
|
+
end
|
2572
|
+
|
2573
|
+
class SnapshotCopyAlreadyDisabledFault < Aws::EmptyStructure
|
2574
|
+
end
|
2575
|
+
|
2576
|
+
class SnapshotCopyAlreadyEnabledFault < Aws::EmptyStructure
|
2577
|
+
end
|
2578
|
+
|
2579
|
+
class SnapshotCopyDisabledFault < Aws::EmptyStructure
|
2580
|
+
end
|
2581
|
+
|
2582
|
+
class SnapshotCopyGrant
|
2583
|
+
attr_accessor snapshot_copy_grant_name: ::String
|
2584
|
+
attr_accessor kms_key_id: ::String
|
2585
|
+
attr_accessor tags: ::Array[Types::Tag]
|
2586
|
+
SENSITIVE: []
|
2587
|
+
end
|
2588
|
+
|
2589
|
+
class SnapshotCopyGrantAlreadyExistsFault < Aws::EmptyStructure
|
2590
|
+
end
|
2591
|
+
|
2592
|
+
class SnapshotCopyGrantMessage
|
2593
|
+
attr_accessor marker: ::String
|
2594
|
+
attr_accessor snapshot_copy_grants: ::Array[Types::SnapshotCopyGrant]
|
2595
|
+
SENSITIVE: []
|
2596
|
+
end
|
2597
|
+
|
2598
|
+
class SnapshotCopyGrantNotFoundFault < Aws::EmptyStructure
|
2599
|
+
end
|
2600
|
+
|
2601
|
+
class SnapshotCopyGrantQuotaExceededFault < Aws::EmptyStructure
|
2602
|
+
end
|
2603
|
+
|
2604
|
+
class SnapshotErrorMessage
|
2605
|
+
attr_accessor snapshot_identifier: ::String
|
2606
|
+
attr_accessor snapshot_cluster_identifier: ::String
|
2607
|
+
attr_accessor failure_code: ::String
|
2608
|
+
attr_accessor failure_reason: ::String
|
2609
|
+
SENSITIVE: []
|
2610
|
+
end
|
2611
|
+
|
2612
|
+
class SnapshotMessage
|
2613
|
+
attr_accessor marker: ::String
|
2614
|
+
attr_accessor snapshots: ::Array[Types::Snapshot]
|
2615
|
+
SENSITIVE: []
|
2616
|
+
end
|
2617
|
+
|
2618
|
+
class SnapshotSchedule
|
2619
|
+
attr_accessor schedule_definitions: ::Array[::String]
|
2620
|
+
attr_accessor schedule_identifier: ::String
|
2621
|
+
attr_accessor schedule_description: ::String
|
2622
|
+
attr_accessor tags: ::Array[Types::Tag]
|
2623
|
+
attr_accessor next_invocations: ::Array[::Time]
|
2624
|
+
attr_accessor associated_cluster_count: ::Integer
|
2625
|
+
attr_accessor associated_clusters: ::Array[Types::ClusterAssociatedToSchedule]
|
2626
|
+
SENSITIVE: []
|
2627
|
+
end
|
2628
|
+
|
2629
|
+
class SnapshotScheduleAlreadyExistsFault < Aws::EmptyStructure
|
2630
|
+
end
|
2631
|
+
|
2632
|
+
class SnapshotScheduleNotFoundFault < Aws::EmptyStructure
|
2633
|
+
end
|
2634
|
+
|
2635
|
+
class SnapshotScheduleQuotaExceededFault < Aws::EmptyStructure
|
2636
|
+
end
|
2637
|
+
|
2638
|
+
class SnapshotScheduleUpdateInProgressFault < Aws::EmptyStructure
|
2639
|
+
end
|
2640
|
+
|
2641
|
+
class SnapshotSortingEntity
|
2642
|
+
attr_accessor attribute: ("SOURCE_TYPE" | "TOTAL_SIZE" | "CREATE_TIME")
|
2643
|
+
attr_accessor sort_order: ("ASC" | "DESC")
|
2644
|
+
SENSITIVE: []
|
2645
|
+
end
|
2646
|
+
|
2647
|
+
class SourceNotFoundFault < Aws::EmptyStructure
|
2648
|
+
end
|
2649
|
+
|
2650
|
+
class Subnet
|
2651
|
+
attr_accessor subnet_identifier: ::String
|
2652
|
+
attr_accessor subnet_availability_zone: Types::AvailabilityZone
|
2653
|
+
attr_accessor subnet_status: ::String
|
2654
|
+
SENSITIVE: []
|
2655
|
+
end
|
2656
|
+
|
2657
|
+
class SubnetAlreadyInUse < Aws::EmptyStructure
|
2658
|
+
end
|
2659
|
+
|
2660
|
+
class SubscriptionAlreadyExistFault < Aws::EmptyStructure
|
2661
|
+
end
|
2662
|
+
|
2663
|
+
class SubscriptionCategoryNotFoundFault < Aws::EmptyStructure
|
2664
|
+
end
|
2665
|
+
|
2666
|
+
class SubscriptionEventIdNotFoundFault < Aws::EmptyStructure
|
2667
|
+
end
|
2668
|
+
|
2669
|
+
class SubscriptionNotFoundFault < Aws::EmptyStructure
|
2670
|
+
end
|
2671
|
+
|
2672
|
+
class SubscriptionSeverityNotFoundFault < Aws::EmptyStructure
|
2673
|
+
end
|
2674
|
+
|
2675
|
+
class SupportedOperation
|
2676
|
+
attr_accessor operation_name: ::String
|
2677
|
+
SENSITIVE: []
|
2678
|
+
end
|
2679
|
+
|
2680
|
+
class SupportedPlatform
|
2681
|
+
attr_accessor name: ::String
|
2682
|
+
SENSITIVE: []
|
2683
|
+
end
|
2684
|
+
|
2685
|
+
class TableLimitExceededFault < Aws::EmptyStructure
|
2686
|
+
end
|
2687
|
+
|
2688
|
+
class TableRestoreNotFoundFault < Aws::EmptyStructure
|
2689
|
+
end
|
2690
|
+
|
2691
|
+
class TableRestoreStatus
|
2692
|
+
attr_accessor table_restore_request_id: ::String
|
2693
|
+
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "SUCCEEDED" | "FAILED" | "CANCELED")
|
2694
|
+
attr_accessor message: ::String
|
2695
|
+
attr_accessor request_time: ::Time
|
2696
|
+
attr_accessor progress_in_mega_bytes: ::Integer
|
2697
|
+
attr_accessor total_data_in_mega_bytes: ::Integer
|
2698
|
+
attr_accessor cluster_identifier: ::String
|
2699
|
+
attr_accessor snapshot_identifier: ::String
|
2700
|
+
attr_accessor source_database_name: ::String
|
2701
|
+
attr_accessor source_schema_name: ::String
|
2702
|
+
attr_accessor source_table_name: ::String
|
2703
|
+
attr_accessor target_database_name: ::String
|
2704
|
+
attr_accessor target_schema_name: ::String
|
2705
|
+
attr_accessor new_table_name: ::String
|
2706
|
+
SENSITIVE: []
|
2707
|
+
end
|
2708
|
+
|
2709
|
+
class TableRestoreStatusMessage
|
2710
|
+
attr_accessor table_restore_status_details: ::Array[Types::TableRestoreStatus]
|
2711
|
+
attr_accessor marker: ::String
|
2712
|
+
SENSITIVE: []
|
2713
|
+
end
|
2714
|
+
|
2715
|
+
class Tag
|
2716
|
+
attr_accessor key: ::String
|
2717
|
+
attr_accessor value: ::String
|
2718
|
+
SENSITIVE: []
|
2719
|
+
end
|
2720
|
+
|
2721
|
+
class TagLimitExceededFault < Aws::EmptyStructure
|
2722
|
+
end
|
2723
|
+
|
2724
|
+
class TaggedResource
|
2725
|
+
attr_accessor tag: Types::Tag
|
2726
|
+
attr_accessor resource_name: ::String
|
2727
|
+
attr_accessor resource_type: ::String
|
2728
|
+
SENSITIVE: []
|
2729
|
+
end
|
2730
|
+
|
2731
|
+
class TaggedResourceListMessage
|
2732
|
+
attr_accessor tagged_resources: ::Array[Types::TaggedResource]
|
2733
|
+
attr_accessor marker: ::String
|
2734
|
+
SENSITIVE: []
|
2735
|
+
end
|
2736
|
+
|
2737
|
+
class TrackListMessage
|
2738
|
+
attr_accessor maintenance_tracks: ::Array[Types::MaintenanceTrack]
|
2739
|
+
attr_accessor marker: ::String
|
2740
|
+
SENSITIVE: []
|
2741
|
+
end
|
2742
|
+
|
2743
|
+
class UnauthorizedOperation < Aws::EmptyStructure
|
2744
|
+
end
|
2745
|
+
|
2746
|
+
class UnauthorizedPartnerIntegrationFault < Aws::EmptyStructure
|
2747
|
+
end
|
2748
|
+
|
2749
|
+
class UnknownSnapshotCopyRegionFault < Aws::EmptyStructure
|
2750
|
+
end
|
2751
|
+
|
2752
|
+
class UnsupportedOperationFault < Aws::EmptyStructure
|
2753
|
+
end
|
2754
|
+
|
2755
|
+
class UnsupportedOptionFault < Aws::EmptyStructure
|
2756
|
+
end
|
2757
|
+
|
2758
|
+
class UpdatePartnerStatusInputMessage
|
2759
|
+
attr_accessor account_id: ::String
|
2760
|
+
attr_accessor cluster_identifier: ::String
|
2761
|
+
attr_accessor database_name: ::String
|
2762
|
+
attr_accessor partner_name: ::String
|
2763
|
+
attr_accessor status: ("Active" | "Inactive" | "RuntimeFailure" | "ConnectionFailure")
|
2764
|
+
attr_accessor status_message: ::String
|
2765
|
+
SENSITIVE: []
|
2766
|
+
end
|
2767
|
+
|
2768
|
+
class UpdateTarget
|
2769
|
+
attr_accessor maintenance_track_name: ::String
|
2770
|
+
attr_accessor database_version: ::String
|
2771
|
+
attr_accessor supported_operations: ::Array[Types::SupportedOperation]
|
2772
|
+
SENSITIVE: []
|
2773
|
+
end
|
2774
|
+
|
2775
|
+
class UsageLimit
|
2776
|
+
attr_accessor usage_limit_id: ::String
|
2777
|
+
attr_accessor cluster_identifier: ::String
|
2778
|
+
attr_accessor feature_type: ("spectrum" | "concurrency-scaling" | "cross-region-datasharing")
|
2779
|
+
attr_accessor limit_type: ("time" | "data-scanned")
|
2780
|
+
attr_accessor amount: ::Integer
|
2781
|
+
attr_accessor period: ("daily" | "weekly" | "monthly")
|
2782
|
+
attr_accessor breach_action: ("log" | "emit-metric" | "disable")
|
2783
|
+
attr_accessor tags: ::Array[Types::Tag]
|
2784
|
+
SENSITIVE: []
|
2785
|
+
end
|
2786
|
+
|
2787
|
+
class UsageLimitAlreadyExistsFault < Aws::EmptyStructure
|
2788
|
+
end
|
2789
|
+
|
2790
|
+
class UsageLimitList
|
2791
|
+
attr_accessor usage_limits: ::Array[Types::UsageLimit]
|
2792
|
+
attr_accessor marker: ::String
|
2793
|
+
SENSITIVE: []
|
2794
|
+
end
|
2795
|
+
|
2796
|
+
class UsageLimitNotFoundFault < Aws::EmptyStructure
|
2797
|
+
end
|
2798
|
+
|
2799
|
+
class VpcEndpoint
|
2800
|
+
attr_accessor vpc_endpoint_id: ::String
|
2801
|
+
attr_accessor vpc_id: ::String
|
2802
|
+
attr_accessor network_interfaces: ::Array[Types::NetworkInterface]
|
2803
|
+
SENSITIVE: []
|
2804
|
+
end
|
2805
|
+
|
2806
|
+
class VpcSecurityGroupMembership
|
2807
|
+
attr_accessor vpc_security_group_id: ::String
|
2808
|
+
attr_accessor status: ::String
|
2809
|
+
SENSITIVE: []
|
2810
|
+
end
|
2811
|
+
end
|
2812
|
+
end
|