aws-sdk-rds 1.127.0 → 1.131.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +1354 -307
- data/lib/aws-sdk-rds/client_api.rb +99 -0
- data/lib/aws-sdk-rds/db_cluster.rb +30 -34
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +20 -24
- data/lib/aws-sdk-rds/db_engine.rb +8 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +66 -4
- data/lib/aws-sdk-rds/db_instance.rb +551 -188
- data/lib/aws-sdk-rds/db_snapshot.rb +99 -30
- data/lib/aws-sdk-rds/errors.rb +44 -0
- data/lib/aws-sdk-rds/plugins/cross_region_copying.rb +5 -1
- data/lib/aws-sdk-rds/resource.rb +202 -108
- data/lib/aws-sdk-rds/types.rb +1133 -336
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +4 -4
@@ -34,6 +34,7 @@ module Aws::RDS
|
|
34
34
|
AuthorizationQuotaExceededFault = Shapes::StructureShape.new(name: 'AuthorizationQuotaExceededFault')
|
35
35
|
AuthorizeDBSecurityGroupIngressMessage = Shapes::StructureShape.new(name: 'AuthorizeDBSecurityGroupIngressMessage')
|
36
36
|
AuthorizeDBSecurityGroupIngressResult = Shapes::StructureShape.new(name: 'AuthorizeDBSecurityGroupIngressResult')
|
37
|
+
AutomationMode = Shapes::StringShape.new(name: 'AutomationMode')
|
37
38
|
AvailabilityZone = Shapes::StructureShape.new(name: 'AvailabilityZone')
|
38
39
|
AvailabilityZoneList = Shapes::ListShape.new(name: 'AvailabilityZoneList')
|
39
40
|
AvailabilityZones = Shapes::ListShape.new(name: 'AvailabilityZones')
|
@@ -44,6 +45,7 @@ module Aws::RDS
|
|
44
45
|
BackupPolicyNotFoundFault = Shapes::StructureShape.new(name: 'BackupPolicyNotFoundFault')
|
45
46
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
46
47
|
BooleanOptional = Shapes::BooleanShape.new(name: 'BooleanOptional')
|
48
|
+
BucketName = Shapes::StringShape.new(name: 'BucketName')
|
47
49
|
CancelExportTaskMessage = Shapes::StructureShape.new(name: 'CancelExportTaskMessage')
|
48
50
|
Certificate = Shapes::StructureShape.new(name: 'Certificate')
|
49
51
|
CertificateList = Shapes::ListShape.new(name: 'CertificateList')
|
@@ -66,6 +68,7 @@ module Aws::RDS
|
|
66
68
|
CopyOptionGroupResult = Shapes::StructureShape.new(name: 'CopyOptionGroupResult')
|
67
69
|
CreateCustomAvailabilityZoneMessage = Shapes::StructureShape.new(name: 'CreateCustomAvailabilityZoneMessage')
|
68
70
|
CreateCustomAvailabilityZoneResult = Shapes::StructureShape.new(name: 'CreateCustomAvailabilityZoneResult')
|
71
|
+
CreateCustomDBEngineVersionMessage = Shapes::StructureShape.new(name: 'CreateCustomDBEngineVersionMessage')
|
69
72
|
CreateDBClusterEndpointMessage = Shapes::StructureShape.new(name: 'CreateDBClusterEndpointMessage')
|
70
73
|
CreateDBClusterMessage = Shapes::StructureShape.new(name: 'CreateDBClusterMessage')
|
71
74
|
CreateDBClusterParameterGroupMessage = Shapes::StructureShape.new(name: 'CreateDBClusterParameterGroupMessage')
|
@@ -101,6 +104,13 @@ module Aws::RDS
|
|
101
104
|
CustomAvailabilityZoneMessage = Shapes::StructureShape.new(name: 'CustomAvailabilityZoneMessage')
|
102
105
|
CustomAvailabilityZoneNotFoundFault = Shapes::StructureShape.new(name: 'CustomAvailabilityZoneNotFoundFault')
|
103
106
|
CustomAvailabilityZoneQuotaExceededFault = Shapes::StructureShape.new(name: 'CustomAvailabilityZoneQuotaExceededFault')
|
107
|
+
CustomDBEngineVersionAlreadyExistsFault = Shapes::StructureShape.new(name: 'CustomDBEngineVersionAlreadyExistsFault')
|
108
|
+
CustomDBEngineVersionManifest = Shapes::StringShape.new(name: 'CustomDBEngineVersionManifest')
|
109
|
+
CustomDBEngineVersionNotFoundFault = Shapes::StructureShape.new(name: 'CustomDBEngineVersionNotFoundFault')
|
110
|
+
CustomDBEngineVersionQuotaExceededFault = Shapes::StructureShape.new(name: 'CustomDBEngineVersionQuotaExceededFault')
|
111
|
+
CustomEngineName = Shapes::StringShape.new(name: 'CustomEngineName')
|
112
|
+
CustomEngineVersion = Shapes::StringShape.new(name: 'CustomEngineVersion')
|
113
|
+
CustomEngineVersionStatus = Shapes::StringShape.new(name: 'CustomEngineVersionStatus')
|
104
114
|
DBCluster = Shapes::StructureShape.new(name: 'DBCluster')
|
105
115
|
DBClusterAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBClusterAlreadyExistsFault')
|
106
116
|
DBClusterBacktrack = Shapes::StructureShape.new(name: 'DBClusterBacktrack')
|
@@ -225,6 +235,7 @@ module Aws::RDS
|
|
225
235
|
DBUpgradeDependencyFailureFault = Shapes::StructureShape.new(name: 'DBUpgradeDependencyFailureFault')
|
226
236
|
DeleteCustomAvailabilityZoneMessage = Shapes::StructureShape.new(name: 'DeleteCustomAvailabilityZoneMessage')
|
227
237
|
DeleteCustomAvailabilityZoneResult = Shapes::StructureShape.new(name: 'DeleteCustomAvailabilityZoneResult')
|
238
|
+
DeleteCustomDBEngineVersionMessage = Shapes::StructureShape.new(name: 'DeleteCustomDBEngineVersionMessage')
|
228
239
|
DeleteDBClusterEndpointMessage = Shapes::StructureShape.new(name: 'DeleteDBClusterEndpointMessage')
|
229
240
|
DeleteDBClusterMessage = Shapes::StructureShape.new(name: 'DeleteDBClusterMessage')
|
230
241
|
DeleteDBClusterParameterGroupMessage = Shapes::StructureShape.new(name: 'DeleteDBClusterParameterGroupMessage')
|
@@ -304,6 +315,7 @@ module Aws::RDS
|
|
304
315
|
DescribeSourceRegionsMessage = Shapes::StructureShape.new(name: 'DescribeSourceRegionsMessage')
|
305
316
|
DescribeValidDBInstanceModificationsMessage = Shapes::StructureShape.new(name: 'DescribeValidDBInstanceModificationsMessage')
|
306
317
|
DescribeValidDBInstanceModificationsResult = Shapes::StructureShape.new(name: 'DescribeValidDBInstanceModificationsResult')
|
318
|
+
Description = Shapes::StringShape.new(name: 'Description')
|
307
319
|
DomainMembership = Shapes::StructureShape.new(name: 'DomainMembership')
|
308
320
|
DomainMembershipList = Shapes::ListShape.new(name: 'DomainMembershipList')
|
309
321
|
DomainNotFoundFault = Shapes::StructureShape.new(name: 'DomainNotFoundFault')
|
@@ -373,6 +385,7 @@ module Aws::RDS
|
|
373
385
|
InsufficientStorageClusterCapacityFault = Shapes::StructureShape.new(name: 'InsufficientStorageClusterCapacityFault')
|
374
386
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
375
387
|
IntegerOptional = Shapes::IntegerShape.new(name: 'IntegerOptional')
|
388
|
+
InvalidCustomDBEngineVersionStateFault = Shapes::StructureShape.new(name: 'InvalidCustomDBEngineVersionStateFault')
|
376
389
|
InvalidDBClusterCapacityFault = Shapes::StructureShape.new(name: 'InvalidDBClusterCapacityFault')
|
377
390
|
InvalidDBClusterEndpointStateFault = Shapes::StructureShape.new(name: 'InvalidDBClusterEndpointStateFault')
|
378
391
|
InvalidDBClusterSnapshotStateFault = Shapes::StructureShape.new(name: 'InvalidDBClusterSnapshotStateFault')
|
@@ -399,6 +412,7 @@ module Aws::RDS
|
|
399
412
|
InvalidVPCNetworkStateFault = Shapes::StructureShape.new(name: 'InvalidVPCNetworkStateFault')
|
400
413
|
KMSKeyNotAccessibleFault = Shapes::StructureShape.new(name: 'KMSKeyNotAccessibleFault')
|
401
414
|
KeyList = Shapes::ListShape.new(name: 'KeyList')
|
415
|
+
KmsKeyIdOrArn = Shapes::StringShape.new(name: 'KmsKeyIdOrArn')
|
402
416
|
ListTagsForResourceMessage = Shapes::StructureShape.new(name: 'ListTagsForResourceMessage')
|
403
417
|
LogTypeList = Shapes::ListShape.new(name: 'LogTypeList')
|
404
418
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
@@ -409,6 +423,7 @@ module Aws::RDS
|
|
409
423
|
ModifyCertificatesMessage = Shapes::StructureShape.new(name: 'ModifyCertificatesMessage')
|
410
424
|
ModifyCertificatesResult = Shapes::StructureShape.new(name: 'ModifyCertificatesResult')
|
411
425
|
ModifyCurrentDBClusterCapacityMessage = Shapes::StructureShape.new(name: 'ModifyCurrentDBClusterCapacityMessage')
|
426
|
+
ModifyCustomDBEngineVersionMessage = Shapes::StructureShape.new(name: 'ModifyCustomDBEngineVersionMessage')
|
412
427
|
ModifyDBClusterEndpointMessage = Shapes::StructureShape.new(name: 'ModifyDBClusterEndpointMessage')
|
413
428
|
ModifyDBClusterMessage = Shapes::StructureShape.new(name: 'ModifyDBClusterMessage')
|
414
429
|
ModifyDBClusterParameterGroupMessage = Shapes::StructureShape.new(name: 'ModifyDBClusterParameterGroupMessage')
|
@@ -565,6 +580,7 @@ module Aws::RDS
|
|
565
580
|
StorageQuotaExceededFault = Shapes::StructureShape.new(name: 'StorageQuotaExceededFault')
|
566
581
|
StorageTypeNotSupportedFault = Shapes::StructureShape.new(name: 'StorageTypeNotSupportedFault')
|
567
582
|
String = Shapes::StringShape.new(name: 'String')
|
583
|
+
String255 = Shapes::StringShape.new(name: 'String255')
|
568
584
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
569
585
|
StringSensitive = Shapes::StringShape.new(name: 'StringSensitive')
|
570
586
|
Subnet = Shapes::StructureShape.new(name: 'Subnet')
|
@@ -796,6 +812,16 @@ module Aws::RDS
|
|
796
812
|
CreateCustomAvailabilityZoneResult.add_member(:custom_availability_zone, Shapes::ShapeRef.new(shape: CustomAvailabilityZone, location_name: "CustomAvailabilityZone"))
|
797
813
|
CreateCustomAvailabilityZoneResult.struct_class = Types::CreateCustomAvailabilityZoneResult
|
798
814
|
|
815
|
+
CreateCustomDBEngineVersionMessage.add_member(:engine, Shapes::ShapeRef.new(shape: CustomEngineName, required: true, location_name: "Engine"))
|
816
|
+
CreateCustomDBEngineVersionMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: CustomEngineVersion, required: true, location_name: "EngineVersion"))
|
817
|
+
CreateCustomDBEngineVersionMessage.add_member(:database_installation_files_s3_bucket_name, Shapes::ShapeRef.new(shape: BucketName, required: true, location_name: "DatabaseInstallationFilesS3BucketName"))
|
818
|
+
CreateCustomDBEngineVersionMessage.add_member(:database_installation_files_s3_prefix, Shapes::ShapeRef.new(shape: String255, location_name: "DatabaseInstallationFilesS3Prefix"))
|
819
|
+
CreateCustomDBEngineVersionMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyIdOrArn, required: true, location_name: "KMSKeyId"))
|
820
|
+
CreateCustomDBEngineVersionMessage.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
821
|
+
CreateCustomDBEngineVersionMessage.add_member(:manifest, Shapes::ShapeRef.new(shape: CustomDBEngineVersionManifest, required: true, location_name: "Manifest"))
|
822
|
+
CreateCustomDBEngineVersionMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
823
|
+
CreateCustomDBEngineVersionMessage.struct_class = Types::CreateCustomDBEngineVersionMessage
|
824
|
+
|
799
825
|
CreateDBClusterEndpointMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
|
800
826
|
CreateDBClusterEndpointMessage.add_member(:db_cluster_endpoint_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterEndpointIdentifier"))
|
801
827
|
CreateDBClusterEndpointMessage.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "EndpointType"))
|
@@ -908,6 +934,8 @@ module Aws::RDS
|
|
908
934
|
CreateDBInstanceMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
909
935
|
CreateDBInstanceMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
910
936
|
CreateDBInstanceMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
937
|
+
CreateDBInstanceMessage.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
938
|
+
CreateDBInstanceMessage.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
911
939
|
CreateDBInstanceMessage.struct_class = Types::CreateDBInstanceMessage
|
912
940
|
|
913
941
|
CreateDBInstanceReadReplicaMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
@@ -942,6 +970,7 @@ module Aws::RDS
|
|
942
970
|
CreateDBInstanceReadReplicaMessage.add_member(:domain_iam_role_name, Shapes::ShapeRef.new(shape: String, location_name: "DomainIAMRoleName"))
|
943
971
|
CreateDBInstanceReadReplicaMessage.add_member(:replica_mode, Shapes::ShapeRef.new(shape: ReplicaMode, location_name: "ReplicaMode"))
|
944
972
|
CreateDBInstanceReadReplicaMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
973
|
+
CreateDBInstanceReadReplicaMessage.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
945
974
|
CreateDBInstanceReadReplicaMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
946
975
|
CreateDBInstanceReadReplicaMessage.struct_class = Types::CreateDBInstanceReadReplicaMessage
|
947
976
|
|
@@ -1063,6 +1092,12 @@ module Aws::RDS
|
|
1063
1092
|
|
1064
1093
|
CustomAvailabilityZoneQuotaExceededFault.struct_class = Types::CustomAvailabilityZoneQuotaExceededFault
|
1065
1094
|
|
1095
|
+
CustomDBEngineVersionAlreadyExistsFault.struct_class = Types::CustomDBEngineVersionAlreadyExistsFault
|
1096
|
+
|
1097
|
+
CustomDBEngineVersionNotFoundFault.struct_class = Types::CustomDBEngineVersionNotFoundFault
|
1098
|
+
|
1099
|
+
CustomDBEngineVersionQuotaExceededFault.struct_class = Types::CustomDBEngineVersionQuotaExceededFault
|
1100
|
+
|
1066
1101
|
DBCluster.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
1067
1102
|
DBCluster.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZones, location_name: "AvailabilityZones"))
|
1068
1103
|
DBCluster.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
@@ -1291,6 +1326,13 @@ module Aws::RDS
|
|
1291
1326
|
DBEngineVersion.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
1292
1327
|
DBEngineVersion.add_member(:supports_parallel_query, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsParallelQuery"))
|
1293
1328
|
DBEngineVersion.add_member(:supports_global_databases, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsGlobalDatabases"))
|
1329
|
+
DBEngineVersion.add_member(:major_engine_version, Shapes::ShapeRef.new(shape: String, location_name: "MajorEngineVersion"))
|
1330
|
+
DBEngineVersion.add_member(:database_installation_files_s3_bucket_name, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseInstallationFilesS3BucketName"))
|
1331
|
+
DBEngineVersion.add_member(:database_installation_files_s3_prefix, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseInstallationFilesS3Prefix"))
|
1332
|
+
DBEngineVersion.add_member(:db_engine_version_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBEngineVersionArn"))
|
1333
|
+
DBEngineVersion.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KMSKeyId"))
|
1334
|
+
DBEngineVersion.add_member(:create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "CreateTime"))
|
1335
|
+
DBEngineVersion.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1294
1336
|
DBEngineVersion.struct_class = Types::DBEngineVersion
|
1295
1337
|
|
1296
1338
|
DBEngineVersionList.member = Shapes::ShapeRef.new(shape: DBEngineVersion, location_name: "DBEngineVersion")
|
@@ -1369,6 +1411,10 @@ module Aws::RDS
|
|
1369
1411
|
DBInstance.add_member(:activity_stream_kinesis_stream_name, Shapes::ShapeRef.new(shape: String, location_name: "ActivityStreamKinesisStreamName"))
|
1370
1412
|
DBInstance.add_member(:activity_stream_mode, Shapes::ShapeRef.new(shape: ActivityStreamMode, location_name: "ActivityStreamMode"))
|
1371
1413
|
DBInstance.add_member(:activity_stream_engine_native_audit_fields_included, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ActivityStreamEngineNativeAuditFieldsIncluded"))
|
1414
|
+
DBInstance.add_member(:automation_mode, Shapes::ShapeRef.new(shape: AutomationMode, location_name: "AutomationMode"))
|
1415
|
+
DBInstance.add_member(:resume_full_automation_mode_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ResumeFullAutomationModeTime"))
|
1416
|
+
DBInstance.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
1417
|
+
DBInstance.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
1372
1418
|
DBInstance.struct_class = Types::DBInstance
|
1373
1419
|
|
1374
1420
|
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
@@ -1399,6 +1445,7 @@ module Aws::RDS
|
|
1399
1445
|
DBInstanceAutomatedBackup.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
1400
1446
|
DBInstanceAutomatedBackup.add_member(:db_instance_automated_backups_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceAutomatedBackupsArn"))
|
1401
1447
|
DBInstanceAutomatedBackup.add_member(:db_instance_automated_backups_replications, Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackupsReplicationList, location_name: "DBInstanceAutomatedBackupsReplications"))
|
1448
|
+
DBInstanceAutomatedBackup.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
1402
1449
|
DBInstanceAutomatedBackup.struct_class = Types::DBInstanceAutomatedBackup
|
1403
1450
|
|
1404
1451
|
DBInstanceAutomatedBackupList.member = Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackup, location_name: "DBInstanceAutomatedBackup")
|
@@ -1611,6 +1658,7 @@ module Aws::RDS
|
|
1611
1658
|
DBSnapshot.add_member(:dbi_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "DbiResourceId"))
|
1612
1659
|
DBSnapshot.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1613
1660
|
DBSnapshot.add_member(:original_snapshot_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "OriginalSnapshotCreateTime"))
|
1661
|
+
DBSnapshot.add_member(:snapshot_target, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotTarget"))
|
1614
1662
|
DBSnapshot.struct_class = Types::DBSnapshot
|
1615
1663
|
|
1616
1664
|
DBSnapshotAlreadyExistsFault.struct_class = Types::DBSnapshotAlreadyExistsFault
|
@@ -1667,6 +1715,10 @@ module Aws::RDS
|
|
1667
1715
|
DeleteCustomAvailabilityZoneResult.add_member(:custom_availability_zone, Shapes::ShapeRef.new(shape: CustomAvailabilityZone, location_name: "CustomAvailabilityZone"))
|
1668
1716
|
DeleteCustomAvailabilityZoneResult.struct_class = Types::DeleteCustomAvailabilityZoneResult
|
1669
1717
|
|
1718
|
+
DeleteCustomDBEngineVersionMessage.add_member(:engine, Shapes::ShapeRef.new(shape: CustomEngineName, required: true, location_name: "Engine"))
|
1719
|
+
DeleteCustomDBEngineVersionMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: CustomEngineVersion, required: true, location_name: "EngineVersion"))
|
1720
|
+
DeleteCustomDBEngineVersionMessage.struct_class = Types::DeleteCustomDBEngineVersionMessage
|
1721
|
+
|
1670
1722
|
DeleteDBClusterEndpointMessage.add_member(:db_cluster_endpoint_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterEndpointIdentifier"))
|
1671
1723
|
DeleteDBClusterEndpointMessage.struct_class = Types::DeleteDBClusterEndpointMessage
|
1672
1724
|
|
@@ -2308,6 +2360,8 @@ module Aws::RDS
|
|
2308
2360
|
|
2309
2361
|
InsufficientStorageClusterCapacityFault.struct_class = Types::InsufficientStorageClusterCapacityFault
|
2310
2362
|
|
2363
|
+
InvalidCustomDBEngineVersionStateFault.struct_class = Types::InvalidCustomDBEngineVersionStateFault
|
2364
|
+
|
2311
2365
|
InvalidDBClusterCapacityFault.struct_class = Types::InvalidDBClusterCapacityFault
|
2312
2366
|
|
2313
2367
|
InvalidDBClusterEndpointStateFault.struct_class = Types::InvalidDBClusterEndpointStateFault
|
@@ -2385,6 +2439,12 @@ module Aws::RDS
|
|
2385
2439
|
ModifyCurrentDBClusterCapacityMessage.add_member(:timeout_action, Shapes::ShapeRef.new(shape: String, location_name: "TimeoutAction"))
|
2386
2440
|
ModifyCurrentDBClusterCapacityMessage.struct_class = Types::ModifyCurrentDBClusterCapacityMessage
|
2387
2441
|
|
2442
|
+
ModifyCustomDBEngineVersionMessage.add_member(:engine, Shapes::ShapeRef.new(shape: CustomEngineName, required: true, location_name: "Engine"))
|
2443
|
+
ModifyCustomDBEngineVersionMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: CustomEngineVersion, required: true, location_name: "EngineVersion"))
|
2444
|
+
ModifyCustomDBEngineVersionMessage.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
2445
|
+
ModifyCustomDBEngineVersionMessage.add_member(:status, Shapes::ShapeRef.new(shape: CustomEngineVersionStatus, location_name: "Status"))
|
2446
|
+
ModifyCustomDBEngineVersionMessage.struct_class = Types::ModifyCustomDBEngineVersionMessage
|
2447
|
+
|
2388
2448
|
ModifyDBClusterEndpointMessage.add_member(:db_cluster_endpoint_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterEndpointIdentifier"))
|
2389
2449
|
ModifyDBClusterEndpointMessage.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: String, location_name: "EndpointType"))
|
2390
2450
|
ModifyDBClusterEndpointMessage.add_member(:static_members, Shapes::ShapeRef.new(shape: StringList, location_name: "StaticMembers"))
|
@@ -2478,6 +2538,8 @@ module Aws::RDS
|
|
2478
2538
|
ModifyDBInstanceMessage.add_member(:replica_mode, Shapes::ShapeRef.new(shape: ReplicaMode, location_name: "ReplicaMode"))
|
2479
2539
|
ModifyDBInstanceMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
2480
2540
|
ModifyDBInstanceMessage.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: AwsBackupRecoveryPointArn, location_name: "AwsBackupRecoveryPointArn"))
|
2541
|
+
ModifyDBInstanceMessage.add_member(:automation_mode, Shapes::ShapeRef.new(shape: AutomationMode, location_name: "AutomationMode"))
|
2542
|
+
ModifyDBInstanceMessage.add_member(:resume_full_automation_mode_minutes, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ResumeFullAutomationModeMinutes"))
|
2481
2543
|
ModifyDBInstanceMessage.struct_class = Types::ModifyDBInstanceMessage
|
2482
2544
|
|
2483
2545
|
ModifyDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -2775,6 +2837,8 @@ module Aws::RDS
|
|
2775
2837
|
PendingModifiedValues.add_member(:pending_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: PendingCloudwatchLogsExports, location_name: "PendingCloudwatchLogsExports"))
|
2776
2838
|
PendingModifiedValues.add_member(:processor_features, Shapes::ShapeRef.new(shape: ProcessorFeatureList, location_name: "ProcessorFeatures"))
|
2777
2839
|
PendingModifiedValues.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IAMDatabaseAuthenticationEnabled"))
|
2840
|
+
PendingModifiedValues.add_member(:automation_mode, Shapes::ShapeRef.new(shape: AutomationMode, location_name: "AutomationMode"))
|
2841
|
+
PendingModifiedValues.add_member(:resume_full_automation_mode_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ResumeFullAutomationModeTime"))
|
2778
2842
|
PendingModifiedValues.struct_class = Types::PendingModifiedValues
|
2779
2843
|
|
2780
2844
|
PointInTimeRestoreNotEnabledFault.struct_class = Types::PointInTimeRestoreNotEnabledFault
|
@@ -3059,6 +3123,8 @@ module Aws::RDS
|
|
3059
3123
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:db_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupName"))
|
3060
3124
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
3061
3125
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
3126
|
+
RestoreDBInstanceFromDBSnapshotMessage.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
3127
|
+
RestoreDBInstanceFromDBSnapshotMessage.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
3062
3128
|
RestoreDBInstanceFromDBSnapshotMessage.struct_class = Types::RestoreDBInstanceFromDBSnapshotMessage
|
3063
3129
|
|
3064
3130
|
RestoreDBInstanceFromDBSnapshotResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -3147,6 +3213,8 @@ module Aws::RDS
|
|
3147
3213
|
RestoreDBInstanceToPointInTimeMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
3148
3214
|
RestoreDBInstanceToPointInTimeMessage.add_member(:source_db_instance_automated_backups_arn, Shapes::ShapeRef.new(shape: String, location_name: "SourceDBInstanceAutomatedBackupsArn"))
|
3149
3215
|
RestoreDBInstanceToPointInTimeMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
3216
|
+
RestoreDBInstanceToPointInTimeMessage.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
3217
|
+
RestoreDBInstanceToPointInTimeMessage.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
3150
3218
|
RestoreDBInstanceToPointInTimeMessage.struct_class = Types::RestoreDBInstanceToPointInTimeMessage
|
3151
3219
|
|
3152
3220
|
RestoreDBInstanceToPointInTimeResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -3570,6 +3638,17 @@ module Aws::RDS
|
|
3570
3638
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
3571
3639
|
end)
|
3572
3640
|
|
3641
|
+
api.add_operation(:create_custom_db_engine_version, Seahorse::Model::Operation.new.tap do |o|
|
3642
|
+
o.name = "CreateCustomDBEngineVersion"
|
3643
|
+
o.http_method = "POST"
|
3644
|
+
o.http_request_uri = "/"
|
3645
|
+
o.input = Shapes::ShapeRef.new(shape: CreateCustomDBEngineVersionMessage)
|
3646
|
+
o.output = Shapes::ShapeRef.new(shape: DBEngineVersion)
|
3647
|
+
o.errors << Shapes::ShapeRef.new(shape: CustomDBEngineVersionAlreadyExistsFault)
|
3648
|
+
o.errors << Shapes::ShapeRef.new(shape: CustomDBEngineVersionQuotaExceededFault)
|
3649
|
+
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
3650
|
+
end)
|
3651
|
+
|
3573
3652
|
api.add_operation(:create_db_cluster, Seahorse::Model::Operation.new.tap do |o|
|
3574
3653
|
o.name = "CreateDBCluster"
|
3575
3654
|
o.http_method = "POST"
|
@@ -3804,6 +3883,16 @@ module Aws::RDS
|
|
3804
3883
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
3805
3884
|
end)
|
3806
3885
|
|
3886
|
+
api.add_operation(:delete_custom_db_engine_version, Seahorse::Model::Operation.new.tap do |o|
|
3887
|
+
o.name = "DeleteCustomDBEngineVersion"
|
3888
|
+
o.http_method = "POST"
|
3889
|
+
o.http_request_uri = "/"
|
3890
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteCustomDBEngineVersionMessage)
|
3891
|
+
o.output = Shapes::ShapeRef.new(shape: DBEngineVersion)
|
3892
|
+
o.errors << Shapes::ShapeRef.new(shape: CustomDBEngineVersionNotFoundFault)
|
3893
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidCustomDBEngineVersionStateFault)
|
3894
|
+
end)
|
3895
|
+
|
3807
3896
|
api.add_operation(:delete_db_cluster, Seahorse::Model::Operation.new.tap do |o|
|
3808
3897
|
o.name = "DeleteDBCluster"
|
3809
3898
|
o.http_method = "POST"
|
@@ -4630,6 +4719,16 @@ module Aws::RDS
|
|
4630
4719
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterCapacityFault)
|
4631
4720
|
end)
|
4632
4721
|
|
4722
|
+
api.add_operation(:modify_custom_db_engine_version, Seahorse::Model::Operation.new.tap do |o|
|
4723
|
+
o.name = "ModifyCustomDBEngineVersion"
|
4724
|
+
o.http_method = "POST"
|
4725
|
+
o.http_request_uri = "/"
|
4726
|
+
o.input = Shapes::ShapeRef.new(shape: ModifyCustomDBEngineVersionMessage)
|
4727
|
+
o.output = Shapes::ShapeRef.new(shape: DBEngineVersion)
|
4728
|
+
o.errors << Shapes::ShapeRef.new(shape: CustomDBEngineVersionNotFoundFault)
|
4729
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidCustomDBEngineVersionStateFault)
|
4730
|
+
end)
|
4731
|
+
|
4633
4732
|
api.add_operation(:modify_db_cluster, Seahorse::Model::Operation.new.tap do |o|
|
4634
4733
|
o.name = "ModifyDBCluster"
|
4635
4734
|
o.http_method = "POST"
|
@@ -244,8 +244,7 @@ module Aws::RDS
|
|
244
244
|
# identifier for the encrypted DB cluster.
|
245
245
|
#
|
246
246
|
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
247
|
-
# alias ARN, or alias name for the
|
248
|
-
# master key (CMK).
|
247
|
+
# alias ARN, or alias name for the KMS key.
|
249
248
|
# @return [String]
|
250
249
|
def kms_key_id
|
251
250
|
data[:kms_key_id]
|
@@ -253,8 +252,7 @@ module Aws::RDS
|
|
253
252
|
|
254
253
|
# The Amazon Web Services Region-unique, immutable identifier for the DB
|
255
254
|
# cluster. This identifier is found in Amazon Web Services CloudTrail
|
256
|
-
# log entries whenever the
|
257
|
-
# cluster is accessed.
|
255
|
+
# log entries whenever the KMS key for the DB cluster is accessed.
|
258
256
|
# @return [String]
|
259
257
|
def db_cluster_resource_id
|
260
258
|
data[:db_cluster_resource_id]
|
@@ -417,8 +415,7 @@ module Aws::RDS
|
|
417
415
|
# messages in the database activity stream.
|
418
416
|
#
|
419
417
|
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
420
|
-
# alias ARN, or alias name for the
|
421
|
-
# master key (CMK).
|
418
|
+
# alias ARN, or alias name for the KMS key.
|
422
419
|
# @return [String]
|
423
420
|
def activity_stream_kms_key_id
|
424
421
|
data[:activity_stream_kms_key_id]
|
@@ -836,29 +833,29 @@ module Aws::RDS
|
|
836
833
|
# cluster.
|
837
834
|
#
|
838
835
|
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
839
|
-
# alias ARN, or alias name for the
|
840
|
-
#
|
841
|
-
#
|
836
|
+
# alias ARN, or alias name for the KMS key. To use a KMS key in a
|
837
|
+
# different Amazon Web Services account, specify the key ARN or alias
|
838
|
+
# ARN.
|
842
839
|
#
|
843
|
-
# When a
|
840
|
+
# When a KMS key isn't specified in `KmsKeyId`\:
|
844
841
|
#
|
845
842
|
# * If `ReplicationSourceIdentifier` identifies an encrypted source,
|
846
|
-
# then Amazon RDS will use the
|
847
|
-
# Otherwise, Amazon RDS will use your default
|
843
|
+
# then Amazon RDS will use the KMS key used to encrypt the source.
|
844
|
+
# Otherwise, Amazon RDS will use your default KMS key.
|
848
845
|
#
|
849
846
|
# * If the `StorageEncrypted` parameter is enabled and
|
850
847
|
# `ReplicationSourceIdentifier` isn't specified, then Amazon RDS will
|
851
|
-
# use your default
|
848
|
+
# use your default KMS key.
|
852
849
|
#
|
853
|
-
# There is a default
|
854
|
-
# Amazon Web Services account has a different default
|
850
|
+
# There is a default KMS key for your Amazon Web Services account. Your
|
851
|
+
# Amazon Web Services account has a different default KMS key for each
|
855
852
|
# Amazon Web Services Region.
|
856
853
|
#
|
857
854
|
# If you create a read replica of an encrypted DB cluster in another
|
858
|
-
# Amazon Web Services Region, you must set `KmsKeyId` to a
|
859
|
-
#
|
860
|
-
#
|
861
|
-
#
|
855
|
+
# Amazon Web Services Region, you must set `KmsKeyId` to a KMS key
|
856
|
+
# identifier that is valid in the destination Amazon Web Services
|
857
|
+
# Region. This KMS key is used to encrypt the read replica in that
|
858
|
+
# Amazon Web Services Region.
|
862
859
|
# @option options [String] :pre_signed_url
|
863
860
|
# A URL that contains a Signature Version 4 signed request for the
|
864
861
|
# `CreateDBCluster` action to be called in the source Amazon Web
|
@@ -873,12 +870,12 @@ module Aws::RDS
|
|
873
870
|
# The pre-signed URL request must contain the following parameter
|
874
871
|
# values:
|
875
872
|
#
|
876
|
-
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the
|
877
|
-
# to use to encrypt the copy of the DB cluster in the destination
|
878
|
-
# Amazon Web Services Region. This should refer to the same
|
879
|
-
#
|
880
|
-
#
|
881
|
-
#
|
873
|
+
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the KMS
|
874
|
+
# key to use to encrypt the copy of the DB cluster in the destination
|
875
|
+
# Amazon Web Services Region. This should refer to the same KMS key
|
876
|
+
# for both the `CreateDBCluster` action that is called in the
|
877
|
+
# destination Amazon Web Services Region, and the action contained in
|
878
|
+
# the pre-signed URL.
|
882
879
|
#
|
883
880
|
# * `DestinationRegion` - The name of the Amazon Web Services Region
|
884
881
|
# that Aurora read replica will be created in.
|
@@ -1580,22 +1577,21 @@ module Aws::RDS
|
|
1580
1577
|
# encrypted DB cluster from an encrypted DB cluster.
|
1581
1578
|
#
|
1582
1579
|
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
1583
|
-
# alias ARN, or alias name for the
|
1584
|
-
#
|
1585
|
-
#
|
1580
|
+
# alias ARN, or alias name for the KMS key. To use a KMS key in a
|
1581
|
+
# different Amazon Web Services account, specify the key ARN or alias
|
1582
|
+
# ARN.
|
1586
1583
|
#
|
1587
1584
|
# You can restore to a new DB cluster and encrypt the new DB cluster
|
1588
|
-
# with a
|
1589
|
-
#
|
1590
|
-
#
|
1591
|
-
# by the `KmsKeyId` parameter.
|
1585
|
+
# with a KMS key that is different from the KMS key used to encrypt the
|
1586
|
+
# source DB cluster. The new DB cluster is encrypted with the KMS key
|
1587
|
+
# identified by the `KmsKeyId` parameter.
|
1592
1588
|
#
|
1593
1589
|
# If you don't specify a value for the `KmsKeyId` parameter, then the
|
1594
1590
|
# following occurs:
|
1595
1591
|
#
|
1596
1592
|
# * If the DB cluster is encrypted, then the restored DB cluster is
|
1597
|
-
# encrypted using the
|
1598
|
-
#
|
1593
|
+
# encrypted using the KMS key that was used to encrypt the source DB
|
1594
|
+
# cluster.
|
1599
1595
|
#
|
1600
1596
|
# * If the DB cluster isn't encrypted, then the restored DB cluster
|
1601
1597
|
# isn't encrypted.
|
@@ -146,8 +146,7 @@ module Aws::RDS
|
|
146
146
|
# identifier for the encrypted DB cluster snapshot.
|
147
147
|
#
|
148
148
|
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
149
|
-
# alias ARN, or alias name for the
|
150
|
-
# master key (CMK).
|
149
|
+
# alias ARN, or alias name for the KMS key.
|
151
150
|
# @return [String]
|
152
151
|
def kms_key_id
|
153
152
|
data[:kms_key_id]
|
@@ -379,15 +378,13 @@ module Aws::RDS
|
|
379
378
|
# @option options [String] :kms_key_id
|
380
379
|
# The Amazon Web Services KMS key identifier for an encrypted DB cluster
|
381
380
|
# snapshot. The Amazon Web Services KMS key identifier is the key ARN,
|
382
|
-
# key ID, alias ARN, or alias name for the Amazon Web Services KMS
|
383
|
-
# customer master key (CMK).
|
381
|
+
# key ID, alias ARN, or alias name for the Amazon Web Services KMS key.
|
384
382
|
#
|
385
383
|
# If you copy an encrypted DB cluster snapshot from your Amazon Web
|
386
384
|
# Services account, you can specify a value for `KmsKeyId` to encrypt
|
387
|
-
# the copy with a new
|
388
|
-
#
|
389
|
-
#
|
390
|
-
# cluster snapshot.
|
385
|
+
# the copy with a new KMS key. If you don't specify a value for
|
386
|
+
# `KmsKeyId`, then the copy of the DB cluster snapshot is encrypted with
|
387
|
+
# the same KMS key as the source DB cluster snapshot.
|
391
388
|
#
|
392
389
|
# If you copy an encrypted DB cluster snapshot that is shared from
|
393
390
|
# another Amazon Web Services account, then you must specify a value for
|
@@ -396,10 +393,10 @@ module Aws::RDS
|
|
396
393
|
# To copy an encrypted DB cluster snapshot to another Amazon Web
|
397
394
|
# Services Region, you must set `KmsKeyId` to the Amazon Web Services
|
398
395
|
# KMS key identifier you want to use to encrypt the copy of the DB
|
399
|
-
# cluster snapshot in the destination Amazon Web Services Region.
|
400
|
-
#
|
401
|
-
#
|
402
|
-
#
|
396
|
+
# cluster snapshot in the destination Amazon Web Services Region. KMS
|
397
|
+
# keys are specific to the Amazon Web Services Region that they are
|
398
|
+
# created in, and you can't use KMS keys from one Amazon Web Services
|
399
|
+
# Region in another Amazon Web Services Region.
|
403
400
|
#
|
404
401
|
# If you copy an unencrypted DB cluster snapshot and specify a value for
|
405
402
|
# the `KmsKeyId` parameter, an error is returned.
|
@@ -418,12 +415,12 @@ module Aws::RDS
|
|
418
415
|
# snapshot to be copied. The pre-signed URL request must contain the
|
419
416
|
# following parameter values:
|
420
417
|
#
|
421
|
-
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the
|
422
|
-
#
|
423
|
-
#
|
424
|
-
#
|
425
|
-
#
|
426
|
-
# the
|
418
|
+
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the KMS
|
419
|
+
# key to use to encrypt the copy of the DB cluster snapshot in the
|
420
|
+
# destination Amazon Web Services Region. This is the same identifier
|
421
|
+
# for both the `CopyDBClusterSnapshot` action that is called in the
|
422
|
+
# destination Amazon Web Services Region, and the action contained in
|
423
|
+
# the pre-signed URL.
|
427
424
|
#
|
428
425
|
# * `DestinationRegion` - The name of the Amazon Web Services Region
|
429
426
|
# that the DB cluster snapshot is to be created in.
|
@@ -617,17 +614,16 @@ module Aws::RDS
|
|
617
614
|
# encrypted DB cluster from a DB snapshot or DB cluster snapshot.
|
618
615
|
#
|
619
616
|
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
620
|
-
# alias ARN, or alias name for the
|
621
|
-
#
|
622
|
-
#
|
617
|
+
# alias ARN, or alias name for the KMS key. To use a KMS key in a
|
618
|
+
# different Amazon Web Services account, specify the key ARN or alias
|
619
|
+
# ARN.
|
623
620
|
#
|
624
621
|
# When you don't specify a value for the `KmsKeyId` parameter, then the
|
625
622
|
# following occurs:
|
626
623
|
#
|
627
624
|
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier` is
|
628
|
-
# encrypted, then the restored DB cluster is encrypted using the
|
629
|
-
#
|
630
|
-
# or DB cluster snapshot.
|
625
|
+
# encrypted, then the restored DB cluster is encrypted using the KMS
|
626
|
+
# key that was used to encrypt the DB snapshot or DB cluster snapshot.
|
631
627
|
#
|
632
628
|
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier`
|
633
629
|
# isn't encrypted, then the restored DB cluster isn't encrypted.
|
@@ -292,6 +292,10 @@ module Aws::RDS
|
|
292
292
|
# If this parameter is enabled and the requested engine supports the
|
293
293
|
# `CharacterSetName` parameter for `CreateDBInstance`, the response
|
294
294
|
# includes a list of supported character sets for each engine version.
|
295
|
+
#
|
296
|
+
# For RDS Custom, the default is not to list supported character sets.
|
297
|
+
# If you set `ListSupportedCharacterSets` to `true`, RDS Custom returns
|
298
|
+
# no results.
|
295
299
|
# @option options [Boolean] :list_supported_timezones
|
296
300
|
# A value that indicates whether to list the supported time zones for
|
297
301
|
# each engine version.
|
@@ -299,6 +303,10 @@ module Aws::RDS
|
|
299
303
|
# If this parameter is enabled and the requested engine supports the
|
300
304
|
# `TimeZone` parameter for `CreateDBInstance`, the response includes a
|
301
305
|
# list of supported time zones for each engine version.
|
306
|
+
#
|
307
|
+
# For RDS Custom, the default is not to list supported time zones. If
|
308
|
+
# you set `ListSupportedTimezones` to `true`, RDS Custom returns no
|
309
|
+
# results.
|
302
310
|
# @option options [Boolean] :include_all
|
303
311
|
# A value that indicates whether to include engine versions that aren't
|
304
312
|
# available in the list. The default is to list only available engine
|
@@ -124,12 +124,24 @@ module Aws::RDS
|
|
124
124
|
data[:supported_engine_modes]
|
125
125
|
end
|
126
126
|
|
127
|
-
# A list of features supported by the DB engine.
|
128
|
-
# include the following.
|
127
|
+
# A list of features supported by the DB engine.
|
129
128
|
#
|
130
|
-
#
|
129
|
+
# The supported features vary by DB engine and DB engine version.
|
131
130
|
#
|
132
|
-
#
|
131
|
+
# To determine the supported features for a specific DB engine and DB
|
132
|
+
# engine version using the CLI, use the following command:
|
133
|
+
#
|
134
|
+
# `aws rds describe-db-engine-versions --engine <engine_name>
|
135
|
+
# --engine-version <engine_version>`
|
136
|
+
#
|
137
|
+
# For example, to determine the supported features for RDS for
|
138
|
+
# PostgreSQL version 13.3 using the CLI, use the following command:
|
139
|
+
#
|
140
|
+
# `aws rds describe-db-engine-versions --engine postgres
|
141
|
+
# --engine-version 13.3`
|
142
|
+
#
|
143
|
+
# The supported features are listed under `SupportedFeatureNames` in the
|
144
|
+
# output.
|
133
145
|
# @return [Array<String>]
|
134
146
|
def supported_feature_names
|
135
147
|
data[:supported_feature_names]
|
@@ -156,6 +168,56 @@ module Aws::RDS
|
|
156
168
|
data[:supports_global_databases]
|
157
169
|
end
|
158
170
|
|
171
|
+
# The major engine version of the CEV.
|
172
|
+
# @return [String]
|
173
|
+
def major_engine_version
|
174
|
+
data[:major_engine_version]
|
175
|
+
end
|
176
|
+
|
177
|
+
# The name of the Amazon S3 bucket that contains your database
|
178
|
+
# installation files.
|
179
|
+
# @return [String]
|
180
|
+
def database_installation_files_s3_bucket_name
|
181
|
+
data[:database_installation_files_s3_bucket_name]
|
182
|
+
end
|
183
|
+
|
184
|
+
# The Amazon S3 directory that contains the database installation files.
|
185
|
+
# If not specified, then no prefix is assumed.
|
186
|
+
# @return [String]
|
187
|
+
def database_installation_files_s3_prefix
|
188
|
+
data[:database_installation_files_s3_prefix]
|
189
|
+
end
|
190
|
+
|
191
|
+
# The ARN of the custom engine version.
|
192
|
+
# @return [String]
|
193
|
+
def db_engine_version_arn
|
194
|
+
data[:db_engine_version_arn]
|
195
|
+
end
|
196
|
+
|
197
|
+
# The Amazon Web Services KMS key identifier for an encrypted CEV. This
|
198
|
+
# parameter is required for RDS Custom, but optional for Amazon RDS.
|
199
|
+
# @return [String]
|
200
|
+
def kms_key_id
|
201
|
+
data[:kms_key_id]
|
202
|
+
end
|
203
|
+
|
204
|
+
# The creation time of the DB engine version.
|
205
|
+
# @return [Time]
|
206
|
+
def create_time
|
207
|
+
data[:create_time]
|
208
|
+
end
|
209
|
+
|
210
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
211
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
212
|
+
#
|
213
|
+
#
|
214
|
+
#
|
215
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
216
|
+
# @return [Array<Types::Tag>]
|
217
|
+
def tag_list
|
218
|
+
data[:tag_list]
|
219
|
+
end
|
220
|
+
|
159
221
|
# @!endgroup
|
160
222
|
|
161
223
|
# @return [Client]
|