aws-sdk-rds 1.213.0 → 1.215.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-rds/client.rb +1 -1
- data/lib/aws-sdk-rds/client_api.rb +2 -0
- data/lib/aws-sdk-rds/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/account_quota.rbs +41 -0
- data/sig/certificate.rbs +59 -0
- data/sig/client.rbs +3515 -0
- data/sig/db_cluster.rbs +524 -0
- data/sig/db_cluster_parameter_group.rbs +106 -0
- data/sig/db_cluster_snapshot.rbs +213 -0
- data/sig/db_engine.rbs +79 -0
- data/sig/db_engine_version.rbs +163 -0
- data/sig/db_instance.rbs +681 -0
- data/sig/db_log_file.rbs +51 -0
- data/sig/db_parameter_group.rbs +158 -0
- data/sig/db_parameter_group_family.rbs +58 -0
- data/sig/db_security_group.rbs +118 -0
- data/sig/db_snapshot.rbs +271 -0
- data/sig/db_snapshot_attribute.rbs +48 -0
- data/sig/db_subnet_group.rbs +81 -0
- data/sig/errors.rbs +306 -0
- data/sig/event.rbs +50 -0
- data/sig/event_category_map.rbs +40 -0
- data/sig/event_subscription.rbs +107 -0
- data/sig/option_group.rbs +129 -0
- data/sig/option_group_option.rbs +82 -0
- data/sig/parameter.rbs +65 -0
- data/sig/pending_maintenance_action.rbs +68 -0
- data/sig/reserved_db_instance.rbs +86 -0
- data/sig/reserved_db_instances_offering.rbs +78 -0
- data/sig/resource.rbs +599 -0
- data/sig/resource_pending_maintenance_action_list.rbs +41 -0
- data/sig/types.rbs +4275 -0
- data/sig/waiters.rbs +217 -0
- metadata +34 -4
data/sig/types.rbs
ADDED
@@ -0,0 +1,4275 @@
|
|
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::RDS
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccountAttributesMessage
|
12
|
+
attr_accessor account_quotas: ::Array[Types::AccountQuota]
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AccountQuota
|
17
|
+
attr_accessor account_quota_name: ::String
|
18
|
+
attr_accessor used: ::Integer
|
19
|
+
attr_accessor max: ::Integer
|
20
|
+
SENSITIVE: []
|
21
|
+
end
|
22
|
+
|
23
|
+
class AddRoleToDBClusterMessage
|
24
|
+
attr_accessor db_cluster_identifier: ::String
|
25
|
+
attr_accessor role_arn: ::String
|
26
|
+
attr_accessor feature_name: ::String
|
27
|
+
SENSITIVE: []
|
28
|
+
end
|
29
|
+
|
30
|
+
class AddRoleToDBInstanceMessage
|
31
|
+
attr_accessor db_instance_identifier: ::String
|
32
|
+
attr_accessor role_arn: ::String
|
33
|
+
attr_accessor feature_name: ::String
|
34
|
+
SENSITIVE: []
|
35
|
+
end
|
36
|
+
|
37
|
+
class AddSourceIdentifierToSubscriptionMessage
|
38
|
+
attr_accessor subscription_name: ::String
|
39
|
+
attr_accessor source_identifier: ::String
|
40
|
+
SENSITIVE: []
|
41
|
+
end
|
42
|
+
|
43
|
+
class AddSourceIdentifierToSubscriptionResult
|
44
|
+
attr_accessor event_subscription: Types::EventSubscription
|
45
|
+
SENSITIVE: []
|
46
|
+
end
|
47
|
+
|
48
|
+
class AddTagsToResourceMessage
|
49
|
+
attr_accessor resource_name: ::String
|
50
|
+
attr_accessor tags: ::Array[Types::Tag]
|
51
|
+
SENSITIVE: []
|
52
|
+
end
|
53
|
+
|
54
|
+
class ApplyPendingMaintenanceActionMessage
|
55
|
+
attr_accessor resource_identifier: ::String
|
56
|
+
attr_accessor apply_action: ::String
|
57
|
+
attr_accessor opt_in_type: ::String
|
58
|
+
SENSITIVE: []
|
59
|
+
end
|
60
|
+
|
61
|
+
class ApplyPendingMaintenanceActionResult
|
62
|
+
attr_accessor resource_pending_maintenance_actions: Types::ResourcePendingMaintenanceActions
|
63
|
+
SENSITIVE: []
|
64
|
+
end
|
65
|
+
|
66
|
+
class AuthorizationAlreadyExistsFault < Aws::EmptyStructure
|
67
|
+
end
|
68
|
+
|
69
|
+
class AuthorizationNotFoundFault < Aws::EmptyStructure
|
70
|
+
end
|
71
|
+
|
72
|
+
class AuthorizationQuotaExceededFault < Aws::EmptyStructure
|
73
|
+
end
|
74
|
+
|
75
|
+
class AuthorizeDBSecurityGroupIngressMessage
|
76
|
+
attr_accessor db_security_group_name: ::String
|
77
|
+
attr_accessor cidrip: ::String
|
78
|
+
attr_accessor ec2_security_group_name: ::String
|
79
|
+
attr_accessor ec2_security_group_id: ::String
|
80
|
+
attr_accessor ec2_security_group_owner_id: ::String
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class AuthorizeDBSecurityGroupIngressResult
|
85
|
+
attr_accessor db_security_group: Types::DBSecurityGroup
|
86
|
+
SENSITIVE: []
|
87
|
+
end
|
88
|
+
|
89
|
+
class AvailabilityZone
|
90
|
+
attr_accessor name: ::String
|
91
|
+
SENSITIVE: []
|
92
|
+
end
|
93
|
+
|
94
|
+
class AvailableProcessorFeature
|
95
|
+
attr_accessor name: ::String
|
96
|
+
attr_accessor default_value: ::String
|
97
|
+
attr_accessor allowed_values: ::String
|
98
|
+
SENSITIVE: []
|
99
|
+
end
|
100
|
+
|
101
|
+
class BacktrackDBClusterMessage
|
102
|
+
attr_accessor db_cluster_identifier: ::String
|
103
|
+
attr_accessor backtrack_to: ::Time
|
104
|
+
attr_accessor force: bool
|
105
|
+
attr_accessor use_earliest_time_on_point_in_time_unavailable: bool
|
106
|
+
SENSITIVE: []
|
107
|
+
end
|
108
|
+
|
109
|
+
class BackupPolicyNotFoundFault < Aws::EmptyStructure
|
110
|
+
end
|
111
|
+
|
112
|
+
class BlueGreenDeployment
|
113
|
+
attr_accessor blue_green_deployment_identifier: ::String
|
114
|
+
attr_accessor blue_green_deployment_name: ::String
|
115
|
+
attr_accessor source: ::String
|
116
|
+
attr_accessor target: ::String
|
117
|
+
attr_accessor switchover_details: ::Array[Types::SwitchoverDetail]
|
118
|
+
attr_accessor tasks: ::Array[Types::BlueGreenDeploymentTask]
|
119
|
+
attr_accessor status: ::String
|
120
|
+
attr_accessor status_details: ::String
|
121
|
+
attr_accessor create_time: ::Time
|
122
|
+
attr_accessor delete_time: ::Time
|
123
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
124
|
+
SENSITIVE: []
|
125
|
+
end
|
126
|
+
|
127
|
+
class BlueGreenDeploymentAlreadyExistsFault < Aws::EmptyStructure
|
128
|
+
end
|
129
|
+
|
130
|
+
class BlueGreenDeploymentNotFoundFault < Aws::EmptyStructure
|
131
|
+
end
|
132
|
+
|
133
|
+
class BlueGreenDeploymentTask
|
134
|
+
attr_accessor name: ::String
|
135
|
+
attr_accessor status: ::String
|
136
|
+
SENSITIVE: []
|
137
|
+
end
|
138
|
+
|
139
|
+
class CancelExportTaskMessage
|
140
|
+
attr_accessor export_task_identifier: ::String
|
141
|
+
SENSITIVE: []
|
142
|
+
end
|
143
|
+
|
144
|
+
class Certificate
|
145
|
+
attr_accessor certificate_identifier: ::String
|
146
|
+
attr_accessor certificate_type: ::String
|
147
|
+
attr_accessor thumbprint: ::String
|
148
|
+
attr_accessor valid_from: ::Time
|
149
|
+
attr_accessor valid_till: ::Time
|
150
|
+
attr_accessor certificate_arn: ::String
|
151
|
+
attr_accessor customer_override: bool
|
152
|
+
attr_accessor customer_override_valid_till: ::Time
|
153
|
+
SENSITIVE: []
|
154
|
+
end
|
155
|
+
|
156
|
+
class CertificateDetails
|
157
|
+
attr_accessor ca_identifier: ::String
|
158
|
+
attr_accessor valid_till: ::Time
|
159
|
+
SENSITIVE: []
|
160
|
+
end
|
161
|
+
|
162
|
+
class CertificateMessage
|
163
|
+
attr_accessor default_certificate_for_new_launches: ::String
|
164
|
+
attr_accessor certificates: ::Array[Types::Certificate]
|
165
|
+
attr_accessor marker: ::String
|
166
|
+
SENSITIVE: []
|
167
|
+
end
|
168
|
+
|
169
|
+
class CertificateNotFoundFault < Aws::EmptyStructure
|
170
|
+
end
|
171
|
+
|
172
|
+
class CharacterSet
|
173
|
+
attr_accessor character_set_name: ::String
|
174
|
+
attr_accessor character_set_description: ::String
|
175
|
+
SENSITIVE: []
|
176
|
+
end
|
177
|
+
|
178
|
+
class CloudwatchLogsExportConfiguration
|
179
|
+
attr_accessor enable_log_types: ::Array[::String]
|
180
|
+
attr_accessor disable_log_types: ::Array[::String]
|
181
|
+
SENSITIVE: []
|
182
|
+
end
|
183
|
+
|
184
|
+
class ClusterPendingModifiedValues
|
185
|
+
attr_accessor pending_cloudwatch_logs_exports: Types::PendingCloudwatchLogsExports
|
186
|
+
attr_accessor db_cluster_identifier: ::String
|
187
|
+
attr_accessor master_user_password: ::String
|
188
|
+
attr_accessor iam_database_authentication_enabled: bool
|
189
|
+
attr_accessor engine_version: ::String
|
190
|
+
attr_accessor backup_retention_period: ::Integer
|
191
|
+
attr_accessor allocated_storage: ::Integer
|
192
|
+
attr_accessor rds_custom_cluster_configuration: Types::RdsCustomClusterConfiguration
|
193
|
+
attr_accessor iops: ::Integer
|
194
|
+
attr_accessor storage_type: ::String
|
195
|
+
SENSITIVE: []
|
196
|
+
end
|
197
|
+
|
198
|
+
class ConnectionPoolConfiguration
|
199
|
+
attr_accessor max_connections_percent: ::Integer
|
200
|
+
attr_accessor max_idle_connections_percent: ::Integer
|
201
|
+
attr_accessor connection_borrow_timeout: ::Integer
|
202
|
+
attr_accessor session_pinning_filters: ::Array[::String]
|
203
|
+
attr_accessor init_query: ::String
|
204
|
+
SENSITIVE: []
|
205
|
+
end
|
206
|
+
|
207
|
+
class ConnectionPoolConfigurationInfo
|
208
|
+
attr_accessor max_connections_percent: ::Integer
|
209
|
+
attr_accessor max_idle_connections_percent: ::Integer
|
210
|
+
attr_accessor connection_borrow_timeout: ::Integer
|
211
|
+
attr_accessor session_pinning_filters: ::Array[::String]
|
212
|
+
attr_accessor init_query: ::String
|
213
|
+
SENSITIVE: []
|
214
|
+
end
|
215
|
+
|
216
|
+
class ContextAttribute
|
217
|
+
attr_accessor key: ::String
|
218
|
+
attr_accessor value: ::String
|
219
|
+
SENSITIVE: []
|
220
|
+
end
|
221
|
+
|
222
|
+
class CopyDBClusterParameterGroupMessage
|
223
|
+
attr_accessor source_db_cluster_parameter_group_identifier: ::String
|
224
|
+
attr_accessor target_db_cluster_parameter_group_identifier: ::String
|
225
|
+
attr_accessor target_db_cluster_parameter_group_description: ::String
|
226
|
+
attr_accessor tags: ::Array[Types::Tag]
|
227
|
+
SENSITIVE: []
|
228
|
+
end
|
229
|
+
|
230
|
+
class CopyDBClusterParameterGroupResult
|
231
|
+
attr_accessor db_cluster_parameter_group: Types::DBClusterParameterGroup
|
232
|
+
SENSITIVE: []
|
233
|
+
end
|
234
|
+
|
235
|
+
class CopyDBClusterSnapshotMessage
|
236
|
+
attr_accessor source_db_cluster_snapshot_identifier: ::String
|
237
|
+
attr_accessor target_db_cluster_snapshot_identifier: ::String
|
238
|
+
attr_accessor kms_key_id: ::String
|
239
|
+
attr_accessor pre_signed_url: ::String
|
240
|
+
attr_accessor copy_tags: bool
|
241
|
+
attr_accessor tags: ::Array[Types::Tag]
|
242
|
+
attr_accessor source_region: ::String
|
243
|
+
SENSITIVE: []
|
244
|
+
end
|
245
|
+
|
246
|
+
class CopyDBClusterSnapshotResult
|
247
|
+
attr_accessor db_cluster_snapshot: Types::DBClusterSnapshot
|
248
|
+
SENSITIVE: []
|
249
|
+
end
|
250
|
+
|
251
|
+
class CopyDBParameterGroupMessage
|
252
|
+
attr_accessor source_db_parameter_group_identifier: ::String
|
253
|
+
attr_accessor target_db_parameter_group_identifier: ::String
|
254
|
+
attr_accessor target_db_parameter_group_description: ::String
|
255
|
+
attr_accessor tags: ::Array[Types::Tag]
|
256
|
+
SENSITIVE: []
|
257
|
+
end
|
258
|
+
|
259
|
+
class CopyDBParameterGroupResult
|
260
|
+
attr_accessor db_parameter_group: Types::DBParameterGroup
|
261
|
+
SENSITIVE: []
|
262
|
+
end
|
263
|
+
|
264
|
+
class CopyDBSnapshotMessage
|
265
|
+
attr_accessor source_db_snapshot_identifier: ::String
|
266
|
+
attr_accessor target_db_snapshot_identifier: ::String
|
267
|
+
attr_accessor kms_key_id: ::String
|
268
|
+
attr_accessor tags: ::Array[Types::Tag]
|
269
|
+
attr_accessor copy_tags: bool
|
270
|
+
attr_accessor pre_signed_url: ::String
|
271
|
+
attr_accessor option_group_name: ::String
|
272
|
+
attr_accessor target_custom_availability_zone: ::String
|
273
|
+
attr_accessor copy_option_group: bool
|
274
|
+
attr_accessor source_region: ::String
|
275
|
+
SENSITIVE: []
|
276
|
+
end
|
277
|
+
|
278
|
+
class CopyDBSnapshotResult
|
279
|
+
attr_accessor db_snapshot: Types::DBSnapshot
|
280
|
+
SENSITIVE: []
|
281
|
+
end
|
282
|
+
|
283
|
+
class CopyOptionGroupMessage
|
284
|
+
attr_accessor source_option_group_identifier: ::String
|
285
|
+
attr_accessor target_option_group_identifier: ::String
|
286
|
+
attr_accessor target_option_group_description: ::String
|
287
|
+
attr_accessor tags: ::Array[Types::Tag]
|
288
|
+
SENSITIVE: []
|
289
|
+
end
|
290
|
+
|
291
|
+
class CopyOptionGroupResult
|
292
|
+
attr_accessor option_group: Types::OptionGroup
|
293
|
+
SENSITIVE: []
|
294
|
+
end
|
295
|
+
|
296
|
+
class CreateBlueGreenDeploymentRequest
|
297
|
+
attr_accessor blue_green_deployment_name: ::String
|
298
|
+
attr_accessor source: ::String
|
299
|
+
attr_accessor target_engine_version: ::String
|
300
|
+
attr_accessor target_db_parameter_group_name: ::String
|
301
|
+
attr_accessor target_db_cluster_parameter_group_name: ::String
|
302
|
+
attr_accessor tags: ::Array[Types::Tag]
|
303
|
+
attr_accessor target_db_instance_class: ::String
|
304
|
+
attr_accessor upgrade_target_storage_config: bool
|
305
|
+
SENSITIVE: []
|
306
|
+
end
|
307
|
+
|
308
|
+
class CreateBlueGreenDeploymentResponse
|
309
|
+
attr_accessor blue_green_deployment: Types::BlueGreenDeployment
|
310
|
+
SENSITIVE: []
|
311
|
+
end
|
312
|
+
|
313
|
+
class CreateCustomDBEngineVersionFault < Aws::EmptyStructure
|
314
|
+
end
|
315
|
+
|
316
|
+
class CreateCustomDBEngineVersionMessage
|
317
|
+
attr_accessor engine: ::String
|
318
|
+
attr_accessor engine_version: ::String
|
319
|
+
attr_accessor database_installation_files_s3_bucket_name: ::String
|
320
|
+
attr_accessor database_installation_files_s3_prefix: ::String
|
321
|
+
attr_accessor image_id: ::String
|
322
|
+
attr_accessor kms_key_id: ::String
|
323
|
+
attr_accessor description: ::String
|
324
|
+
attr_accessor manifest: ::String
|
325
|
+
attr_accessor tags: ::Array[Types::Tag]
|
326
|
+
attr_accessor source_custom_db_engine_version_identifier: ::String
|
327
|
+
attr_accessor use_aws_provided_latest_image: bool
|
328
|
+
SENSITIVE: []
|
329
|
+
end
|
330
|
+
|
331
|
+
class CreateDBClusterEndpointMessage
|
332
|
+
attr_accessor db_cluster_identifier: ::String
|
333
|
+
attr_accessor db_cluster_endpoint_identifier: ::String
|
334
|
+
attr_accessor endpoint_type: ::String
|
335
|
+
attr_accessor static_members: ::Array[::String]
|
336
|
+
attr_accessor excluded_members: ::Array[::String]
|
337
|
+
attr_accessor tags: ::Array[Types::Tag]
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class CreateDBClusterMessage
|
342
|
+
attr_accessor availability_zones: ::Array[::String]
|
343
|
+
attr_accessor backup_retention_period: ::Integer
|
344
|
+
attr_accessor character_set_name: ::String
|
345
|
+
attr_accessor database_name: ::String
|
346
|
+
attr_accessor db_cluster_identifier: ::String
|
347
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
348
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
349
|
+
attr_accessor db_subnet_group_name: ::String
|
350
|
+
attr_accessor engine: ::String
|
351
|
+
attr_accessor engine_version: ::String
|
352
|
+
attr_accessor port: ::Integer
|
353
|
+
attr_accessor master_username: ::String
|
354
|
+
attr_accessor master_user_password: ::String
|
355
|
+
attr_accessor option_group_name: ::String
|
356
|
+
attr_accessor preferred_backup_window: ::String
|
357
|
+
attr_accessor preferred_maintenance_window: ::String
|
358
|
+
attr_accessor replication_source_identifier: ::String
|
359
|
+
attr_accessor tags: ::Array[Types::Tag]
|
360
|
+
attr_accessor storage_encrypted: bool
|
361
|
+
attr_accessor kms_key_id: ::String
|
362
|
+
attr_accessor pre_signed_url: ::String
|
363
|
+
attr_accessor enable_iam_database_authentication: bool
|
364
|
+
attr_accessor backtrack_window: ::Integer
|
365
|
+
attr_accessor enable_cloudwatch_logs_exports: ::Array[::String]
|
366
|
+
attr_accessor engine_mode: ::String
|
367
|
+
attr_accessor scaling_configuration: Types::ScalingConfiguration
|
368
|
+
attr_accessor rds_custom_cluster_configuration: Types::RdsCustomClusterConfiguration
|
369
|
+
attr_accessor deletion_protection: bool
|
370
|
+
attr_accessor global_cluster_identifier: ::String
|
371
|
+
attr_accessor enable_http_endpoint: bool
|
372
|
+
attr_accessor copy_tags_to_snapshot: bool
|
373
|
+
attr_accessor domain: ::String
|
374
|
+
attr_accessor domain_iam_role_name: ::String
|
375
|
+
attr_accessor enable_global_write_forwarding: bool
|
376
|
+
attr_accessor db_cluster_instance_class: ::String
|
377
|
+
attr_accessor allocated_storage: ::Integer
|
378
|
+
attr_accessor storage_type: ::String
|
379
|
+
attr_accessor iops: ::Integer
|
380
|
+
attr_accessor publicly_accessible: bool
|
381
|
+
attr_accessor auto_minor_version_upgrade: bool
|
382
|
+
attr_accessor monitoring_interval: ::Integer
|
383
|
+
attr_accessor monitoring_role_arn: ::String
|
384
|
+
attr_accessor enable_performance_insights: bool
|
385
|
+
attr_accessor performance_insights_kms_key_id: ::String
|
386
|
+
attr_accessor performance_insights_retention_period: ::Integer
|
387
|
+
attr_accessor enable_limitless_database: bool
|
388
|
+
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
389
|
+
attr_accessor network_type: ::String
|
390
|
+
attr_accessor db_system_id: ::String
|
391
|
+
attr_accessor manage_master_user_password: bool
|
392
|
+
attr_accessor master_user_secret_kms_key_id: ::String
|
393
|
+
attr_accessor enable_local_write_forwarding: bool
|
394
|
+
attr_accessor source_region: ::String
|
395
|
+
SENSITIVE: []
|
396
|
+
end
|
397
|
+
|
398
|
+
class CreateDBClusterParameterGroupMessage
|
399
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
400
|
+
attr_accessor db_parameter_group_family: ::String
|
401
|
+
attr_accessor description: ::String
|
402
|
+
attr_accessor tags: ::Array[Types::Tag]
|
403
|
+
SENSITIVE: []
|
404
|
+
end
|
405
|
+
|
406
|
+
class CreateDBClusterParameterGroupResult
|
407
|
+
attr_accessor db_cluster_parameter_group: Types::DBClusterParameterGroup
|
408
|
+
SENSITIVE: []
|
409
|
+
end
|
410
|
+
|
411
|
+
class CreateDBClusterResult
|
412
|
+
attr_accessor db_cluster: Types::DBCluster
|
413
|
+
SENSITIVE: []
|
414
|
+
end
|
415
|
+
|
416
|
+
class CreateDBClusterSnapshotMessage
|
417
|
+
attr_accessor db_cluster_snapshot_identifier: ::String
|
418
|
+
attr_accessor db_cluster_identifier: ::String
|
419
|
+
attr_accessor tags: ::Array[Types::Tag]
|
420
|
+
SENSITIVE: []
|
421
|
+
end
|
422
|
+
|
423
|
+
class CreateDBClusterSnapshotResult
|
424
|
+
attr_accessor db_cluster_snapshot: Types::DBClusterSnapshot
|
425
|
+
SENSITIVE: []
|
426
|
+
end
|
427
|
+
|
428
|
+
class CreateDBInstanceMessage
|
429
|
+
attr_accessor db_name: ::String
|
430
|
+
attr_accessor db_instance_identifier: ::String
|
431
|
+
attr_accessor allocated_storage: ::Integer
|
432
|
+
attr_accessor db_instance_class: ::String
|
433
|
+
attr_accessor engine: ::String
|
434
|
+
attr_accessor master_username: ::String
|
435
|
+
attr_accessor master_user_password: ::String
|
436
|
+
attr_accessor db_security_groups: ::Array[::String]
|
437
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
438
|
+
attr_accessor availability_zone: ::String
|
439
|
+
attr_accessor db_subnet_group_name: ::String
|
440
|
+
attr_accessor preferred_maintenance_window: ::String
|
441
|
+
attr_accessor db_parameter_group_name: ::String
|
442
|
+
attr_accessor backup_retention_period: ::Integer
|
443
|
+
attr_accessor preferred_backup_window: ::String
|
444
|
+
attr_accessor port: ::Integer
|
445
|
+
attr_accessor multi_az: bool
|
446
|
+
attr_accessor engine_version: ::String
|
447
|
+
attr_accessor auto_minor_version_upgrade: bool
|
448
|
+
attr_accessor license_model: ::String
|
449
|
+
attr_accessor iops: ::Integer
|
450
|
+
attr_accessor option_group_name: ::String
|
451
|
+
attr_accessor character_set_name: ::String
|
452
|
+
attr_accessor nchar_character_set_name: ::String
|
453
|
+
attr_accessor publicly_accessible: bool
|
454
|
+
attr_accessor tags: ::Array[Types::Tag]
|
455
|
+
attr_accessor db_cluster_identifier: ::String
|
456
|
+
attr_accessor storage_type: ::String
|
457
|
+
attr_accessor tde_credential_arn: ::String
|
458
|
+
attr_accessor tde_credential_password: ::String
|
459
|
+
attr_accessor storage_encrypted: bool
|
460
|
+
attr_accessor kms_key_id: ::String
|
461
|
+
attr_accessor domain: ::String
|
462
|
+
attr_accessor domain_fqdn: ::String
|
463
|
+
attr_accessor domain_ou: ::String
|
464
|
+
attr_accessor domain_auth_secret_arn: ::String
|
465
|
+
attr_accessor domain_dns_ips: ::Array[::String]
|
466
|
+
attr_accessor copy_tags_to_snapshot: bool
|
467
|
+
attr_accessor monitoring_interval: ::Integer
|
468
|
+
attr_accessor monitoring_role_arn: ::String
|
469
|
+
attr_accessor domain_iam_role_name: ::String
|
470
|
+
attr_accessor promotion_tier: ::Integer
|
471
|
+
attr_accessor timezone: ::String
|
472
|
+
attr_accessor enable_iam_database_authentication: bool
|
473
|
+
attr_accessor enable_performance_insights: bool
|
474
|
+
attr_accessor performance_insights_kms_key_id: ::String
|
475
|
+
attr_accessor performance_insights_retention_period: ::Integer
|
476
|
+
attr_accessor enable_cloudwatch_logs_exports: ::Array[::String]
|
477
|
+
attr_accessor processor_features: ::Array[Types::ProcessorFeature]
|
478
|
+
attr_accessor deletion_protection: bool
|
479
|
+
attr_accessor max_allocated_storage: ::Integer
|
480
|
+
attr_accessor enable_customer_owned_ip: bool
|
481
|
+
attr_accessor custom_iam_instance_profile: ::String
|
482
|
+
attr_accessor backup_target: ::String
|
483
|
+
attr_accessor network_type: ::String
|
484
|
+
attr_accessor storage_throughput: ::Integer
|
485
|
+
attr_accessor manage_master_user_password: bool
|
486
|
+
attr_accessor master_user_secret_kms_key_id: ::String
|
487
|
+
attr_accessor ca_certificate_identifier: ::String
|
488
|
+
attr_accessor db_system_id: ::String
|
489
|
+
attr_accessor dedicated_log_volume: bool
|
490
|
+
attr_accessor multi_tenant: bool
|
491
|
+
SENSITIVE: []
|
492
|
+
end
|
493
|
+
|
494
|
+
class CreateDBInstanceReadReplicaMessage
|
495
|
+
attr_accessor db_instance_identifier: ::String
|
496
|
+
attr_accessor source_db_instance_identifier: ::String
|
497
|
+
attr_accessor db_instance_class: ::String
|
498
|
+
attr_accessor availability_zone: ::String
|
499
|
+
attr_accessor port: ::Integer
|
500
|
+
attr_accessor multi_az: bool
|
501
|
+
attr_accessor auto_minor_version_upgrade: bool
|
502
|
+
attr_accessor iops: ::Integer
|
503
|
+
attr_accessor option_group_name: ::String
|
504
|
+
attr_accessor db_parameter_group_name: ::String
|
505
|
+
attr_accessor publicly_accessible: bool
|
506
|
+
attr_accessor tags: ::Array[Types::Tag]
|
507
|
+
attr_accessor db_subnet_group_name: ::String
|
508
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
509
|
+
attr_accessor storage_type: ::String
|
510
|
+
attr_accessor copy_tags_to_snapshot: bool
|
511
|
+
attr_accessor monitoring_interval: ::Integer
|
512
|
+
attr_accessor monitoring_role_arn: ::String
|
513
|
+
attr_accessor kms_key_id: ::String
|
514
|
+
attr_accessor pre_signed_url: ::String
|
515
|
+
attr_accessor enable_iam_database_authentication: bool
|
516
|
+
attr_accessor enable_performance_insights: bool
|
517
|
+
attr_accessor performance_insights_kms_key_id: ::String
|
518
|
+
attr_accessor performance_insights_retention_period: ::Integer
|
519
|
+
attr_accessor enable_cloudwatch_logs_exports: ::Array[::String]
|
520
|
+
attr_accessor processor_features: ::Array[Types::ProcessorFeature]
|
521
|
+
attr_accessor use_default_processor_features: bool
|
522
|
+
attr_accessor deletion_protection: bool
|
523
|
+
attr_accessor domain: ::String
|
524
|
+
attr_accessor domain_iam_role_name: ::String
|
525
|
+
attr_accessor domain_fqdn: ::String
|
526
|
+
attr_accessor domain_ou: ::String
|
527
|
+
attr_accessor domain_auth_secret_arn: ::String
|
528
|
+
attr_accessor domain_dns_ips: ::Array[::String]
|
529
|
+
attr_accessor replica_mode: ("open-read-only" | "mounted")
|
530
|
+
attr_accessor max_allocated_storage: ::Integer
|
531
|
+
attr_accessor custom_iam_instance_profile: ::String
|
532
|
+
attr_accessor network_type: ::String
|
533
|
+
attr_accessor storage_throughput: ::Integer
|
534
|
+
attr_accessor enable_customer_owned_ip: bool
|
535
|
+
attr_accessor allocated_storage: ::Integer
|
536
|
+
attr_accessor source_db_cluster_identifier: ::String
|
537
|
+
attr_accessor dedicated_log_volume: bool
|
538
|
+
attr_accessor upgrade_storage_config: bool
|
539
|
+
attr_accessor source_region: ::String
|
540
|
+
SENSITIVE: []
|
541
|
+
end
|
542
|
+
|
543
|
+
class CreateDBInstanceReadReplicaResult
|
544
|
+
attr_accessor db_instance: Types::DBInstance
|
545
|
+
SENSITIVE: []
|
546
|
+
end
|
547
|
+
|
548
|
+
class CreateDBInstanceResult
|
549
|
+
attr_accessor db_instance: Types::DBInstance
|
550
|
+
SENSITIVE: []
|
551
|
+
end
|
552
|
+
|
553
|
+
class CreateDBParameterGroupMessage
|
554
|
+
attr_accessor db_parameter_group_name: ::String
|
555
|
+
attr_accessor db_parameter_group_family: ::String
|
556
|
+
attr_accessor description: ::String
|
557
|
+
attr_accessor tags: ::Array[Types::Tag]
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
561
|
+
class CreateDBParameterGroupResult
|
562
|
+
attr_accessor db_parameter_group: Types::DBParameterGroup
|
563
|
+
SENSITIVE: []
|
564
|
+
end
|
565
|
+
|
566
|
+
class CreateDBProxyEndpointRequest
|
567
|
+
attr_accessor db_proxy_name: ::String
|
568
|
+
attr_accessor db_proxy_endpoint_name: ::String
|
569
|
+
attr_accessor vpc_subnet_ids: ::Array[::String]
|
570
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
571
|
+
attr_accessor target_role: ("READ_WRITE" | "READ_ONLY")
|
572
|
+
attr_accessor tags: ::Array[Types::Tag]
|
573
|
+
SENSITIVE: []
|
574
|
+
end
|
575
|
+
|
576
|
+
class CreateDBProxyEndpointResponse
|
577
|
+
attr_accessor db_proxy_endpoint: Types::DBProxyEndpoint
|
578
|
+
SENSITIVE: []
|
579
|
+
end
|
580
|
+
|
581
|
+
class CreateDBProxyRequest
|
582
|
+
attr_accessor db_proxy_name: ::String
|
583
|
+
attr_accessor engine_family: ("MYSQL" | "POSTGRESQL" | "SQLSERVER")
|
584
|
+
attr_accessor auth: ::Array[Types::UserAuthConfig]
|
585
|
+
attr_accessor role_arn: ::String
|
586
|
+
attr_accessor vpc_subnet_ids: ::Array[::String]
|
587
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
588
|
+
attr_accessor require_tls: bool
|
589
|
+
attr_accessor idle_client_timeout: ::Integer
|
590
|
+
attr_accessor debug_logging: bool
|
591
|
+
attr_accessor tags: ::Array[Types::Tag]
|
592
|
+
SENSITIVE: []
|
593
|
+
end
|
594
|
+
|
595
|
+
class CreateDBProxyResponse
|
596
|
+
attr_accessor db_proxy: Types::DBProxy
|
597
|
+
SENSITIVE: []
|
598
|
+
end
|
599
|
+
|
600
|
+
class CreateDBSecurityGroupMessage
|
601
|
+
attr_accessor db_security_group_name: ::String
|
602
|
+
attr_accessor db_security_group_description: ::String
|
603
|
+
attr_accessor tags: ::Array[Types::Tag]
|
604
|
+
SENSITIVE: []
|
605
|
+
end
|
606
|
+
|
607
|
+
class CreateDBSecurityGroupResult
|
608
|
+
attr_accessor db_security_group: Types::DBSecurityGroup
|
609
|
+
SENSITIVE: []
|
610
|
+
end
|
611
|
+
|
612
|
+
class CreateDBShardGroupMessage
|
613
|
+
attr_accessor db_shard_group_identifier: ::String
|
614
|
+
attr_accessor db_cluster_identifier: ::String
|
615
|
+
attr_accessor compute_redundancy: ::Integer
|
616
|
+
attr_accessor max_acu: ::Float
|
617
|
+
attr_accessor publicly_accessible: bool
|
618
|
+
SENSITIVE: []
|
619
|
+
end
|
620
|
+
|
621
|
+
class CreateDBSnapshotMessage
|
622
|
+
attr_accessor db_snapshot_identifier: ::String
|
623
|
+
attr_accessor db_instance_identifier: ::String
|
624
|
+
attr_accessor tags: ::Array[Types::Tag]
|
625
|
+
SENSITIVE: []
|
626
|
+
end
|
627
|
+
|
628
|
+
class CreateDBSnapshotResult
|
629
|
+
attr_accessor db_snapshot: Types::DBSnapshot
|
630
|
+
SENSITIVE: []
|
631
|
+
end
|
632
|
+
|
633
|
+
class CreateDBSubnetGroupMessage
|
634
|
+
attr_accessor db_subnet_group_name: ::String
|
635
|
+
attr_accessor db_subnet_group_description: ::String
|
636
|
+
attr_accessor subnet_ids: ::Array[::String]
|
637
|
+
attr_accessor tags: ::Array[Types::Tag]
|
638
|
+
SENSITIVE: []
|
639
|
+
end
|
640
|
+
|
641
|
+
class CreateDBSubnetGroupResult
|
642
|
+
attr_accessor db_subnet_group: Types::DBSubnetGroup
|
643
|
+
SENSITIVE: []
|
644
|
+
end
|
645
|
+
|
646
|
+
class CreateEventSubscriptionMessage
|
647
|
+
attr_accessor subscription_name: ::String
|
648
|
+
attr_accessor sns_topic_arn: ::String
|
649
|
+
attr_accessor source_type: ::String
|
650
|
+
attr_accessor event_categories: ::Array[::String]
|
651
|
+
attr_accessor source_ids: ::Array[::String]
|
652
|
+
attr_accessor enabled: bool
|
653
|
+
attr_accessor tags: ::Array[Types::Tag]
|
654
|
+
SENSITIVE: []
|
655
|
+
end
|
656
|
+
|
657
|
+
class CreateEventSubscriptionResult
|
658
|
+
attr_accessor event_subscription: Types::EventSubscription
|
659
|
+
SENSITIVE: []
|
660
|
+
end
|
661
|
+
|
662
|
+
class CreateGlobalClusterMessage
|
663
|
+
attr_accessor global_cluster_identifier: ::String
|
664
|
+
attr_accessor source_db_cluster_identifier: ::String
|
665
|
+
attr_accessor engine: ::String
|
666
|
+
attr_accessor engine_version: ::String
|
667
|
+
attr_accessor deletion_protection: bool
|
668
|
+
attr_accessor database_name: ::String
|
669
|
+
attr_accessor storage_encrypted: bool
|
670
|
+
SENSITIVE: []
|
671
|
+
end
|
672
|
+
|
673
|
+
class CreateGlobalClusterResult
|
674
|
+
attr_accessor global_cluster: Types::GlobalCluster
|
675
|
+
SENSITIVE: []
|
676
|
+
end
|
677
|
+
|
678
|
+
class CreateIntegrationMessage
|
679
|
+
attr_accessor source_arn: ::String
|
680
|
+
attr_accessor target_arn: ::String
|
681
|
+
attr_accessor integration_name: ::String
|
682
|
+
attr_accessor kms_key_id: ::String
|
683
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
684
|
+
attr_accessor tags: ::Array[Types::Tag]
|
685
|
+
SENSITIVE: []
|
686
|
+
end
|
687
|
+
|
688
|
+
class CreateOptionGroupMessage
|
689
|
+
attr_accessor option_group_name: ::String
|
690
|
+
attr_accessor engine_name: ::String
|
691
|
+
attr_accessor major_engine_version: ::String
|
692
|
+
attr_accessor option_group_description: ::String
|
693
|
+
attr_accessor tags: ::Array[Types::Tag]
|
694
|
+
SENSITIVE: []
|
695
|
+
end
|
696
|
+
|
697
|
+
class CreateOptionGroupResult
|
698
|
+
attr_accessor option_group: Types::OptionGroup
|
699
|
+
SENSITIVE: []
|
700
|
+
end
|
701
|
+
|
702
|
+
class CreateTenantDatabaseMessage
|
703
|
+
attr_accessor db_instance_identifier: ::String
|
704
|
+
attr_accessor tenant_db_name: ::String
|
705
|
+
attr_accessor master_username: ::String
|
706
|
+
attr_accessor master_user_password: ::String
|
707
|
+
attr_accessor character_set_name: ::String
|
708
|
+
attr_accessor nchar_character_set_name: ::String
|
709
|
+
attr_accessor tags: ::Array[Types::Tag]
|
710
|
+
SENSITIVE: [:master_user_password]
|
711
|
+
end
|
712
|
+
|
713
|
+
class CreateTenantDatabaseResult
|
714
|
+
attr_accessor tenant_database: Types::TenantDatabase
|
715
|
+
SENSITIVE: []
|
716
|
+
end
|
717
|
+
|
718
|
+
class CustomAvailabilityZoneNotFoundFault < Aws::EmptyStructure
|
719
|
+
end
|
720
|
+
|
721
|
+
class CustomDBEngineVersionAMI
|
722
|
+
attr_accessor image_id: ::String
|
723
|
+
attr_accessor status: ::String
|
724
|
+
SENSITIVE: []
|
725
|
+
end
|
726
|
+
|
727
|
+
class CustomDBEngineVersionAlreadyExistsFault < Aws::EmptyStructure
|
728
|
+
end
|
729
|
+
|
730
|
+
class CustomDBEngineVersionNotFoundFault < Aws::EmptyStructure
|
731
|
+
end
|
732
|
+
|
733
|
+
class CustomDBEngineVersionQuotaExceededFault < Aws::EmptyStructure
|
734
|
+
end
|
735
|
+
|
736
|
+
class DBCluster
|
737
|
+
attr_accessor allocated_storage: ::Integer
|
738
|
+
attr_accessor availability_zones: ::Array[::String]
|
739
|
+
attr_accessor backup_retention_period: ::Integer
|
740
|
+
attr_accessor character_set_name: ::String
|
741
|
+
attr_accessor database_name: ::String
|
742
|
+
attr_accessor db_cluster_identifier: ::String
|
743
|
+
attr_accessor db_cluster_parameter_group: ::String
|
744
|
+
attr_accessor db_subnet_group: ::String
|
745
|
+
attr_accessor status: ::String
|
746
|
+
attr_accessor automatic_restart_time: ::Time
|
747
|
+
attr_accessor percent_progress: ::String
|
748
|
+
attr_accessor earliest_restorable_time: ::Time
|
749
|
+
attr_accessor endpoint: ::String
|
750
|
+
attr_accessor reader_endpoint: ::String
|
751
|
+
attr_accessor custom_endpoints: ::Array[::String]
|
752
|
+
attr_accessor multi_az: bool
|
753
|
+
attr_accessor engine: ::String
|
754
|
+
attr_accessor engine_version: ::String
|
755
|
+
attr_accessor latest_restorable_time: ::Time
|
756
|
+
attr_accessor port: ::Integer
|
757
|
+
attr_accessor master_username: ::String
|
758
|
+
attr_accessor db_cluster_option_group_memberships: ::Array[Types::DBClusterOptionGroupStatus]
|
759
|
+
attr_accessor preferred_backup_window: ::String
|
760
|
+
attr_accessor preferred_maintenance_window: ::String
|
761
|
+
attr_accessor replication_source_identifier: ::String
|
762
|
+
attr_accessor read_replica_identifiers: ::Array[::String]
|
763
|
+
attr_accessor status_infos: ::Array[Types::DBClusterStatusInfo]
|
764
|
+
attr_accessor db_cluster_members: ::Array[Types::DBClusterMember]
|
765
|
+
attr_accessor vpc_security_groups: ::Array[Types::VpcSecurityGroupMembership]
|
766
|
+
attr_accessor hosted_zone_id: ::String
|
767
|
+
attr_accessor storage_encrypted: bool
|
768
|
+
attr_accessor kms_key_id: ::String
|
769
|
+
attr_accessor db_cluster_resource_id: ::String
|
770
|
+
attr_accessor db_cluster_arn: ::String
|
771
|
+
attr_accessor associated_roles: ::Array[Types::DBClusterRole]
|
772
|
+
attr_accessor iam_database_authentication_enabled: bool
|
773
|
+
attr_accessor clone_group_id: ::String
|
774
|
+
attr_accessor cluster_create_time: ::Time
|
775
|
+
attr_accessor earliest_backtrack_time: ::Time
|
776
|
+
attr_accessor backtrack_window: ::Integer
|
777
|
+
attr_accessor backtrack_consumed_change_records: ::Integer
|
778
|
+
attr_accessor enabled_cloudwatch_logs_exports: ::Array[::String]
|
779
|
+
attr_accessor capacity: ::Integer
|
780
|
+
attr_accessor engine_mode: ::String
|
781
|
+
attr_accessor scaling_configuration_info: Types::ScalingConfigurationInfo
|
782
|
+
attr_accessor rds_custom_cluster_configuration: Types::RdsCustomClusterConfiguration
|
783
|
+
attr_accessor deletion_protection: bool
|
784
|
+
attr_accessor http_endpoint_enabled: bool
|
785
|
+
attr_accessor activity_stream_mode: ("sync" | "async")
|
786
|
+
attr_accessor activity_stream_status: ("stopped" | "starting" | "started" | "stopping")
|
787
|
+
attr_accessor activity_stream_kms_key_id: ::String
|
788
|
+
attr_accessor activity_stream_kinesis_stream_name: ::String
|
789
|
+
attr_accessor copy_tags_to_snapshot: bool
|
790
|
+
attr_accessor cross_account_clone: bool
|
791
|
+
attr_accessor domain_memberships: ::Array[Types::DomainMembership]
|
792
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
793
|
+
attr_accessor global_write_forwarding_status: ("enabled" | "disabled" | "enabling" | "disabling" | "unknown")
|
794
|
+
attr_accessor global_write_forwarding_requested: bool
|
795
|
+
attr_accessor pending_modified_values: Types::ClusterPendingModifiedValues
|
796
|
+
attr_accessor db_cluster_instance_class: ::String
|
797
|
+
attr_accessor storage_type: ::String
|
798
|
+
attr_accessor iops: ::Integer
|
799
|
+
attr_accessor publicly_accessible: bool
|
800
|
+
attr_accessor auto_minor_version_upgrade: bool
|
801
|
+
attr_accessor monitoring_interval: ::Integer
|
802
|
+
attr_accessor monitoring_role_arn: ::String
|
803
|
+
attr_accessor performance_insights_enabled: bool
|
804
|
+
attr_accessor performance_insights_kms_key_id: ::String
|
805
|
+
attr_accessor performance_insights_retention_period: ::Integer
|
806
|
+
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfigurationInfo
|
807
|
+
attr_accessor network_type: ::String
|
808
|
+
attr_accessor db_system_id: ::String
|
809
|
+
attr_accessor master_user_secret: Types::MasterUserSecret
|
810
|
+
attr_accessor io_optimized_next_allowed_modification_time: ::Time
|
811
|
+
attr_accessor local_write_forwarding_status: ("enabled" | "disabled" | "enabling" | "disabling" | "requested")
|
812
|
+
attr_accessor aws_backup_recovery_point_arn: ::String
|
813
|
+
attr_accessor limitless_database: Types::LimitlessDatabase
|
814
|
+
SENSITIVE: []
|
815
|
+
end
|
816
|
+
|
817
|
+
class DBClusterAlreadyExistsFault < Aws::EmptyStructure
|
818
|
+
end
|
819
|
+
|
820
|
+
class DBClusterAutomatedBackup
|
821
|
+
attr_accessor engine: ::String
|
822
|
+
attr_accessor vpc_id: ::String
|
823
|
+
attr_accessor db_cluster_automated_backups_arn: ::String
|
824
|
+
attr_accessor db_cluster_identifier: ::String
|
825
|
+
attr_accessor restore_window: Types::RestoreWindow
|
826
|
+
attr_accessor master_username: ::String
|
827
|
+
attr_accessor db_cluster_resource_id: ::String
|
828
|
+
attr_accessor region: ::String
|
829
|
+
attr_accessor license_model: ::String
|
830
|
+
attr_accessor status: ::String
|
831
|
+
attr_accessor iam_database_authentication_enabled: bool
|
832
|
+
attr_accessor cluster_create_time: ::Time
|
833
|
+
attr_accessor storage_encrypted: bool
|
834
|
+
attr_accessor allocated_storage: ::Integer
|
835
|
+
attr_accessor engine_version: ::String
|
836
|
+
attr_accessor db_cluster_arn: ::String
|
837
|
+
attr_accessor backup_retention_period: ::Integer
|
838
|
+
attr_accessor engine_mode: ::String
|
839
|
+
attr_accessor availability_zones: ::Array[::String]
|
840
|
+
attr_accessor port: ::Integer
|
841
|
+
attr_accessor kms_key_id: ::String
|
842
|
+
attr_accessor storage_type: ::String
|
843
|
+
attr_accessor iops: ::Integer
|
844
|
+
attr_accessor aws_backup_recovery_point_arn: ::String
|
845
|
+
SENSITIVE: []
|
846
|
+
end
|
847
|
+
|
848
|
+
class DBClusterAutomatedBackupMessage
|
849
|
+
attr_accessor marker: ::String
|
850
|
+
attr_accessor db_cluster_automated_backups: ::Array[Types::DBClusterAutomatedBackup]
|
851
|
+
SENSITIVE: []
|
852
|
+
end
|
853
|
+
|
854
|
+
class DBClusterAutomatedBackupNotFoundFault < Aws::EmptyStructure
|
855
|
+
end
|
856
|
+
|
857
|
+
class DBClusterAutomatedBackupQuotaExceededFault < Aws::EmptyStructure
|
858
|
+
end
|
859
|
+
|
860
|
+
class DBClusterBacktrack
|
861
|
+
attr_accessor db_cluster_identifier: ::String
|
862
|
+
attr_accessor backtrack_identifier: ::String
|
863
|
+
attr_accessor backtrack_to: ::Time
|
864
|
+
attr_accessor backtracked_from: ::Time
|
865
|
+
attr_accessor backtrack_request_creation_time: ::Time
|
866
|
+
attr_accessor status: ::String
|
867
|
+
SENSITIVE: []
|
868
|
+
end
|
869
|
+
|
870
|
+
class DBClusterBacktrackMessage
|
871
|
+
attr_accessor marker: ::String
|
872
|
+
attr_accessor db_cluster_backtracks: ::Array[Types::DBClusterBacktrack]
|
873
|
+
SENSITIVE: []
|
874
|
+
end
|
875
|
+
|
876
|
+
class DBClusterBacktrackNotFoundFault < Aws::EmptyStructure
|
877
|
+
end
|
878
|
+
|
879
|
+
class DBClusterCapacityInfo
|
880
|
+
attr_accessor db_cluster_identifier: ::String
|
881
|
+
attr_accessor pending_capacity: ::Integer
|
882
|
+
attr_accessor current_capacity: ::Integer
|
883
|
+
attr_accessor seconds_before_timeout: ::Integer
|
884
|
+
attr_accessor timeout_action: ::String
|
885
|
+
SENSITIVE: []
|
886
|
+
end
|
887
|
+
|
888
|
+
class DBClusterEndpoint
|
889
|
+
attr_accessor db_cluster_endpoint_identifier: ::String
|
890
|
+
attr_accessor db_cluster_identifier: ::String
|
891
|
+
attr_accessor db_cluster_endpoint_resource_identifier: ::String
|
892
|
+
attr_accessor endpoint: ::String
|
893
|
+
attr_accessor status: ::String
|
894
|
+
attr_accessor endpoint_type: ::String
|
895
|
+
attr_accessor custom_endpoint_type: ::String
|
896
|
+
attr_accessor static_members: ::Array[::String]
|
897
|
+
attr_accessor excluded_members: ::Array[::String]
|
898
|
+
attr_accessor db_cluster_endpoint_arn: ::String
|
899
|
+
SENSITIVE: []
|
900
|
+
end
|
901
|
+
|
902
|
+
class DBClusterEndpointAlreadyExistsFault < Aws::EmptyStructure
|
903
|
+
end
|
904
|
+
|
905
|
+
class DBClusterEndpointMessage
|
906
|
+
attr_accessor marker: ::String
|
907
|
+
attr_accessor db_cluster_endpoints: ::Array[Types::DBClusterEndpoint]
|
908
|
+
SENSITIVE: []
|
909
|
+
end
|
910
|
+
|
911
|
+
class DBClusterEndpointNotFoundFault < Aws::EmptyStructure
|
912
|
+
end
|
913
|
+
|
914
|
+
class DBClusterEndpointQuotaExceededFault < Aws::EmptyStructure
|
915
|
+
end
|
916
|
+
|
917
|
+
class DBClusterMember
|
918
|
+
attr_accessor db_instance_identifier: ::String
|
919
|
+
attr_accessor is_cluster_writer: bool
|
920
|
+
attr_accessor db_cluster_parameter_group_status: ::String
|
921
|
+
attr_accessor promotion_tier: ::Integer
|
922
|
+
SENSITIVE: []
|
923
|
+
end
|
924
|
+
|
925
|
+
class DBClusterMessage
|
926
|
+
attr_accessor marker: ::String
|
927
|
+
attr_accessor db_clusters: ::Array[Types::DBCluster]
|
928
|
+
SENSITIVE: []
|
929
|
+
end
|
930
|
+
|
931
|
+
class DBClusterNotFoundFault < Aws::EmptyStructure
|
932
|
+
end
|
933
|
+
|
934
|
+
class DBClusterOptionGroupStatus
|
935
|
+
attr_accessor db_cluster_option_group_name: ::String
|
936
|
+
attr_accessor status: ::String
|
937
|
+
SENSITIVE: []
|
938
|
+
end
|
939
|
+
|
940
|
+
class DBClusterParameterGroup
|
941
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
942
|
+
attr_accessor db_parameter_group_family: ::String
|
943
|
+
attr_accessor description: ::String
|
944
|
+
attr_accessor db_cluster_parameter_group_arn: ::String
|
945
|
+
SENSITIVE: []
|
946
|
+
end
|
947
|
+
|
948
|
+
class DBClusterParameterGroupDetails
|
949
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
950
|
+
attr_accessor marker: ::String
|
951
|
+
SENSITIVE: []
|
952
|
+
end
|
953
|
+
|
954
|
+
class DBClusterParameterGroupNameMessage
|
955
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
956
|
+
SENSITIVE: []
|
957
|
+
end
|
958
|
+
|
959
|
+
class DBClusterParameterGroupNotFoundFault < Aws::EmptyStructure
|
960
|
+
end
|
961
|
+
|
962
|
+
class DBClusterParameterGroupsMessage
|
963
|
+
attr_accessor marker: ::String
|
964
|
+
attr_accessor db_cluster_parameter_groups: ::Array[Types::DBClusterParameterGroup]
|
965
|
+
SENSITIVE: []
|
966
|
+
end
|
967
|
+
|
968
|
+
class DBClusterQuotaExceededFault < Aws::EmptyStructure
|
969
|
+
end
|
970
|
+
|
971
|
+
class DBClusterRole
|
972
|
+
attr_accessor role_arn: ::String
|
973
|
+
attr_accessor status: ::String
|
974
|
+
attr_accessor feature_name: ::String
|
975
|
+
SENSITIVE: []
|
976
|
+
end
|
977
|
+
|
978
|
+
class DBClusterRoleAlreadyExistsFault < Aws::EmptyStructure
|
979
|
+
end
|
980
|
+
|
981
|
+
class DBClusterRoleNotFoundFault < Aws::EmptyStructure
|
982
|
+
end
|
983
|
+
|
984
|
+
class DBClusterRoleQuotaExceededFault < Aws::EmptyStructure
|
985
|
+
end
|
986
|
+
|
987
|
+
class DBClusterSnapshot
|
988
|
+
attr_accessor availability_zones: ::Array[::String]
|
989
|
+
attr_accessor db_cluster_snapshot_identifier: ::String
|
990
|
+
attr_accessor db_cluster_identifier: ::String
|
991
|
+
attr_accessor snapshot_create_time: ::Time
|
992
|
+
attr_accessor engine: ::String
|
993
|
+
attr_accessor engine_mode: ::String
|
994
|
+
attr_accessor allocated_storage: ::Integer
|
995
|
+
attr_accessor status: ::String
|
996
|
+
attr_accessor port: ::Integer
|
997
|
+
attr_accessor vpc_id: ::String
|
998
|
+
attr_accessor cluster_create_time: ::Time
|
999
|
+
attr_accessor master_username: ::String
|
1000
|
+
attr_accessor engine_version: ::String
|
1001
|
+
attr_accessor license_model: ::String
|
1002
|
+
attr_accessor snapshot_type: ::String
|
1003
|
+
attr_accessor percent_progress: ::Integer
|
1004
|
+
attr_accessor storage_encrypted: bool
|
1005
|
+
attr_accessor kms_key_id: ::String
|
1006
|
+
attr_accessor db_cluster_snapshot_arn: ::String
|
1007
|
+
attr_accessor source_db_cluster_snapshot_arn: ::String
|
1008
|
+
attr_accessor iam_database_authentication_enabled: bool
|
1009
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
1010
|
+
attr_accessor db_system_id: ::String
|
1011
|
+
attr_accessor storage_type: ::String
|
1012
|
+
attr_accessor db_cluster_resource_id: ::String
|
1013
|
+
SENSITIVE: []
|
1014
|
+
end
|
1015
|
+
|
1016
|
+
class DBClusterSnapshotAlreadyExistsFault < Aws::EmptyStructure
|
1017
|
+
end
|
1018
|
+
|
1019
|
+
class DBClusterSnapshotAttribute
|
1020
|
+
attr_accessor attribute_name: ::String
|
1021
|
+
attr_accessor attribute_values: ::Array[::String]
|
1022
|
+
SENSITIVE: []
|
1023
|
+
end
|
1024
|
+
|
1025
|
+
class DBClusterSnapshotAttributesResult
|
1026
|
+
attr_accessor db_cluster_snapshot_identifier: ::String
|
1027
|
+
attr_accessor db_cluster_snapshot_attributes: ::Array[Types::DBClusterSnapshotAttribute]
|
1028
|
+
SENSITIVE: []
|
1029
|
+
end
|
1030
|
+
|
1031
|
+
class DBClusterSnapshotMessage
|
1032
|
+
attr_accessor marker: ::String
|
1033
|
+
attr_accessor db_cluster_snapshots: ::Array[Types::DBClusterSnapshot]
|
1034
|
+
SENSITIVE: []
|
1035
|
+
end
|
1036
|
+
|
1037
|
+
class DBClusterSnapshotNotFoundFault < Aws::EmptyStructure
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
class DBClusterStatusInfo
|
1041
|
+
attr_accessor status_type: ::String
|
1042
|
+
attr_accessor normal: bool
|
1043
|
+
attr_accessor status: ::String
|
1044
|
+
attr_accessor message: ::String
|
1045
|
+
SENSITIVE: []
|
1046
|
+
end
|
1047
|
+
|
1048
|
+
class DBEngineVersion
|
1049
|
+
attr_accessor engine: ::String
|
1050
|
+
attr_accessor engine_version: ::String
|
1051
|
+
attr_accessor db_parameter_group_family: ::String
|
1052
|
+
attr_accessor db_engine_description: ::String
|
1053
|
+
attr_accessor db_engine_version_description: ::String
|
1054
|
+
attr_accessor default_character_set: Types::CharacterSet
|
1055
|
+
attr_accessor image: Types::CustomDBEngineVersionAMI
|
1056
|
+
attr_accessor db_engine_media_type: ::String
|
1057
|
+
attr_accessor supported_character_sets: ::Array[Types::CharacterSet]
|
1058
|
+
attr_accessor supported_nchar_character_sets: ::Array[Types::CharacterSet]
|
1059
|
+
attr_accessor valid_upgrade_target: ::Array[Types::UpgradeTarget]
|
1060
|
+
attr_accessor supported_timezones: ::Array[Types::Timezone]
|
1061
|
+
attr_accessor exportable_log_types: ::Array[::String]
|
1062
|
+
attr_accessor supports_log_exports_to_cloudwatch_logs: bool
|
1063
|
+
attr_accessor supports_read_replica: bool
|
1064
|
+
attr_accessor supported_engine_modes: ::Array[::String]
|
1065
|
+
attr_accessor supported_feature_names: ::Array[::String]
|
1066
|
+
attr_accessor status: ::String
|
1067
|
+
attr_accessor supports_parallel_query: bool
|
1068
|
+
attr_accessor supports_global_databases: bool
|
1069
|
+
attr_accessor major_engine_version: ::String
|
1070
|
+
attr_accessor database_installation_files_s3_bucket_name: ::String
|
1071
|
+
attr_accessor database_installation_files_s3_prefix: ::String
|
1072
|
+
attr_accessor db_engine_version_arn: ::String
|
1073
|
+
attr_accessor kms_key_id: ::String
|
1074
|
+
attr_accessor create_time: ::Time
|
1075
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
1076
|
+
attr_accessor supports_babelfish: bool
|
1077
|
+
attr_accessor custom_db_engine_version_manifest: ::String
|
1078
|
+
attr_accessor supports_certificate_rotation_without_restart: bool
|
1079
|
+
attr_accessor supported_ca_certificate_identifiers: ::Array[::String]
|
1080
|
+
attr_accessor supports_local_write_forwarding: bool
|
1081
|
+
attr_accessor supports_integrations: bool
|
1082
|
+
SENSITIVE: []
|
1083
|
+
end
|
1084
|
+
|
1085
|
+
class DBEngineVersionMessage
|
1086
|
+
attr_accessor marker: ::String
|
1087
|
+
attr_accessor db_engine_versions: ::Array[Types::DBEngineVersion]
|
1088
|
+
SENSITIVE: []
|
1089
|
+
end
|
1090
|
+
|
1091
|
+
class DBInstance
|
1092
|
+
attr_accessor db_instance_identifier: ::String
|
1093
|
+
attr_accessor db_instance_class: ::String
|
1094
|
+
attr_accessor engine: ::String
|
1095
|
+
attr_accessor db_instance_status: ::String
|
1096
|
+
attr_accessor automatic_restart_time: ::Time
|
1097
|
+
attr_accessor master_username: ::String
|
1098
|
+
attr_accessor db_name: ::String
|
1099
|
+
attr_accessor endpoint: Types::Endpoint
|
1100
|
+
attr_accessor allocated_storage: ::Integer
|
1101
|
+
attr_accessor instance_create_time: ::Time
|
1102
|
+
attr_accessor preferred_backup_window: ::String
|
1103
|
+
attr_accessor backup_retention_period: ::Integer
|
1104
|
+
attr_accessor db_security_groups: ::Array[Types::DBSecurityGroupMembership]
|
1105
|
+
attr_accessor vpc_security_groups: ::Array[Types::VpcSecurityGroupMembership]
|
1106
|
+
attr_accessor db_parameter_groups: ::Array[Types::DBParameterGroupStatus]
|
1107
|
+
attr_accessor availability_zone: ::String
|
1108
|
+
attr_accessor db_subnet_group: Types::DBSubnetGroup
|
1109
|
+
attr_accessor preferred_maintenance_window: ::String
|
1110
|
+
attr_accessor pending_modified_values: Types::PendingModifiedValues
|
1111
|
+
attr_accessor latest_restorable_time: ::Time
|
1112
|
+
attr_accessor multi_az: bool
|
1113
|
+
attr_accessor engine_version: ::String
|
1114
|
+
attr_accessor auto_minor_version_upgrade: bool
|
1115
|
+
attr_accessor read_replica_source_db_instance_identifier: ::String
|
1116
|
+
attr_accessor read_replica_db_instance_identifiers: ::Array[::String]
|
1117
|
+
attr_accessor read_replica_db_cluster_identifiers: ::Array[::String]
|
1118
|
+
attr_accessor replica_mode: ("open-read-only" | "mounted")
|
1119
|
+
attr_accessor license_model: ::String
|
1120
|
+
attr_accessor iops: ::Integer
|
1121
|
+
attr_accessor option_group_memberships: ::Array[Types::OptionGroupMembership]
|
1122
|
+
attr_accessor character_set_name: ::String
|
1123
|
+
attr_accessor nchar_character_set_name: ::String
|
1124
|
+
attr_accessor secondary_availability_zone: ::String
|
1125
|
+
attr_accessor publicly_accessible: bool
|
1126
|
+
attr_accessor status_infos: ::Array[Types::DBInstanceStatusInfo]
|
1127
|
+
attr_accessor storage_type: ::String
|
1128
|
+
attr_accessor tde_credential_arn: ::String
|
1129
|
+
attr_accessor db_instance_port: ::Integer
|
1130
|
+
attr_accessor db_cluster_identifier: ::String
|
1131
|
+
attr_accessor storage_encrypted: bool
|
1132
|
+
attr_accessor kms_key_id: ::String
|
1133
|
+
attr_accessor dbi_resource_id: ::String
|
1134
|
+
attr_accessor ca_certificate_identifier: ::String
|
1135
|
+
attr_accessor domain_memberships: ::Array[Types::DomainMembership]
|
1136
|
+
attr_accessor copy_tags_to_snapshot: bool
|
1137
|
+
attr_accessor monitoring_interval: ::Integer
|
1138
|
+
attr_accessor enhanced_monitoring_resource_arn: ::String
|
1139
|
+
attr_accessor monitoring_role_arn: ::String
|
1140
|
+
attr_accessor promotion_tier: ::Integer
|
1141
|
+
attr_accessor db_instance_arn: ::String
|
1142
|
+
attr_accessor timezone: ::String
|
1143
|
+
attr_accessor iam_database_authentication_enabled: bool
|
1144
|
+
attr_accessor performance_insights_enabled: bool
|
1145
|
+
attr_accessor performance_insights_kms_key_id: ::String
|
1146
|
+
attr_accessor performance_insights_retention_period: ::Integer
|
1147
|
+
attr_accessor enabled_cloudwatch_logs_exports: ::Array[::String]
|
1148
|
+
attr_accessor processor_features: ::Array[Types::ProcessorFeature]
|
1149
|
+
attr_accessor deletion_protection: bool
|
1150
|
+
attr_accessor associated_roles: ::Array[Types::DBInstanceRole]
|
1151
|
+
attr_accessor listener_endpoint: Types::Endpoint
|
1152
|
+
attr_accessor max_allocated_storage: ::Integer
|
1153
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
1154
|
+
attr_accessor db_instance_automated_backups_replications: ::Array[Types::DBInstanceAutomatedBackupsReplication]
|
1155
|
+
attr_accessor customer_owned_ip_enabled: bool
|
1156
|
+
attr_accessor aws_backup_recovery_point_arn: ::String
|
1157
|
+
attr_accessor activity_stream_status: ("stopped" | "starting" | "started" | "stopping")
|
1158
|
+
attr_accessor activity_stream_kms_key_id: ::String
|
1159
|
+
attr_accessor activity_stream_kinesis_stream_name: ::String
|
1160
|
+
attr_accessor activity_stream_mode: ("sync" | "async")
|
1161
|
+
attr_accessor activity_stream_engine_native_audit_fields_included: bool
|
1162
|
+
attr_accessor automation_mode: ("full" | "all-paused")
|
1163
|
+
attr_accessor resume_full_automation_mode_time: ::Time
|
1164
|
+
attr_accessor custom_iam_instance_profile: ::String
|
1165
|
+
attr_accessor backup_target: ::String
|
1166
|
+
attr_accessor network_type: ::String
|
1167
|
+
attr_accessor activity_stream_policy_status: ("locked" | "unlocked" | "locking-policy" | "unlocking-policy")
|
1168
|
+
attr_accessor storage_throughput: ::Integer
|
1169
|
+
attr_accessor db_system_id: ::String
|
1170
|
+
attr_accessor master_user_secret: Types::MasterUserSecret
|
1171
|
+
attr_accessor certificate_details: Types::CertificateDetails
|
1172
|
+
attr_accessor read_replica_source_db_cluster_identifier: ::String
|
1173
|
+
attr_accessor percent_progress: ::String
|
1174
|
+
attr_accessor dedicated_log_volume: bool
|
1175
|
+
attr_accessor is_storage_config_upgrade_available: bool
|
1176
|
+
attr_accessor multi_tenant: bool
|
1177
|
+
SENSITIVE: []
|
1178
|
+
end
|
1179
|
+
|
1180
|
+
class DBInstanceAlreadyExistsFault < Aws::EmptyStructure
|
1181
|
+
end
|
1182
|
+
|
1183
|
+
class DBInstanceAutomatedBackup
|
1184
|
+
attr_accessor db_instance_arn: ::String
|
1185
|
+
attr_accessor dbi_resource_id: ::String
|
1186
|
+
attr_accessor region: ::String
|
1187
|
+
attr_accessor db_instance_identifier: ::String
|
1188
|
+
attr_accessor restore_window: Types::RestoreWindow
|
1189
|
+
attr_accessor allocated_storage: ::Integer
|
1190
|
+
attr_accessor status: ::String
|
1191
|
+
attr_accessor port: ::Integer
|
1192
|
+
attr_accessor availability_zone: ::String
|
1193
|
+
attr_accessor vpc_id: ::String
|
1194
|
+
attr_accessor instance_create_time: ::Time
|
1195
|
+
attr_accessor master_username: ::String
|
1196
|
+
attr_accessor engine: ::String
|
1197
|
+
attr_accessor engine_version: ::String
|
1198
|
+
attr_accessor license_model: ::String
|
1199
|
+
attr_accessor iops: ::Integer
|
1200
|
+
attr_accessor option_group_name: ::String
|
1201
|
+
attr_accessor tde_credential_arn: ::String
|
1202
|
+
attr_accessor encrypted: bool
|
1203
|
+
attr_accessor storage_type: ::String
|
1204
|
+
attr_accessor kms_key_id: ::String
|
1205
|
+
attr_accessor timezone: ::String
|
1206
|
+
attr_accessor iam_database_authentication_enabled: bool
|
1207
|
+
attr_accessor backup_retention_period: ::Integer
|
1208
|
+
attr_accessor db_instance_automated_backups_arn: ::String
|
1209
|
+
attr_accessor db_instance_automated_backups_replications: ::Array[Types::DBInstanceAutomatedBackupsReplication]
|
1210
|
+
attr_accessor backup_target: ::String
|
1211
|
+
attr_accessor storage_throughput: ::Integer
|
1212
|
+
attr_accessor aws_backup_recovery_point_arn: ::String
|
1213
|
+
attr_accessor dedicated_log_volume: bool
|
1214
|
+
attr_accessor multi_tenant: bool
|
1215
|
+
SENSITIVE: []
|
1216
|
+
end
|
1217
|
+
|
1218
|
+
class DBInstanceAutomatedBackupMessage
|
1219
|
+
attr_accessor marker: ::String
|
1220
|
+
attr_accessor db_instance_automated_backups: ::Array[Types::DBInstanceAutomatedBackup]
|
1221
|
+
SENSITIVE: []
|
1222
|
+
end
|
1223
|
+
|
1224
|
+
class DBInstanceAutomatedBackupNotFoundFault < Aws::EmptyStructure
|
1225
|
+
end
|
1226
|
+
|
1227
|
+
class DBInstanceAutomatedBackupQuotaExceededFault < Aws::EmptyStructure
|
1228
|
+
end
|
1229
|
+
|
1230
|
+
class DBInstanceAutomatedBackupsReplication
|
1231
|
+
attr_accessor db_instance_automated_backups_arn: ::String
|
1232
|
+
SENSITIVE: []
|
1233
|
+
end
|
1234
|
+
|
1235
|
+
class DBInstanceMessage
|
1236
|
+
attr_accessor marker: ::String
|
1237
|
+
attr_accessor db_instances: ::Array[Types::DBInstance]
|
1238
|
+
SENSITIVE: []
|
1239
|
+
end
|
1240
|
+
|
1241
|
+
class DBInstanceNotFoundFault < Aws::EmptyStructure
|
1242
|
+
end
|
1243
|
+
|
1244
|
+
class DBInstanceRole
|
1245
|
+
attr_accessor role_arn: ::String
|
1246
|
+
attr_accessor feature_name: ::String
|
1247
|
+
attr_accessor status: ::String
|
1248
|
+
SENSITIVE: []
|
1249
|
+
end
|
1250
|
+
|
1251
|
+
class DBInstanceRoleAlreadyExistsFault < Aws::EmptyStructure
|
1252
|
+
end
|
1253
|
+
|
1254
|
+
class DBInstanceRoleNotFoundFault < Aws::EmptyStructure
|
1255
|
+
end
|
1256
|
+
|
1257
|
+
class DBInstanceRoleQuotaExceededFault < Aws::EmptyStructure
|
1258
|
+
end
|
1259
|
+
|
1260
|
+
class DBInstanceStatusInfo
|
1261
|
+
attr_accessor status_type: ::String
|
1262
|
+
attr_accessor normal: bool
|
1263
|
+
attr_accessor status: ::String
|
1264
|
+
attr_accessor message: ::String
|
1265
|
+
SENSITIVE: []
|
1266
|
+
end
|
1267
|
+
|
1268
|
+
class DBLogFileNotFoundFault < Aws::EmptyStructure
|
1269
|
+
end
|
1270
|
+
|
1271
|
+
class DBParameterGroup
|
1272
|
+
attr_accessor db_parameter_group_name: ::String
|
1273
|
+
attr_accessor db_parameter_group_family: ::String
|
1274
|
+
attr_accessor description: ::String
|
1275
|
+
attr_accessor db_parameter_group_arn: ::String
|
1276
|
+
SENSITIVE: []
|
1277
|
+
end
|
1278
|
+
|
1279
|
+
class DBParameterGroupAlreadyExistsFault < Aws::EmptyStructure
|
1280
|
+
end
|
1281
|
+
|
1282
|
+
class DBParameterGroupDetails
|
1283
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
1284
|
+
attr_accessor marker: ::String
|
1285
|
+
SENSITIVE: []
|
1286
|
+
end
|
1287
|
+
|
1288
|
+
class DBParameterGroupNameMessage
|
1289
|
+
attr_accessor db_parameter_group_name: ::String
|
1290
|
+
SENSITIVE: []
|
1291
|
+
end
|
1292
|
+
|
1293
|
+
class DBParameterGroupNotFoundFault < Aws::EmptyStructure
|
1294
|
+
end
|
1295
|
+
|
1296
|
+
class DBParameterGroupQuotaExceededFault < Aws::EmptyStructure
|
1297
|
+
end
|
1298
|
+
|
1299
|
+
class DBParameterGroupStatus
|
1300
|
+
attr_accessor db_parameter_group_name: ::String
|
1301
|
+
attr_accessor parameter_apply_status: ::String
|
1302
|
+
SENSITIVE: []
|
1303
|
+
end
|
1304
|
+
|
1305
|
+
class DBParameterGroupsMessage
|
1306
|
+
attr_accessor marker: ::String
|
1307
|
+
attr_accessor db_parameter_groups: ::Array[Types::DBParameterGroup]
|
1308
|
+
SENSITIVE: []
|
1309
|
+
end
|
1310
|
+
|
1311
|
+
class DBProxy
|
1312
|
+
attr_accessor db_proxy_name: ::String
|
1313
|
+
attr_accessor db_proxy_arn: ::String
|
1314
|
+
attr_accessor status: ("available" | "modifying" | "incompatible-network" | "insufficient-resource-limits" | "creating" | "deleting" | "suspended" | "suspending" | "reactivating")
|
1315
|
+
attr_accessor engine_family: ::String
|
1316
|
+
attr_accessor vpc_id: ::String
|
1317
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
1318
|
+
attr_accessor vpc_subnet_ids: ::Array[::String]
|
1319
|
+
attr_accessor auth: ::Array[Types::UserAuthConfigInfo]
|
1320
|
+
attr_accessor role_arn: ::String
|
1321
|
+
attr_accessor endpoint: ::String
|
1322
|
+
attr_accessor require_tls: bool
|
1323
|
+
attr_accessor idle_client_timeout: ::Integer
|
1324
|
+
attr_accessor debug_logging: bool
|
1325
|
+
attr_accessor created_date: ::Time
|
1326
|
+
attr_accessor updated_date: ::Time
|
1327
|
+
SENSITIVE: []
|
1328
|
+
end
|
1329
|
+
|
1330
|
+
class DBProxyAlreadyExistsFault < Aws::EmptyStructure
|
1331
|
+
end
|
1332
|
+
|
1333
|
+
class DBProxyEndpoint
|
1334
|
+
attr_accessor db_proxy_endpoint_name: ::String
|
1335
|
+
attr_accessor db_proxy_endpoint_arn: ::String
|
1336
|
+
attr_accessor db_proxy_name: ::String
|
1337
|
+
attr_accessor status: ("available" | "modifying" | "incompatible-network" | "insufficient-resource-limits" | "creating" | "deleting")
|
1338
|
+
attr_accessor vpc_id: ::String
|
1339
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
1340
|
+
attr_accessor vpc_subnet_ids: ::Array[::String]
|
1341
|
+
attr_accessor endpoint: ::String
|
1342
|
+
attr_accessor created_date: ::Time
|
1343
|
+
attr_accessor target_role: ("READ_WRITE" | "READ_ONLY")
|
1344
|
+
attr_accessor is_default: bool
|
1345
|
+
SENSITIVE: []
|
1346
|
+
end
|
1347
|
+
|
1348
|
+
class DBProxyEndpointAlreadyExistsFault < Aws::EmptyStructure
|
1349
|
+
end
|
1350
|
+
|
1351
|
+
class DBProxyEndpointNotFoundFault < Aws::EmptyStructure
|
1352
|
+
end
|
1353
|
+
|
1354
|
+
class DBProxyEndpointQuotaExceededFault < Aws::EmptyStructure
|
1355
|
+
end
|
1356
|
+
|
1357
|
+
class DBProxyNotFoundFault < Aws::EmptyStructure
|
1358
|
+
end
|
1359
|
+
|
1360
|
+
class DBProxyQuotaExceededFault < Aws::EmptyStructure
|
1361
|
+
end
|
1362
|
+
|
1363
|
+
class DBProxyTarget
|
1364
|
+
attr_accessor target_arn: ::String
|
1365
|
+
attr_accessor endpoint: ::String
|
1366
|
+
attr_accessor tracked_cluster_id: ::String
|
1367
|
+
attr_accessor rds_resource_id: ::String
|
1368
|
+
attr_accessor port: ::Integer
|
1369
|
+
attr_accessor type: ("RDS_INSTANCE" | "RDS_SERVERLESS_ENDPOINT" | "TRACKED_CLUSTER")
|
1370
|
+
attr_accessor role: ("READ_WRITE" | "READ_ONLY" | "UNKNOWN")
|
1371
|
+
attr_accessor target_health: Types::TargetHealth
|
1372
|
+
SENSITIVE: []
|
1373
|
+
end
|
1374
|
+
|
1375
|
+
class DBProxyTargetAlreadyRegisteredFault < Aws::EmptyStructure
|
1376
|
+
end
|
1377
|
+
|
1378
|
+
class DBProxyTargetGroup
|
1379
|
+
attr_accessor db_proxy_name: ::String
|
1380
|
+
attr_accessor target_group_name: ::String
|
1381
|
+
attr_accessor target_group_arn: ::String
|
1382
|
+
attr_accessor is_default: bool
|
1383
|
+
attr_accessor status: ::String
|
1384
|
+
attr_accessor connection_pool_config: Types::ConnectionPoolConfigurationInfo
|
1385
|
+
attr_accessor created_date: ::Time
|
1386
|
+
attr_accessor updated_date: ::Time
|
1387
|
+
SENSITIVE: []
|
1388
|
+
end
|
1389
|
+
|
1390
|
+
class DBProxyTargetGroupNotFoundFault < Aws::EmptyStructure
|
1391
|
+
end
|
1392
|
+
|
1393
|
+
class DBProxyTargetNotFoundFault < Aws::EmptyStructure
|
1394
|
+
end
|
1395
|
+
|
1396
|
+
class DBRecommendation
|
1397
|
+
attr_accessor recommendation_id: ::String
|
1398
|
+
attr_accessor type_id: ::String
|
1399
|
+
attr_accessor severity: ::String
|
1400
|
+
attr_accessor resource_arn: ::String
|
1401
|
+
attr_accessor status: ::String
|
1402
|
+
attr_accessor created_time: ::Time
|
1403
|
+
attr_accessor updated_time: ::Time
|
1404
|
+
attr_accessor detection: ::String
|
1405
|
+
attr_accessor recommendation: ::String
|
1406
|
+
attr_accessor description: ::String
|
1407
|
+
attr_accessor reason: ::String
|
1408
|
+
attr_accessor recommended_actions: ::Array[Types::RecommendedAction]
|
1409
|
+
attr_accessor category: ::String
|
1410
|
+
attr_accessor source: ::String
|
1411
|
+
attr_accessor type_detection: ::String
|
1412
|
+
attr_accessor type_recommendation: ::String
|
1413
|
+
attr_accessor impact: ::String
|
1414
|
+
attr_accessor additional_info: ::String
|
1415
|
+
attr_accessor links: ::Array[Types::DocLink]
|
1416
|
+
attr_accessor issue_details: Types::IssueDetails
|
1417
|
+
SENSITIVE: []
|
1418
|
+
end
|
1419
|
+
|
1420
|
+
class DBRecommendationMessage
|
1421
|
+
attr_accessor db_recommendation: Types::DBRecommendation
|
1422
|
+
SENSITIVE: []
|
1423
|
+
end
|
1424
|
+
|
1425
|
+
class DBRecommendationsMessage
|
1426
|
+
attr_accessor db_recommendations: ::Array[Types::DBRecommendation]
|
1427
|
+
attr_accessor marker: ::String
|
1428
|
+
SENSITIVE: []
|
1429
|
+
end
|
1430
|
+
|
1431
|
+
class DBSecurityGroup
|
1432
|
+
attr_accessor owner_id: ::String
|
1433
|
+
attr_accessor db_security_group_name: ::String
|
1434
|
+
attr_accessor db_security_group_description: ::String
|
1435
|
+
attr_accessor vpc_id: ::String
|
1436
|
+
attr_accessor ec2_security_groups: ::Array[Types::EC2SecurityGroup]
|
1437
|
+
attr_accessor ip_ranges: ::Array[Types::IPRange]
|
1438
|
+
attr_accessor db_security_group_arn: ::String
|
1439
|
+
SENSITIVE: []
|
1440
|
+
end
|
1441
|
+
|
1442
|
+
class DBSecurityGroupAlreadyExistsFault < Aws::EmptyStructure
|
1443
|
+
end
|
1444
|
+
|
1445
|
+
class DBSecurityGroupMembership
|
1446
|
+
attr_accessor db_security_group_name: ::String
|
1447
|
+
attr_accessor status: ::String
|
1448
|
+
SENSITIVE: []
|
1449
|
+
end
|
1450
|
+
|
1451
|
+
class DBSecurityGroupMessage
|
1452
|
+
attr_accessor marker: ::String
|
1453
|
+
attr_accessor db_security_groups: ::Array[Types::DBSecurityGroup]
|
1454
|
+
SENSITIVE: []
|
1455
|
+
end
|
1456
|
+
|
1457
|
+
class DBSecurityGroupNotFoundFault < Aws::EmptyStructure
|
1458
|
+
end
|
1459
|
+
|
1460
|
+
class DBSecurityGroupNotSupportedFault < Aws::EmptyStructure
|
1461
|
+
end
|
1462
|
+
|
1463
|
+
class DBSecurityGroupQuotaExceededFault < Aws::EmptyStructure
|
1464
|
+
end
|
1465
|
+
|
1466
|
+
class DBShardGroup
|
1467
|
+
attr_accessor db_shard_group_resource_id: ::String
|
1468
|
+
attr_accessor db_shard_group_identifier: ::String
|
1469
|
+
attr_accessor db_cluster_identifier: ::String
|
1470
|
+
attr_accessor max_acu: ::Float
|
1471
|
+
attr_accessor compute_redundancy: ::Integer
|
1472
|
+
attr_accessor status: ::String
|
1473
|
+
attr_accessor publicly_accessible: bool
|
1474
|
+
attr_accessor endpoint: ::String
|
1475
|
+
SENSITIVE: []
|
1476
|
+
end
|
1477
|
+
|
1478
|
+
class DBShardGroupAlreadyExistsFault < Aws::EmptyStructure
|
1479
|
+
end
|
1480
|
+
|
1481
|
+
class DBShardGroupNotFoundFault < Aws::EmptyStructure
|
1482
|
+
end
|
1483
|
+
|
1484
|
+
class DBSnapshot
|
1485
|
+
attr_accessor db_snapshot_identifier: ::String
|
1486
|
+
attr_accessor db_instance_identifier: ::String
|
1487
|
+
attr_accessor snapshot_create_time: ::Time
|
1488
|
+
attr_accessor engine: ::String
|
1489
|
+
attr_accessor allocated_storage: ::Integer
|
1490
|
+
attr_accessor status: ::String
|
1491
|
+
attr_accessor port: ::Integer
|
1492
|
+
attr_accessor availability_zone: ::String
|
1493
|
+
attr_accessor vpc_id: ::String
|
1494
|
+
attr_accessor instance_create_time: ::Time
|
1495
|
+
attr_accessor master_username: ::String
|
1496
|
+
attr_accessor engine_version: ::String
|
1497
|
+
attr_accessor license_model: ::String
|
1498
|
+
attr_accessor snapshot_type: ::String
|
1499
|
+
attr_accessor iops: ::Integer
|
1500
|
+
attr_accessor option_group_name: ::String
|
1501
|
+
attr_accessor percent_progress: ::Integer
|
1502
|
+
attr_accessor source_region: ::String
|
1503
|
+
attr_accessor source_db_snapshot_identifier: ::String
|
1504
|
+
attr_accessor storage_type: ::String
|
1505
|
+
attr_accessor tde_credential_arn: ::String
|
1506
|
+
attr_accessor encrypted: bool
|
1507
|
+
attr_accessor kms_key_id: ::String
|
1508
|
+
attr_accessor db_snapshot_arn: ::String
|
1509
|
+
attr_accessor timezone: ::String
|
1510
|
+
attr_accessor iam_database_authentication_enabled: bool
|
1511
|
+
attr_accessor processor_features: ::Array[Types::ProcessorFeature]
|
1512
|
+
attr_accessor dbi_resource_id: ::String
|
1513
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
1514
|
+
attr_accessor original_snapshot_create_time: ::Time
|
1515
|
+
attr_accessor snapshot_database_time: ::Time
|
1516
|
+
attr_accessor snapshot_target: ::String
|
1517
|
+
attr_accessor storage_throughput: ::Integer
|
1518
|
+
attr_accessor db_system_id: ::String
|
1519
|
+
attr_accessor dedicated_log_volume: bool
|
1520
|
+
attr_accessor multi_tenant: bool
|
1521
|
+
SENSITIVE: []
|
1522
|
+
end
|
1523
|
+
|
1524
|
+
class DBSnapshotAlreadyExistsFault < Aws::EmptyStructure
|
1525
|
+
end
|
1526
|
+
|
1527
|
+
class DBSnapshotAttribute
|
1528
|
+
attr_accessor attribute_name: ::String
|
1529
|
+
attr_accessor attribute_values: ::Array[::String]
|
1530
|
+
SENSITIVE: []
|
1531
|
+
end
|
1532
|
+
|
1533
|
+
class DBSnapshotAttributesResult
|
1534
|
+
attr_accessor db_snapshot_identifier: ::String
|
1535
|
+
attr_accessor db_snapshot_attributes: ::Array[Types::DBSnapshotAttribute]
|
1536
|
+
SENSITIVE: []
|
1537
|
+
end
|
1538
|
+
|
1539
|
+
class DBSnapshotMessage
|
1540
|
+
attr_accessor marker: ::String
|
1541
|
+
attr_accessor db_snapshots: ::Array[Types::DBSnapshot]
|
1542
|
+
SENSITIVE: []
|
1543
|
+
end
|
1544
|
+
|
1545
|
+
class DBSnapshotNotFoundFault < Aws::EmptyStructure
|
1546
|
+
end
|
1547
|
+
|
1548
|
+
class DBSnapshotTenantDatabase
|
1549
|
+
attr_accessor db_snapshot_identifier: ::String
|
1550
|
+
attr_accessor db_instance_identifier: ::String
|
1551
|
+
attr_accessor dbi_resource_id: ::String
|
1552
|
+
attr_accessor engine_name: ::String
|
1553
|
+
attr_accessor snapshot_type: ::String
|
1554
|
+
attr_accessor tenant_database_create_time: ::Time
|
1555
|
+
attr_accessor tenant_db_name: ::String
|
1556
|
+
attr_accessor master_username: ::String
|
1557
|
+
attr_accessor tenant_database_resource_id: ::String
|
1558
|
+
attr_accessor character_set_name: ::String
|
1559
|
+
attr_accessor db_snapshot_tenant_database_arn: ::String
|
1560
|
+
attr_accessor nchar_character_set_name: ::String
|
1561
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
1562
|
+
SENSITIVE: []
|
1563
|
+
end
|
1564
|
+
|
1565
|
+
class DBSnapshotTenantDatabaseNotFoundFault < Aws::EmptyStructure
|
1566
|
+
end
|
1567
|
+
|
1568
|
+
class DBSnapshotTenantDatabasesMessage
|
1569
|
+
attr_accessor marker: ::String
|
1570
|
+
attr_accessor db_snapshot_tenant_databases: ::Array[Types::DBSnapshotTenantDatabase]
|
1571
|
+
SENSITIVE: []
|
1572
|
+
end
|
1573
|
+
|
1574
|
+
class DBSubnetGroup
|
1575
|
+
attr_accessor db_subnet_group_name: ::String
|
1576
|
+
attr_accessor db_subnet_group_description: ::String
|
1577
|
+
attr_accessor vpc_id: ::String
|
1578
|
+
attr_accessor subnet_group_status: ::String
|
1579
|
+
attr_accessor subnets: ::Array[Types::Subnet]
|
1580
|
+
attr_accessor db_subnet_group_arn: ::String
|
1581
|
+
attr_accessor supported_network_types: ::Array[::String]
|
1582
|
+
SENSITIVE: []
|
1583
|
+
end
|
1584
|
+
|
1585
|
+
class DBSubnetGroupAlreadyExistsFault < Aws::EmptyStructure
|
1586
|
+
end
|
1587
|
+
|
1588
|
+
class DBSubnetGroupDoesNotCoverEnoughAZs < Aws::EmptyStructure
|
1589
|
+
end
|
1590
|
+
|
1591
|
+
class DBSubnetGroupMessage
|
1592
|
+
attr_accessor marker: ::String
|
1593
|
+
attr_accessor db_subnet_groups: ::Array[Types::DBSubnetGroup]
|
1594
|
+
SENSITIVE: []
|
1595
|
+
end
|
1596
|
+
|
1597
|
+
class DBSubnetGroupNotAllowedFault < Aws::EmptyStructure
|
1598
|
+
end
|
1599
|
+
|
1600
|
+
class DBSubnetGroupNotFoundFault < Aws::EmptyStructure
|
1601
|
+
end
|
1602
|
+
|
1603
|
+
class DBSubnetGroupQuotaExceededFault < Aws::EmptyStructure
|
1604
|
+
end
|
1605
|
+
|
1606
|
+
class DBSubnetQuotaExceededFault < Aws::EmptyStructure
|
1607
|
+
end
|
1608
|
+
|
1609
|
+
class DBUpgradeDependencyFailureFault < Aws::EmptyStructure
|
1610
|
+
end
|
1611
|
+
|
1612
|
+
class DeleteBlueGreenDeploymentRequest
|
1613
|
+
attr_accessor blue_green_deployment_identifier: ::String
|
1614
|
+
attr_accessor delete_target: bool
|
1615
|
+
SENSITIVE: []
|
1616
|
+
end
|
1617
|
+
|
1618
|
+
class DeleteBlueGreenDeploymentResponse
|
1619
|
+
attr_accessor blue_green_deployment: Types::BlueGreenDeployment
|
1620
|
+
SENSITIVE: []
|
1621
|
+
end
|
1622
|
+
|
1623
|
+
class DeleteCustomDBEngineVersionMessage
|
1624
|
+
attr_accessor engine: ::String
|
1625
|
+
attr_accessor engine_version: ::String
|
1626
|
+
SENSITIVE: []
|
1627
|
+
end
|
1628
|
+
|
1629
|
+
class DeleteDBClusterAutomatedBackupMessage
|
1630
|
+
attr_accessor db_cluster_resource_id: ::String
|
1631
|
+
SENSITIVE: []
|
1632
|
+
end
|
1633
|
+
|
1634
|
+
class DeleteDBClusterAutomatedBackupResult
|
1635
|
+
attr_accessor db_cluster_automated_backup: Types::DBClusterAutomatedBackup
|
1636
|
+
SENSITIVE: []
|
1637
|
+
end
|
1638
|
+
|
1639
|
+
class DeleteDBClusterEndpointMessage
|
1640
|
+
attr_accessor db_cluster_endpoint_identifier: ::String
|
1641
|
+
SENSITIVE: []
|
1642
|
+
end
|
1643
|
+
|
1644
|
+
class DeleteDBClusterMessage
|
1645
|
+
attr_accessor db_cluster_identifier: ::String
|
1646
|
+
attr_accessor skip_final_snapshot: bool
|
1647
|
+
attr_accessor final_db_snapshot_identifier: ::String
|
1648
|
+
attr_accessor delete_automated_backups: bool
|
1649
|
+
SENSITIVE: []
|
1650
|
+
end
|
1651
|
+
|
1652
|
+
class DeleteDBClusterParameterGroupMessage
|
1653
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
1654
|
+
SENSITIVE: []
|
1655
|
+
end
|
1656
|
+
|
1657
|
+
class DeleteDBClusterResult
|
1658
|
+
attr_accessor db_cluster: Types::DBCluster
|
1659
|
+
SENSITIVE: []
|
1660
|
+
end
|
1661
|
+
|
1662
|
+
class DeleteDBClusterSnapshotMessage
|
1663
|
+
attr_accessor db_cluster_snapshot_identifier: ::String
|
1664
|
+
SENSITIVE: []
|
1665
|
+
end
|
1666
|
+
|
1667
|
+
class DeleteDBClusterSnapshotResult
|
1668
|
+
attr_accessor db_cluster_snapshot: Types::DBClusterSnapshot
|
1669
|
+
SENSITIVE: []
|
1670
|
+
end
|
1671
|
+
|
1672
|
+
class DeleteDBInstanceAutomatedBackupMessage
|
1673
|
+
attr_accessor dbi_resource_id: ::String
|
1674
|
+
attr_accessor db_instance_automated_backups_arn: ::String
|
1675
|
+
SENSITIVE: []
|
1676
|
+
end
|
1677
|
+
|
1678
|
+
class DeleteDBInstanceAutomatedBackupResult
|
1679
|
+
attr_accessor db_instance_automated_backup: Types::DBInstanceAutomatedBackup
|
1680
|
+
SENSITIVE: []
|
1681
|
+
end
|
1682
|
+
|
1683
|
+
class DeleteDBInstanceMessage
|
1684
|
+
attr_accessor db_instance_identifier: ::String
|
1685
|
+
attr_accessor skip_final_snapshot: bool
|
1686
|
+
attr_accessor final_db_snapshot_identifier: ::String
|
1687
|
+
attr_accessor delete_automated_backups: bool
|
1688
|
+
SENSITIVE: []
|
1689
|
+
end
|
1690
|
+
|
1691
|
+
class DeleteDBInstanceResult
|
1692
|
+
attr_accessor db_instance: Types::DBInstance
|
1693
|
+
SENSITIVE: []
|
1694
|
+
end
|
1695
|
+
|
1696
|
+
class DeleteDBParameterGroupMessage
|
1697
|
+
attr_accessor db_parameter_group_name: ::String
|
1698
|
+
SENSITIVE: []
|
1699
|
+
end
|
1700
|
+
|
1701
|
+
class DeleteDBProxyEndpointRequest
|
1702
|
+
attr_accessor db_proxy_endpoint_name: ::String
|
1703
|
+
SENSITIVE: []
|
1704
|
+
end
|
1705
|
+
|
1706
|
+
class DeleteDBProxyEndpointResponse
|
1707
|
+
attr_accessor db_proxy_endpoint: Types::DBProxyEndpoint
|
1708
|
+
SENSITIVE: []
|
1709
|
+
end
|
1710
|
+
|
1711
|
+
class DeleteDBProxyRequest
|
1712
|
+
attr_accessor db_proxy_name: ::String
|
1713
|
+
SENSITIVE: []
|
1714
|
+
end
|
1715
|
+
|
1716
|
+
class DeleteDBProxyResponse
|
1717
|
+
attr_accessor db_proxy: Types::DBProxy
|
1718
|
+
SENSITIVE: []
|
1719
|
+
end
|
1720
|
+
|
1721
|
+
class DeleteDBSecurityGroupMessage
|
1722
|
+
attr_accessor db_security_group_name: ::String
|
1723
|
+
SENSITIVE: []
|
1724
|
+
end
|
1725
|
+
|
1726
|
+
class DeleteDBShardGroupMessage
|
1727
|
+
attr_accessor db_shard_group_identifier: ::String
|
1728
|
+
SENSITIVE: []
|
1729
|
+
end
|
1730
|
+
|
1731
|
+
class DeleteDBSnapshotMessage
|
1732
|
+
attr_accessor db_snapshot_identifier: ::String
|
1733
|
+
SENSITIVE: []
|
1734
|
+
end
|
1735
|
+
|
1736
|
+
class DeleteDBSnapshotResult
|
1737
|
+
attr_accessor db_snapshot: Types::DBSnapshot
|
1738
|
+
SENSITIVE: []
|
1739
|
+
end
|
1740
|
+
|
1741
|
+
class DeleteDBSubnetGroupMessage
|
1742
|
+
attr_accessor db_subnet_group_name: ::String
|
1743
|
+
SENSITIVE: []
|
1744
|
+
end
|
1745
|
+
|
1746
|
+
class DeleteEventSubscriptionMessage
|
1747
|
+
attr_accessor subscription_name: ::String
|
1748
|
+
SENSITIVE: []
|
1749
|
+
end
|
1750
|
+
|
1751
|
+
class DeleteEventSubscriptionResult
|
1752
|
+
attr_accessor event_subscription: Types::EventSubscription
|
1753
|
+
SENSITIVE: []
|
1754
|
+
end
|
1755
|
+
|
1756
|
+
class DeleteGlobalClusterMessage
|
1757
|
+
attr_accessor global_cluster_identifier: ::String
|
1758
|
+
SENSITIVE: []
|
1759
|
+
end
|
1760
|
+
|
1761
|
+
class DeleteGlobalClusterResult
|
1762
|
+
attr_accessor global_cluster: Types::GlobalCluster
|
1763
|
+
SENSITIVE: []
|
1764
|
+
end
|
1765
|
+
|
1766
|
+
class DeleteIntegrationMessage
|
1767
|
+
attr_accessor integration_identifier: ::String
|
1768
|
+
SENSITIVE: []
|
1769
|
+
end
|
1770
|
+
|
1771
|
+
class DeleteOptionGroupMessage
|
1772
|
+
attr_accessor option_group_name: ::String
|
1773
|
+
SENSITIVE: []
|
1774
|
+
end
|
1775
|
+
|
1776
|
+
class DeleteTenantDatabaseMessage
|
1777
|
+
attr_accessor db_instance_identifier: ::String
|
1778
|
+
attr_accessor tenant_db_name: ::String
|
1779
|
+
attr_accessor skip_final_snapshot: bool
|
1780
|
+
attr_accessor final_db_snapshot_identifier: ::String
|
1781
|
+
SENSITIVE: []
|
1782
|
+
end
|
1783
|
+
|
1784
|
+
class DeleteTenantDatabaseResult
|
1785
|
+
attr_accessor tenant_database: Types::TenantDatabase
|
1786
|
+
SENSITIVE: []
|
1787
|
+
end
|
1788
|
+
|
1789
|
+
class DeregisterDBProxyTargetsRequest
|
1790
|
+
attr_accessor db_proxy_name: ::String
|
1791
|
+
attr_accessor target_group_name: ::String
|
1792
|
+
attr_accessor db_instance_identifiers: ::Array[::String]
|
1793
|
+
attr_accessor db_cluster_identifiers: ::Array[::String]
|
1794
|
+
SENSITIVE: []
|
1795
|
+
end
|
1796
|
+
|
1797
|
+
class DeregisterDBProxyTargetsResponse < Aws::EmptyStructure
|
1798
|
+
end
|
1799
|
+
|
1800
|
+
class DescribeAccountAttributesMessage < Aws::EmptyStructure
|
1801
|
+
end
|
1802
|
+
|
1803
|
+
class DescribeBlueGreenDeploymentsRequest
|
1804
|
+
attr_accessor blue_green_deployment_identifier: ::String
|
1805
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1806
|
+
attr_accessor marker: ::String
|
1807
|
+
attr_accessor max_records: ::Integer
|
1808
|
+
SENSITIVE: []
|
1809
|
+
end
|
1810
|
+
|
1811
|
+
class DescribeBlueGreenDeploymentsResponse
|
1812
|
+
attr_accessor blue_green_deployments: ::Array[Types::BlueGreenDeployment]
|
1813
|
+
attr_accessor marker: ::String
|
1814
|
+
SENSITIVE: []
|
1815
|
+
end
|
1816
|
+
|
1817
|
+
class DescribeCertificatesMessage
|
1818
|
+
attr_accessor certificate_identifier: ::String
|
1819
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1820
|
+
attr_accessor max_records: ::Integer
|
1821
|
+
attr_accessor marker: ::String
|
1822
|
+
SENSITIVE: []
|
1823
|
+
end
|
1824
|
+
|
1825
|
+
class DescribeDBClusterAutomatedBackupsMessage
|
1826
|
+
attr_accessor db_cluster_resource_id: ::String
|
1827
|
+
attr_accessor db_cluster_identifier: ::String
|
1828
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1829
|
+
attr_accessor max_records: ::Integer
|
1830
|
+
attr_accessor marker: ::String
|
1831
|
+
SENSITIVE: []
|
1832
|
+
end
|
1833
|
+
|
1834
|
+
class DescribeDBClusterBacktracksMessage
|
1835
|
+
attr_accessor db_cluster_identifier: ::String
|
1836
|
+
attr_accessor backtrack_identifier: ::String
|
1837
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1838
|
+
attr_accessor max_records: ::Integer
|
1839
|
+
attr_accessor marker: ::String
|
1840
|
+
SENSITIVE: []
|
1841
|
+
end
|
1842
|
+
|
1843
|
+
class DescribeDBClusterEndpointsMessage
|
1844
|
+
attr_accessor db_cluster_identifier: ::String
|
1845
|
+
attr_accessor db_cluster_endpoint_identifier: ::String
|
1846
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1847
|
+
attr_accessor max_records: ::Integer
|
1848
|
+
attr_accessor marker: ::String
|
1849
|
+
SENSITIVE: []
|
1850
|
+
end
|
1851
|
+
|
1852
|
+
class DescribeDBClusterParameterGroupsMessage
|
1853
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
1854
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1855
|
+
attr_accessor max_records: ::Integer
|
1856
|
+
attr_accessor marker: ::String
|
1857
|
+
SENSITIVE: []
|
1858
|
+
end
|
1859
|
+
|
1860
|
+
class DescribeDBClusterParametersMessage
|
1861
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
1862
|
+
attr_accessor source: ::String
|
1863
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1864
|
+
attr_accessor max_records: ::Integer
|
1865
|
+
attr_accessor marker: ::String
|
1866
|
+
SENSITIVE: []
|
1867
|
+
end
|
1868
|
+
|
1869
|
+
class DescribeDBClusterSnapshotAttributesMessage
|
1870
|
+
attr_accessor db_cluster_snapshot_identifier: ::String
|
1871
|
+
SENSITIVE: []
|
1872
|
+
end
|
1873
|
+
|
1874
|
+
class DescribeDBClusterSnapshotAttributesResult
|
1875
|
+
attr_accessor db_cluster_snapshot_attributes_result: Types::DBClusterSnapshotAttributesResult
|
1876
|
+
SENSITIVE: []
|
1877
|
+
end
|
1878
|
+
|
1879
|
+
class DescribeDBClusterSnapshotsMessage
|
1880
|
+
attr_accessor db_cluster_identifier: ::String
|
1881
|
+
attr_accessor db_cluster_snapshot_identifier: ::String
|
1882
|
+
attr_accessor snapshot_type: ::String
|
1883
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1884
|
+
attr_accessor max_records: ::Integer
|
1885
|
+
attr_accessor marker: ::String
|
1886
|
+
attr_accessor include_shared: bool
|
1887
|
+
attr_accessor include_public: bool
|
1888
|
+
attr_accessor db_cluster_resource_id: ::String
|
1889
|
+
SENSITIVE: []
|
1890
|
+
end
|
1891
|
+
|
1892
|
+
class DescribeDBClustersMessage
|
1893
|
+
attr_accessor db_cluster_identifier: ::String
|
1894
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1895
|
+
attr_accessor max_records: ::Integer
|
1896
|
+
attr_accessor marker: ::String
|
1897
|
+
attr_accessor include_shared: bool
|
1898
|
+
SENSITIVE: []
|
1899
|
+
end
|
1900
|
+
|
1901
|
+
class DescribeDBEngineVersionsMessage
|
1902
|
+
attr_accessor engine: ::String
|
1903
|
+
attr_accessor engine_version: ::String
|
1904
|
+
attr_accessor db_parameter_group_family: ::String
|
1905
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1906
|
+
attr_accessor max_records: ::Integer
|
1907
|
+
attr_accessor marker: ::String
|
1908
|
+
attr_accessor default_only: bool
|
1909
|
+
attr_accessor list_supported_character_sets: bool
|
1910
|
+
attr_accessor list_supported_timezones: bool
|
1911
|
+
attr_accessor include_all: bool
|
1912
|
+
SENSITIVE: []
|
1913
|
+
end
|
1914
|
+
|
1915
|
+
class DescribeDBInstanceAutomatedBackupsMessage
|
1916
|
+
attr_accessor dbi_resource_id: ::String
|
1917
|
+
attr_accessor db_instance_identifier: ::String
|
1918
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1919
|
+
attr_accessor max_records: ::Integer
|
1920
|
+
attr_accessor marker: ::String
|
1921
|
+
attr_accessor db_instance_automated_backups_arn: ::String
|
1922
|
+
SENSITIVE: []
|
1923
|
+
end
|
1924
|
+
|
1925
|
+
class DescribeDBInstancesMessage
|
1926
|
+
attr_accessor db_instance_identifier: ::String
|
1927
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1928
|
+
attr_accessor max_records: ::Integer
|
1929
|
+
attr_accessor marker: ::String
|
1930
|
+
SENSITIVE: []
|
1931
|
+
end
|
1932
|
+
|
1933
|
+
class DescribeDBLogFilesDetails
|
1934
|
+
attr_accessor log_file_name: ::String
|
1935
|
+
attr_accessor last_written: ::Integer
|
1936
|
+
attr_accessor size: ::Integer
|
1937
|
+
SENSITIVE: []
|
1938
|
+
end
|
1939
|
+
|
1940
|
+
class DescribeDBLogFilesMessage
|
1941
|
+
attr_accessor db_instance_identifier: ::String
|
1942
|
+
attr_accessor filename_contains: ::String
|
1943
|
+
attr_accessor file_last_written: ::Integer
|
1944
|
+
attr_accessor file_size: ::Integer
|
1945
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1946
|
+
attr_accessor max_records: ::Integer
|
1947
|
+
attr_accessor marker: ::String
|
1948
|
+
SENSITIVE: []
|
1949
|
+
end
|
1950
|
+
|
1951
|
+
class DescribeDBLogFilesResponse
|
1952
|
+
attr_accessor describe_db_log_files: ::Array[Types::DescribeDBLogFilesDetails]
|
1953
|
+
attr_accessor marker: ::String
|
1954
|
+
SENSITIVE: []
|
1955
|
+
end
|
1956
|
+
|
1957
|
+
class DescribeDBParameterGroupsMessage
|
1958
|
+
attr_accessor db_parameter_group_name: ::String
|
1959
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1960
|
+
attr_accessor max_records: ::Integer
|
1961
|
+
attr_accessor marker: ::String
|
1962
|
+
SENSITIVE: []
|
1963
|
+
end
|
1964
|
+
|
1965
|
+
class DescribeDBParametersMessage
|
1966
|
+
attr_accessor db_parameter_group_name: ::String
|
1967
|
+
attr_accessor source: ::String
|
1968
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1969
|
+
attr_accessor max_records: ::Integer
|
1970
|
+
attr_accessor marker: ::String
|
1971
|
+
SENSITIVE: []
|
1972
|
+
end
|
1973
|
+
|
1974
|
+
class DescribeDBProxiesRequest
|
1975
|
+
attr_accessor db_proxy_name: ::String
|
1976
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1977
|
+
attr_accessor marker: ::String
|
1978
|
+
attr_accessor max_records: ::Integer
|
1979
|
+
SENSITIVE: []
|
1980
|
+
end
|
1981
|
+
|
1982
|
+
class DescribeDBProxiesResponse
|
1983
|
+
attr_accessor db_proxies: ::Array[Types::DBProxy]
|
1984
|
+
attr_accessor marker: ::String
|
1985
|
+
SENSITIVE: []
|
1986
|
+
end
|
1987
|
+
|
1988
|
+
class DescribeDBProxyEndpointsRequest
|
1989
|
+
attr_accessor db_proxy_name: ::String
|
1990
|
+
attr_accessor db_proxy_endpoint_name: ::String
|
1991
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1992
|
+
attr_accessor marker: ::String
|
1993
|
+
attr_accessor max_records: ::Integer
|
1994
|
+
SENSITIVE: []
|
1995
|
+
end
|
1996
|
+
|
1997
|
+
class DescribeDBProxyEndpointsResponse
|
1998
|
+
attr_accessor db_proxy_endpoints: ::Array[Types::DBProxyEndpoint]
|
1999
|
+
attr_accessor marker: ::String
|
2000
|
+
SENSITIVE: []
|
2001
|
+
end
|
2002
|
+
|
2003
|
+
class DescribeDBProxyTargetGroupsRequest
|
2004
|
+
attr_accessor db_proxy_name: ::String
|
2005
|
+
attr_accessor target_group_name: ::String
|
2006
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2007
|
+
attr_accessor marker: ::String
|
2008
|
+
attr_accessor max_records: ::Integer
|
2009
|
+
SENSITIVE: []
|
2010
|
+
end
|
2011
|
+
|
2012
|
+
class DescribeDBProxyTargetGroupsResponse
|
2013
|
+
attr_accessor target_groups: ::Array[Types::DBProxyTargetGroup]
|
2014
|
+
attr_accessor marker: ::String
|
2015
|
+
SENSITIVE: []
|
2016
|
+
end
|
2017
|
+
|
2018
|
+
class DescribeDBProxyTargetsRequest
|
2019
|
+
attr_accessor db_proxy_name: ::String
|
2020
|
+
attr_accessor target_group_name: ::String
|
2021
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2022
|
+
attr_accessor marker: ::String
|
2023
|
+
attr_accessor max_records: ::Integer
|
2024
|
+
SENSITIVE: []
|
2025
|
+
end
|
2026
|
+
|
2027
|
+
class DescribeDBProxyTargetsResponse
|
2028
|
+
attr_accessor targets: ::Array[Types::DBProxyTarget]
|
2029
|
+
attr_accessor marker: ::String
|
2030
|
+
SENSITIVE: []
|
2031
|
+
end
|
2032
|
+
|
2033
|
+
class DescribeDBRecommendationsMessage
|
2034
|
+
attr_accessor last_updated_after: ::Time
|
2035
|
+
attr_accessor last_updated_before: ::Time
|
2036
|
+
attr_accessor locale: ::String
|
2037
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2038
|
+
attr_accessor max_records: ::Integer
|
2039
|
+
attr_accessor marker: ::String
|
2040
|
+
SENSITIVE: []
|
2041
|
+
end
|
2042
|
+
|
2043
|
+
class DescribeDBSecurityGroupsMessage
|
2044
|
+
attr_accessor db_security_group_name: ::String
|
2045
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2046
|
+
attr_accessor max_records: ::Integer
|
2047
|
+
attr_accessor marker: ::String
|
2048
|
+
SENSITIVE: []
|
2049
|
+
end
|
2050
|
+
|
2051
|
+
class DescribeDBShardGroupsMessage
|
2052
|
+
attr_accessor db_shard_group_identifier: ::String
|
2053
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2054
|
+
attr_accessor marker: ::String
|
2055
|
+
attr_accessor max_records: ::Integer
|
2056
|
+
SENSITIVE: []
|
2057
|
+
end
|
2058
|
+
|
2059
|
+
class DescribeDBShardGroupsResponse
|
2060
|
+
attr_accessor db_shard_groups: ::Array[Types::DBShardGroup]
|
2061
|
+
attr_accessor marker: ::String
|
2062
|
+
SENSITIVE: []
|
2063
|
+
end
|
2064
|
+
|
2065
|
+
class DescribeDBSnapshotAttributesMessage
|
2066
|
+
attr_accessor db_snapshot_identifier: ::String
|
2067
|
+
SENSITIVE: []
|
2068
|
+
end
|
2069
|
+
|
2070
|
+
class DescribeDBSnapshotAttributesResult
|
2071
|
+
attr_accessor db_snapshot_attributes_result: Types::DBSnapshotAttributesResult
|
2072
|
+
SENSITIVE: []
|
2073
|
+
end
|
2074
|
+
|
2075
|
+
class DescribeDBSnapshotTenantDatabasesMessage
|
2076
|
+
attr_accessor db_instance_identifier: ::String
|
2077
|
+
attr_accessor db_snapshot_identifier: ::String
|
2078
|
+
attr_accessor snapshot_type: ::String
|
2079
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2080
|
+
attr_accessor max_records: ::Integer
|
2081
|
+
attr_accessor marker: ::String
|
2082
|
+
attr_accessor dbi_resource_id: ::String
|
2083
|
+
SENSITIVE: []
|
2084
|
+
end
|
2085
|
+
|
2086
|
+
class DescribeDBSnapshotsMessage
|
2087
|
+
attr_accessor db_instance_identifier: ::String
|
2088
|
+
attr_accessor db_snapshot_identifier: ::String
|
2089
|
+
attr_accessor snapshot_type: ::String
|
2090
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2091
|
+
attr_accessor max_records: ::Integer
|
2092
|
+
attr_accessor marker: ::String
|
2093
|
+
attr_accessor include_shared: bool
|
2094
|
+
attr_accessor include_public: bool
|
2095
|
+
attr_accessor dbi_resource_id: ::String
|
2096
|
+
SENSITIVE: []
|
2097
|
+
end
|
2098
|
+
|
2099
|
+
class DescribeDBSubnetGroupsMessage
|
2100
|
+
attr_accessor db_subnet_group_name: ::String
|
2101
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2102
|
+
attr_accessor max_records: ::Integer
|
2103
|
+
attr_accessor marker: ::String
|
2104
|
+
SENSITIVE: []
|
2105
|
+
end
|
2106
|
+
|
2107
|
+
class DescribeEngineDefaultClusterParametersMessage
|
2108
|
+
attr_accessor db_parameter_group_family: ::String
|
2109
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2110
|
+
attr_accessor max_records: ::Integer
|
2111
|
+
attr_accessor marker: ::String
|
2112
|
+
SENSITIVE: []
|
2113
|
+
end
|
2114
|
+
|
2115
|
+
class DescribeEngineDefaultClusterParametersResult
|
2116
|
+
attr_accessor engine_defaults: Types::EngineDefaults
|
2117
|
+
SENSITIVE: []
|
2118
|
+
end
|
2119
|
+
|
2120
|
+
class DescribeEngineDefaultParametersMessage
|
2121
|
+
attr_accessor db_parameter_group_family: ::String
|
2122
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2123
|
+
attr_accessor max_records: ::Integer
|
2124
|
+
attr_accessor marker: ::String
|
2125
|
+
SENSITIVE: []
|
2126
|
+
end
|
2127
|
+
|
2128
|
+
class DescribeEngineDefaultParametersResult
|
2129
|
+
attr_accessor engine_defaults: Types::EngineDefaults
|
2130
|
+
SENSITIVE: []
|
2131
|
+
end
|
2132
|
+
|
2133
|
+
class DescribeEventCategoriesMessage
|
2134
|
+
attr_accessor source_type: ::String
|
2135
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2136
|
+
SENSITIVE: []
|
2137
|
+
end
|
2138
|
+
|
2139
|
+
class DescribeEventSubscriptionsMessage
|
2140
|
+
attr_accessor subscription_name: ::String
|
2141
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2142
|
+
attr_accessor max_records: ::Integer
|
2143
|
+
attr_accessor marker: ::String
|
2144
|
+
SENSITIVE: []
|
2145
|
+
end
|
2146
|
+
|
2147
|
+
class DescribeEventsMessage
|
2148
|
+
attr_accessor source_identifier: ::String
|
2149
|
+
attr_accessor source_type: ("db-instance" | "db-parameter-group" | "db-security-group" | "db-snapshot" | "db-cluster" | "db-cluster-snapshot" | "custom-engine-version" | "db-proxy" | "blue-green-deployment")
|
2150
|
+
attr_accessor start_time: ::Time
|
2151
|
+
attr_accessor end_time: ::Time
|
2152
|
+
attr_accessor duration: ::Integer
|
2153
|
+
attr_accessor event_categories: ::Array[::String]
|
2154
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2155
|
+
attr_accessor max_records: ::Integer
|
2156
|
+
attr_accessor marker: ::String
|
2157
|
+
SENSITIVE: []
|
2158
|
+
end
|
2159
|
+
|
2160
|
+
class DescribeExportTasksMessage
|
2161
|
+
attr_accessor export_task_identifier: ::String
|
2162
|
+
attr_accessor source_arn: ::String
|
2163
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2164
|
+
attr_accessor marker: ::String
|
2165
|
+
attr_accessor max_records: ::Integer
|
2166
|
+
attr_accessor source_type: ("SNAPSHOT" | "CLUSTER")
|
2167
|
+
SENSITIVE: []
|
2168
|
+
end
|
2169
|
+
|
2170
|
+
class DescribeGlobalClustersMessage
|
2171
|
+
attr_accessor global_cluster_identifier: ::String
|
2172
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2173
|
+
attr_accessor max_records: ::Integer
|
2174
|
+
attr_accessor marker: ::String
|
2175
|
+
SENSITIVE: []
|
2176
|
+
end
|
2177
|
+
|
2178
|
+
class DescribeIntegrationsMessage
|
2179
|
+
attr_accessor integration_identifier: ::String
|
2180
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2181
|
+
attr_accessor max_records: ::Integer
|
2182
|
+
attr_accessor marker: ::String
|
2183
|
+
SENSITIVE: []
|
2184
|
+
end
|
2185
|
+
|
2186
|
+
class DescribeIntegrationsResponse
|
2187
|
+
attr_accessor marker: ::String
|
2188
|
+
attr_accessor integrations: ::Array[Types::Integration]
|
2189
|
+
SENSITIVE: []
|
2190
|
+
end
|
2191
|
+
|
2192
|
+
class DescribeOptionGroupOptionsMessage
|
2193
|
+
attr_accessor engine_name: ::String
|
2194
|
+
attr_accessor major_engine_version: ::String
|
2195
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2196
|
+
attr_accessor max_records: ::Integer
|
2197
|
+
attr_accessor marker: ::String
|
2198
|
+
SENSITIVE: []
|
2199
|
+
end
|
2200
|
+
|
2201
|
+
class DescribeOptionGroupsMessage
|
2202
|
+
attr_accessor option_group_name: ::String
|
2203
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2204
|
+
attr_accessor marker: ::String
|
2205
|
+
attr_accessor max_records: ::Integer
|
2206
|
+
attr_accessor engine_name: ::String
|
2207
|
+
attr_accessor major_engine_version: ::String
|
2208
|
+
SENSITIVE: []
|
2209
|
+
end
|
2210
|
+
|
2211
|
+
class DescribeOrderableDBInstanceOptionsMessage
|
2212
|
+
attr_accessor engine: ::String
|
2213
|
+
attr_accessor engine_version: ::String
|
2214
|
+
attr_accessor db_instance_class: ::String
|
2215
|
+
attr_accessor license_model: ::String
|
2216
|
+
attr_accessor availability_zone_group: ::String
|
2217
|
+
attr_accessor vpc: bool
|
2218
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2219
|
+
attr_accessor max_records: ::Integer
|
2220
|
+
attr_accessor marker: ::String
|
2221
|
+
SENSITIVE: []
|
2222
|
+
end
|
2223
|
+
|
2224
|
+
class DescribePendingMaintenanceActionsMessage
|
2225
|
+
attr_accessor resource_identifier: ::String
|
2226
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2227
|
+
attr_accessor marker: ::String
|
2228
|
+
attr_accessor max_records: ::Integer
|
2229
|
+
SENSITIVE: []
|
2230
|
+
end
|
2231
|
+
|
2232
|
+
class DescribeReservedDBInstancesMessage
|
2233
|
+
attr_accessor reserved_db_instance_id: ::String
|
2234
|
+
attr_accessor reserved_db_instances_offering_id: ::String
|
2235
|
+
attr_accessor db_instance_class: ::String
|
2236
|
+
attr_accessor duration: ::String
|
2237
|
+
attr_accessor product_description: ::String
|
2238
|
+
attr_accessor offering_type: ::String
|
2239
|
+
attr_accessor multi_az: bool
|
2240
|
+
attr_accessor lease_id: ::String
|
2241
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2242
|
+
attr_accessor max_records: ::Integer
|
2243
|
+
attr_accessor marker: ::String
|
2244
|
+
SENSITIVE: []
|
2245
|
+
end
|
2246
|
+
|
2247
|
+
class DescribeReservedDBInstancesOfferingsMessage
|
2248
|
+
attr_accessor reserved_db_instances_offering_id: ::String
|
2249
|
+
attr_accessor db_instance_class: ::String
|
2250
|
+
attr_accessor duration: ::String
|
2251
|
+
attr_accessor product_description: ::String
|
2252
|
+
attr_accessor offering_type: ::String
|
2253
|
+
attr_accessor multi_az: bool
|
2254
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2255
|
+
attr_accessor max_records: ::Integer
|
2256
|
+
attr_accessor marker: ::String
|
2257
|
+
SENSITIVE: []
|
2258
|
+
end
|
2259
|
+
|
2260
|
+
class DescribeSourceRegionsMessage
|
2261
|
+
attr_accessor region_name: ::String
|
2262
|
+
attr_accessor max_records: ::Integer
|
2263
|
+
attr_accessor marker: ::String
|
2264
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2265
|
+
SENSITIVE: []
|
2266
|
+
end
|
2267
|
+
|
2268
|
+
class DescribeTenantDatabasesMessage
|
2269
|
+
attr_accessor db_instance_identifier: ::String
|
2270
|
+
attr_accessor tenant_db_name: ::String
|
2271
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2272
|
+
attr_accessor marker: ::String
|
2273
|
+
attr_accessor max_records: ::Integer
|
2274
|
+
SENSITIVE: []
|
2275
|
+
end
|
2276
|
+
|
2277
|
+
class DescribeValidDBInstanceModificationsMessage
|
2278
|
+
attr_accessor db_instance_identifier: ::String
|
2279
|
+
SENSITIVE: []
|
2280
|
+
end
|
2281
|
+
|
2282
|
+
class DescribeValidDBInstanceModificationsResult
|
2283
|
+
attr_accessor valid_db_instance_modifications_message: Types::ValidDBInstanceModificationsMessage
|
2284
|
+
SENSITIVE: []
|
2285
|
+
end
|
2286
|
+
|
2287
|
+
class DisableHttpEndpointRequest
|
2288
|
+
attr_accessor resource_arn: ::String
|
2289
|
+
SENSITIVE: []
|
2290
|
+
end
|
2291
|
+
|
2292
|
+
class DisableHttpEndpointResponse
|
2293
|
+
attr_accessor resource_arn: ::String
|
2294
|
+
attr_accessor http_endpoint_enabled: bool
|
2295
|
+
SENSITIVE: []
|
2296
|
+
end
|
2297
|
+
|
2298
|
+
class DocLink
|
2299
|
+
attr_accessor text: ::String
|
2300
|
+
attr_accessor url: ::String
|
2301
|
+
SENSITIVE: []
|
2302
|
+
end
|
2303
|
+
|
2304
|
+
class DomainMembership
|
2305
|
+
attr_accessor domain: ::String
|
2306
|
+
attr_accessor status: ::String
|
2307
|
+
attr_accessor fqdn: ::String
|
2308
|
+
attr_accessor iam_role_name: ::String
|
2309
|
+
attr_accessor ou: ::String
|
2310
|
+
attr_accessor auth_secret_arn: ::String
|
2311
|
+
attr_accessor dns_ips: ::Array[::String]
|
2312
|
+
SENSITIVE: []
|
2313
|
+
end
|
2314
|
+
|
2315
|
+
class DomainNotFoundFault < Aws::EmptyStructure
|
2316
|
+
end
|
2317
|
+
|
2318
|
+
class DoubleRange
|
2319
|
+
attr_accessor from: ::Float
|
2320
|
+
attr_accessor to: ::Float
|
2321
|
+
SENSITIVE: []
|
2322
|
+
end
|
2323
|
+
|
2324
|
+
class DownloadDBLogFilePortionDetails
|
2325
|
+
attr_accessor log_file_data: ::String
|
2326
|
+
attr_accessor marker: ::String
|
2327
|
+
attr_accessor additional_data_pending: bool
|
2328
|
+
SENSITIVE: []
|
2329
|
+
end
|
2330
|
+
|
2331
|
+
class DownloadDBLogFilePortionMessage
|
2332
|
+
attr_accessor db_instance_identifier: ::String
|
2333
|
+
attr_accessor log_file_name: ::String
|
2334
|
+
attr_accessor marker: ::String
|
2335
|
+
attr_accessor number_of_lines: ::Integer
|
2336
|
+
SENSITIVE: []
|
2337
|
+
end
|
2338
|
+
|
2339
|
+
class EC2SecurityGroup
|
2340
|
+
attr_accessor status: ::String
|
2341
|
+
attr_accessor ec2_security_group_name: ::String
|
2342
|
+
attr_accessor ec2_security_group_id: ::String
|
2343
|
+
attr_accessor ec2_security_group_owner_id: ::String
|
2344
|
+
SENSITIVE: []
|
2345
|
+
end
|
2346
|
+
|
2347
|
+
class Ec2ImagePropertiesNotSupportedFault < Aws::EmptyStructure
|
2348
|
+
end
|
2349
|
+
|
2350
|
+
class EnableHttpEndpointRequest
|
2351
|
+
attr_accessor resource_arn: ::String
|
2352
|
+
SENSITIVE: []
|
2353
|
+
end
|
2354
|
+
|
2355
|
+
class EnableHttpEndpointResponse
|
2356
|
+
attr_accessor resource_arn: ::String
|
2357
|
+
attr_accessor http_endpoint_enabled: bool
|
2358
|
+
SENSITIVE: []
|
2359
|
+
end
|
2360
|
+
|
2361
|
+
class Endpoint
|
2362
|
+
attr_accessor address: ::String
|
2363
|
+
attr_accessor port: ::Integer
|
2364
|
+
attr_accessor hosted_zone_id: ::String
|
2365
|
+
SENSITIVE: []
|
2366
|
+
end
|
2367
|
+
|
2368
|
+
class EngineDefaults
|
2369
|
+
attr_accessor db_parameter_group_family: ::String
|
2370
|
+
attr_accessor marker: ::String
|
2371
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
2372
|
+
SENSITIVE: []
|
2373
|
+
end
|
2374
|
+
|
2375
|
+
class Event
|
2376
|
+
attr_accessor source_identifier: ::String
|
2377
|
+
attr_accessor source_type: ("db-instance" | "db-parameter-group" | "db-security-group" | "db-snapshot" | "db-cluster" | "db-cluster-snapshot" | "custom-engine-version" | "db-proxy" | "blue-green-deployment")
|
2378
|
+
attr_accessor message: ::String
|
2379
|
+
attr_accessor event_categories: ::Array[::String]
|
2380
|
+
attr_accessor date: ::Time
|
2381
|
+
attr_accessor source_arn: ::String
|
2382
|
+
SENSITIVE: []
|
2383
|
+
end
|
2384
|
+
|
2385
|
+
class EventCategoriesMap
|
2386
|
+
attr_accessor source_type: ::String
|
2387
|
+
attr_accessor event_categories: ::Array[::String]
|
2388
|
+
SENSITIVE: []
|
2389
|
+
end
|
2390
|
+
|
2391
|
+
class EventCategoriesMessage
|
2392
|
+
attr_accessor event_categories_map_list: ::Array[Types::EventCategoriesMap]
|
2393
|
+
SENSITIVE: []
|
2394
|
+
end
|
2395
|
+
|
2396
|
+
class EventSubscription
|
2397
|
+
attr_accessor customer_aws_id: ::String
|
2398
|
+
attr_accessor cust_subscription_id: ::String
|
2399
|
+
attr_accessor sns_topic_arn: ::String
|
2400
|
+
attr_accessor status: ::String
|
2401
|
+
attr_accessor subscription_creation_time: ::String
|
2402
|
+
attr_accessor source_type: ::String
|
2403
|
+
attr_accessor source_ids_list: ::Array[::String]
|
2404
|
+
attr_accessor event_categories_list: ::Array[::String]
|
2405
|
+
attr_accessor enabled: bool
|
2406
|
+
attr_accessor event_subscription_arn: ::String
|
2407
|
+
SENSITIVE: []
|
2408
|
+
end
|
2409
|
+
|
2410
|
+
class EventSubscriptionQuotaExceededFault < Aws::EmptyStructure
|
2411
|
+
end
|
2412
|
+
|
2413
|
+
class EventSubscriptionsMessage
|
2414
|
+
attr_accessor marker: ::String
|
2415
|
+
attr_accessor event_subscriptions_list: ::Array[Types::EventSubscription]
|
2416
|
+
SENSITIVE: []
|
2417
|
+
end
|
2418
|
+
|
2419
|
+
class EventsMessage
|
2420
|
+
attr_accessor marker: ::String
|
2421
|
+
attr_accessor events: ::Array[Types::Event]
|
2422
|
+
SENSITIVE: []
|
2423
|
+
end
|
2424
|
+
|
2425
|
+
class ExportTask
|
2426
|
+
attr_accessor export_task_identifier: ::String
|
2427
|
+
attr_accessor source_arn: ::String
|
2428
|
+
attr_accessor export_only: ::Array[::String]
|
2429
|
+
attr_accessor snapshot_time: ::Time
|
2430
|
+
attr_accessor task_start_time: ::Time
|
2431
|
+
attr_accessor task_end_time: ::Time
|
2432
|
+
attr_accessor s3_bucket: ::String
|
2433
|
+
attr_accessor s3_prefix: ::String
|
2434
|
+
attr_accessor iam_role_arn: ::String
|
2435
|
+
attr_accessor kms_key_id: ::String
|
2436
|
+
attr_accessor status: ::String
|
2437
|
+
attr_accessor percent_progress: ::Integer
|
2438
|
+
attr_accessor total_extracted_data_in_gb: ::Integer
|
2439
|
+
attr_accessor failure_cause: ::String
|
2440
|
+
attr_accessor warning_message: ::String
|
2441
|
+
attr_accessor source_type: ("SNAPSHOT" | "CLUSTER")
|
2442
|
+
SENSITIVE: []
|
2443
|
+
end
|
2444
|
+
|
2445
|
+
class ExportTaskAlreadyExistsFault < Aws::EmptyStructure
|
2446
|
+
end
|
2447
|
+
|
2448
|
+
class ExportTaskNotFoundFault < Aws::EmptyStructure
|
2449
|
+
end
|
2450
|
+
|
2451
|
+
class ExportTasksMessage
|
2452
|
+
attr_accessor marker: ::String
|
2453
|
+
attr_accessor export_tasks: ::Array[Types::ExportTask]
|
2454
|
+
SENSITIVE: []
|
2455
|
+
end
|
2456
|
+
|
2457
|
+
class FailoverDBClusterMessage
|
2458
|
+
attr_accessor db_cluster_identifier: ::String
|
2459
|
+
attr_accessor target_db_instance_identifier: ::String
|
2460
|
+
SENSITIVE: []
|
2461
|
+
end
|
2462
|
+
|
2463
|
+
class FailoverDBClusterResult
|
2464
|
+
attr_accessor db_cluster: Types::DBCluster
|
2465
|
+
SENSITIVE: []
|
2466
|
+
end
|
2467
|
+
|
2468
|
+
class FailoverGlobalClusterMessage
|
2469
|
+
attr_accessor global_cluster_identifier: ::String
|
2470
|
+
attr_accessor target_db_cluster_identifier: ::String
|
2471
|
+
attr_accessor allow_data_loss: bool
|
2472
|
+
attr_accessor switchover: bool
|
2473
|
+
SENSITIVE: []
|
2474
|
+
end
|
2475
|
+
|
2476
|
+
class FailoverGlobalClusterResult
|
2477
|
+
attr_accessor global_cluster: Types::GlobalCluster
|
2478
|
+
SENSITIVE: []
|
2479
|
+
end
|
2480
|
+
|
2481
|
+
class FailoverState
|
2482
|
+
attr_accessor status: ("pending" | "failing-over" | "cancelling")
|
2483
|
+
attr_accessor from_db_cluster_arn: ::String
|
2484
|
+
attr_accessor to_db_cluster_arn: ::String
|
2485
|
+
attr_accessor is_data_loss_allowed: bool
|
2486
|
+
SENSITIVE: []
|
2487
|
+
end
|
2488
|
+
|
2489
|
+
class Filter
|
2490
|
+
attr_accessor name: ::String
|
2491
|
+
attr_accessor values: ::Array[::String]
|
2492
|
+
SENSITIVE: []
|
2493
|
+
end
|
2494
|
+
|
2495
|
+
class GlobalCluster
|
2496
|
+
attr_accessor global_cluster_identifier: ::String
|
2497
|
+
attr_accessor global_cluster_resource_id: ::String
|
2498
|
+
attr_accessor global_cluster_arn: ::String
|
2499
|
+
attr_accessor status: ::String
|
2500
|
+
attr_accessor engine: ::String
|
2501
|
+
attr_accessor engine_version: ::String
|
2502
|
+
attr_accessor database_name: ::String
|
2503
|
+
attr_accessor storage_encrypted: bool
|
2504
|
+
attr_accessor deletion_protection: bool
|
2505
|
+
attr_accessor global_cluster_members: ::Array[Types::GlobalClusterMember]
|
2506
|
+
attr_accessor failover_state: Types::FailoverState
|
2507
|
+
SENSITIVE: []
|
2508
|
+
end
|
2509
|
+
|
2510
|
+
class GlobalClusterAlreadyExistsFault < Aws::EmptyStructure
|
2511
|
+
end
|
2512
|
+
|
2513
|
+
class GlobalClusterMember
|
2514
|
+
attr_accessor db_cluster_arn: ::String
|
2515
|
+
attr_accessor readers: ::Array[::String]
|
2516
|
+
attr_accessor is_writer: bool
|
2517
|
+
attr_accessor global_write_forwarding_status: ("enabled" | "disabled" | "enabling" | "disabling" | "unknown")
|
2518
|
+
attr_accessor synchronization_status: ("connected" | "pending-resync")
|
2519
|
+
SENSITIVE: []
|
2520
|
+
end
|
2521
|
+
|
2522
|
+
class GlobalClusterNotFoundFault < Aws::EmptyStructure
|
2523
|
+
end
|
2524
|
+
|
2525
|
+
class GlobalClusterQuotaExceededFault < Aws::EmptyStructure
|
2526
|
+
end
|
2527
|
+
|
2528
|
+
class GlobalClustersMessage
|
2529
|
+
attr_accessor marker: ::String
|
2530
|
+
attr_accessor global_clusters: ::Array[Types::GlobalCluster]
|
2531
|
+
SENSITIVE: []
|
2532
|
+
end
|
2533
|
+
|
2534
|
+
class IPRange
|
2535
|
+
attr_accessor status: ::String
|
2536
|
+
attr_accessor cidrip: ::String
|
2537
|
+
SENSITIVE: []
|
2538
|
+
end
|
2539
|
+
|
2540
|
+
class IamRoleMissingPermissionsFault < Aws::EmptyStructure
|
2541
|
+
end
|
2542
|
+
|
2543
|
+
class IamRoleNotFoundFault < Aws::EmptyStructure
|
2544
|
+
end
|
2545
|
+
|
2546
|
+
class InstanceQuotaExceededFault < Aws::EmptyStructure
|
2547
|
+
end
|
2548
|
+
|
2549
|
+
class InsufficientAvailableIPsInSubnetFault < Aws::EmptyStructure
|
2550
|
+
end
|
2551
|
+
|
2552
|
+
class InsufficientDBClusterCapacityFault < Aws::EmptyStructure
|
2553
|
+
end
|
2554
|
+
|
2555
|
+
class InsufficientDBInstanceCapacityFault < Aws::EmptyStructure
|
2556
|
+
end
|
2557
|
+
|
2558
|
+
class InsufficientStorageClusterCapacityFault < Aws::EmptyStructure
|
2559
|
+
end
|
2560
|
+
|
2561
|
+
class Integration
|
2562
|
+
attr_accessor source_arn: ::String
|
2563
|
+
attr_accessor target_arn: ::String
|
2564
|
+
attr_accessor integration_name: ::String
|
2565
|
+
attr_accessor integration_arn: ::String
|
2566
|
+
attr_accessor kms_key_id: ::String
|
2567
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
2568
|
+
attr_accessor status: ("creating" | "active" | "modifying" | "failed" | "deleting" | "syncing" | "needs_attention")
|
2569
|
+
attr_accessor tags: ::Array[Types::Tag]
|
2570
|
+
attr_accessor create_time: ::Time
|
2571
|
+
attr_accessor errors: ::Array[Types::IntegrationError]
|
2572
|
+
SENSITIVE: []
|
2573
|
+
end
|
2574
|
+
|
2575
|
+
class IntegrationAlreadyExistsFault < Aws::EmptyStructure
|
2576
|
+
end
|
2577
|
+
|
2578
|
+
class IntegrationConflictOperationFault < Aws::EmptyStructure
|
2579
|
+
end
|
2580
|
+
|
2581
|
+
class IntegrationError
|
2582
|
+
attr_accessor error_code: ::String
|
2583
|
+
attr_accessor error_message: ::String
|
2584
|
+
SENSITIVE: []
|
2585
|
+
end
|
2586
|
+
|
2587
|
+
class IntegrationNotFoundFault < Aws::EmptyStructure
|
2588
|
+
end
|
2589
|
+
|
2590
|
+
class IntegrationQuotaExceededFault < Aws::EmptyStructure
|
2591
|
+
end
|
2592
|
+
|
2593
|
+
class InvalidBlueGreenDeploymentStateFault < Aws::EmptyStructure
|
2594
|
+
end
|
2595
|
+
|
2596
|
+
class InvalidCustomDBEngineVersionStateFault < Aws::EmptyStructure
|
2597
|
+
end
|
2598
|
+
|
2599
|
+
class InvalidDBClusterAutomatedBackupStateFault < Aws::EmptyStructure
|
2600
|
+
end
|
2601
|
+
|
2602
|
+
class InvalidDBClusterCapacityFault < Aws::EmptyStructure
|
2603
|
+
end
|
2604
|
+
|
2605
|
+
class InvalidDBClusterEndpointStateFault < Aws::EmptyStructure
|
2606
|
+
end
|
2607
|
+
|
2608
|
+
class InvalidDBClusterSnapshotStateFault < Aws::EmptyStructure
|
2609
|
+
end
|
2610
|
+
|
2611
|
+
class InvalidDBClusterStateFault < Aws::EmptyStructure
|
2612
|
+
end
|
2613
|
+
|
2614
|
+
class InvalidDBInstanceAutomatedBackupStateFault < Aws::EmptyStructure
|
2615
|
+
end
|
2616
|
+
|
2617
|
+
class InvalidDBInstanceStateFault < Aws::EmptyStructure
|
2618
|
+
end
|
2619
|
+
|
2620
|
+
class InvalidDBParameterGroupStateFault < Aws::EmptyStructure
|
2621
|
+
end
|
2622
|
+
|
2623
|
+
class InvalidDBProxyEndpointStateFault < Aws::EmptyStructure
|
2624
|
+
end
|
2625
|
+
|
2626
|
+
class InvalidDBProxyStateFault < Aws::EmptyStructure
|
2627
|
+
end
|
2628
|
+
|
2629
|
+
class InvalidDBSecurityGroupStateFault < Aws::EmptyStructure
|
2630
|
+
end
|
2631
|
+
|
2632
|
+
class InvalidDBShardGroupStateFault < Aws::EmptyStructure
|
2633
|
+
end
|
2634
|
+
|
2635
|
+
class InvalidDBSnapshotStateFault < Aws::EmptyStructure
|
2636
|
+
end
|
2637
|
+
|
2638
|
+
class InvalidDBSubnetGroupFault < Aws::EmptyStructure
|
2639
|
+
end
|
2640
|
+
|
2641
|
+
class InvalidDBSubnetGroupStateFault < Aws::EmptyStructure
|
2642
|
+
end
|
2643
|
+
|
2644
|
+
class InvalidDBSubnetStateFault < Aws::EmptyStructure
|
2645
|
+
end
|
2646
|
+
|
2647
|
+
class InvalidEventSubscriptionStateFault < Aws::EmptyStructure
|
2648
|
+
end
|
2649
|
+
|
2650
|
+
class InvalidExportOnlyFault < Aws::EmptyStructure
|
2651
|
+
end
|
2652
|
+
|
2653
|
+
class InvalidExportSourceStateFault < Aws::EmptyStructure
|
2654
|
+
end
|
2655
|
+
|
2656
|
+
class InvalidExportTaskStateFault < Aws::EmptyStructure
|
2657
|
+
end
|
2658
|
+
|
2659
|
+
class InvalidGlobalClusterStateFault < Aws::EmptyStructure
|
2660
|
+
end
|
2661
|
+
|
2662
|
+
class InvalidIntegrationStateFault < Aws::EmptyStructure
|
2663
|
+
end
|
2664
|
+
|
2665
|
+
class InvalidMaxAcuFault < Aws::EmptyStructure
|
2666
|
+
end
|
2667
|
+
|
2668
|
+
class InvalidOptionGroupStateFault < Aws::EmptyStructure
|
2669
|
+
end
|
2670
|
+
|
2671
|
+
class InvalidResourceStateFault < Aws::EmptyStructure
|
2672
|
+
end
|
2673
|
+
|
2674
|
+
class InvalidRestoreFault < Aws::EmptyStructure
|
2675
|
+
end
|
2676
|
+
|
2677
|
+
class InvalidS3BucketFault < Aws::EmptyStructure
|
2678
|
+
end
|
2679
|
+
|
2680
|
+
class InvalidSubnet < Aws::EmptyStructure
|
2681
|
+
end
|
2682
|
+
|
2683
|
+
class InvalidVPCNetworkStateFault < Aws::EmptyStructure
|
2684
|
+
end
|
2685
|
+
|
2686
|
+
class IssueDetails
|
2687
|
+
attr_accessor performance_issue_details: Types::PerformanceIssueDetails
|
2688
|
+
SENSITIVE: []
|
2689
|
+
end
|
2690
|
+
|
2691
|
+
class KMSKeyNotAccessibleFault < Aws::EmptyStructure
|
2692
|
+
end
|
2693
|
+
|
2694
|
+
class LimitlessDatabase
|
2695
|
+
attr_accessor status: ("active" | "not-in-use" | "enabled" | "disabled" | "enabling" | "disabling" | "modifying-max-capacity" | "error")
|
2696
|
+
attr_accessor min_required_acu: ::Float
|
2697
|
+
SENSITIVE: []
|
2698
|
+
end
|
2699
|
+
|
2700
|
+
class ListTagsForResourceMessage
|
2701
|
+
attr_accessor resource_name: ::String
|
2702
|
+
attr_accessor filters: ::Array[Types::Filter]
|
2703
|
+
SENSITIVE: []
|
2704
|
+
end
|
2705
|
+
|
2706
|
+
class MasterUserSecret
|
2707
|
+
attr_accessor secret_arn: ::String
|
2708
|
+
attr_accessor secret_status: ::String
|
2709
|
+
attr_accessor kms_key_id: ::String
|
2710
|
+
SENSITIVE: []
|
2711
|
+
end
|
2712
|
+
|
2713
|
+
class MaxDBShardGroupLimitReached < Aws::EmptyStructure
|
2714
|
+
end
|
2715
|
+
|
2716
|
+
class Metric
|
2717
|
+
attr_accessor name: ::String
|
2718
|
+
attr_accessor references: ::Array[Types::MetricReference]
|
2719
|
+
attr_accessor statistics_details: ::String
|
2720
|
+
attr_accessor metric_query: Types::MetricQuery
|
2721
|
+
SENSITIVE: []
|
2722
|
+
end
|
2723
|
+
|
2724
|
+
class MetricQuery
|
2725
|
+
attr_accessor performance_insights_metric_query: Types::PerformanceInsightsMetricQuery
|
2726
|
+
SENSITIVE: []
|
2727
|
+
end
|
2728
|
+
|
2729
|
+
class MetricReference
|
2730
|
+
attr_accessor name: ::String
|
2731
|
+
attr_accessor reference_details: Types::ReferenceDetails
|
2732
|
+
SENSITIVE: []
|
2733
|
+
end
|
2734
|
+
|
2735
|
+
class MinimumEngineVersionPerAllowedValue
|
2736
|
+
attr_accessor allowed_value: ::String
|
2737
|
+
attr_accessor minimum_engine_version: ::String
|
2738
|
+
SENSITIVE: []
|
2739
|
+
end
|
2740
|
+
|
2741
|
+
class ModifyActivityStreamRequest
|
2742
|
+
attr_accessor resource_arn: ::String
|
2743
|
+
attr_accessor audit_policy_state: ("locked" | "unlocked")
|
2744
|
+
SENSITIVE: []
|
2745
|
+
end
|
2746
|
+
|
2747
|
+
class ModifyActivityStreamResponse
|
2748
|
+
attr_accessor kms_key_id: ::String
|
2749
|
+
attr_accessor kinesis_stream_name: ::String
|
2750
|
+
attr_accessor status: ("stopped" | "starting" | "started" | "stopping")
|
2751
|
+
attr_accessor mode: ("sync" | "async")
|
2752
|
+
attr_accessor engine_native_audit_fields_included: bool
|
2753
|
+
attr_accessor policy_status: ("locked" | "unlocked" | "locking-policy" | "unlocking-policy")
|
2754
|
+
SENSITIVE: []
|
2755
|
+
end
|
2756
|
+
|
2757
|
+
class ModifyCertificatesMessage
|
2758
|
+
attr_accessor certificate_identifier: ::String
|
2759
|
+
attr_accessor remove_customer_override: bool
|
2760
|
+
SENSITIVE: []
|
2761
|
+
end
|
2762
|
+
|
2763
|
+
class ModifyCertificatesResult
|
2764
|
+
attr_accessor certificate: Types::Certificate
|
2765
|
+
SENSITIVE: []
|
2766
|
+
end
|
2767
|
+
|
2768
|
+
class ModifyCurrentDBClusterCapacityMessage
|
2769
|
+
attr_accessor db_cluster_identifier: ::String
|
2770
|
+
attr_accessor capacity: ::Integer
|
2771
|
+
attr_accessor seconds_before_timeout: ::Integer
|
2772
|
+
attr_accessor timeout_action: ::String
|
2773
|
+
SENSITIVE: []
|
2774
|
+
end
|
2775
|
+
|
2776
|
+
class ModifyCustomDBEngineVersionMessage
|
2777
|
+
attr_accessor engine: ::String
|
2778
|
+
attr_accessor engine_version: ::String
|
2779
|
+
attr_accessor description: ::String
|
2780
|
+
attr_accessor status: ("available" | "inactive" | "inactive-except-restore")
|
2781
|
+
SENSITIVE: []
|
2782
|
+
end
|
2783
|
+
|
2784
|
+
class ModifyDBClusterEndpointMessage
|
2785
|
+
attr_accessor db_cluster_endpoint_identifier: ::String
|
2786
|
+
attr_accessor endpoint_type: ::String
|
2787
|
+
attr_accessor static_members: ::Array[::String]
|
2788
|
+
attr_accessor excluded_members: ::Array[::String]
|
2789
|
+
SENSITIVE: []
|
2790
|
+
end
|
2791
|
+
|
2792
|
+
class ModifyDBClusterMessage
|
2793
|
+
attr_accessor db_cluster_identifier: ::String
|
2794
|
+
attr_accessor new_db_cluster_identifier: ::String
|
2795
|
+
attr_accessor apply_immediately: bool
|
2796
|
+
attr_accessor backup_retention_period: ::Integer
|
2797
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
2798
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
2799
|
+
attr_accessor port: ::Integer
|
2800
|
+
attr_accessor master_user_password: ::String
|
2801
|
+
attr_accessor option_group_name: ::String
|
2802
|
+
attr_accessor preferred_backup_window: ::String
|
2803
|
+
attr_accessor preferred_maintenance_window: ::String
|
2804
|
+
attr_accessor enable_iam_database_authentication: bool
|
2805
|
+
attr_accessor backtrack_window: ::Integer
|
2806
|
+
attr_accessor cloudwatch_logs_export_configuration: Types::CloudwatchLogsExportConfiguration
|
2807
|
+
attr_accessor engine_version: ::String
|
2808
|
+
attr_accessor allow_major_version_upgrade: bool
|
2809
|
+
attr_accessor db_instance_parameter_group_name: ::String
|
2810
|
+
attr_accessor domain: ::String
|
2811
|
+
attr_accessor domain_iam_role_name: ::String
|
2812
|
+
attr_accessor scaling_configuration: Types::ScalingConfiguration
|
2813
|
+
attr_accessor deletion_protection: bool
|
2814
|
+
attr_accessor enable_http_endpoint: bool
|
2815
|
+
attr_accessor copy_tags_to_snapshot: bool
|
2816
|
+
attr_accessor enable_global_write_forwarding: bool
|
2817
|
+
attr_accessor db_cluster_instance_class: ::String
|
2818
|
+
attr_accessor allocated_storage: ::Integer
|
2819
|
+
attr_accessor storage_type: ::String
|
2820
|
+
attr_accessor iops: ::Integer
|
2821
|
+
attr_accessor auto_minor_version_upgrade: bool
|
2822
|
+
attr_accessor monitoring_interval: ::Integer
|
2823
|
+
attr_accessor monitoring_role_arn: ::String
|
2824
|
+
attr_accessor enable_performance_insights: bool
|
2825
|
+
attr_accessor performance_insights_kms_key_id: ::String
|
2826
|
+
attr_accessor performance_insights_retention_period: ::Integer
|
2827
|
+
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
2828
|
+
attr_accessor network_type: ::String
|
2829
|
+
attr_accessor manage_master_user_password: bool
|
2830
|
+
attr_accessor rotate_master_user_password: bool
|
2831
|
+
attr_accessor master_user_secret_kms_key_id: ::String
|
2832
|
+
attr_accessor engine_mode: ::String
|
2833
|
+
attr_accessor allow_engine_mode_change: bool
|
2834
|
+
attr_accessor enable_local_write_forwarding: bool
|
2835
|
+
attr_accessor aws_backup_recovery_point_arn: ::String
|
2836
|
+
attr_accessor enable_limitless_database: bool
|
2837
|
+
SENSITIVE: []
|
2838
|
+
end
|
2839
|
+
|
2840
|
+
class ModifyDBClusterParameterGroupMessage
|
2841
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
2842
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
2843
|
+
SENSITIVE: []
|
2844
|
+
end
|
2845
|
+
|
2846
|
+
class ModifyDBClusterResult
|
2847
|
+
attr_accessor db_cluster: Types::DBCluster
|
2848
|
+
SENSITIVE: []
|
2849
|
+
end
|
2850
|
+
|
2851
|
+
class ModifyDBClusterSnapshotAttributeMessage
|
2852
|
+
attr_accessor db_cluster_snapshot_identifier: ::String
|
2853
|
+
attr_accessor attribute_name: ::String
|
2854
|
+
attr_accessor values_to_add: ::Array[::String]
|
2855
|
+
attr_accessor values_to_remove: ::Array[::String]
|
2856
|
+
SENSITIVE: []
|
2857
|
+
end
|
2858
|
+
|
2859
|
+
class ModifyDBClusterSnapshotAttributeResult
|
2860
|
+
attr_accessor db_cluster_snapshot_attributes_result: Types::DBClusterSnapshotAttributesResult
|
2861
|
+
SENSITIVE: []
|
2862
|
+
end
|
2863
|
+
|
2864
|
+
class ModifyDBInstanceMessage
|
2865
|
+
attr_accessor db_instance_identifier: ::String
|
2866
|
+
attr_accessor allocated_storage: ::Integer
|
2867
|
+
attr_accessor db_instance_class: ::String
|
2868
|
+
attr_accessor db_subnet_group_name: ::String
|
2869
|
+
attr_accessor db_security_groups: ::Array[::String]
|
2870
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
2871
|
+
attr_accessor apply_immediately: bool
|
2872
|
+
attr_accessor master_user_password: ::String
|
2873
|
+
attr_accessor db_parameter_group_name: ::String
|
2874
|
+
attr_accessor backup_retention_period: ::Integer
|
2875
|
+
attr_accessor preferred_backup_window: ::String
|
2876
|
+
attr_accessor preferred_maintenance_window: ::String
|
2877
|
+
attr_accessor multi_az: bool
|
2878
|
+
attr_accessor engine_version: ::String
|
2879
|
+
attr_accessor allow_major_version_upgrade: bool
|
2880
|
+
attr_accessor auto_minor_version_upgrade: bool
|
2881
|
+
attr_accessor license_model: ::String
|
2882
|
+
attr_accessor iops: ::Integer
|
2883
|
+
attr_accessor option_group_name: ::String
|
2884
|
+
attr_accessor new_db_instance_identifier: ::String
|
2885
|
+
attr_accessor storage_type: ::String
|
2886
|
+
attr_accessor tde_credential_arn: ::String
|
2887
|
+
attr_accessor tde_credential_password: ::String
|
2888
|
+
attr_accessor ca_certificate_identifier: ::String
|
2889
|
+
attr_accessor domain: ::String
|
2890
|
+
attr_accessor domain_fqdn: ::String
|
2891
|
+
attr_accessor domain_ou: ::String
|
2892
|
+
attr_accessor domain_auth_secret_arn: ::String
|
2893
|
+
attr_accessor domain_dns_ips: ::Array[::String]
|
2894
|
+
attr_accessor copy_tags_to_snapshot: bool
|
2895
|
+
attr_accessor monitoring_interval: ::Integer
|
2896
|
+
attr_accessor db_port_number: ::Integer
|
2897
|
+
attr_accessor publicly_accessible: bool
|
2898
|
+
attr_accessor monitoring_role_arn: ::String
|
2899
|
+
attr_accessor domain_iam_role_name: ::String
|
2900
|
+
attr_accessor disable_domain: bool
|
2901
|
+
attr_accessor promotion_tier: ::Integer
|
2902
|
+
attr_accessor enable_iam_database_authentication: bool
|
2903
|
+
attr_accessor enable_performance_insights: bool
|
2904
|
+
attr_accessor performance_insights_kms_key_id: ::String
|
2905
|
+
attr_accessor performance_insights_retention_period: ::Integer
|
2906
|
+
attr_accessor cloudwatch_logs_export_configuration: Types::CloudwatchLogsExportConfiguration
|
2907
|
+
attr_accessor processor_features: ::Array[Types::ProcessorFeature]
|
2908
|
+
attr_accessor use_default_processor_features: bool
|
2909
|
+
attr_accessor deletion_protection: bool
|
2910
|
+
attr_accessor max_allocated_storage: ::Integer
|
2911
|
+
attr_accessor certificate_rotation_restart: bool
|
2912
|
+
attr_accessor replica_mode: ("open-read-only" | "mounted")
|
2913
|
+
attr_accessor enable_customer_owned_ip: bool
|
2914
|
+
attr_accessor aws_backup_recovery_point_arn: ::String
|
2915
|
+
attr_accessor automation_mode: ("full" | "all-paused")
|
2916
|
+
attr_accessor resume_full_automation_mode_minutes: ::Integer
|
2917
|
+
attr_accessor network_type: ::String
|
2918
|
+
attr_accessor storage_throughput: ::Integer
|
2919
|
+
attr_accessor manage_master_user_password: bool
|
2920
|
+
attr_accessor rotate_master_user_password: bool
|
2921
|
+
attr_accessor master_user_secret_kms_key_id: ::String
|
2922
|
+
attr_accessor engine: ::String
|
2923
|
+
attr_accessor dedicated_log_volume: bool
|
2924
|
+
attr_accessor multi_tenant: bool
|
2925
|
+
SENSITIVE: []
|
2926
|
+
end
|
2927
|
+
|
2928
|
+
class ModifyDBInstanceResult
|
2929
|
+
attr_accessor db_instance: Types::DBInstance
|
2930
|
+
SENSITIVE: []
|
2931
|
+
end
|
2932
|
+
|
2933
|
+
class ModifyDBParameterGroupMessage
|
2934
|
+
attr_accessor db_parameter_group_name: ::String
|
2935
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
2936
|
+
SENSITIVE: []
|
2937
|
+
end
|
2938
|
+
|
2939
|
+
class ModifyDBProxyEndpointRequest
|
2940
|
+
attr_accessor db_proxy_endpoint_name: ::String
|
2941
|
+
attr_accessor new_db_proxy_endpoint_name: ::String
|
2942
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
2943
|
+
SENSITIVE: []
|
2944
|
+
end
|
2945
|
+
|
2946
|
+
class ModifyDBProxyEndpointResponse
|
2947
|
+
attr_accessor db_proxy_endpoint: Types::DBProxyEndpoint
|
2948
|
+
SENSITIVE: []
|
2949
|
+
end
|
2950
|
+
|
2951
|
+
class ModifyDBProxyRequest
|
2952
|
+
attr_accessor db_proxy_name: ::String
|
2953
|
+
attr_accessor new_db_proxy_name: ::String
|
2954
|
+
attr_accessor auth: ::Array[Types::UserAuthConfig]
|
2955
|
+
attr_accessor require_tls: bool
|
2956
|
+
attr_accessor idle_client_timeout: ::Integer
|
2957
|
+
attr_accessor debug_logging: bool
|
2958
|
+
attr_accessor role_arn: ::String
|
2959
|
+
attr_accessor security_groups: ::Array[::String]
|
2960
|
+
SENSITIVE: []
|
2961
|
+
end
|
2962
|
+
|
2963
|
+
class ModifyDBProxyResponse
|
2964
|
+
attr_accessor db_proxy: Types::DBProxy
|
2965
|
+
SENSITIVE: []
|
2966
|
+
end
|
2967
|
+
|
2968
|
+
class ModifyDBProxyTargetGroupRequest
|
2969
|
+
attr_accessor target_group_name: ::String
|
2970
|
+
attr_accessor db_proxy_name: ::String
|
2971
|
+
attr_accessor connection_pool_config: Types::ConnectionPoolConfiguration
|
2972
|
+
attr_accessor new_name: ::String
|
2973
|
+
SENSITIVE: []
|
2974
|
+
end
|
2975
|
+
|
2976
|
+
class ModifyDBProxyTargetGroupResponse
|
2977
|
+
attr_accessor db_proxy_target_group: Types::DBProxyTargetGroup
|
2978
|
+
SENSITIVE: []
|
2979
|
+
end
|
2980
|
+
|
2981
|
+
class ModifyDBRecommendationMessage
|
2982
|
+
attr_accessor recommendation_id: ::String
|
2983
|
+
attr_accessor locale: ::String
|
2984
|
+
attr_accessor status: ::String
|
2985
|
+
attr_accessor recommended_action_updates: ::Array[Types::RecommendedActionUpdate]
|
2986
|
+
SENSITIVE: []
|
2987
|
+
end
|
2988
|
+
|
2989
|
+
class ModifyDBShardGroupMessage
|
2990
|
+
attr_accessor db_shard_group_identifier: ::String
|
2991
|
+
attr_accessor max_acu: ::Float
|
2992
|
+
SENSITIVE: []
|
2993
|
+
end
|
2994
|
+
|
2995
|
+
class ModifyDBSnapshotAttributeMessage
|
2996
|
+
attr_accessor db_snapshot_identifier: ::String
|
2997
|
+
attr_accessor attribute_name: ::String
|
2998
|
+
attr_accessor values_to_add: ::Array[::String]
|
2999
|
+
attr_accessor values_to_remove: ::Array[::String]
|
3000
|
+
SENSITIVE: []
|
3001
|
+
end
|
3002
|
+
|
3003
|
+
class ModifyDBSnapshotAttributeResult
|
3004
|
+
attr_accessor db_snapshot_attributes_result: Types::DBSnapshotAttributesResult
|
3005
|
+
SENSITIVE: []
|
3006
|
+
end
|
3007
|
+
|
3008
|
+
class ModifyDBSnapshotMessage
|
3009
|
+
attr_accessor db_snapshot_identifier: ::String
|
3010
|
+
attr_accessor engine_version: ::String
|
3011
|
+
attr_accessor option_group_name: ::String
|
3012
|
+
SENSITIVE: []
|
3013
|
+
end
|
3014
|
+
|
3015
|
+
class ModifyDBSnapshotResult
|
3016
|
+
attr_accessor db_snapshot: Types::DBSnapshot
|
3017
|
+
SENSITIVE: []
|
3018
|
+
end
|
3019
|
+
|
3020
|
+
class ModifyDBSubnetGroupMessage
|
3021
|
+
attr_accessor db_subnet_group_name: ::String
|
3022
|
+
attr_accessor db_subnet_group_description: ::String
|
3023
|
+
attr_accessor subnet_ids: ::Array[::String]
|
3024
|
+
SENSITIVE: []
|
3025
|
+
end
|
3026
|
+
|
3027
|
+
class ModifyDBSubnetGroupResult
|
3028
|
+
attr_accessor db_subnet_group: Types::DBSubnetGroup
|
3029
|
+
SENSITIVE: []
|
3030
|
+
end
|
3031
|
+
|
3032
|
+
class ModifyEventSubscriptionMessage
|
3033
|
+
attr_accessor subscription_name: ::String
|
3034
|
+
attr_accessor sns_topic_arn: ::String
|
3035
|
+
attr_accessor source_type: ::String
|
3036
|
+
attr_accessor event_categories: ::Array[::String]
|
3037
|
+
attr_accessor enabled: bool
|
3038
|
+
SENSITIVE: []
|
3039
|
+
end
|
3040
|
+
|
3041
|
+
class ModifyEventSubscriptionResult
|
3042
|
+
attr_accessor event_subscription: Types::EventSubscription
|
3043
|
+
SENSITIVE: []
|
3044
|
+
end
|
3045
|
+
|
3046
|
+
class ModifyGlobalClusterMessage
|
3047
|
+
attr_accessor global_cluster_identifier: ::String
|
3048
|
+
attr_accessor new_global_cluster_identifier: ::String
|
3049
|
+
attr_accessor deletion_protection: bool
|
3050
|
+
attr_accessor engine_version: ::String
|
3051
|
+
attr_accessor allow_major_version_upgrade: bool
|
3052
|
+
SENSITIVE: []
|
3053
|
+
end
|
3054
|
+
|
3055
|
+
class ModifyGlobalClusterResult
|
3056
|
+
attr_accessor global_cluster: Types::GlobalCluster
|
3057
|
+
SENSITIVE: []
|
3058
|
+
end
|
3059
|
+
|
3060
|
+
class ModifyOptionGroupMessage
|
3061
|
+
attr_accessor option_group_name: ::String
|
3062
|
+
attr_accessor options_to_include: ::Array[Types::OptionConfiguration]
|
3063
|
+
attr_accessor options_to_remove: ::Array[::String]
|
3064
|
+
attr_accessor apply_immediately: bool
|
3065
|
+
SENSITIVE: []
|
3066
|
+
end
|
3067
|
+
|
3068
|
+
class ModifyOptionGroupResult
|
3069
|
+
attr_accessor option_group: Types::OptionGroup
|
3070
|
+
SENSITIVE: []
|
3071
|
+
end
|
3072
|
+
|
3073
|
+
class ModifyTenantDatabaseMessage
|
3074
|
+
attr_accessor db_instance_identifier: ::String
|
3075
|
+
attr_accessor tenant_db_name: ::String
|
3076
|
+
attr_accessor master_user_password: ::String
|
3077
|
+
attr_accessor new_tenant_db_name: ::String
|
3078
|
+
SENSITIVE: [:master_user_password]
|
3079
|
+
end
|
3080
|
+
|
3081
|
+
class ModifyTenantDatabaseResult
|
3082
|
+
attr_accessor tenant_database: Types::TenantDatabase
|
3083
|
+
SENSITIVE: []
|
3084
|
+
end
|
3085
|
+
|
3086
|
+
class NetworkTypeNotSupported < Aws::EmptyStructure
|
3087
|
+
end
|
3088
|
+
|
3089
|
+
class Option
|
3090
|
+
attr_accessor option_name: ::String
|
3091
|
+
attr_accessor option_description: ::String
|
3092
|
+
attr_accessor persistent: bool
|
3093
|
+
attr_accessor permanent: bool
|
3094
|
+
attr_accessor port: ::Integer
|
3095
|
+
attr_accessor option_version: ::String
|
3096
|
+
attr_accessor option_settings: ::Array[Types::OptionSetting]
|
3097
|
+
attr_accessor db_security_group_memberships: ::Array[Types::DBSecurityGroupMembership]
|
3098
|
+
attr_accessor vpc_security_group_memberships: ::Array[Types::VpcSecurityGroupMembership]
|
3099
|
+
SENSITIVE: []
|
3100
|
+
end
|
3101
|
+
|
3102
|
+
class OptionConfiguration
|
3103
|
+
attr_accessor option_name: ::String
|
3104
|
+
attr_accessor port: ::Integer
|
3105
|
+
attr_accessor option_version: ::String
|
3106
|
+
attr_accessor db_security_group_memberships: ::Array[::String]
|
3107
|
+
attr_accessor vpc_security_group_memberships: ::Array[::String]
|
3108
|
+
attr_accessor option_settings: ::Array[Types::OptionSetting]
|
3109
|
+
SENSITIVE: []
|
3110
|
+
end
|
3111
|
+
|
3112
|
+
class OptionGroup
|
3113
|
+
attr_accessor option_group_name: ::String
|
3114
|
+
attr_accessor option_group_description: ::String
|
3115
|
+
attr_accessor engine_name: ::String
|
3116
|
+
attr_accessor major_engine_version: ::String
|
3117
|
+
attr_accessor options: ::Array[Types::Option]
|
3118
|
+
attr_accessor allows_vpc_and_non_vpc_instance_memberships: bool
|
3119
|
+
attr_accessor vpc_id: ::String
|
3120
|
+
attr_accessor option_group_arn: ::String
|
3121
|
+
attr_accessor source_option_group: ::String
|
3122
|
+
attr_accessor source_account_id: ::String
|
3123
|
+
attr_accessor copy_timestamp: ::Time
|
3124
|
+
SENSITIVE: []
|
3125
|
+
end
|
3126
|
+
|
3127
|
+
class OptionGroupAlreadyExistsFault < Aws::EmptyStructure
|
3128
|
+
end
|
3129
|
+
|
3130
|
+
class OptionGroupMembership
|
3131
|
+
attr_accessor option_group_name: ::String
|
3132
|
+
attr_accessor status: ::String
|
3133
|
+
SENSITIVE: []
|
3134
|
+
end
|
3135
|
+
|
3136
|
+
class OptionGroupNotFoundFault < Aws::EmptyStructure
|
3137
|
+
end
|
3138
|
+
|
3139
|
+
class OptionGroupOption
|
3140
|
+
attr_accessor name: ::String
|
3141
|
+
attr_accessor description: ::String
|
3142
|
+
attr_accessor engine_name: ::String
|
3143
|
+
attr_accessor major_engine_version: ::String
|
3144
|
+
attr_accessor minimum_required_minor_engine_version: ::String
|
3145
|
+
attr_accessor port_required: bool
|
3146
|
+
attr_accessor default_port: ::Integer
|
3147
|
+
attr_accessor options_depended_on: ::Array[::String]
|
3148
|
+
attr_accessor options_conflicts_with: ::Array[::String]
|
3149
|
+
attr_accessor persistent: bool
|
3150
|
+
attr_accessor permanent: bool
|
3151
|
+
attr_accessor requires_auto_minor_engine_version_upgrade: bool
|
3152
|
+
attr_accessor vpc_only: bool
|
3153
|
+
attr_accessor supports_option_version_downgrade: bool
|
3154
|
+
attr_accessor option_group_option_settings: ::Array[Types::OptionGroupOptionSetting]
|
3155
|
+
attr_accessor option_group_option_versions: ::Array[Types::OptionVersion]
|
3156
|
+
attr_accessor copyable_cross_account: bool
|
3157
|
+
SENSITIVE: []
|
3158
|
+
end
|
3159
|
+
|
3160
|
+
class OptionGroupOptionSetting
|
3161
|
+
attr_accessor setting_name: ::String
|
3162
|
+
attr_accessor setting_description: ::String
|
3163
|
+
attr_accessor default_value: ::String
|
3164
|
+
attr_accessor apply_type: ::String
|
3165
|
+
attr_accessor allowed_values: ::String
|
3166
|
+
attr_accessor is_modifiable: bool
|
3167
|
+
attr_accessor is_required: bool
|
3168
|
+
attr_accessor minimum_engine_version_per_allowed_value: ::Array[Types::MinimumEngineVersionPerAllowedValue]
|
3169
|
+
SENSITIVE: []
|
3170
|
+
end
|
3171
|
+
|
3172
|
+
class OptionGroupOptionsMessage
|
3173
|
+
attr_accessor option_group_options: ::Array[Types::OptionGroupOption]
|
3174
|
+
attr_accessor marker: ::String
|
3175
|
+
SENSITIVE: []
|
3176
|
+
end
|
3177
|
+
|
3178
|
+
class OptionGroupQuotaExceededFault < Aws::EmptyStructure
|
3179
|
+
end
|
3180
|
+
|
3181
|
+
class OptionGroups
|
3182
|
+
attr_accessor option_groups_list: ::Array[Types::OptionGroup]
|
3183
|
+
attr_accessor marker: ::String
|
3184
|
+
SENSITIVE: []
|
3185
|
+
end
|
3186
|
+
|
3187
|
+
class OptionSetting
|
3188
|
+
attr_accessor name: ::String
|
3189
|
+
attr_accessor value: ::String
|
3190
|
+
attr_accessor default_value: ::String
|
3191
|
+
attr_accessor description: ::String
|
3192
|
+
attr_accessor apply_type: ::String
|
3193
|
+
attr_accessor data_type: ::String
|
3194
|
+
attr_accessor allowed_values: ::String
|
3195
|
+
attr_accessor is_modifiable: bool
|
3196
|
+
attr_accessor is_collection: bool
|
3197
|
+
SENSITIVE: []
|
3198
|
+
end
|
3199
|
+
|
3200
|
+
class OptionVersion
|
3201
|
+
attr_accessor version: ::String
|
3202
|
+
attr_accessor is_default: bool
|
3203
|
+
SENSITIVE: []
|
3204
|
+
end
|
3205
|
+
|
3206
|
+
class OrderableDBInstanceOption
|
3207
|
+
attr_accessor engine: ::String
|
3208
|
+
attr_accessor engine_version: ::String
|
3209
|
+
attr_accessor db_instance_class: ::String
|
3210
|
+
attr_accessor license_model: ::String
|
3211
|
+
attr_accessor availability_zone_group: ::String
|
3212
|
+
attr_accessor availability_zones: ::Array[Types::AvailabilityZone]
|
3213
|
+
attr_accessor multi_az_capable: bool
|
3214
|
+
attr_accessor read_replica_capable: bool
|
3215
|
+
attr_accessor vpc: bool
|
3216
|
+
attr_accessor supports_storage_encryption: bool
|
3217
|
+
attr_accessor storage_type: ::String
|
3218
|
+
attr_accessor supports_iops: bool
|
3219
|
+
attr_accessor supports_enhanced_monitoring: bool
|
3220
|
+
attr_accessor supports_iam_database_authentication: bool
|
3221
|
+
attr_accessor supports_performance_insights: bool
|
3222
|
+
attr_accessor min_storage_size: ::Integer
|
3223
|
+
attr_accessor max_storage_size: ::Integer
|
3224
|
+
attr_accessor min_iops_per_db_instance: ::Integer
|
3225
|
+
attr_accessor max_iops_per_db_instance: ::Integer
|
3226
|
+
attr_accessor min_iops_per_gib: ::Float
|
3227
|
+
attr_accessor max_iops_per_gib: ::Float
|
3228
|
+
attr_accessor available_processor_features: ::Array[Types::AvailableProcessorFeature]
|
3229
|
+
attr_accessor supported_engine_modes: ::Array[::String]
|
3230
|
+
attr_accessor supports_storage_autoscaling: bool
|
3231
|
+
attr_accessor supports_kerberos_authentication: bool
|
3232
|
+
attr_accessor outpost_capable: bool
|
3233
|
+
attr_accessor supported_activity_stream_modes: ::Array[::String]
|
3234
|
+
attr_accessor supports_global_databases: bool
|
3235
|
+
attr_accessor supports_clusters: bool
|
3236
|
+
attr_accessor supported_network_types: ::Array[::String]
|
3237
|
+
attr_accessor supports_storage_throughput: bool
|
3238
|
+
attr_accessor min_storage_throughput_per_db_instance: ::Integer
|
3239
|
+
attr_accessor max_storage_throughput_per_db_instance: ::Integer
|
3240
|
+
attr_accessor min_storage_throughput_per_iops: ::Float
|
3241
|
+
attr_accessor max_storage_throughput_per_iops: ::Float
|
3242
|
+
attr_accessor supports_dedicated_log_volume: bool
|
3243
|
+
SENSITIVE: []
|
3244
|
+
end
|
3245
|
+
|
3246
|
+
class OrderableDBInstanceOptionsMessage
|
3247
|
+
attr_accessor orderable_db_instance_options: ::Array[Types::OrderableDBInstanceOption]
|
3248
|
+
attr_accessor marker: ::String
|
3249
|
+
SENSITIVE: []
|
3250
|
+
end
|
3251
|
+
|
3252
|
+
class Outpost
|
3253
|
+
attr_accessor arn: ::String
|
3254
|
+
SENSITIVE: []
|
3255
|
+
end
|
3256
|
+
|
3257
|
+
class Parameter
|
3258
|
+
attr_accessor parameter_name: ::String
|
3259
|
+
attr_accessor parameter_value: ::String
|
3260
|
+
attr_accessor description: ::String
|
3261
|
+
attr_accessor source: ::String
|
3262
|
+
attr_accessor apply_type: ::String
|
3263
|
+
attr_accessor data_type: ::String
|
3264
|
+
attr_accessor allowed_values: ::String
|
3265
|
+
attr_accessor is_modifiable: bool
|
3266
|
+
attr_accessor minimum_engine_version: ::String
|
3267
|
+
attr_accessor apply_method: ("immediate" | "pending-reboot")
|
3268
|
+
attr_accessor supported_engine_modes: ::Array[::String]
|
3269
|
+
SENSITIVE: []
|
3270
|
+
end
|
3271
|
+
|
3272
|
+
class PendingCloudwatchLogsExports
|
3273
|
+
attr_accessor log_types_to_enable: ::Array[::String]
|
3274
|
+
attr_accessor log_types_to_disable: ::Array[::String]
|
3275
|
+
SENSITIVE: []
|
3276
|
+
end
|
3277
|
+
|
3278
|
+
class PendingMaintenanceAction
|
3279
|
+
attr_accessor action: ::String
|
3280
|
+
attr_accessor auto_applied_after_date: ::Time
|
3281
|
+
attr_accessor forced_apply_date: ::Time
|
3282
|
+
attr_accessor opt_in_status: ::String
|
3283
|
+
attr_accessor current_apply_date: ::Time
|
3284
|
+
attr_accessor description: ::String
|
3285
|
+
SENSITIVE: []
|
3286
|
+
end
|
3287
|
+
|
3288
|
+
class PendingMaintenanceActionsMessage
|
3289
|
+
attr_accessor pending_maintenance_actions: ::Array[Types::ResourcePendingMaintenanceActions]
|
3290
|
+
attr_accessor marker: ::String
|
3291
|
+
SENSITIVE: []
|
3292
|
+
end
|
3293
|
+
|
3294
|
+
class PendingModifiedValues
|
3295
|
+
attr_accessor db_instance_class: ::String
|
3296
|
+
attr_accessor allocated_storage: ::Integer
|
3297
|
+
attr_accessor master_user_password: ::String
|
3298
|
+
attr_accessor port: ::Integer
|
3299
|
+
attr_accessor backup_retention_period: ::Integer
|
3300
|
+
attr_accessor multi_az: bool
|
3301
|
+
attr_accessor engine_version: ::String
|
3302
|
+
attr_accessor license_model: ::String
|
3303
|
+
attr_accessor iops: ::Integer
|
3304
|
+
attr_accessor db_instance_identifier: ::String
|
3305
|
+
attr_accessor storage_type: ::String
|
3306
|
+
attr_accessor ca_certificate_identifier: ::String
|
3307
|
+
attr_accessor db_subnet_group_name: ::String
|
3308
|
+
attr_accessor pending_cloudwatch_logs_exports: Types::PendingCloudwatchLogsExports
|
3309
|
+
attr_accessor processor_features: ::Array[Types::ProcessorFeature]
|
3310
|
+
attr_accessor iam_database_authentication_enabled: bool
|
3311
|
+
attr_accessor automation_mode: ("full" | "all-paused")
|
3312
|
+
attr_accessor resume_full_automation_mode_time: ::Time
|
3313
|
+
attr_accessor storage_throughput: ::Integer
|
3314
|
+
attr_accessor engine: ::String
|
3315
|
+
attr_accessor dedicated_log_volume: bool
|
3316
|
+
attr_accessor multi_tenant: bool
|
3317
|
+
SENSITIVE: []
|
3318
|
+
end
|
3319
|
+
|
3320
|
+
class PerformanceInsightsMetricDimensionGroup
|
3321
|
+
attr_accessor dimensions: ::Array[::String]
|
3322
|
+
attr_accessor group: ::String
|
3323
|
+
attr_accessor limit: ::Integer
|
3324
|
+
SENSITIVE: []
|
3325
|
+
end
|
3326
|
+
|
3327
|
+
class PerformanceInsightsMetricQuery
|
3328
|
+
attr_accessor group_by: Types::PerformanceInsightsMetricDimensionGroup
|
3329
|
+
attr_accessor metric: ::String
|
3330
|
+
SENSITIVE: []
|
3331
|
+
end
|
3332
|
+
|
3333
|
+
class PerformanceIssueDetails
|
3334
|
+
attr_accessor start_time: ::Time
|
3335
|
+
attr_accessor end_time: ::Time
|
3336
|
+
attr_accessor metrics: ::Array[Types::Metric]
|
3337
|
+
attr_accessor analysis: ::String
|
3338
|
+
SENSITIVE: []
|
3339
|
+
end
|
3340
|
+
|
3341
|
+
class PointInTimeRestoreNotEnabledFault < Aws::EmptyStructure
|
3342
|
+
end
|
3343
|
+
|
3344
|
+
class ProcessorFeature
|
3345
|
+
attr_accessor name: ::String
|
3346
|
+
attr_accessor value: ::String
|
3347
|
+
SENSITIVE: []
|
3348
|
+
end
|
3349
|
+
|
3350
|
+
class PromoteReadReplicaDBClusterMessage
|
3351
|
+
attr_accessor db_cluster_identifier: ::String
|
3352
|
+
SENSITIVE: []
|
3353
|
+
end
|
3354
|
+
|
3355
|
+
class PromoteReadReplicaDBClusterResult
|
3356
|
+
attr_accessor db_cluster: Types::DBCluster
|
3357
|
+
SENSITIVE: []
|
3358
|
+
end
|
3359
|
+
|
3360
|
+
class PromoteReadReplicaMessage
|
3361
|
+
attr_accessor db_instance_identifier: ::String
|
3362
|
+
attr_accessor backup_retention_period: ::Integer
|
3363
|
+
attr_accessor preferred_backup_window: ::String
|
3364
|
+
SENSITIVE: []
|
3365
|
+
end
|
3366
|
+
|
3367
|
+
class PromoteReadReplicaResult
|
3368
|
+
attr_accessor db_instance: Types::DBInstance
|
3369
|
+
SENSITIVE: []
|
3370
|
+
end
|
3371
|
+
|
3372
|
+
class ProvisionedIopsNotAvailableInAZFault < Aws::EmptyStructure
|
3373
|
+
end
|
3374
|
+
|
3375
|
+
class PurchaseReservedDBInstancesOfferingMessage
|
3376
|
+
attr_accessor reserved_db_instances_offering_id: ::String
|
3377
|
+
attr_accessor reserved_db_instance_id: ::String
|
3378
|
+
attr_accessor db_instance_count: ::Integer
|
3379
|
+
attr_accessor tags: ::Array[Types::Tag]
|
3380
|
+
SENSITIVE: []
|
3381
|
+
end
|
3382
|
+
|
3383
|
+
class PurchaseReservedDBInstancesOfferingResult
|
3384
|
+
attr_accessor reserved_db_instance: Types::ReservedDBInstance
|
3385
|
+
SENSITIVE: []
|
3386
|
+
end
|
3387
|
+
|
3388
|
+
class Range
|
3389
|
+
attr_accessor from: ::Integer
|
3390
|
+
attr_accessor to: ::Integer
|
3391
|
+
attr_accessor step: ::Integer
|
3392
|
+
SENSITIVE: []
|
3393
|
+
end
|
3394
|
+
|
3395
|
+
class RdsCustomClusterConfiguration
|
3396
|
+
attr_accessor interconnect_subnet_id: ::String
|
3397
|
+
attr_accessor transit_gateway_multicast_domain_id: ::String
|
3398
|
+
attr_accessor replica_mode: ("open-read-only" | "mounted")
|
3399
|
+
SENSITIVE: []
|
3400
|
+
end
|
3401
|
+
|
3402
|
+
class RebootDBClusterMessage
|
3403
|
+
attr_accessor db_cluster_identifier: ::String
|
3404
|
+
SENSITIVE: []
|
3405
|
+
end
|
3406
|
+
|
3407
|
+
class RebootDBClusterResult
|
3408
|
+
attr_accessor db_cluster: Types::DBCluster
|
3409
|
+
SENSITIVE: []
|
3410
|
+
end
|
3411
|
+
|
3412
|
+
class RebootDBInstanceMessage
|
3413
|
+
attr_accessor db_instance_identifier: ::String
|
3414
|
+
attr_accessor force_failover: bool
|
3415
|
+
SENSITIVE: []
|
3416
|
+
end
|
3417
|
+
|
3418
|
+
class RebootDBInstanceResult
|
3419
|
+
attr_accessor db_instance: Types::DBInstance
|
3420
|
+
SENSITIVE: []
|
3421
|
+
end
|
3422
|
+
|
3423
|
+
class RebootDBShardGroupMessage
|
3424
|
+
attr_accessor db_shard_group_identifier: ::String
|
3425
|
+
SENSITIVE: []
|
3426
|
+
end
|
3427
|
+
|
3428
|
+
class RecommendedAction
|
3429
|
+
attr_accessor action_id: ::String
|
3430
|
+
attr_accessor title: ::String
|
3431
|
+
attr_accessor description: ::String
|
3432
|
+
attr_accessor operation: ::String
|
3433
|
+
attr_accessor parameters: ::Array[Types::RecommendedActionParameter]
|
3434
|
+
attr_accessor apply_modes: ::Array[::String]
|
3435
|
+
attr_accessor status: ::String
|
3436
|
+
attr_accessor issue_details: Types::IssueDetails
|
3437
|
+
attr_accessor context_attributes: ::Array[Types::ContextAttribute]
|
3438
|
+
SENSITIVE: []
|
3439
|
+
end
|
3440
|
+
|
3441
|
+
class RecommendedActionParameter
|
3442
|
+
attr_accessor key: ::String
|
3443
|
+
attr_accessor value: ::String
|
3444
|
+
SENSITIVE: []
|
3445
|
+
end
|
3446
|
+
|
3447
|
+
class RecommendedActionUpdate
|
3448
|
+
attr_accessor action_id: ::String
|
3449
|
+
attr_accessor status: ::String
|
3450
|
+
SENSITIVE: []
|
3451
|
+
end
|
3452
|
+
|
3453
|
+
class RecurringCharge
|
3454
|
+
attr_accessor recurring_charge_amount: ::Float
|
3455
|
+
attr_accessor recurring_charge_frequency: ::String
|
3456
|
+
SENSITIVE: []
|
3457
|
+
end
|
3458
|
+
|
3459
|
+
class ReferenceDetails
|
3460
|
+
attr_accessor scalar_reference_details: Types::ScalarReferenceDetails
|
3461
|
+
SENSITIVE: []
|
3462
|
+
end
|
3463
|
+
|
3464
|
+
class RegisterDBProxyTargetsRequest
|
3465
|
+
attr_accessor db_proxy_name: ::String
|
3466
|
+
attr_accessor target_group_name: ::String
|
3467
|
+
attr_accessor db_instance_identifiers: ::Array[::String]
|
3468
|
+
attr_accessor db_cluster_identifiers: ::Array[::String]
|
3469
|
+
SENSITIVE: []
|
3470
|
+
end
|
3471
|
+
|
3472
|
+
class RegisterDBProxyTargetsResponse
|
3473
|
+
attr_accessor db_proxy_targets: ::Array[Types::DBProxyTarget]
|
3474
|
+
SENSITIVE: []
|
3475
|
+
end
|
3476
|
+
|
3477
|
+
class RemoveFromGlobalClusterMessage
|
3478
|
+
attr_accessor global_cluster_identifier: ::String
|
3479
|
+
attr_accessor db_cluster_identifier: ::String
|
3480
|
+
SENSITIVE: []
|
3481
|
+
end
|
3482
|
+
|
3483
|
+
class RemoveFromGlobalClusterResult
|
3484
|
+
attr_accessor global_cluster: Types::GlobalCluster
|
3485
|
+
SENSITIVE: []
|
3486
|
+
end
|
3487
|
+
|
3488
|
+
class RemoveRoleFromDBClusterMessage
|
3489
|
+
attr_accessor db_cluster_identifier: ::String
|
3490
|
+
attr_accessor role_arn: ::String
|
3491
|
+
attr_accessor feature_name: ::String
|
3492
|
+
SENSITIVE: []
|
3493
|
+
end
|
3494
|
+
|
3495
|
+
class RemoveRoleFromDBInstanceMessage
|
3496
|
+
attr_accessor db_instance_identifier: ::String
|
3497
|
+
attr_accessor role_arn: ::String
|
3498
|
+
attr_accessor feature_name: ::String
|
3499
|
+
SENSITIVE: []
|
3500
|
+
end
|
3501
|
+
|
3502
|
+
class RemoveSourceIdentifierFromSubscriptionMessage
|
3503
|
+
attr_accessor subscription_name: ::String
|
3504
|
+
attr_accessor source_identifier: ::String
|
3505
|
+
SENSITIVE: []
|
3506
|
+
end
|
3507
|
+
|
3508
|
+
class RemoveSourceIdentifierFromSubscriptionResult
|
3509
|
+
attr_accessor event_subscription: Types::EventSubscription
|
3510
|
+
SENSITIVE: []
|
3511
|
+
end
|
3512
|
+
|
3513
|
+
class RemoveTagsFromResourceMessage
|
3514
|
+
attr_accessor resource_name: ::String
|
3515
|
+
attr_accessor tag_keys: ::Array[::String]
|
3516
|
+
SENSITIVE: []
|
3517
|
+
end
|
3518
|
+
|
3519
|
+
class ReservedDBInstance
|
3520
|
+
attr_accessor reserved_db_instance_id: ::String
|
3521
|
+
attr_accessor reserved_db_instances_offering_id: ::String
|
3522
|
+
attr_accessor db_instance_class: ::String
|
3523
|
+
attr_accessor start_time: ::Time
|
3524
|
+
attr_accessor duration: ::Integer
|
3525
|
+
attr_accessor fixed_price: ::Float
|
3526
|
+
attr_accessor usage_price: ::Float
|
3527
|
+
attr_accessor currency_code: ::String
|
3528
|
+
attr_accessor db_instance_count: ::Integer
|
3529
|
+
attr_accessor product_description: ::String
|
3530
|
+
attr_accessor offering_type: ::String
|
3531
|
+
attr_accessor multi_az: bool
|
3532
|
+
attr_accessor state: ::String
|
3533
|
+
attr_accessor recurring_charges: ::Array[Types::RecurringCharge]
|
3534
|
+
attr_accessor reserved_db_instance_arn: ::String
|
3535
|
+
attr_accessor lease_id: ::String
|
3536
|
+
SENSITIVE: []
|
3537
|
+
end
|
3538
|
+
|
3539
|
+
class ReservedDBInstanceAlreadyExistsFault < Aws::EmptyStructure
|
3540
|
+
end
|
3541
|
+
|
3542
|
+
class ReservedDBInstanceMessage
|
3543
|
+
attr_accessor marker: ::String
|
3544
|
+
attr_accessor reserved_db_instances: ::Array[Types::ReservedDBInstance]
|
3545
|
+
SENSITIVE: []
|
3546
|
+
end
|
3547
|
+
|
3548
|
+
class ReservedDBInstanceNotFoundFault < Aws::EmptyStructure
|
3549
|
+
end
|
3550
|
+
|
3551
|
+
class ReservedDBInstanceQuotaExceededFault < Aws::EmptyStructure
|
3552
|
+
end
|
3553
|
+
|
3554
|
+
class ReservedDBInstancesOffering
|
3555
|
+
attr_accessor reserved_db_instances_offering_id: ::String
|
3556
|
+
attr_accessor db_instance_class: ::String
|
3557
|
+
attr_accessor duration: ::Integer
|
3558
|
+
attr_accessor fixed_price: ::Float
|
3559
|
+
attr_accessor usage_price: ::Float
|
3560
|
+
attr_accessor currency_code: ::String
|
3561
|
+
attr_accessor product_description: ::String
|
3562
|
+
attr_accessor offering_type: ::String
|
3563
|
+
attr_accessor multi_az: bool
|
3564
|
+
attr_accessor recurring_charges: ::Array[Types::RecurringCharge]
|
3565
|
+
SENSITIVE: []
|
3566
|
+
end
|
3567
|
+
|
3568
|
+
class ReservedDBInstancesOfferingMessage
|
3569
|
+
attr_accessor marker: ::String
|
3570
|
+
attr_accessor reserved_db_instances_offerings: ::Array[Types::ReservedDBInstancesOffering]
|
3571
|
+
SENSITIVE: []
|
3572
|
+
end
|
3573
|
+
|
3574
|
+
class ReservedDBInstancesOfferingNotFoundFault < Aws::EmptyStructure
|
3575
|
+
end
|
3576
|
+
|
3577
|
+
class ResetDBClusterParameterGroupMessage
|
3578
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
3579
|
+
attr_accessor reset_all_parameters: bool
|
3580
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
3581
|
+
SENSITIVE: []
|
3582
|
+
end
|
3583
|
+
|
3584
|
+
class ResetDBParameterGroupMessage
|
3585
|
+
attr_accessor db_parameter_group_name: ::String
|
3586
|
+
attr_accessor reset_all_parameters: bool
|
3587
|
+
attr_accessor parameters: ::Array[Types::Parameter]
|
3588
|
+
SENSITIVE: []
|
3589
|
+
end
|
3590
|
+
|
3591
|
+
class ResourceNotFoundFault < Aws::EmptyStructure
|
3592
|
+
end
|
3593
|
+
|
3594
|
+
class ResourcePendingMaintenanceActions
|
3595
|
+
attr_accessor resource_identifier: ::String
|
3596
|
+
attr_accessor pending_maintenance_action_details: ::Array[Types::PendingMaintenanceAction]
|
3597
|
+
SENSITIVE: []
|
3598
|
+
end
|
3599
|
+
|
3600
|
+
class RestoreDBClusterFromS3Message
|
3601
|
+
attr_accessor availability_zones: ::Array[::String]
|
3602
|
+
attr_accessor backup_retention_period: ::Integer
|
3603
|
+
attr_accessor character_set_name: ::String
|
3604
|
+
attr_accessor database_name: ::String
|
3605
|
+
attr_accessor db_cluster_identifier: ::String
|
3606
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
3607
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
3608
|
+
attr_accessor db_subnet_group_name: ::String
|
3609
|
+
attr_accessor engine: ::String
|
3610
|
+
attr_accessor engine_version: ::String
|
3611
|
+
attr_accessor port: ::Integer
|
3612
|
+
attr_accessor master_username: ::String
|
3613
|
+
attr_accessor master_user_password: ::String
|
3614
|
+
attr_accessor option_group_name: ::String
|
3615
|
+
attr_accessor preferred_backup_window: ::String
|
3616
|
+
attr_accessor preferred_maintenance_window: ::String
|
3617
|
+
attr_accessor tags: ::Array[Types::Tag]
|
3618
|
+
attr_accessor storage_encrypted: bool
|
3619
|
+
attr_accessor kms_key_id: ::String
|
3620
|
+
attr_accessor enable_iam_database_authentication: bool
|
3621
|
+
attr_accessor source_engine: ::String
|
3622
|
+
attr_accessor source_engine_version: ::String
|
3623
|
+
attr_accessor s3_bucket_name: ::String
|
3624
|
+
attr_accessor s3_prefix: ::String
|
3625
|
+
attr_accessor s3_ingestion_role_arn: ::String
|
3626
|
+
attr_accessor backtrack_window: ::Integer
|
3627
|
+
attr_accessor enable_cloudwatch_logs_exports: ::Array[::String]
|
3628
|
+
attr_accessor deletion_protection: bool
|
3629
|
+
attr_accessor copy_tags_to_snapshot: bool
|
3630
|
+
attr_accessor domain: ::String
|
3631
|
+
attr_accessor domain_iam_role_name: ::String
|
3632
|
+
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
3633
|
+
attr_accessor network_type: ::String
|
3634
|
+
attr_accessor manage_master_user_password: bool
|
3635
|
+
attr_accessor master_user_secret_kms_key_id: ::String
|
3636
|
+
attr_accessor storage_type: ::String
|
3637
|
+
SENSITIVE: []
|
3638
|
+
end
|
3639
|
+
|
3640
|
+
class RestoreDBClusterFromS3Result
|
3641
|
+
attr_accessor db_cluster: Types::DBCluster
|
3642
|
+
SENSITIVE: []
|
3643
|
+
end
|
3644
|
+
|
3645
|
+
class RestoreDBClusterFromSnapshotMessage
|
3646
|
+
attr_accessor availability_zones: ::Array[::String]
|
3647
|
+
attr_accessor db_cluster_identifier: ::String
|
3648
|
+
attr_accessor snapshot_identifier: ::String
|
3649
|
+
attr_accessor engine: ::String
|
3650
|
+
attr_accessor engine_version: ::String
|
3651
|
+
attr_accessor port: ::Integer
|
3652
|
+
attr_accessor db_subnet_group_name: ::String
|
3653
|
+
attr_accessor database_name: ::String
|
3654
|
+
attr_accessor option_group_name: ::String
|
3655
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
3656
|
+
attr_accessor tags: ::Array[Types::Tag]
|
3657
|
+
attr_accessor kms_key_id: ::String
|
3658
|
+
attr_accessor enable_iam_database_authentication: bool
|
3659
|
+
attr_accessor backtrack_window: ::Integer
|
3660
|
+
attr_accessor enable_cloudwatch_logs_exports: ::Array[::String]
|
3661
|
+
attr_accessor engine_mode: ::String
|
3662
|
+
attr_accessor scaling_configuration: Types::ScalingConfiguration
|
3663
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
3664
|
+
attr_accessor deletion_protection: bool
|
3665
|
+
attr_accessor copy_tags_to_snapshot: bool
|
3666
|
+
attr_accessor domain: ::String
|
3667
|
+
attr_accessor domain_iam_role_name: ::String
|
3668
|
+
attr_accessor db_cluster_instance_class: ::String
|
3669
|
+
attr_accessor storage_type: ::String
|
3670
|
+
attr_accessor iops: ::Integer
|
3671
|
+
attr_accessor publicly_accessible: bool
|
3672
|
+
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
3673
|
+
attr_accessor network_type: ::String
|
3674
|
+
attr_accessor rds_custom_cluster_configuration: Types::RdsCustomClusterConfiguration
|
3675
|
+
SENSITIVE: []
|
3676
|
+
end
|
3677
|
+
|
3678
|
+
class RestoreDBClusterFromSnapshotResult
|
3679
|
+
attr_accessor db_cluster: Types::DBCluster
|
3680
|
+
SENSITIVE: []
|
3681
|
+
end
|
3682
|
+
|
3683
|
+
class RestoreDBClusterToPointInTimeMessage
|
3684
|
+
attr_accessor db_cluster_identifier: ::String
|
3685
|
+
attr_accessor restore_type: ::String
|
3686
|
+
attr_accessor source_db_cluster_identifier: ::String
|
3687
|
+
attr_accessor restore_to_time: ::Time
|
3688
|
+
attr_accessor use_latest_restorable_time: bool
|
3689
|
+
attr_accessor port: ::Integer
|
3690
|
+
attr_accessor db_subnet_group_name: ::String
|
3691
|
+
attr_accessor option_group_name: ::String
|
3692
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
3693
|
+
attr_accessor tags: ::Array[Types::Tag]
|
3694
|
+
attr_accessor kms_key_id: ::String
|
3695
|
+
attr_accessor enable_iam_database_authentication: bool
|
3696
|
+
attr_accessor backtrack_window: ::Integer
|
3697
|
+
attr_accessor enable_cloudwatch_logs_exports: ::Array[::String]
|
3698
|
+
attr_accessor db_cluster_parameter_group_name: ::String
|
3699
|
+
attr_accessor deletion_protection: bool
|
3700
|
+
attr_accessor copy_tags_to_snapshot: bool
|
3701
|
+
attr_accessor domain: ::String
|
3702
|
+
attr_accessor domain_iam_role_name: ::String
|
3703
|
+
attr_accessor scaling_configuration: Types::ScalingConfiguration
|
3704
|
+
attr_accessor engine_mode: ::String
|
3705
|
+
attr_accessor db_cluster_instance_class: ::String
|
3706
|
+
attr_accessor storage_type: ::String
|
3707
|
+
attr_accessor publicly_accessible: bool
|
3708
|
+
attr_accessor iops: ::Integer
|
3709
|
+
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
3710
|
+
attr_accessor network_type: ::String
|
3711
|
+
attr_accessor source_db_cluster_resource_id: ::String
|
3712
|
+
attr_accessor rds_custom_cluster_configuration: Types::RdsCustomClusterConfiguration
|
3713
|
+
SENSITIVE: []
|
3714
|
+
end
|
3715
|
+
|
3716
|
+
class RestoreDBClusterToPointInTimeResult
|
3717
|
+
attr_accessor db_cluster: Types::DBCluster
|
3718
|
+
SENSITIVE: []
|
3719
|
+
end
|
3720
|
+
|
3721
|
+
class RestoreDBInstanceFromDBSnapshotMessage
|
3722
|
+
attr_accessor db_instance_identifier: ::String
|
3723
|
+
attr_accessor db_snapshot_identifier: ::String
|
3724
|
+
attr_accessor db_instance_class: ::String
|
3725
|
+
attr_accessor port: ::Integer
|
3726
|
+
attr_accessor availability_zone: ::String
|
3727
|
+
attr_accessor db_subnet_group_name: ::String
|
3728
|
+
attr_accessor multi_az: bool
|
3729
|
+
attr_accessor publicly_accessible: bool
|
3730
|
+
attr_accessor auto_minor_version_upgrade: bool
|
3731
|
+
attr_accessor license_model: ::String
|
3732
|
+
attr_accessor db_name: ::String
|
3733
|
+
attr_accessor engine: ::String
|
3734
|
+
attr_accessor iops: ::Integer
|
3735
|
+
attr_accessor option_group_name: ::String
|
3736
|
+
attr_accessor tags: ::Array[Types::Tag]
|
3737
|
+
attr_accessor storage_type: ::String
|
3738
|
+
attr_accessor tde_credential_arn: ::String
|
3739
|
+
attr_accessor tde_credential_password: ::String
|
3740
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
3741
|
+
attr_accessor domain: ::String
|
3742
|
+
attr_accessor domain_fqdn: ::String
|
3743
|
+
attr_accessor domain_ou: ::String
|
3744
|
+
attr_accessor domain_auth_secret_arn: ::String
|
3745
|
+
attr_accessor domain_dns_ips: ::Array[::String]
|
3746
|
+
attr_accessor copy_tags_to_snapshot: bool
|
3747
|
+
attr_accessor domain_iam_role_name: ::String
|
3748
|
+
attr_accessor enable_iam_database_authentication: bool
|
3749
|
+
attr_accessor enable_cloudwatch_logs_exports: ::Array[::String]
|
3750
|
+
attr_accessor processor_features: ::Array[Types::ProcessorFeature]
|
3751
|
+
attr_accessor use_default_processor_features: bool
|
3752
|
+
attr_accessor db_parameter_group_name: ::String
|
3753
|
+
attr_accessor deletion_protection: bool
|
3754
|
+
attr_accessor enable_customer_owned_ip: bool
|
3755
|
+
attr_accessor custom_iam_instance_profile: ::String
|
3756
|
+
attr_accessor backup_target: ::String
|
3757
|
+
attr_accessor network_type: ::String
|
3758
|
+
attr_accessor storage_throughput: ::Integer
|
3759
|
+
attr_accessor db_cluster_snapshot_identifier: ::String
|
3760
|
+
attr_accessor allocated_storage: ::Integer
|
3761
|
+
attr_accessor dedicated_log_volume: bool
|
3762
|
+
SENSITIVE: []
|
3763
|
+
end
|
3764
|
+
|
3765
|
+
class RestoreDBInstanceFromDBSnapshotResult
|
3766
|
+
attr_accessor db_instance: Types::DBInstance
|
3767
|
+
SENSITIVE: []
|
3768
|
+
end
|
3769
|
+
|
3770
|
+
class RestoreDBInstanceFromS3Message
|
3771
|
+
attr_accessor db_name: ::String
|
3772
|
+
attr_accessor db_instance_identifier: ::String
|
3773
|
+
attr_accessor allocated_storage: ::Integer
|
3774
|
+
attr_accessor db_instance_class: ::String
|
3775
|
+
attr_accessor engine: ::String
|
3776
|
+
attr_accessor master_username: ::String
|
3777
|
+
attr_accessor master_user_password: ::String
|
3778
|
+
attr_accessor db_security_groups: ::Array[::String]
|
3779
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
3780
|
+
attr_accessor availability_zone: ::String
|
3781
|
+
attr_accessor db_subnet_group_name: ::String
|
3782
|
+
attr_accessor preferred_maintenance_window: ::String
|
3783
|
+
attr_accessor db_parameter_group_name: ::String
|
3784
|
+
attr_accessor backup_retention_period: ::Integer
|
3785
|
+
attr_accessor preferred_backup_window: ::String
|
3786
|
+
attr_accessor port: ::Integer
|
3787
|
+
attr_accessor multi_az: bool
|
3788
|
+
attr_accessor engine_version: ::String
|
3789
|
+
attr_accessor auto_minor_version_upgrade: bool
|
3790
|
+
attr_accessor license_model: ::String
|
3791
|
+
attr_accessor iops: ::Integer
|
3792
|
+
attr_accessor option_group_name: ::String
|
3793
|
+
attr_accessor publicly_accessible: bool
|
3794
|
+
attr_accessor tags: ::Array[Types::Tag]
|
3795
|
+
attr_accessor storage_type: ::String
|
3796
|
+
attr_accessor storage_encrypted: bool
|
3797
|
+
attr_accessor kms_key_id: ::String
|
3798
|
+
attr_accessor copy_tags_to_snapshot: bool
|
3799
|
+
attr_accessor monitoring_interval: ::Integer
|
3800
|
+
attr_accessor monitoring_role_arn: ::String
|
3801
|
+
attr_accessor enable_iam_database_authentication: bool
|
3802
|
+
attr_accessor source_engine: ::String
|
3803
|
+
attr_accessor source_engine_version: ::String
|
3804
|
+
attr_accessor s3_bucket_name: ::String
|
3805
|
+
attr_accessor s3_prefix: ::String
|
3806
|
+
attr_accessor s3_ingestion_role_arn: ::String
|
3807
|
+
attr_accessor enable_performance_insights: bool
|
3808
|
+
attr_accessor performance_insights_kms_key_id: ::String
|
3809
|
+
attr_accessor performance_insights_retention_period: ::Integer
|
3810
|
+
attr_accessor enable_cloudwatch_logs_exports: ::Array[::String]
|
3811
|
+
attr_accessor processor_features: ::Array[Types::ProcessorFeature]
|
3812
|
+
attr_accessor use_default_processor_features: bool
|
3813
|
+
attr_accessor deletion_protection: bool
|
3814
|
+
attr_accessor max_allocated_storage: ::Integer
|
3815
|
+
attr_accessor network_type: ::String
|
3816
|
+
attr_accessor storage_throughput: ::Integer
|
3817
|
+
attr_accessor manage_master_user_password: bool
|
3818
|
+
attr_accessor master_user_secret_kms_key_id: ::String
|
3819
|
+
attr_accessor dedicated_log_volume: bool
|
3820
|
+
SENSITIVE: []
|
3821
|
+
end
|
3822
|
+
|
3823
|
+
class RestoreDBInstanceFromS3Result
|
3824
|
+
attr_accessor db_instance: Types::DBInstance
|
3825
|
+
SENSITIVE: []
|
3826
|
+
end
|
3827
|
+
|
3828
|
+
class RestoreDBInstanceToPointInTimeMessage
|
3829
|
+
attr_accessor source_db_instance_identifier: ::String
|
3830
|
+
attr_accessor target_db_instance_identifier: ::String
|
3831
|
+
attr_accessor restore_time: ::Time
|
3832
|
+
attr_accessor use_latest_restorable_time: bool
|
3833
|
+
attr_accessor db_instance_class: ::String
|
3834
|
+
attr_accessor port: ::Integer
|
3835
|
+
attr_accessor availability_zone: ::String
|
3836
|
+
attr_accessor db_subnet_group_name: ::String
|
3837
|
+
attr_accessor multi_az: bool
|
3838
|
+
attr_accessor publicly_accessible: bool
|
3839
|
+
attr_accessor auto_minor_version_upgrade: bool
|
3840
|
+
attr_accessor license_model: ::String
|
3841
|
+
attr_accessor db_name: ::String
|
3842
|
+
attr_accessor engine: ::String
|
3843
|
+
attr_accessor iops: ::Integer
|
3844
|
+
attr_accessor option_group_name: ::String
|
3845
|
+
attr_accessor copy_tags_to_snapshot: bool
|
3846
|
+
attr_accessor tags: ::Array[Types::Tag]
|
3847
|
+
attr_accessor storage_type: ::String
|
3848
|
+
attr_accessor tde_credential_arn: ::String
|
3849
|
+
attr_accessor tde_credential_password: ::String
|
3850
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
3851
|
+
attr_accessor domain: ::String
|
3852
|
+
attr_accessor domain_iam_role_name: ::String
|
3853
|
+
attr_accessor domain_fqdn: ::String
|
3854
|
+
attr_accessor domain_ou: ::String
|
3855
|
+
attr_accessor domain_auth_secret_arn: ::String
|
3856
|
+
attr_accessor domain_dns_ips: ::Array[::String]
|
3857
|
+
attr_accessor enable_iam_database_authentication: bool
|
3858
|
+
attr_accessor enable_cloudwatch_logs_exports: ::Array[::String]
|
3859
|
+
attr_accessor processor_features: ::Array[Types::ProcessorFeature]
|
3860
|
+
attr_accessor use_default_processor_features: bool
|
3861
|
+
attr_accessor db_parameter_group_name: ::String
|
3862
|
+
attr_accessor deletion_protection: bool
|
3863
|
+
attr_accessor source_dbi_resource_id: ::String
|
3864
|
+
attr_accessor max_allocated_storage: ::Integer
|
3865
|
+
attr_accessor source_db_instance_automated_backups_arn: ::String
|
3866
|
+
attr_accessor enable_customer_owned_ip: bool
|
3867
|
+
attr_accessor custom_iam_instance_profile: ::String
|
3868
|
+
attr_accessor backup_target: ::String
|
3869
|
+
attr_accessor network_type: ::String
|
3870
|
+
attr_accessor storage_throughput: ::Integer
|
3871
|
+
attr_accessor allocated_storage: ::Integer
|
3872
|
+
attr_accessor dedicated_log_volume: bool
|
3873
|
+
SENSITIVE: []
|
3874
|
+
end
|
3875
|
+
|
3876
|
+
class RestoreDBInstanceToPointInTimeResult
|
3877
|
+
attr_accessor db_instance: Types::DBInstance
|
3878
|
+
SENSITIVE: []
|
3879
|
+
end
|
3880
|
+
|
3881
|
+
class RestoreWindow
|
3882
|
+
attr_accessor earliest_time: ::Time
|
3883
|
+
attr_accessor latest_time: ::Time
|
3884
|
+
SENSITIVE: []
|
3885
|
+
end
|
3886
|
+
|
3887
|
+
class RevokeDBSecurityGroupIngressMessage
|
3888
|
+
attr_accessor db_security_group_name: ::String
|
3889
|
+
attr_accessor cidrip: ::String
|
3890
|
+
attr_accessor ec2_security_group_name: ::String
|
3891
|
+
attr_accessor ec2_security_group_id: ::String
|
3892
|
+
attr_accessor ec2_security_group_owner_id: ::String
|
3893
|
+
SENSITIVE: []
|
3894
|
+
end
|
3895
|
+
|
3896
|
+
class RevokeDBSecurityGroupIngressResult
|
3897
|
+
attr_accessor db_security_group: Types::DBSecurityGroup
|
3898
|
+
SENSITIVE: []
|
3899
|
+
end
|
3900
|
+
|
3901
|
+
class SNSInvalidTopicFault < Aws::EmptyStructure
|
3902
|
+
end
|
3903
|
+
|
3904
|
+
class SNSNoAuthorizationFault < Aws::EmptyStructure
|
3905
|
+
end
|
3906
|
+
|
3907
|
+
class SNSTopicArnNotFoundFault < Aws::EmptyStructure
|
3908
|
+
end
|
3909
|
+
|
3910
|
+
class ScalarReferenceDetails
|
3911
|
+
attr_accessor value: ::Float
|
3912
|
+
SENSITIVE: []
|
3913
|
+
end
|
3914
|
+
|
3915
|
+
class ScalingConfiguration
|
3916
|
+
attr_accessor min_capacity: ::Integer
|
3917
|
+
attr_accessor max_capacity: ::Integer
|
3918
|
+
attr_accessor auto_pause: bool
|
3919
|
+
attr_accessor seconds_until_auto_pause: ::Integer
|
3920
|
+
attr_accessor timeout_action: ::String
|
3921
|
+
attr_accessor seconds_before_timeout: ::Integer
|
3922
|
+
SENSITIVE: []
|
3923
|
+
end
|
3924
|
+
|
3925
|
+
class ScalingConfigurationInfo
|
3926
|
+
attr_accessor min_capacity: ::Integer
|
3927
|
+
attr_accessor max_capacity: ::Integer
|
3928
|
+
attr_accessor auto_pause: bool
|
3929
|
+
attr_accessor seconds_until_auto_pause: ::Integer
|
3930
|
+
attr_accessor timeout_action: ::String
|
3931
|
+
attr_accessor seconds_before_timeout: ::Integer
|
3932
|
+
SENSITIVE: []
|
3933
|
+
end
|
3934
|
+
|
3935
|
+
class ServerlessV2ScalingConfiguration
|
3936
|
+
attr_accessor min_capacity: ::Float
|
3937
|
+
attr_accessor max_capacity: ::Float
|
3938
|
+
SENSITIVE: []
|
3939
|
+
end
|
3940
|
+
|
3941
|
+
class ServerlessV2ScalingConfigurationInfo
|
3942
|
+
attr_accessor min_capacity: ::Float
|
3943
|
+
attr_accessor max_capacity: ::Float
|
3944
|
+
SENSITIVE: []
|
3945
|
+
end
|
3946
|
+
|
3947
|
+
class SharedSnapshotQuotaExceededFault < Aws::EmptyStructure
|
3948
|
+
end
|
3949
|
+
|
3950
|
+
class SnapshotQuotaExceededFault < Aws::EmptyStructure
|
3951
|
+
end
|
3952
|
+
|
3953
|
+
class SourceClusterNotSupportedFault < Aws::EmptyStructure
|
3954
|
+
end
|
3955
|
+
|
3956
|
+
class SourceDatabaseNotSupportedFault < Aws::EmptyStructure
|
3957
|
+
end
|
3958
|
+
|
3959
|
+
class SourceNotFoundFault < Aws::EmptyStructure
|
3960
|
+
end
|
3961
|
+
|
3962
|
+
class SourceRegion
|
3963
|
+
attr_accessor region_name: ::String
|
3964
|
+
attr_accessor endpoint: ::String
|
3965
|
+
attr_accessor status: ::String
|
3966
|
+
attr_accessor supports_db_instance_automated_backups_replication: bool
|
3967
|
+
SENSITIVE: []
|
3968
|
+
end
|
3969
|
+
|
3970
|
+
class SourceRegionMessage
|
3971
|
+
attr_accessor marker: ::String
|
3972
|
+
attr_accessor source_regions: ::Array[Types::SourceRegion]
|
3973
|
+
SENSITIVE: []
|
3974
|
+
end
|
3975
|
+
|
3976
|
+
class StartActivityStreamRequest
|
3977
|
+
attr_accessor resource_arn: ::String
|
3978
|
+
attr_accessor mode: ("sync" | "async")
|
3979
|
+
attr_accessor kms_key_id: ::String
|
3980
|
+
attr_accessor apply_immediately: bool
|
3981
|
+
attr_accessor engine_native_audit_fields_included: bool
|
3982
|
+
SENSITIVE: []
|
3983
|
+
end
|
3984
|
+
|
3985
|
+
class StartActivityStreamResponse
|
3986
|
+
attr_accessor kms_key_id: ::String
|
3987
|
+
attr_accessor kinesis_stream_name: ::String
|
3988
|
+
attr_accessor status: ("stopped" | "starting" | "started" | "stopping")
|
3989
|
+
attr_accessor mode: ("sync" | "async")
|
3990
|
+
attr_accessor apply_immediately: bool
|
3991
|
+
attr_accessor engine_native_audit_fields_included: bool
|
3992
|
+
SENSITIVE: []
|
3993
|
+
end
|
3994
|
+
|
3995
|
+
class StartDBClusterMessage
|
3996
|
+
attr_accessor db_cluster_identifier: ::String
|
3997
|
+
SENSITIVE: []
|
3998
|
+
end
|
3999
|
+
|
4000
|
+
class StartDBClusterResult
|
4001
|
+
attr_accessor db_cluster: Types::DBCluster
|
4002
|
+
SENSITIVE: []
|
4003
|
+
end
|
4004
|
+
|
4005
|
+
class StartDBInstanceAutomatedBackupsReplicationMessage
|
4006
|
+
attr_accessor source_db_instance_arn: ::String
|
4007
|
+
attr_accessor backup_retention_period: ::Integer
|
4008
|
+
attr_accessor kms_key_id: ::String
|
4009
|
+
attr_accessor pre_signed_url: ::String
|
4010
|
+
attr_accessor source_region: ::String
|
4011
|
+
SENSITIVE: []
|
4012
|
+
end
|
4013
|
+
|
4014
|
+
class StartDBInstanceAutomatedBackupsReplicationResult
|
4015
|
+
attr_accessor db_instance_automated_backup: Types::DBInstanceAutomatedBackup
|
4016
|
+
SENSITIVE: []
|
4017
|
+
end
|
4018
|
+
|
4019
|
+
class StartDBInstanceMessage
|
4020
|
+
attr_accessor db_instance_identifier: ::String
|
4021
|
+
SENSITIVE: []
|
4022
|
+
end
|
4023
|
+
|
4024
|
+
class StartDBInstanceResult
|
4025
|
+
attr_accessor db_instance: Types::DBInstance
|
4026
|
+
SENSITIVE: []
|
4027
|
+
end
|
4028
|
+
|
4029
|
+
class StartExportTaskMessage
|
4030
|
+
attr_accessor export_task_identifier: ::String
|
4031
|
+
attr_accessor source_arn: ::String
|
4032
|
+
attr_accessor s3_bucket_name: ::String
|
4033
|
+
attr_accessor iam_role_arn: ::String
|
4034
|
+
attr_accessor kms_key_id: ::String
|
4035
|
+
attr_accessor s3_prefix: ::String
|
4036
|
+
attr_accessor export_only: ::Array[::String]
|
4037
|
+
SENSITIVE: []
|
4038
|
+
end
|
4039
|
+
|
4040
|
+
class StopActivityStreamRequest
|
4041
|
+
attr_accessor resource_arn: ::String
|
4042
|
+
attr_accessor apply_immediately: bool
|
4043
|
+
SENSITIVE: []
|
4044
|
+
end
|
4045
|
+
|
4046
|
+
class StopActivityStreamResponse
|
4047
|
+
attr_accessor kms_key_id: ::String
|
4048
|
+
attr_accessor kinesis_stream_name: ::String
|
4049
|
+
attr_accessor status: ("stopped" | "starting" | "started" | "stopping")
|
4050
|
+
SENSITIVE: []
|
4051
|
+
end
|
4052
|
+
|
4053
|
+
class StopDBClusterMessage
|
4054
|
+
attr_accessor db_cluster_identifier: ::String
|
4055
|
+
SENSITIVE: []
|
4056
|
+
end
|
4057
|
+
|
4058
|
+
class StopDBClusterResult
|
4059
|
+
attr_accessor db_cluster: Types::DBCluster
|
4060
|
+
SENSITIVE: []
|
4061
|
+
end
|
4062
|
+
|
4063
|
+
class StopDBInstanceAutomatedBackupsReplicationMessage
|
4064
|
+
attr_accessor source_db_instance_arn: ::String
|
4065
|
+
SENSITIVE: []
|
4066
|
+
end
|
4067
|
+
|
4068
|
+
class StopDBInstanceAutomatedBackupsReplicationResult
|
4069
|
+
attr_accessor db_instance_automated_backup: Types::DBInstanceAutomatedBackup
|
4070
|
+
SENSITIVE: []
|
4071
|
+
end
|
4072
|
+
|
4073
|
+
class StopDBInstanceMessage
|
4074
|
+
attr_accessor db_instance_identifier: ::String
|
4075
|
+
attr_accessor db_snapshot_identifier: ::String
|
4076
|
+
SENSITIVE: []
|
4077
|
+
end
|
4078
|
+
|
4079
|
+
class StopDBInstanceResult
|
4080
|
+
attr_accessor db_instance: Types::DBInstance
|
4081
|
+
SENSITIVE: []
|
4082
|
+
end
|
4083
|
+
|
4084
|
+
class StorageQuotaExceededFault < Aws::EmptyStructure
|
4085
|
+
end
|
4086
|
+
|
4087
|
+
class StorageTypeNotAvailableFault < Aws::EmptyStructure
|
4088
|
+
end
|
4089
|
+
|
4090
|
+
class StorageTypeNotSupportedFault < Aws::EmptyStructure
|
4091
|
+
end
|
4092
|
+
|
4093
|
+
class Subnet
|
4094
|
+
attr_accessor subnet_identifier: ::String
|
4095
|
+
attr_accessor subnet_availability_zone: Types::AvailabilityZone
|
4096
|
+
attr_accessor subnet_outpost: Types::Outpost
|
4097
|
+
attr_accessor subnet_status: ::String
|
4098
|
+
SENSITIVE: []
|
4099
|
+
end
|
4100
|
+
|
4101
|
+
class SubnetAlreadyInUse < Aws::EmptyStructure
|
4102
|
+
end
|
4103
|
+
|
4104
|
+
class SubscriptionAlreadyExistFault < Aws::EmptyStructure
|
4105
|
+
end
|
4106
|
+
|
4107
|
+
class SubscriptionCategoryNotFoundFault < Aws::EmptyStructure
|
4108
|
+
end
|
4109
|
+
|
4110
|
+
class SubscriptionNotFoundFault < Aws::EmptyStructure
|
4111
|
+
end
|
4112
|
+
|
4113
|
+
class SwitchoverBlueGreenDeploymentRequest
|
4114
|
+
attr_accessor blue_green_deployment_identifier: ::String
|
4115
|
+
attr_accessor switchover_timeout: ::Integer
|
4116
|
+
SENSITIVE: []
|
4117
|
+
end
|
4118
|
+
|
4119
|
+
class SwitchoverBlueGreenDeploymentResponse
|
4120
|
+
attr_accessor blue_green_deployment: Types::BlueGreenDeployment
|
4121
|
+
SENSITIVE: []
|
4122
|
+
end
|
4123
|
+
|
4124
|
+
class SwitchoverDetail
|
4125
|
+
attr_accessor source_member: ::String
|
4126
|
+
attr_accessor target_member: ::String
|
4127
|
+
attr_accessor status: ::String
|
4128
|
+
SENSITIVE: []
|
4129
|
+
end
|
4130
|
+
|
4131
|
+
class SwitchoverGlobalClusterMessage
|
4132
|
+
attr_accessor global_cluster_identifier: ::String
|
4133
|
+
attr_accessor target_db_cluster_identifier: ::String
|
4134
|
+
SENSITIVE: []
|
4135
|
+
end
|
4136
|
+
|
4137
|
+
class SwitchoverGlobalClusterResult
|
4138
|
+
attr_accessor global_cluster: Types::GlobalCluster
|
4139
|
+
SENSITIVE: []
|
4140
|
+
end
|
4141
|
+
|
4142
|
+
class SwitchoverReadReplicaMessage
|
4143
|
+
attr_accessor db_instance_identifier: ::String
|
4144
|
+
SENSITIVE: []
|
4145
|
+
end
|
4146
|
+
|
4147
|
+
class SwitchoverReadReplicaResult
|
4148
|
+
attr_accessor db_instance: Types::DBInstance
|
4149
|
+
SENSITIVE: []
|
4150
|
+
end
|
4151
|
+
|
4152
|
+
class Tag
|
4153
|
+
attr_accessor key: ::String
|
4154
|
+
attr_accessor value: ::String
|
4155
|
+
SENSITIVE: []
|
4156
|
+
end
|
4157
|
+
|
4158
|
+
class TagListMessage
|
4159
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
4160
|
+
SENSITIVE: []
|
4161
|
+
end
|
4162
|
+
|
4163
|
+
class TargetHealth
|
4164
|
+
attr_accessor state: ("REGISTERING" | "AVAILABLE" | "UNAVAILABLE")
|
4165
|
+
attr_accessor reason: ("UNREACHABLE" | "CONNECTION_FAILED" | "AUTH_FAILURE" | "PENDING_PROXY_CAPACITY" | "INVALID_REPLICATION_STATE")
|
4166
|
+
attr_accessor description: ::String
|
4167
|
+
SENSITIVE: []
|
4168
|
+
end
|
4169
|
+
|
4170
|
+
class TenantDatabase
|
4171
|
+
attr_accessor tenant_database_create_time: ::Time
|
4172
|
+
attr_accessor db_instance_identifier: ::String
|
4173
|
+
attr_accessor tenant_db_name: ::String
|
4174
|
+
attr_accessor status: ::String
|
4175
|
+
attr_accessor master_username: ::String
|
4176
|
+
attr_accessor dbi_resource_id: ::String
|
4177
|
+
attr_accessor tenant_database_resource_id: ::String
|
4178
|
+
attr_accessor tenant_database_arn: ::String
|
4179
|
+
attr_accessor character_set_name: ::String
|
4180
|
+
attr_accessor nchar_character_set_name: ::String
|
4181
|
+
attr_accessor deletion_protection: bool
|
4182
|
+
attr_accessor pending_modified_values: Types::TenantDatabasePendingModifiedValues
|
4183
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
4184
|
+
SENSITIVE: []
|
4185
|
+
end
|
4186
|
+
|
4187
|
+
class TenantDatabaseAlreadyExistsFault < Aws::EmptyStructure
|
4188
|
+
end
|
4189
|
+
|
4190
|
+
class TenantDatabaseNotFoundFault < Aws::EmptyStructure
|
4191
|
+
end
|
4192
|
+
|
4193
|
+
class TenantDatabasePendingModifiedValues
|
4194
|
+
attr_accessor master_user_password: ::String
|
4195
|
+
attr_accessor tenant_db_name: ::String
|
4196
|
+
SENSITIVE: [:master_user_password]
|
4197
|
+
end
|
4198
|
+
|
4199
|
+
class TenantDatabaseQuotaExceededFault < Aws::EmptyStructure
|
4200
|
+
end
|
4201
|
+
|
4202
|
+
class TenantDatabasesMessage
|
4203
|
+
attr_accessor marker: ::String
|
4204
|
+
attr_accessor tenant_databases: ::Array[Types::TenantDatabase]
|
4205
|
+
SENSITIVE: []
|
4206
|
+
end
|
4207
|
+
|
4208
|
+
class Timezone
|
4209
|
+
attr_accessor timezone_name: ::String
|
4210
|
+
SENSITIVE: []
|
4211
|
+
end
|
4212
|
+
|
4213
|
+
class UnsupportedDBEngineVersionFault < Aws::EmptyStructure
|
4214
|
+
end
|
4215
|
+
|
4216
|
+
class UpgradeTarget
|
4217
|
+
attr_accessor engine: ::String
|
4218
|
+
attr_accessor engine_version: ::String
|
4219
|
+
attr_accessor description: ::String
|
4220
|
+
attr_accessor auto_upgrade: bool
|
4221
|
+
attr_accessor is_major_version_upgrade: bool
|
4222
|
+
attr_accessor supported_engine_modes: ::Array[::String]
|
4223
|
+
attr_accessor supports_parallel_query: bool
|
4224
|
+
attr_accessor supports_global_databases: bool
|
4225
|
+
attr_accessor supports_babelfish: bool
|
4226
|
+
attr_accessor supports_local_write_forwarding: bool
|
4227
|
+
attr_accessor supports_integrations: bool
|
4228
|
+
SENSITIVE: []
|
4229
|
+
end
|
4230
|
+
|
4231
|
+
class UserAuthConfig
|
4232
|
+
attr_accessor description: ::String
|
4233
|
+
attr_accessor user_name: ::String
|
4234
|
+
attr_accessor auth_scheme: ("SECRETS")
|
4235
|
+
attr_accessor secret_arn: ::String
|
4236
|
+
attr_accessor iam_auth: ("DISABLED" | "REQUIRED" | "ENABLED")
|
4237
|
+
attr_accessor client_password_auth_type: ("MYSQL_NATIVE_PASSWORD" | "POSTGRES_SCRAM_SHA_256" | "POSTGRES_MD5" | "SQL_SERVER_AUTHENTICATION")
|
4238
|
+
SENSITIVE: []
|
4239
|
+
end
|
4240
|
+
|
4241
|
+
class UserAuthConfigInfo
|
4242
|
+
attr_accessor description: ::String
|
4243
|
+
attr_accessor user_name: ::String
|
4244
|
+
attr_accessor auth_scheme: ("SECRETS")
|
4245
|
+
attr_accessor secret_arn: ::String
|
4246
|
+
attr_accessor iam_auth: ("DISABLED" | "REQUIRED" | "ENABLED")
|
4247
|
+
attr_accessor client_password_auth_type: ("MYSQL_NATIVE_PASSWORD" | "POSTGRES_SCRAM_SHA_256" | "POSTGRES_MD5" | "SQL_SERVER_AUTHENTICATION")
|
4248
|
+
SENSITIVE: []
|
4249
|
+
end
|
4250
|
+
|
4251
|
+
class ValidDBInstanceModificationsMessage
|
4252
|
+
attr_accessor storage: ::Array[Types::ValidStorageOptions]
|
4253
|
+
attr_accessor valid_processor_features: ::Array[Types::AvailableProcessorFeature]
|
4254
|
+
attr_accessor supports_dedicated_log_volume: bool
|
4255
|
+
SENSITIVE: []
|
4256
|
+
end
|
4257
|
+
|
4258
|
+
class ValidStorageOptions
|
4259
|
+
attr_accessor storage_type: ::String
|
4260
|
+
attr_accessor storage_size: ::Array[Types::Range]
|
4261
|
+
attr_accessor provisioned_iops: ::Array[Types::Range]
|
4262
|
+
attr_accessor iops_to_storage_ratio: ::Array[Types::DoubleRange]
|
4263
|
+
attr_accessor supports_storage_autoscaling: bool
|
4264
|
+
attr_accessor provisioned_storage_throughput: ::Array[Types::Range]
|
4265
|
+
attr_accessor storage_throughput_to_iops_ratio: ::Array[Types::DoubleRange]
|
4266
|
+
SENSITIVE: []
|
4267
|
+
end
|
4268
|
+
|
4269
|
+
class VpcSecurityGroupMembership
|
4270
|
+
attr_accessor vpc_security_group_id: ::String
|
4271
|
+
attr_accessor status: ::String
|
4272
|
+
SENSITIVE: []
|
4273
|
+
end
|
4274
|
+
end
|
4275
|
+
end
|