aws-sdk-docdb 1.58.0 → 1.60.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-docdb/client.rb +11 -1
- data/lib/aws-sdk-docdb/client_api.rb +2 -0
- data/lib/aws-sdk-docdb/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-docdb/types.rb +14 -1
- data/lib/aws-sdk-docdb.rb +1 -1
- data/sig/client.rbs +994 -0
- data/sig/errors.rbs +130 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1250 -0
- data/sig/waiters.rbs +49 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1250 @@
|
|
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::DocDB
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AddSourceIdentifierToSubscriptionMessage
|
12
|
+
attr_accessor subscription_name: ::String
|
13
|
+
attr_accessor source_identifier: ::String
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class AddSourceIdentifierToSubscriptionResult
|
18
|
+
attr_accessor event_subscription: Types::EventSubscription
|
19
|
+
SENSITIVE: []
|
20
|
+
end
|
21
|
+
|
22
|
+
class AddTagsToResourceMessage
|
23
|
+
attr_accessor resource_name: ::String
|
24
|
+
attr_accessor tags: ::Array[Types::Tag]
|
25
|
+
SENSITIVE: []
|
26
|
+
end
|
27
|
+
|
28
|
+
class ApplyPendingMaintenanceActionMessage
|
29
|
+
attr_accessor resource_identifier: ::String
|
30
|
+
attr_accessor apply_action: ::String
|
31
|
+
attr_accessor opt_in_type: ::String
|
32
|
+
SENSITIVE: []
|
33
|
+
end
|
34
|
+
|
35
|
+
class ApplyPendingMaintenanceActionResult
|
36
|
+
attr_accessor resource_pending_maintenance_actions: Types::ResourcePendingMaintenanceActions
|
37
|
+
SENSITIVE: []
|
38
|
+
end
|
39
|
+
|
40
|
+
class AuthorizationNotFoundFault < Aws::EmptyStructure
|
41
|
+
end
|
42
|
+
|
43
|
+
class AvailabilityZone
|
44
|
+
attr_accessor name: ::String
|
45
|
+
SENSITIVE: []
|
46
|
+
end
|
47
|
+
|
48
|
+
class Certificate
|
49
|
+
attr_accessor certificate_identifier: ::String
|
50
|
+
attr_accessor certificate_type: ::String
|
51
|
+
attr_accessor thumbprint: ::String
|
52
|
+
attr_accessor valid_from: ::Time
|
53
|
+
attr_accessor valid_till: ::Time
|
54
|
+
attr_accessor certificate_arn: ::String
|
55
|
+
SENSITIVE: []
|
56
|
+
end
|
57
|
+
|
58
|
+
class CertificateDetails
|
59
|
+
attr_accessor ca_identifier: ::String
|
60
|
+
attr_accessor valid_till: ::Time
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class CertificateMessage
|
65
|
+
attr_accessor certificates: ::Array[Types::Certificate]
|
66
|
+
attr_accessor marker: ::String
|
67
|
+
SENSITIVE: []
|
68
|
+
end
|
69
|
+
|
70
|
+
class CertificateNotFoundFault < Aws::EmptyStructure
|
71
|
+
end
|
72
|
+
|
73
|
+
class CloudwatchLogsExportConfiguration
|
74
|
+
attr_accessor enable_log_types: ::Array[::String]
|
75
|
+
attr_accessor disable_log_types: ::Array[::String]
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class CopyDBClusterParameterGroupMessage
|
80
|
+
attr_accessor source_db_cluster_parameter_group_identifier: ::String
|
81
|
+
attr_accessor target_db_cluster_parameter_group_identifier: ::String
|
82
|
+
attr_accessor target_db_cluster_parameter_group_description: ::String
|
83
|
+
attr_accessor tags: ::Array[Types::Tag]
|
84
|
+
SENSITIVE: []
|
85
|
+
end
|
86
|
+
|
87
|
+
class CopyDBClusterParameterGroupResult
|
88
|
+
attr_accessor db_cluster_parameter_group: Types::DBClusterParameterGroup
|
89
|
+
SENSITIVE: []
|
90
|
+
end
|
91
|
+
|
92
|
+
class CopyDBClusterSnapshotMessage
|
93
|
+
attr_accessor source_db_cluster_snapshot_identifier: ::String
|
94
|
+
attr_accessor target_db_cluster_snapshot_identifier: ::String
|
95
|
+
attr_accessor kms_key_id: ::String
|
96
|
+
attr_accessor pre_signed_url: ::String
|
97
|
+
attr_accessor copy_tags: bool
|
98
|
+
attr_accessor tags: ::Array[Types::Tag]
|
99
|
+
attr_accessor source_region: ::String
|
100
|
+
SENSITIVE: []
|
101
|
+
end
|
102
|
+
|
103
|
+
class CopyDBClusterSnapshotResult
|
104
|
+
attr_accessor db_cluster_snapshot: Types::DBClusterSnapshot
|
105
|
+
SENSITIVE: []
|
106
|
+
end
|
107
|
+
|
108
|
+
class CreateDBClusterMessage
|
109
|
+
attr_accessor availability_zones: ::Array[::String]
|
110
|
+
attr_accessor backup_retention_period: ::Integer
|
111
|
+
attr_accessor db_cluster_identifier: ::String
|
112
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
113
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
114
|
+
attr_accessor db_subnet_group_name: ::String
|
115
|
+
attr_accessor engine: ::String
|
116
|
+
attr_accessor engine_version: ::String
|
117
|
+
attr_accessor port: ::Integer
|
118
|
+
attr_accessor master_username: ::String
|
119
|
+
attr_accessor master_user_password: ::String
|
120
|
+
attr_accessor preferred_backup_window: ::String
|
121
|
+
attr_accessor preferred_maintenance_window: ::String
|
122
|
+
attr_accessor tags: ::Array[Types::Tag]
|
123
|
+
attr_accessor storage_encrypted: bool
|
124
|
+
attr_accessor kms_key_id: ::String
|
125
|
+
attr_accessor pre_signed_url: ::String
|
126
|
+
attr_accessor enable_cloudwatch_logs_exports: ::Array[::String]
|
127
|
+
attr_accessor deletion_protection: bool
|
128
|
+
attr_accessor global_cluster_identifier: ::String
|
129
|
+
attr_accessor storage_type: ::String
|
130
|
+
attr_accessor source_region: ::String
|
131
|
+
SENSITIVE: []
|
132
|
+
end
|
133
|
+
|
134
|
+
class CreateDBClusterParameterGroupMessage
|
135
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
136
|
+
attr_accessor db_parameter_group_family: ::String
|
137
|
+
attr_accessor description: ::String
|
138
|
+
attr_accessor tags: ::Array[Types::Tag]
|
139
|
+
SENSITIVE: []
|
140
|
+
end
|
141
|
+
|
142
|
+
class CreateDBClusterParameterGroupResult
|
143
|
+
attr_accessor db_cluster_parameter_group: Types::DBClusterParameterGroup
|
144
|
+
SENSITIVE: []
|
145
|
+
end
|
146
|
+
|
147
|
+
class CreateDBClusterResult
|
148
|
+
attr_accessor db_cluster: Types::DBCluster
|
149
|
+
SENSITIVE: []
|
150
|
+
end
|
151
|
+
|
152
|
+
class CreateDBClusterSnapshotMessage
|
153
|
+
attr_accessor db_cluster_snapshot_identifier: ::String
|
154
|
+
attr_accessor db_cluster_identifier: ::String
|
155
|
+
attr_accessor tags: ::Array[Types::Tag]
|
156
|
+
SENSITIVE: []
|
157
|
+
end
|
158
|
+
|
159
|
+
class CreateDBClusterSnapshotResult
|
160
|
+
attr_accessor db_cluster_snapshot: Types::DBClusterSnapshot
|
161
|
+
SENSITIVE: []
|
162
|
+
end
|
163
|
+
|
164
|
+
class CreateDBInstanceMessage
|
165
|
+
attr_accessor db_instance_identifier: ::String
|
166
|
+
attr_accessor db_instance_class: ::String
|
167
|
+
attr_accessor engine: ::String
|
168
|
+
attr_accessor availability_zone: ::String
|
169
|
+
attr_accessor preferred_maintenance_window: ::String
|
170
|
+
attr_accessor auto_minor_version_upgrade: bool
|
171
|
+
attr_accessor tags: ::Array[Types::Tag]
|
172
|
+
attr_accessor db_cluster_identifier: ::String
|
173
|
+
attr_accessor copy_tags_to_snapshot: bool
|
174
|
+
attr_accessor promotion_tier: ::Integer
|
175
|
+
attr_accessor enable_performance_insights: bool
|
176
|
+
attr_accessor performance_insights_kms_key_id: ::String
|
177
|
+
attr_accessor ca_certificate_identifier: ::String
|
178
|
+
SENSITIVE: []
|
179
|
+
end
|
180
|
+
|
181
|
+
class CreateDBInstanceResult
|
182
|
+
attr_accessor db_instance: Types::DBInstance
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class CreateDBSubnetGroupMessage
|
187
|
+
attr_accessor db_subnet_group_name: ::String
|
188
|
+
attr_accessor db_subnet_group_description: ::String
|
189
|
+
attr_accessor subnet_ids: ::Array[::String]
|
190
|
+
attr_accessor tags: ::Array[Types::Tag]
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
194
|
+
class CreateDBSubnetGroupResult
|
195
|
+
attr_accessor db_subnet_group: Types::DBSubnetGroup
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
199
|
+
class CreateEventSubscriptionMessage
|
200
|
+
attr_accessor subscription_name: ::String
|
201
|
+
attr_accessor sns_topic_arn: ::String
|
202
|
+
attr_accessor source_type: ::String
|
203
|
+
attr_accessor event_categories: ::Array[::String]
|
204
|
+
attr_accessor source_ids: ::Array[::String]
|
205
|
+
attr_accessor enabled: bool
|
206
|
+
attr_accessor tags: ::Array[Types::Tag]
|
207
|
+
SENSITIVE: []
|
208
|
+
end
|
209
|
+
|
210
|
+
class CreateEventSubscriptionResult
|
211
|
+
attr_accessor event_subscription: Types::EventSubscription
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class CreateGlobalClusterMessage
|
216
|
+
attr_accessor global_cluster_identifier: ::String
|
217
|
+
attr_accessor source_db_cluster_identifier: ::String
|
218
|
+
attr_accessor engine: ::String
|
219
|
+
attr_accessor engine_version: ::String
|
220
|
+
attr_accessor deletion_protection: bool
|
221
|
+
attr_accessor database_name: ::String
|
222
|
+
attr_accessor storage_encrypted: bool
|
223
|
+
SENSITIVE: []
|
224
|
+
end
|
225
|
+
|
226
|
+
class CreateGlobalClusterResult
|
227
|
+
attr_accessor global_cluster: Types::GlobalCluster
|
228
|
+
SENSITIVE: []
|
229
|
+
end
|
230
|
+
|
231
|
+
class DBCluster
|
232
|
+
attr_accessor availability_zones: ::Array[::String]
|
233
|
+
attr_accessor backup_retention_period: ::Integer
|
234
|
+
attr_accessor db_cluster_identifier: ::String
|
235
|
+
attr_accessor db_cluster_parameter_group: ::String
|
236
|
+
attr_accessor db_subnet_group: ::String
|
237
|
+
attr_accessor status: ::String
|
238
|
+
attr_accessor percent_progress: ::String
|
239
|
+
attr_accessor earliest_restorable_time: ::Time
|
240
|
+
attr_accessor endpoint: ::String
|
241
|
+
attr_accessor reader_endpoint: ::String
|
242
|
+
attr_accessor multi_az: bool
|
243
|
+
attr_accessor engine: ::String
|
244
|
+
attr_accessor engine_version: ::String
|
245
|
+
attr_accessor latest_restorable_time: ::Time
|
246
|
+
attr_accessor port: ::Integer
|
247
|
+
attr_accessor master_username: ::String
|
248
|
+
attr_accessor preferred_backup_window: ::String
|
249
|
+
attr_accessor preferred_maintenance_window: ::String
|
250
|
+
attr_accessor replication_source_identifier: ::String
|
251
|
+
attr_accessor read_replica_identifiers: ::Array[::String]
|
252
|
+
attr_accessor db_cluster_members: ::Array[Types::DBClusterMember]
|
253
|
+
attr_accessor vpc_security_groups: ::Array[Types::VpcSecurityGroupMembership]
|
254
|
+
attr_accessor hosted_zone_id: ::String
|
255
|
+
attr_accessor storage_encrypted: bool
|
256
|
+
attr_accessor kms_key_id: ::String
|
257
|
+
attr_accessor db_cluster_resource_id: ::String
|
258
|
+
attr_accessor db_cluster_arn: ::String
|
259
|
+
attr_accessor associated_roles: ::Array[Types::DBClusterRole]
|
260
|
+
attr_accessor clone_group_id: ::String
|
261
|
+
attr_accessor cluster_create_time: ::Time
|
262
|
+
attr_accessor enabled_cloudwatch_logs_exports: ::Array[::String]
|
263
|
+
attr_accessor deletion_protection: bool
|
264
|
+
attr_accessor storage_type: ::String
|
265
|
+
SENSITIVE: []
|
266
|
+
end
|
267
|
+
|
268
|
+
class DBClusterAlreadyExistsFault < Aws::EmptyStructure
|
269
|
+
end
|
270
|
+
|
271
|
+
class DBClusterMember
|
272
|
+
attr_accessor db_instance_identifier: ::String
|
273
|
+
attr_accessor is_cluster_writer: bool
|
274
|
+
attr_accessor db_cluster_parameter_group_status: ::String
|
275
|
+
attr_accessor promotion_tier: ::Integer
|
276
|
+
SENSITIVE: []
|
277
|
+
end
|
278
|
+
|
279
|
+
class DBClusterMessage
|
280
|
+
attr_accessor marker: ::String
|
281
|
+
attr_accessor db_clusters: ::Array[Types::DBCluster]
|
282
|
+
SENSITIVE: []
|
283
|
+
end
|
284
|
+
|
285
|
+
class DBClusterNotFoundFault < Aws::EmptyStructure
|
286
|
+
end
|
287
|
+
|
288
|
+
class DBClusterParameterGroup
|
289
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
290
|
+
attr_accessor db_parameter_group_family: ::String
|
291
|
+
attr_accessor description: ::String
|
292
|
+
attr_accessor db_cluster_parameter_group_arn: ::String
|
293
|
+
SENSITIVE: []
|
294
|
+
end
|
295
|
+
|
296
|
+
class DBClusterParameterGroupDetails
|
297
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
298
|
+
attr_accessor marker: ::String
|
299
|
+
SENSITIVE: []
|
300
|
+
end
|
301
|
+
|
302
|
+
class DBClusterParameterGroupNameMessage
|
303
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
304
|
+
SENSITIVE: []
|
305
|
+
end
|
306
|
+
|
307
|
+
class DBClusterParameterGroupNotFoundFault < Aws::EmptyStructure
|
308
|
+
end
|
309
|
+
|
310
|
+
class DBClusterParameterGroupsMessage
|
311
|
+
attr_accessor marker: ::String
|
312
|
+
attr_accessor db_cluster_parameter_groups: ::Array[Types::DBClusterParameterGroup]
|
313
|
+
SENSITIVE: []
|
314
|
+
end
|
315
|
+
|
316
|
+
class DBClusterQuotaExceededFault < Aws::EmptyStructure
|
317
|
+
end
|
318
|
+
|
319
|
+
class DBClusterRole
|
320
|
+
attr_accessor role_arn: ::String
|
321
|
+
attr_accessor status: ::String
|
322
|
+
SENSITIVE: []
|
323
|
+
end
|
324
|
+
|
325
|
+
class DBClusterSnapshot
|
326
|
+
attr_accessor availability_zones: ::Array[::String]
|
327
|
+
attr_accessor db_cluster_snapshot_identifier: ::String
|
328
|
+
attr_accessor db_cluster_identifier: ::String
|
329
|
+
attr_accessor snapshot_create_time: ::Time
|
330
|
+
attr_accessor engine: ::String
|
331
|
+
attr_accessor status: ::String
|
332
|
+
attr_accessor port: ::Integer
|
333
|
+
attr_accessor vpc_id: ::String
|
334
|
+
attr_accessor cluster_create_time: ::Time
|
335
|
+
attr_accessor master_username: ::String
|
336
|
+
attr_accessor engine_version: ::String
|
337
|
+
attr_accessor snapshot_type: ::String
|
338
|
+
attr_accessor percent_progress: ::Integer
|
339
|
+
attr_accessor storage_encrypted: bool
|
340
|
+
attr_accessor kms_key_id: ::String
|
341
|
+
attr_accessor db_cluster_snapshot_arn: ::String
|
342
|
+
attr_accessor source_db_cluster_snapshot_arn: ::String
|
343
|
+
attr_accessor storage_type: ::String
|
344
|
+
SENSITIVE: []
|
345
|
+
end
|
346
|
+
|
347
|
+
class DBClusterSnapshotAlreadyExistsFault < Aws::EmptyStructure
|
348
|
+
end
|
349
|
+
|
350
|
+
class DBClusterSnapshotAttribute
|
351
|
+
attr_accessor attribute_name: ::String
|
352
|
+
attr_accessor attribute_values: ::Array[::String]
|
353
|
+
SENSITIVE: []
|
354
|
+
end
|
355
|
+
|
356
|
+
class DBClusterSnapshotAttributesResult
|
357
|
+
attr_accessor db_cluster_snapshot_identifier: ::String
|
358
|
+
attr_accessor db_cluster_snapshot_attributes: ::Array[Types::DBClusterSnapshotAttribute]
|
359
|
+
SENSITIVE: []
|
360
|
+
end
|
361
|
+
|
362
|
+
class DBClusterSnapshotMessage
|
363
|
+
attr_accessor marker: ::String
|
364
|
+
attr_accessor db_cluster_snapshots: ::Array[Types::DBClusterSnapshot]
|
365
|
+
SENSITIVE: []
|
366
|
+
end
|
367
|
+
|
368
|
+
class DBClusterSnapshotNotFoundFault < Aws::EmptyStructure
|
369
|
+
end
|
370
|
+
|
371
|
+
class DBEngineVersion
|
372
|
+
attr_accessor engine: ::String
|
373
|
+
attr_accessor engine_version: ::String
|
374
|
+
attr_accessor db_parameter_group_family: ::String
|
375
|
+
attr_accessor db_engine_description: ::String
|
376
|
+
attr_accessor db_engine_version_description: ::String
|
377
|
+
attr_accessor valid_upgrade_target: ::Array[Types::UpgradeTarget]
|
378
|
+
attr_accessor exportable_log_types: ::Array[::String]
|
379
|
+
attr_accessor supports_log_exports_to_cloudwatch_logs: bool
|
380
|
+
attr_accessor supported_ca_certificate_identifiers: ::Array[::String]
|
381
|
+
attr_accessor supports_certificate_rotation_without_restart: bool
|
382
|
+
SENSITIVE: []
|
383
|
+
end
|
384
|
+
|
385
|
+
class DBEngineVersionMessage
|
386
|
+
attr_accessor marker: ::String
|
387
|
+
attr_accessor db_engine_versions: ::Array[Types::DBEngineVersion]
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class DBInstance
|
392
|
+
attr_accessor db_instance_identifier: ::String
|
393
|
+
attr_accessor db_instance_class: ::String
|
394
|
+
attr_accessor engine: ::String
|
395
|
+
attr_accessor db_instance_status: ::String
|
396
|
+
attr_accessor endpoint: Types::Endpoint
|
397
|
+
attr_accessor instance_create_time: ::Time
|
398
|
+
attr_accessor preferred_backup_window: ::String
|
399
|
+
attr_accessor backup_retention_period: ::Integer
|
400
|
+
attr_accessor vpc_security_groups: ::Array[Types::VpcSecurityGroupMembership]
|
401
|
+
attr_accessor availability_zone: ::String
|
402
|
+
attr_accessor db_subnet_group: Types::DBSubnetGroup
|
403
|
+
attr_accessor preferred_maintenance_window: ::String
|
404
|
+
attr_accessor pending_modified_values: Types::PendingModifiedValues
|
405
|
+
attr_accessor latest_restorable_time: ::Time
|
406
|
+
attr_accessor engine_version: ::String
|
407
|
+
attr_accessor auto_minor_version_upgrade: bool
|
408
|
+
attr_accessor publicly_accessible: bool
|
409
|
+
attr_accessor status_infos: ::Array[Types::DBInstanceStatusInfo]
|
410
|
+
attr_accessor db_cluster_identifier: ::String
|
411
|
+
attr_accessor storage_encrypted: bool
|
412
|
+
attr_accessor kms_key_id: ::String
|
413
|
+
attr_accessor dbi_resource_id: ::String
|
414
|
+
attr_accessor ca_certificate_identifier: ::String
|
415
|
+
attr_accessor copy_tags_to_snapshot: bool
|
416
|
+
attr_accessor promotion_tier: ::Integer
|
417
|
+
attr_accessor db_instance_arn: ::String
|
418
|
+
attr_accessor enabled_cloudwatch_logs_exports: ::Array[::String]
|
419
|
+
attr_accessor certificate_details: Types::CertificateDetails
|
420
|
+
attr_accessor performance_insights_enabled: bool
|
421
|
+
attr_accessor performance_insights_kms_key_id: ::String
|
422
|
+
SENSITIVE: []
|
423
|
+
end
|
424
|
+
|
425
|
+
class DBInstanceAlreadyExistsFault < Aws::EmptyStructure
|
426
|
+
end
|
427
|
+
|
428
|
+
class DBInstanceMessage
|
429
|
+
attr_accessor marker: ::String
|
430
|
+
attr_accessor db_instances: ::Array[Types::DBInstance]
|
431
|
+
SENSITIVE: []
|
432
|
+
end
|
433
|
+
|
434
|
+
class DBInstanceNotFoundFault < Aws::EmptyStructure
|
435
|
+
end
|
436
|
+
|
437
|
+
class DBInstanceStatusInfo
|
438
|
+
attr_accessor status_type: ::String
|
439
|
+
attr_accessor normal: bool
|
440
|
+
attr_accessor status: ::String
|
441
|
+
attr_accessor message: ::String
|
442
|
+
SENSITIVE: []
|
443
|
+
end
|
444
|
+
|
445
|
+
class DBParameterGroupAlreadyExistsFault < Aws::EmptyStructure
|
446
|
+
end
|
447
|
+
|
448
|
+
class DBParameterGroupNotFoundFault < Aws::EmptyStructure
|
449
|
+
end
|
450
|
+
|
451
|
+
class DBParameterGroupQuotaExceededFault < Aws::EmptyStructure
|
452
|
+
end
|
453
|
+
|
454
|
+
class DBSecurityGroupNotFoundFault < Aws::EmptyStructure
|
455
|
+
end
|
456
|
+
|
457
|
+
class DBSnapshotAlreadyExistsFault < Aws::EmptyStructure
|
458
|
+
end
|
459
|
+
|
460
|
+
class DBSnapshotNotFoundFault < Aws::EmptyStructure
|
461
|
+
end
|
462
|
+
|
463
|
+
class DBSubnetGroup
|
464
|
+
attr_accessor db_subnet_group_name: ::String
|
465
|
+
attr_accessor db_subnet_group_description: ::String
|
466
|
+
attr_accessor vpc_id: ::String
|
467
|
+
attr_accessor subnet_group_status: ::String
|
468
|
+
attr_accessor subnets: ::Array[Types::Subnet]
|
469
|
+
attr_accessor db_subnet_group_arn: ::String
|
470
|
+
SENSITIVE: []
|
471
|
+
end
|
472
|
+
|
473
|
+
class DBSubnetGroupAlreadyExistsFault < Aws::EmptyStructure
|
474
|
+
end
|
475
|
+
|
476
|
+
class DBSubnetGroupDoesNotCoverEnoughAZs < Aws::EmptyStructure
|
477
|
+
end
|
478
|
+
|
479
|
+
class DBSubnetGroupMessage
|
480
|
+
attr_accessor marker: ::String
|
481
|
+
attr_accessor db_subnet_groups: ::Array[Types::DBSubnetGroup]
|
482
|
+
SENSITIVE: []
|
483
|
+
end
|
484
|
+
|
485
|
+
class DBSubnetGroupNotFoundFault < Aws::EmptyStructure
|
486
|
+
end
|
487
|
+
|
488
|
+
class DBSubnetGroupQuotaExceededFault < Aws::EmptyStructure
|
489
|
+
end
|
490
|
+
|
491
|
+
class DBSubnetQuotaExceededFault < Aws::EmptyStructure
|
492
|
+
end
|
493
|
+
|
494
|
+
class DBUpgradeDependencyFailureFault < Aws::EmptyStructure
|
495
|
+
end
|
496
|
+
|
497
|
+
class DeleteDBClusterMessage
|
498
|
+
attr_accessor db_cluster_identifier: ::String
|
499
|
+
attr_accessor skip_final_snapshot: bool
|
500
|
+
attr_accessor final_db_snapshot_identifier: ::String
|
501
|
+
SENSITIVE: []
|
502
|
+
end
|
503
|
+
|
504
|
+
class DeleteDBClusterParameterGroupMessage
|
505
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
506
|
+
SENSITIVE: []
|
507
|
+
end
|
508
|
+
|
509
|
+
class DeleteDBClusterResult
|
510
|
+
attr_accessor db_cluster: Types::DBCluster
|
511
|
+
SENSITIVE: []
|
512
|
+
end
|
513
|
+
|
514
|
+
class DeleteDBClusterSnapshotMessage
|
515
|
+
attr_accessor db_cluster_snapshot_identifier: ::String
|
516
|
+
SENSITIVE: []
|
517
|
+
end
|
518
|
+
|
519
|
+
class DeleteDBClusterSnapshotResult
|
520
|
+
attr_accessor db_cluster_snapshot: Types::DBClusterSnapshot
|
521
|
+
SENSITIVE: []
|
522
|
+
end
|
523
|
+
|
524
|
+
class DeleteDBInstanceMessage
|
525
|
+
attr_accessor db_instance_identifier: ::String
|
526
|
+
SENSITIVE: []
|
527
|
+
end
|
528
|
+
|
529
|
+
class DeleteDBInstanceResult
|
530
|
+
attr_accessor db_instance: Types::DBInstance
|
531
|
+
SENSITIVE: []
|
532
|
+
end
|
533
|
+
|
534
|
+
class DeleteDBSubnetGroupMessage
|
535
|
+
attr_accessor db_subnet_group_name: ::String
|
536
|
+
SENSITIVE: []
|
537
|
+
end
|
538
|
+
|
539
|
+
class DeleteEventSubscriptionMessage
|
540
|
+
attr_accessor subscription_name: ::String
|
541
|
+
SENSITIVE: []
|
542
|
+
end
|
543
|
+
|
544
|
+
class DeleteEventSubscriptionResult
|
545
|
+
attr_accessor event_subscription: Types::EventSubscription
|
546
|
+
SENSITIVE: []
|
547
|
+
end
|
548
|
+
|
549
|
+
class DeleteGlobalClusterMessage
|
550
|
+
attr_accessor global_cluster_identifier: ::String
|
551
|
+
SENSITIVE: []
|
552
|
+
end
|
553
|
+
|
554
|
+
class DeleteGlobalClusterResult
|
555
|
+
attr_accessor global_cluster: Types::GlobalCluster
|
556
|
+
SENSITIVE: []
|
557
|
+
end
|
558
|
+
|
559
|
+
class DescribeCertificatesMessage
|
560
|
+
attr_accessor certificate_identifier: ::String
|
561
|
+
attr_accessor filters: ::Array[Types::Filter]
|
562
|
+
attr_accessor max_records: ::Integer
|
563
|
+
attr_accessor marker: ::String
|
564
|
+
SENSITIVE: []
|
565
|
+
end
|
566
|
+
|
567
|
+
class DescribeDBClusterParameterGroupsMessage
|
568
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
569
|
+
attr_accessor filters: ::Array[Types::Filter]
|
570
|
+
attr_accessor max_records: ::Integer
|
571
|
+
attr_accessor marker: ::String
|
572
|
+
SENSITIVE: []
|
573
|
+
end
|
574
|
+
|
575
|
+
class DescribeDBClusterParametersMessage
|
576
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
577
|
+
attr_accessor source: ::String
|
578
|
+
attr_accessor filters: ::Array[Types::Filter]
|
579
|
+
attr_accessor max_records: ::Integer
|
580
|
+
attr_accessor marker: ::String
|
581
|
+
SENSITIVE: []
|
582
|
+
end
|
583
|
+
|
584
|
+
class DescribeDBClusterSnapshotAttributesMessage
|
585
|
+
attr_accessor db_cluster_snapshot_identifier: ::String
|
586
|
+
SENSITIVE: []
|
587
|
+
end
|
588
|
+
|
589
|
+
class DescribeDBClusterSnapshotAttributesResult
|
590
|
+
attr_accessor db_cluster_snapshot_attributes_result: Types::DBClusterSnapshotAttributesResult
|
591
|
+
SENSITIVE: []
|
592
|
+
end
|
593
|
+
|
594
|
+
class DescribeDBClusterSnapshotsMessage
|
595
|
+
attr_accessor db_cluster_identifier: ::String
|
596
|
+
attr_accessor db_cluster_snapshot_identifier: ::String
|
597
|
+
attr_accessor snapshot_type: ::String
|
598
|
+
attr_accessor filters: ::Array[Types::Filter]
|
599
|
+
attr_accessor max_records: ::Integer
|
600
|
+
attr_accessor marker: ::String
|
601
|
+
attr_accessor include_shared: bool
|
602
|
+
attr_accessor include_public: bool
|
603
|
+
SENSITIVE: []
|
604
|
+
end
|
605
|
+
|
606
|
+
class DescribeDBClustersMessage
|
607
|
+
attr_accessor db_cluster_identifier: ::String
|
608
|
+
attr_accessor filters: ::Array[Types::Filter]
|
609
|
+
attr_accessor max_records: ::Integer
|
610
|
+
attr_accessor marker: ::String
|
611
|
+
SENSITIVE: []
|
612
|
+
end
|
613
|
+
|
614
|
+
class DescribeDBEngineVersionsMessage
|
615
|
+
attr_accessor engine: ::String
|
616
|
+
attr_accessor engine_version: ::String
|
617
|
+
attr_accessor db_parameter_group_family: ::String
|
618
|
+
attr_accessor filters: ::Array[Types::Filter]
|
619
|
+
attr_accessor max_records: ::Integer
|
620
|
+
attr_accessor marker: ::String
|
621
|
+
attr_accessor default_only: bool
|
622
|
+
attr_accessor list_supported_character_sets: bool
|
623
|
+
attr_accessor list_supported_timezones: bool
|
624
|
+
SENSITIVE: []
|
625
|
+
end
|
626
|
+
|
627
|
+
class DescribeDBInstancesMessage
|
628
|
+
attr_accessor db_instance_identifier: ::String
|
629
|
+
attr_accessor filters: ::Array[Types::Filter]
|
630
|
+
attr_accessor max_records: ::Integer
|
631
|
+
attr_accessor marker: ::String
|
632
|
+
SENSITIVE: []
|
633
|
+
end
|
634
|
+
|
635
|
+
class DescribeDBSubnetGroupsMessage
|
636
|
+
attr_accessor db_subnet_group_name: ::String
|
637
|
+
attr_accessor filters: ::Array[Types::Filter]
|
638
|
+
attr_accessor max_records: ::Integer
|
639
|
+
attr_accessor marker: ::String
|
640
|
+
SENSITIVE: []
|
641
|
+
end
|
642
|
+
|
643
|
+
class DescribeEngineDefaultClusterParametersMessage
|
644
|
+
attr_accessor db_parameter_group_family: ::String
|
645
|
+
attr_accessor filters: ::Array[Types::Filter]
|
646
|
+
attr_accessor max_records: ::Integer
|
647
|
+
attr_accessor marker: ::String
|
648
|
+
SENSITIVE: []
|
649
|
+
end
|
650
|
+
|
651
|
+
class DescribeEngineDefaultClusterParametersResult
|
652
|
+
attr_accessor engine_defaults: Types::EngineDefaults
|
653
|
+
SENSITIVE: []
|
654
|
+
end
|
655
|
+
|
656
|
+
class DescribeEventCategoriesMessage
|
657
|
+
attr_accessor source_type: ::String
|
658
|
+
attr_accessor filters: ::Array[Types::Filter]
|
659
|
+
SENSITIVE: []
|
660
|
+
end
|
661
|
+
|
662
|
+
class DescribeEventSubscriptionsMessage
|
663
|
+
attr_accessor subscription_name: ::String
|
664
|
+
attr_accessor filters: ::Array[Types::Filter]
|
665
|
+
attr_accessor max_records: ::Integer
|
666
|
+
attr_accessor marker: ::String
|
667
|
+
SENSITIVE: []
|
668
|
+
end
|
669
|
+
|
670
|
+
class DescribeEventsMessage
|
671
|
+
attr_accessor source_identifier: ::String
|
672
|
+
attr_accessor source_type: ("db-instance" | "db-parameter-group" | "db-security-group" | "db-snapshot" | "db-cluster" | "db-cluster-snapshot")
|
673
|
+
attr_accessor start_time: ::Time
|
674
|
+
attr_accessor end_time: ::Time
|
675
|
+
attr_accessor duration: ::Integer
|
676
|
+
attr_accessor event_categories: ::Array[::String]
|
677
|
+
attr_accessor filters: ::Array[Types::Filter]
|
678
|
+
attr_accessor max_records: ::Integer
|
679
|
+
attr_accessor marker: ::String
|
680
|
+
SENSITIVE: []
|
681
|
+
end
|
682
|
+
|
683
|
+
class DescribeGlobalClustersMessage
|
684
|
+
attr_accessor global_cluster_identifier: ::String
|
685
|
+
attr_accessor filters: ::Array[Types::Filter]
|
686
|
+
attr_accessor max_records: ::Integer
|
687
|
+
attr_accessor marker: ::String
|
688
|
+
SENSITIVE: []
|
689
|
+
end
|
690
|
+
|
691
|
+
class DescribeOrderableDBInstanceOptionsMessage
|
692
|
+
attr_accessor engine: ::String
|
693
|
+
attr_accessor engine_version: ::String
|
694
|
+
attr_accessor db_instance_class: ::String
|
695
|
+
attr_accessor license_model: ::String
|
696
|
+
attr_accessor vpc: bool
|
697
|
+
attr_accessor filters: ::Array[Types::Filter]
|
698
|
+
attr_accessor max_records: ::Integer
|
699
|
+
attr_accessor marker: ::String
|
700
|
+
SENSITIVE: []
|
701
|
+
end
|
702
|
+
|
703
|
+
class DescribePendingMaintenanceActionsMessage
|
704
|
+
attr_accessor resource_identifier: ::String
|
705
|
+
attr_accessor filters: ::Array[Types::Filter]
|
706
|
+
attr_accessor marker: ::String
|
707
|
+
attr_accessor max_records: ::Integer
|
708
|
+
SENSITIVE: []
|
709
|
+
end
|
710
|
+
|
711
|
+
class Endpoint
|
712
|
+
attr_accessor address: ::String
|
713
|
+
attr_accessor port: ::Integer
|
714
|
+
attr_accessor hosted_zone_id: ::String
|
715
|
+
SENSITIVE: []
|
716
|
+
end
|
717
|
+
|
718
|
+
class EngineDefaults
|
719
|
+
attr_accessor db_parameter_group_family: ::String
|
720
|
+
attr_accessor marker: ::String
|
721
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
722
|
+
SENSITIVE: []
|
723
|
+
end
|
724
|
+
|
725
|
+
class Event
|
726
|
+
attr_accessor source_identifier: ::String
|
727
|
+
attr_accessor source_type: ("db-instance" | "db-parameter-group" | "db-security-group" | "db-snapshot" | "db-cluster" | "db-cluster-snapshot")
|
728
|
+
attr_accessor message: ::String
|
729
|
+
attr_accessor event_categories: ::Array[::String]
|
730
|
+
attr_accessor date: ::Time
|
731
|
+
attr_accessor source_arn: ::String
|
732
|
+
SENSITIVE: []
|
733
|
+
end
|
734
|
+
|
735
|
+
class EventCategoriesMap
|
736
|
+
attr_accessor source_type: ::String
|
737
|
+
attr_accessor event_categories: ::Array[::String]
|
738
|
+
SENSITIVE: []
|
739
|
+
end
|
740
|
+
|
741
|
+
class EventCategoriesMessage
|
742
|
+
attr_accessor event_categories_map_list: ::Array[Types::EventCategoriesMap]
|
743
|
+
SENSITIVE: []
|
744
|
+
end
|
745
|
+
|
746
|
+
class EventSubscription
|
747
|
+
attr_accessor customer_aws_id: ::String
|
748
|
+
attr_accessor cust_subscription_id: ::String
|
749
|
+
attr_accessor sns_topic_arn: ::String
|
750
|
+
attr_accessor status: ::String
|
751
|
+
attr_accessor subscription_creation_time: ::String
|
752
|
+
attr_accessor source_type: ::String
|
753
|
+
attr_accessor source_ids_list: ::Array[::String]
|
754
|
+
attr_accessor event_categories_list: ::Array[::String]
|
755
|
+
attr_accessor enabled: bool
|
756
|
+
attr_accessor event_subscription_arn: ::String
|
757
|
+
SENSITIVE: []
|
758
|
+
end
|
759
|
+
|
760
|
+
class EventSubscriptionQuotaExceededFault < Aws::EmptyStructure
|
761
|
+
end
|
762
|
+
|
763
|
+
class EventSubscriptionsMessage
|
764
|
+
attr_accessor marker: ::String
|
765
|
+
attr_accessor event_subscriptions_list: ::Array[Types::EventSubscription]
|
766
|
+
SENSITIVE: []
|
767
|
+
end
|
768
|
+
|
769
|
+
class EventsMessage
|
770
|
+
attr_accessor marker: ::String
|
771
|
+
attr_accessor events: ::Array[Types::Event]
|
772
|
+
SENSITIVE: []
|
773
|
+
end
|
774
|
+
|
775
|
+
class FailoverDBClusterMessage
|
776
|
+
attr_accessor db_cluster_identifier: ::String
|
777
|
+
attr_accessor target_db_instance_identifier: ::String
|
778
|
+
SENSITIVE: []
|
779
|
+
end
|
780
|
+
|
781
|
+
class FailoverDBClusterResult
|
782
|
+
attr_accessor db_cluster: Types::DBCluster
|
783
|
+
SENSITIVE: []
|
784
|
+
end
|
785
|
+
|
786
|
+
class Filter
|
787
|
+
attr_accessor name: ::String
|
788
|
+
attr_accessor values: ::Array[::String]
|
789
|
+
SENSITIVE: []
|
790
|
+
end
|
791
|
+
|
792
|
+
class GlobalCluster
|
793
|
+
attr_accessor global_cluster_identifier: ::String
|
794
|
+
attr_accessor global_cluster_resource_id: ::String
|
795
|
+
attr_accessor global_cluster_arn: ::String
|
796
|
+
attr_accessor status: ::String
|
797
|
+
attr_accessor engine: ::String
|
798
|
+
attr_accessor engine_version: ::String
|
799
|
+
attr_accessor database_name: ::String
|
800
|
+
attr_accessor storage_encrypted: bool
|
801
|
+
attr_accessor deletion_protection: bool
|
802
|
+
attr_accessor global_cluster_members: ::Array[Types::GlobalClusterMember]
|
803
|
+
SENSITIVE: []
|
804
|
+
end
|
805
|
+
|
806
|
+
class GlobalClusterAlreadyExistsFault < Aws::EmptyStructure
|
807
|
+
end
|
808
|
+
|
809
|
+
class GlobalClusterMember
|
810
|
+
attr_accessor db_cluster_arn: ::String
|
811
|
+
attr_accessor readers: ::Array[::String]
|
812
|
+
attr_accessor is_writer: bool
|
813
|
+
SENSITIVE: []
|
814
|
+
end
|
815
|
+
|
816
|
+
class GlobalClusterNotFoundFault < Aws::EmptyStructure
|
817
|
+
end
|
818
|
+
|
819
|
+
class GlobalClusterQuotaExceededFault < Aws::EmptyStructure
|
820
|
+
end
|
821
|
+
|
822
|
+
class GlobalClustersMessage
|
823
|
+
attr_accessor marker: ::String
|
824
|
+
attr_accessor global_clusters: ::Array[Types::GlobalCluster]
|
825
|
+
SENSITIVE: []
|
826
|
+
end
|
827
|
+
|
828
|
+
class InstanceQuotaExceededFault < Aws::EmptyStructure
|
829
|
+
end
|
830
|
+
|
831
|
+
class InsufficientDBClusterCapacityFault < Aws::EmptyStructure
|
832
|
+
end
|
833
|
+
|
834
|
+
class InsufficientDBInstanceCapacityFault < Aws::EmptyStructure
|
835
|
+
end
|
836
|
+
|
837
|
+
class InsufficientStorageClusterCapacityFault < Aws::EmptyStructure
|
838
|
+
end
|
839
|
+
|
840
|
+
class InvalidDBClusterSnapshotStateFault < Aws::EmptyStructure
|
841
|
+
end
|
842
|
+
|
843
|
+
class InvalidDBClusterStateFault < Aws::EmptyStructure
|
844
|
+
end
|
845
|
+
|
846
|
+
class InvalidDBInstanceStateFault < Aws::EmptyStructure
|
847
|
+
end
|
848
|
+
|
849
|
+
class InvalidDBParameterGroupStateFault < Aws::EmptyStructure
|
850
|
+
end
|
851
|
+
|
852
|
+
class InvalidDBSecurityGroupStateFault < Aws::EmptyStructure
|
853
|
+
end
|
854
|
+
|
855
|
+
class InvalidDBSnapshotStateFault < Aws::EmptyStructure
|
856
|
+
end
|
857
|
+
|
858
|
+
class InvalidDBSubnetGroupStateFault < Aws::EmptyStructure
|
859
|
+
end
|
860
|
+
|
861
|
+
class InvalidDBSubnetStateFault < Aws::EmptyStructure
|
862
|
+
end
|
863
|
+
|
864
|
+
class InvalidEventSubscriptionStateFault < Aws::EmptyStructure
|
865
|
+
end
|
866
|
+
|
867
|
+
class InvalidGlobalClusterStateFault < Aws::EmptyStructure
|
868
|
+
end
|
869
|
+
|
870
|
+
class InvalidRestoreFault < Aws::EmptyStructure
|
871
|
+
end
|
872
|
+
|
873
|
+
class InvalidSubnet < Aws::EmptyStructure
|
874
|
+
end
|
875
|
+
|
876
|
+
class InvalidVPCNetworkStateFault < Aws::EmptyStructure
|
877
|
+
end
|
878
|
+
|
879
|
+
class KMSKeyNotAccessibleFault < Aws::EmptyStructure
|
880
|
+
end
|
881
|
+
|
882
|
+
class ListTagsForResourceMessage
|
883
|
+
attr_accessor resource_name: ::String
|
884
|
+
attr_accessor filters: ::Array[Types::Filter]
|
885
|
+
SENSITIVE: []
|
886
|
+
end
|
887
|
+
|
888
|
+
class ModifyDBClusterMessage
|
889
|
+
attr_accessor db_cluster_identifier: ::String
|
890
|
+
attr_accessor new_db_cluster_identifier: ::String
|
891
|
+
attr_accessor apply_immediately: bool
|
892
|
+
attr_accessor backup_retention_period: ::Integer
|
893
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
894
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
895
|
+
attr_accessor port: ::Integer
|
896
|
+
attr_accessor master_user_password: ::String
|
897
|
+
attr_accessor preferred_backup_window: ::String
|
898
|
+
attr_accessor preferred_maintenance_window: ::String
|
899
|
+
attr_accessor cloudwatch_logs_export_configuration: Types::CloudwatchLogsExportConfiguration
|
900
|
+
attr_accessor engine_version: ::String
|
901
|
+
attr_accessor allow_major_version_upgrade: bool
|
902
|
+
attr_accessor deletion_protection: bool
|
903
|
+
attr_accessor storage_type: ::String
|
904
|
+
SENSITIVE: []
|
905
|
+
end
|
906
|
+
|
907
|
+
class ModifyDBClusterParameterGroupMessage
|
908
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
909
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
910
|
+
SENSITIVE: []
|
911
|
+
end
|
912
|
+
|
913
|
+
class ModifyDBClusterResult
|
914
|
+
attr_accessor db_cluster: Types::DBCluster
|
915
|
+
SENSITIVE: []
|
916
|
+
end
|
917
|
+
|
918
|
+
class ModifyDBClusterSnapshotAttributeMessage
|
919
|
+
attr_accessor db_cluster_snapshot_identifier: ::String
|
920
|
+
attr_accessor attribute_name: ::String
|
921
|
+
attr_accessor values_to_add: ::Array[::String]
|
922
|
+
attr_accessor values_to_remove: ::Array[::String]
|
923
|
+
SENSITIVE: []
|
924
|
+
end
|
925
|
+
|
926
|
+
class ModifyDBClusterSnapshotAttributeResult
|
927
|
+
attr_accessor db_cluster_snapshot_attributes_result: Types::DBClusterSnapshotAttributesResult
|
928
|
+
SENSITIVE: []
|
929
|
+
end
|
930
|
+
|
931
|
+
class ModifyDBInstanceMessage
|
932
|
+
attr_accessor db_instance_identifier: ::String
|
933
|
+
attr_accessor db_instance_class: ::String
|
934
|
+
attr_accessor apply_immediately: bool
|
935
|
+
attr_accessor preferred_maintenance_window: ::String
|
936
|
+
attr_accessor auto_minor_version_upgrade: bool
|
937
|
+
attr_accessor new_db_instance_identifier: ::String
|
938
|
+
attr_accessor ca_certificate_identifier: ::String
|
939
|
+
attr_accessor copy_tags_to_snapshot: bool
|
940
|
+
attr_accessor promotion_tier: ::Integer
|
941
|
+
attr_accessor enable_performance_insights: bool
|
942
|
+
attr_accessor performance_insights_kms_key_id: ::String
|
943
|
+
attr_accessor certificate_rotation_restart: bool
|
944
|
+
SENSITIVE: []
|
945
|
+
end
|
946
|
+
|
947
|
+
class ModifyDBInstanceResult
|
948
|
+
attr_accessor db_instance: Types::DBInstance
|
949
|
+
SENSITIVE: []
|
950
|
+
end
|
951
|
+
|
952
|
+
class ModifyDBSubnetGroupMessage
|
953
|
+
attr_accessor db_subnet_group_name: ::String
|
954
|
+
attr_accessor db_subnet_group_description: ::String
|
955
|
+
attr_accessor subnet_ids: ::Array[::String]
|
956
|
+
SENSITIVE: []
|
957
|
+
end
|
958
|
+
|
959
|
+
class ModifyDBSubnetGroupResult
|
960
|
+
attr_accessor db_subnet_group: Types::DBSubnetGroup
|
961
|
+
SENSITIVE: []
|
962
|
+
end
|
963
|
+
|
964
|
+
class ModifyEventSubscriptionMessage
|
965
|
+
attr_accessor subscription_name: ::String
|
966
|
+
attr_accessor sns_topic_arn: ::String
|
967
|
+
attr_accessor source_type: ::String
|
968
|
+
attr_accessor event_categories: ::Array[::String]
|
969
|
+
attr_accessor enabled: bool
|
970
|
+
SENSITIVE: []
|
971
|
+
end
|
972
|
+
|
973
|
+
class ModifyEventSubscriptionResult
|
974
|
+
attr_accessor event_subscription: Types::EventSubscription
|
975
|
+
SENSITIVE: []
|
976
|
+
end
|
977
|
+
|
978
|
+
class ModifyGlobalClusterMessage
|
979
|
+
attr_accessor global_cluster_identifier: ::String
|
980
|
+
attr_accessor new_global_cluster_identifier: ::String
|
981
|
+
attr_accessor deletion_protection: bool
|
982
|
+
SENSITIVE: []
|
983
|
+
end
|
984
|
+
|
985
|
+
class ModifyGlobalClusterResult
|
986
|
+
attr_accessor global_cluster: Types::GlobalCluster
|
987
|
+
SENSITIVE: []
|
988
|
+
end
|
989
|
+
|
990
|
+
class OrderableDBInstanceOption
|
991
|
+
attr_accessor engine: ::String
|
992
|
+
attr_accessor engine_version: ::String
|
993
|
+
attr_accessor db_instance_class: ::String
|
994
|
+
attr_accessor license_model: ::String
|
995
|
+
attr_accessor availability_zones: ::Array[Types::AvailabilityZone]
|
996
|
+
attr_accessor vpc: bool
|
997
|
+
attr_accessor storage_type: ::String
|
998
|
+
SENSITIVE: []
|
999
|
+
end
|
1000
|
+
|
1001
|
+
class OrderableDBInstanceOptionsMessage
|
1002
|
+
attr_accessor orderable_db_instance_options: ::Array[Types::OrderableDBInstanceOption]
|
1003
|
+
attr_accessor marker: ::String
|
1004
|
+
SENSITIVE: []
|
1005
|
+
end
|
1006
|
+
|
1007
|
+
class Parameter
|
1008
|
+
attr_accessor parameter_name: ::String
|
1009
|
+
attr_accessor parameter_value: ::String
|
1010
|
+
attr_accessor description: ::String
|
1011
|
+
attr_accessor source: ::String
|
1012
|
+
attr_accessor apply_type: ::String
|
1013
|
+
attr_accessor data_type: ::String
|
1014
|
+
attr_accessor allowed_values: ::String
|
1015
|
+
attr_accessor is_modifiable: bool
|
1016
|
+
attr_accessor minimum_engine_version: ::String
|
1017
|
+
attr_accessor apply_method: ("immediate" | "pending-reboot")
|
1018
|
+
SENSITIVE: []
|
1019
|
+
end
|
1020
|
+
|
1021
|
+
class PendingCloudwatchLogsExports
|
1022
|
+
attr_accessor log_types_to_enable: ::Array[::String]
|
1023
|
+
attr_accessor log_types_to_disable: ::Array[::String]
|
1024
|
+
SENSITIVE: []
|
1025
|
+
end
|
1026
|
+
|
1027
|
+
class PendingMaintenanceAction
|
1028
|
+
attr_accessor action: ::String
|
1029
|
+
attr_accessor auto_applied_after_date: ::Time
|
1030
|
+
attr_accessor forced_apply_date: ::Time
|
1031
|
+
attr_accessor opt_in_status: ::String
|
1032
|
+
attr_accessor current_apply_date: ::Time
|
1033
|
+
attr_accessor description: ::String
|
1034
|
+
SENSITIVE: []
|
1035
|
+
end
|
1036
|
+
|
1037
|
+
class PendingMaintenanceActionsMessage
|
1038
|
+
attr_accessor pending_maintenance_actions: ::Array[Types::ResourcePendingMaintenanceActions]
|
1039
|
+
attr_accessor marker: ::String
|
1040
|
+
SENSITIVE: []
|
1041
|
+
end
|
1042
|
+
|
1043
|
+
class PendingModifiedValues
|
1044
|
+
attr_accessor db_instance_class: ::String
|
1045
|
+
attr_accessor allocated_storage: ::Integer
|
1046
|
+
attr_accessor master_user_password: ::String
|
1047
|
+
attr_accessor port: ::Integer
|
1048
|
+
attr_accessor backup_retention_period: ::Integer
|
1049
|
+
attr_accessor multi_az: bool
|
1050
|
+
attr_accessor engine_version: ::String
|
1051
|
+
attr_accessor license_model: ::String
|
1052
|
+
attr_accessor iops: ::Integer
|
1053
|
+
attr_accessor db_instance_identifier: ::String
|
1054
|
+
attr_accessor storage_type: ::String
|
1055
|
+
attr_accessor ca_certificate_identifier: ::String
|
1056
|
+
attr_accessor db_subnet_group_name: ::String
|
1057
|
+
attr_accessor pending_cloudwatch_logs_exports: Types::PendingCloudwatchLogsExports
|
1058
|
+
SENSITIVE: []
|
1059
|
+
end
|
1060
|
+
|
1061
|
+
class RebootDBInstanceMessage
|
1062
|
+
attr_accessor db_instance_identifier: ::String
|
1063
|
+
attr_accessor force_failover: bool
|
1064
|
+
SENSITIVE: []
|
1065
|
+
end
|
1066
|
+
|
1067
|
+
class RebootDBInstanceResult
|
1068
|
+
attr_accessor db_instance: Types::DBInstance
|
1069
|
+
SENSITIVE: []
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
class RemoveFromGlobalClusterMessage
|
1073
|
+
attr_accessor global_cluster_identifier: ::String
|
1074
|
+
attr_accessor db_cluster_identifier: ::String
|
1075
|
+
SENSITIVE: []
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
class RemoveFromGlobalClusterResult
|
1079
|
+
attr_accessor global_cluster: Types::GlobalCluster
|
1080
|
+
SENSITIVE: []
|
1081
|
+
end
|
1082
|
+
|
1083
|
+
class RemoveSourceIdentifierFromSubscriptionMessage
|
1084
|
+
attr_accessor subscription_name: ::String
|
1085
|
+
attr_accessor source_identifier: ::String
|
1086
|
+
SENSITIVE: []
|
1087
|
+
end
|
1088
|
+
|
1089
|
+
class RemoveSourceIdentifierFromSubscriptionResult
|
1090
|
+
attr_accessor event_subscription: Types::EventSubscription
|
1091
|
+
SENSITIVE: []
|
1092
|
+
end
|
1093
|
+
|
1094
|
+
class RemoveTagsFromResourceMessage
|
1095
|
+
attr_accessor resource_name: ::String
|
1096
|
+
attr_accessor tag_keys: ::Array[::String]
|
1097
|
+
SENSITIVE: []
|
1098
|
+
end
|
1099
|
+
|
1100
|
+
class ResetDBClusterParameterGroupMessage
|
1101
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
1102
|
+
attr_accessor reset_all_parameters: bool
|
1103
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
1104
|
+
SENSITIVE: []
|
1105
|
+
end
|
1106
|
+
|
1107
|
+
class ResourceNotFoundFault < Aws::EmptyStructure
|
1108
|
+
end
|
1109
|
+
|
1110
|
+
class ResourcePendingMaintenanceActions
|
1111
|
+
attr_accessor resource_identifier: ::String
|
1112
|
+
attr_accessor pending_maintenance_action_details: ::Array[Types::PendingMaintenanceAction]
|
1113
|
+
SENSITIVE: []
|
1114
|
+
end
|
1115
|
+
|
1116
|
+
class RestoreDBClusterFromSnapshotMessage
|
1117
|
+
attr_accessor availability_zones: ::Array[::String]
|
1118
|
+
attr_accessor db_cluster_identifier: ::String
|
1119
|
+
attr_accessor snapshot_identifier: ::String
|
1120
|
+
attr_accessor engine: ::String
|
1121
|
+
attr_accessor engine_version: ::String
|
1122
|
+
attr_accessor port: ::Integer
|
1123
|
+
attr_accessor db_subnet_group_name: ::String
|
1124
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
1125
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1126
|
+
attr_accessor kms_key_id: ::String
|
1127
|
+
attr_accessor enable_cloudwatch_logs_exports: ::Array[::String]
|
1128
|
+
attr_accessor deletion_protection: bool
|
1129
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
1130
|
+
attr_accessor storage_type: ::String
|
1131
|
+
SENSITIVE: []
|
1132
|
+
end
|
1133
|
+
|
1134
|
+
class RestoreDBClusterFromSnapshotResult
|
1135
|
+
attr_accessor db_cluster: Types::DBCluster
|
1136
|
+
SENSITIVE: []
|
1137
|
+
end
|
1138
|
+
|
1139
|
+
class RestoreDBClusterToPointInTimeMessage
|
1140
|
+
attr_accessor db_cluster_identifier: ::String
|
1141
|
+
attr_accessor restore_type: ::String
|
1142
|
+
attr_accessor source_db_cluster_identifier: ::String
|
1143
|
+
attr_accessor restore_to_time: ::Time
|
1144
|
+
attr_accessor use_latest_restorable_time: bool
|
1145
|
+
attr_accessor port: ::Integer
|
1146
|
+
attr_accessor db_subnet_group_name: ::String
|
1147
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
1148
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1149
|
+
attr_accessor kms_key_id: ::String
|
1150
|
+
attr_accessor enable_cloudwatch_logs_exports: ::Array[::String]
|
1151
|
+
attr_accessor deletion_protection: bool
|
1152
|
+
attr_accessor storage_type: ::String
|
1153
|
+
SENSITIVE: []
|
1154
|
+
end
|
1155
|
+
|
1156
|
+
class RestoreDBClusterToPointInTimeResult
|
1157
|
+
attr_accessor db_cluster: Types::DBCluster
|
1158
|
+
SENSITIVE: []
|
1159
|
+
end
|
1160
|
+
|
1161
|
+
class SNSInvalidTopicFault < Aws::EmptyStructure
|
1162
|
+
end
|
1163
|
+
|
1164
|
+
class SNSNoAuthorizationFault < Aws::EmptyStructure
|
1165
|
+
end
|
1166
|
+
|
1167
|
+
class SNSTopicArnNotFoundFault < Aws::EmptyStructure
|
1168
|
+
end
|
1169
|
+
|
1170
|
+
class SharedSnapshotQuotaExceededFault < Aws::EmptyStructure
|
1171
|
+
end
|
1172
|
+
|
1173
|
+
class SnapshotQuotaExceededFault < Aws::EmptyStructure
|
1174
|
+
end
|
1175
|
+
|
1176
|
+
class SourceNotFoundFault < Aws::EmptyStructure
|
1177
|
+
end
|
1178
|
+
|
1179
|
+
class StartDBClusterMessage
|
1180
|
+
attr_accessor db_cluster_identifier: ::String
|
1181
|
+
SENSITIVE: []
|
1182
|
+
end
|
1183
|
+
|
1184
|
+
class StartDBClusterResult
|
1185
|
+
attr_accessor db_cluster: Types::DBCluster
|
1186
|
+
SENSITIVE: []
|
1187
|
+
end
|
1188
|
+
|
1189
|
+
class StopDBClusterMessage
|
1190
|
+
attr_accessor db_cluster_identifier: ::String
|
1191
|
+
SENSITIVE: []
|
1192
|
+
end
|
1193
|
+
|
1194
|
+
class StopDBClusterResult
|
1195
|
+
attr_accessor db_cluster: Types::DBCluster
|
1196
|
+
SENSITIVE: []
|
1197
|
+
end
|
1198
|
+
|
1199
|
+
class StorageQuotaExceededFault < Aws::EmptyStructure
|
1200
|
+
end
|
1201
|
+
|
1202
|
+
class StorageTypeNotSupportedFault < Aws::EmptyStructure
|
1203
|
+
end
|
1204
|
+
|
1205
|
+
class Subnet
|
1206
|
+
attr_accessor subnet_identifier: ::String
|
1207
|
+
attr_accessor subnet_availability_zone: Types::AvailabilityZone
|
1208
|
+
attr_accessor subnet_status: ::String
|
1209
|
+
SENSITIVE: []
|
1210
|
+
end
|
1211
|
+
|
1212
|
+
class SubnetAlreadyInUse < Aws::EmptyStructure
|
1213
|
+
end
|
1214
|
+
|
1215
|
+
class SubscriptionAlreadyExistFault < Aws::EmptyStructure
|
1216
|
+
end
|
1217
|
+
|
1218
|
+
class SubscriptionCategoryNotFoundFault < Aws::EmptyStructure
|
1219
|
+
end
|
1220
|
+
|
1221
|
+
class SubscriptionNotFoundFault < Aws::EmptyStructure
|
1222
|
+
end
|
1223
|
+
|
1224
|
+
class Tag
|
1225
|
+
attr_accessor key: ::String
|
1226
|
+
attr_accessor value: ::String
|
1227
|
+
SENSITIVE: []
|
1228
|
+
end
|
1229
|
+
|
1230
|
+
class TagListMessage
|
1231
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
1232
|
+
SENSITIVE: []
|
1233
|
+
end
|
1234
|
+
|
1235
|
+
class UpgradeTarget
|
1236
|
+
attr_accessor engine: ::String
|
1237
|
+
attr_accessor engine_version: ::String
|
1238
|
+
attr_accessor description: ::String
|
1239
|
+
attr_accessor auto_upgrade: bool
|
1240
|
+
attr_accessor is_major_version_upgrade: bool
|
1241
|
+
SENSITIVE: []
|
1242
|
+
end
|
1243
|
+
|
1244
|
+
class VpcSecurityGroupMembership
|
1245
|
+
attr_accessor vpc_security_group_id: ::String
|
1246
|
+
attr_accessor status: ::String
|
1247
|
+
SENSITIVE: []
|
1248
|
+
end
|
1249
|
+
end
|
1250
|
+
end
|