aws-sdk-rds 1.103.0 → 1.108.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +596 -196
- data/lib/aws-sdk-rds/client_api.rb +76 -5
- data/lib/aws-sdk-rds/db_cluster.rb +68 -43
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +40 -22
- data/lib/aws-sdk-rds/db_engine_version.rb +0 -6
- data/lib/aws-sdk-rds/db_instance.rb +86 -72
- data/lib/aws-sdk-rds/db_snapshot.rb +36 -18
- data/lib/aws-sdk-rds/plugins/cross_region_copying.rb +11 -12
- data/lib/aws-sdk-rds/resource.rb +49 -66
- data/lib/aws-sdk-rds/types.rb +525 -261
- metadata +2 -2
@@ -49,6 +49,7 @@ module Aws::RDS
|
|
49
49
|
CertificateNotFoundFault = Shapes::StructureShape.new(name: 'CertificateNotFoundFault')
|
50
50
|
CharacterSet = Shapes::StructureShape.new(name: 'CharacterSet')
|
51
51
|
CloudwatchLogsExportConfiguration = Shapes::StructureShape.new(name: 'CloudwatchLogsExportConfiguration')
|
52
|
+
ClusterPendingModifiedValues = Shapes::StructureShape.new(name: 'ClusterPendingModifiedValues')
|
52
53
|
ConnectionPoolConfiguration = Shapes::StructureShape.new(name: 'ConnectionPoolConfiguration')
|
53
54
|
ConnectionPoolConfigurationInfo = Shapes::StructureShape.new(name: 'ConnectionPoolConfigurationInfo')
|
54
55
|
CopyDBClusterParameterGroupMessage = Shapes::StructureShape.new(name: 'CopyDBClusterParameterGroupMessage')
|
@@ -146,6 +147,8 @@ module Aws::RDS
|
|
146
147
|
DBInstanceAutomatedBackupMessage = Shapes::StructureShape.new(name: 'DBInstanceAutomatedBackupMessage')
|
147
148
|
DBInstanceAutomatedBackupNotFoundFault = Shapes::StructureShape.new(name: 'DBInstanceAutomatedBackupNotFoundFault')
|
148
149
|
DBInstanceAutomatedBackupQuotaExceededFault = Shapes::StructureShape.new(name: 'DBInstanceAutomatedBackupQuotaExceededFault')
|
150
|
+
DBInstanceAutomatedBackupsReplication = Shapes::StructureShape.new(name: 'DBInstanceAutomatedBackupsReplication')
|
151
|
+
DBInstanceAutomatedBackupsReplicationList = Shapes::ListShape.new(name: 'DBInstanceAutomatedBackupsReplicationList')
|
149
152
|
DBInstanceList = Shapes::ListShape.new(name: 'DBInstanceList')
|
150
153
|
DBInstanceMessage = Shapes::StructureShape.new(name: 'DBInstanceMessage')
|
151
154
|
DBInstanceNotFoundFault = Shapes::StructureShape.new(name: 'DBInstanceNotFoundFault')
|
@@ -520,6 +523,8 @@ module Aws::RDS
|
|
520
523
|
StartActivityStreamResponse = Shapes::StructureShape.new(name: 'StartActivityStreamResponse')
|
521
524
|
StartDBClusterMessage = Shapes::StructureShape.new(name: 'StartDBClusterMessage')
|
522
525
|
StartDBClusterResult = Shapes::StructureShape.new(name: 'StartDBClusterResult')
|
526
|
+
StartDBInstanceAutomatedBackupsReplicationMessage = Shapes::StructureShape.new(name: 'StartDBInstanceAutomatedBackupsReplicationMessage')
|
527
|
+
StartDBInstanceAutomatedBackupsReplicationResult = Shapes::StructureShape.new(name: 'StartDBInstanceAutomatedBackupsReplicationResult')
|
523
528
|
StartDBInstanceMessage = Shapes::StructureShape.new(name: 'StartDBInstanceMessage')
|
524
529
|
StartDBInstanceResult = Shapes::StructureShape.new(name: 'StartDBInstanceResult')
|
525
530
|
StartExportTaskMessage = Shapes::StructureShape.new(name: 'StartExportTaskMessage')
|
@@ -527,6 +532,8 @@ module Aws::RDS
|
|
527
532
|
StopActivityStreamResponse = Shapes::StructureShape.new(name: 'StopActivityStreamResponse')
|
528
533
|
StopDBClusterMessage = Shapes::StructureShape.new(name: 'StopDBClusterMessage')
|
529
534
|
StopDBClusterResult = Shapes::StructureShape.new(name: 'StopDBClusterResult')
|
535
|
+
StopDBInstanceAutomatedBackupsReplicationMessage = Shapes::StructureShape.new(name: 'StopDBInstanceAutomatedBackupsReplicationMessage')
|
536
|
+
StopDBInstanceAutomatedBackupsReplicationResult = Shapes::StructureShape.new(name: 'StopDBInstanceAutomatedBackupsReplicationResult')
|
530
537
|
StopDBInstanceMessage = Shapes::StructureShape.new(name: 'StopDBInstanceMessage')
|
531
538
|
StopDBInstanceResult = Shapes::StructureShape.new(name: 'StopDBInstanceResult')
|
532
539
|
StorageQuotaExceededFault = Shapes::StructureShape.new(name: 'StorageQuotaExceededFault')
|
@@ -677,6 +684,13 @@ module Aws::RDS
|
|
677
684
|
CloudwatchLogsExportConfiguration.add_member(:disable_log_types, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "DisableLogTypes"))
|
678
685
|
CloudwatchLogsExportConfiguration.struct_class = Types::CloudwatchLogsExportConfiguration
|
679
686
|
|
687
|
+
ClusterPendingModifiedValues.add_member(:pending_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: PendingCloudwatchLogsExports, location_name: "PendingCloudwatchLogsExports"))
|
688
|
+
ClusterPendingModifiedValues.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterIdentifier"))
|
689
|
+
ClusterPendingModifiedValues.add_member(:master_user_password, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserPassword"))
|
690
|
+
ClusterPendingModifiedValues.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IAMDatabaseAuthenticationEnabled"))
|
691
|
+
ClusterPendingModifiedValues.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
692
|
+
ClusterPendingModifiedValues.struct_class = Types::ClusterPendingModifiedValues
|
693
|
+
|
680
694
|
ConnectionPoolConfiguration.add_member(:max_connections_percent, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxConnectionsPercent"))
|
681
695
|
ConnectionPoolConfiguration.add_member(:max_idle_connections_percent, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxIdleConnectionsPercent"))
|
682
696
|
ConnectionPoolConfiguration.add_member(:connection_borrow_timeout, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ConnectionBorrowTimeout"))
|
@@ -706,7 +720,6 @@ module Aws::RDS
|
|
706
720
|
CopyDBClusterSnapshotMessage.add_member(:pre_signed_url, Shapes::ShapeRef.new(shape: String, location_name: "PreSignedUrl"))
|
707
721
|
CopyDBClusterSnapshotMessage.add_member(:copy_tags, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTags"))
|
708
722
|
CopyDBClusterSnapshotMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
709
|
-
CopyDBClusterSnapshotMessage.add_member(:destination_region, Shapes::ShapeRef.new(shape: String, location_name: "DestinationRegion", metadata: {"documented"=>false}))
|
710
723
|
CopyDBClusterSnapshotMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
711
724
|
CopyDBClusterSnapshotMessage.struct_class = Types::CopyDBClusterSnapshotMessage
|
712
725
|
|
@@ -729,7 +742,7 @@ module Aws::RDS
|
|
729
742
|
CopyDBSnapshotMessage.add_member(:copy_tags, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTags"))
|
730
743
|
CopyDBSnapshotMessage.add_member(:pre_signed_url, Shapes::ShapeRef.new(shape: String, location_name: "PreSignedUrl"))
|
731
744
|
CopyDBSnapshotMessage.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, location_name: "OptionGroupName"))
|
732
|
-
CopyDBSnapshotMessage.add_member(:
|
745
|
+
CopyDBSnapshotMessage.add_member(:target_custom_availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "TargetCustomAvailabilityZone"))
|
733
746
|
CopyDBSnapshotMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
734
747
|
CopyDBSnapshotMessage.struct_class = Types::CopyDBSnapshotMessage
|
735
748
|
|
@@ -795,7 +808,6 @@ module Aws::RDS
|
|
795
808
|
CreateDBClusterMessage.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "Domain"))
|
796
809
|
CreateDBClusterMessage.add_member(:domain_iam_role_name, Shapes::ShapeRef.new(shape: String, location_name: "DomainIAMRoleName"))
|
797
810
|
CreateDBClusterMessage.add_member(:enable_global_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableGlobalWriteForwarding"))
|
798
|
-
CreateDBClusterMessage.add_member(:destination_region, Shapes::ShapeRef.new(shape: String, location_name: "DestinationRegion", metadata: {"documented"=>false}))
|
799
811
|
CreateDBClusterMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
800
812
|
CreateDBClusterMessage.struct_class = Types::CreateDBClusterMessage
|
801
813
|
|
@@ -899,7 +911,7 @@ module Aws::RDS
|
|
899
911
|
CreateDBInstanceReadReplicaMessage.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "Domain"))
|
900
912
|
CreateDBInstanceReadReplicaMessage.add_member(:domain_iam_role_name, Shapes::ShapeRef.new(shape: String, location_name: "DomainIAMRoleName"))
|
901
913
|
CreateDBInstanceReadReplicaMessage.add_member(:replica_mode, Shapes::ShapeRef.new(shape: ReplicaMode, location_name: "ReplicaMode"))
|
902
|
-
CreateDBInstanceReadReplicaMessage.add_member(:
|
914
|
+
CreateDBInstanceReadReplicaMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
903
915
|
CreateDBInstanceReadReplicaMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
904
916
|
CreateDBInstanceReadReplicaMessage.struct_class = Types::CreateDBInstanceReadReplicaMessage
|
905
917
|
|
@@ -1062,8 +1074,10 @@ module Aws::RDS
|
|
1062
1074
|
DBCluster.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
1063
1075
|
DBCluster.add_member(:cross_account_clone, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CrossAccountClone"))
|
1064
1076
|
DBCluster.add_member(:domain_memberships, Shapes::ShapeRef.new(shape: DomainMembershipList, location_name: "DomainMemberships"))
|
1077
|
+
DBCluster.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1065
1078
|
DBCluster.add_member(:global_write_forwarding_status, Shapes::ShapeRef.new(shape: WriteForwardingStatus, location_name: "GlobalWriteForwardingStatus"))
|
1066
1079
|
DBCluster.add_member(:global_write_forwarding_requested, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "GlobalWriteForwardingRequested"))
|
1080
|
+
DBCluster.add_member(:pending_modified_values, Shapes::ShapeRef.new(shape: ClusterPendingModifiedValues, location_name: "PendingModifiedValues"))
|
1067
1081
|
DBCluster.struct_class = Types::DBCluster
|
1068
1082
|
|
1069
1083
|
DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
|
@@ -1193,6 +1207,7 @@ module Aws::RDS
|
|
1193
1207
|
DBClusterSnapshot.add_member(:db_cluster_snapshot_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterSnapshotArn"))
|
1194
1208
|
DBClusterSnapshot.add_member(:source_db_cluster_snapshot_arn, Shapes::ShapeRef.new(shape: String, location_name: "SourceDBClusterSnapshotArn"))
|
1195
1209
|
DBClusterSnapshot.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IAMDatabaseAuthenticationEnabled"))
|
1210
|
+
DBClusterSnapshot.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1196
1211
|
DBClusterSnapshot.struct_class = Types::DBClusterSnapshot
|
1197
1212
|
|
1198
1213
|
DBClusterSnapshotAlreadyExistsFault.struct_class = Types::DBClusterSnapshotAlreadyExistsFault
|
@@ -1301,6 +1316,8 @@ module Aws::RDS
|
|
1301
1316
|
DBInstance.add_member(:associated_roles, Shapes::ShapeRef.new(shape: DBInstanceRoles, location_name: "AssociatedRoles"))
|
1302
1317
|
DBInstance.add_member(:listener_endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "ListenerEndpoint"))
|
1303
1318
|
DBInstance.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
1319
|
+
DBInstance.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1320
|
+
DBInstance.add_member(:db_instance_automated_backups_replications, Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackupsReplicationList, location_name: "DBInstanceAutomatedBackupsReplications"))
|
1304
1321
|
DBInstance.struct_class = Types::DBInstance
|
1305
1322
|
|
1306
1323
|
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
@@ -1328,6 +1345,9 @@ module Aws::RDS
|
|
1328
1345
|
DBInstanceAutomatedBackup.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
1329
1346
|
DBInstanceAutomatedBackup.add_member(:timezone, Shapes::ShapeRef.new(shape: String, location_name: "Timezone"))
|
1330
1347
|
DBInstanceAutomatedBackup.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IAMDatabaseAuthenticationEnabled"))
|
1348
|
+
DBInstanceAutomatedBackup.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
1349
|
+
DBInstanceAutomatedBackup.add_member(:db_instance_automated_backups_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceAutomatedBackupsArn"))
|
1350
|
+
DBInstanceAutomatedBackup.add_member(:db_instance_automated_backups_replications, Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackupsReplicationList, location_name: "DBInstanceAutomatedBackupsReplications"))
|
1331
1351
|
DBInstanceAutomatedBackup.struct_class = Types::DBInstanceAutomatedBackup
|
1332
1352
|
|
1333
1353
|
DBInstanceAutomatedBackupList.member = Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackup, location_name: "DBInstanceAutomatedBackup")
|
@@ -1340,6 +1360,11 @@ module Aws::RDS
|
|
1340
1360
|
|
1341
1361
|
DBInstanceAutomatedBackupQuotaExceededFault.struct_class = Types::DBInstanceAutomatedBackupQuotaExceededFault
|
1342
1362
|
|
1363
|
+
DBInstanceAutomatedBackupsReplication.add_member(:db_instance_automated_backups_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceAutomatedBackupsArn"))
|
1364
|
+
DBInstanceAutomatedBackupsReplication.struct_class = Types::DBInstanceAutomatedBackupsReplication
|
1365
|
+
|
1366
|
+
DBInstanceAutomatedBackupsReplicationList.member = Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackupsReplication, location_name: "DBInstanceAutomatedBackupsReplication")
|
1367
|
+
|
1343
1368
|
DBInstanceList.member = Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance")
|
1344
1369
|
|
1345
1370
|
DBInstanceMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
@@ -1510,6 +1535,7 @@ module Aws::RDS
|
|
1510
1535
|
DBSnapshot.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IAMDatabaseAuthenticationEnabled"))
|
1511
1536
|
DBSnapshot.add_member(:processor_features, Shapes::ShapeRef.new(shape: ProcessorFeatureList, location_name: "ProcessorFeatures"))
|
1512
1537
|
DBSnapshot.add_member(:dbi_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "DbiResourceId"))
|
1538
|
+
DBSnapshot.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1513
1539
|
DBSnapshot.struct_class = Types::DBSnapshot
|
1514
1540
|
|
1515
1541
|
DBSnapshotAlreadyExistsFault.struct_class = Types::DBSnapshotAlreadyExistsFault
|
@@ -1586,7 +1612,8 @@ module Aws::RDS
|
|
1586
1612
|
DeleteDBClusterSnapshotResult.add_member(:db_cluster_snapshot, Shapes::ShapeRef.new(shape: DBClusterSnapshot, location_name: "DBClusterSnapshot"))
|
1587
1613
|
DeleteDBClusterSnapshotResult.struct_class = Types::DeleteDBClusterSnapshotResult
|
1588
1614
|
|
1589
|
-
DeleteDBInstanceAutomatedBackupMessage.add_member(:dbi_resource_id, Shapes::ShapeRef.new(shape: String,
|
1615
|
+
DeleteDBInstanceAutomatedBackupMessage.add_member(:dbi_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "DbiResourceId"))
|
1616
|
+
DeleteDBInstanceAutomatedBackupMessage.add_member(:db_instance_automated_backups_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceAutomatedBackupsArn"))
|
1590
1617
|
DeleteDBInstanceAutomatedBackupMessage.struct_class = Types::DeleteDBInstanceAutomatedBackupMessage
|
1591
1618
|
|
1592
1619
|
DeleteDBInstanceAutomatedBackupResult.add_member(:db_instance_automated_backup, Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackup, location_name: "DBInstanceAutomatedBackup"))
|
@@ -1729,6 +1756,7 @@ module Aws::RDS
|
|
1729
1756
|
DescribeDBInstanceAutomatedBackupsMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
1730
1757
|
DescribeDBInstanceAutomatedBackupsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRecords"))
|
1731
1758
|
DescribeDBInstanceAutomatedBackupsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
1759
|
+
DescribeDBInstanceAutomatedBackupsMessage.add_member(:db_instance_automated_backups_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceAutomatedBackupsArn"))
|
1732
1760
|
DescribeDBInstanceAutomatedBackupsMessage.struct_class = Types::DescribeDBInstanceAutomatedBackupsMessage
|
1733
1761
|
|
1734
1762
|
DescribeDBInstancesMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceIdentifier"))
|
@@ -2626,6 +2654,7 @@ module Aws::RDS
|
|
2626
2654
|
PendingModifiedValues.add_member(:db_subnet_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroupName"))
|
2627
2655
|
PendingModifiedValues.add_member(:pending_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: PendingCloudwatchLogsExports, location_name: "PendingCloudwatchLogsExports"))
|
2628
2656
|
PendingModifiedValues.add_member(:processor_features, Shapes::ShapeRef.new(shape: ProcessorFeatureList, location_name: "ProcessorFeatures"))
|
2657
|
+
PendingModifiedValues.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IAMDatabaseAuthenticationEnabled"))
|
2629
2658
|
PendingModifiedValues.struct_class = Types::PendingModifiedValues
|
2630
2659
|
|
2631
2660
|
PointInTimeRestoreNotEnabledFault.struct_class = Types::PointInTimeRestoreNotEnabledFault
|
@@ -2993,6 +3022,7 @@ module Aws::RDS
|
|
2993
3022
|
RestoreDBInstanceToPointInTimeMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
2994
3023
|
RestoreDBInstanceToPointInTimeMessage.add_member(:source_dbi_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "SourceDbiResourceId"))
|
2995
3024
|
RestoreDBInstanceToPointInTimeMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
3025
|
+
RestoreDBInstanceToPointInTimeMessage.add_member(:source_db_instance_automated_backups_arn, Shapes::ShapeRef.new(shape: String, location_name: "SourceDBInstanceAutomatedBackupsArn"))
|
2996
3026
|
RestoreDBInstanceToPointInTimeMessage.struct_class = Types::RestoreDBInstanceToPointInTimeMessage
|
2997
3027
|
|
2998
3028
|
RestoreDBInstanceToPointInTimeResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -3043,6 +3073,7 @@ module Aws::RDS
|
|
3043
3073
|
SourceRegion.add_member(:region_name, Shapes::ShapeRef.new(shape: String, location_name: "RegionName"))
|
3044
3074
|
SourceRegion.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "Endpoint"))
|
3045
3075
|
SourceRegion.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
3076
|
+
SourceRegion.add_member(:supports_db_instance_automated_backups_replication, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsDBInstanceAutomatedBackupsReplication"))
|
3046
3077
|
SourceRegion.struct_class = Types::SourceRegion
|
3047
3078
|
|
3048
3079
|
SourceRegionList.member = Shapes::ShapeRef.new(shape: SourceRegion, location_name: "SourceRegion")
|
@@ -3070,6 +3101,16 @@ module Aws::RDS
|
|
3070
3101
|
StartDBClusterResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
3071
3102
|
StartDBClusterResult.struct_class = Types::StartDBClusterResult
|
3072
3103
|
|
3104
|
+
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:source_db_instance_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SourceDBInstanceArn"))
|
3105
|
+
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
3106
|
+
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
3107
|
+
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:pre_signed_url, Shapes::ShapeRef.new(shape: String, location_name: "PreSignedUrl"))
|
3108
|
+
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
3109
|
+
StartDBInstanceAutomatedBackupsReplicationMessage.struct_class = Types::StartDBInstanceAutomatedBackupsReplicationMessage
|
3110
|
+
|
3111
|
+
StartDBInstanceAutomatedBackupsReplicationResult.add_member(:db_instance_automated_backup, Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackup, location_name: "DBInstanceAutomatedBackup"))
|
3112
|
+
StartDBInstanceAutomatedBackupsReplicationResult.struct_class = Types::StartDBInstanceAutomatedBackupsReplicationResult
|
3113
|
+
|
3073
3114
|
StartDBInstanceMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
3074
3115
|
StartDBInstanceMessage.struct_class = Types::StartDBInstanceMessage
|
3075
3116
|
|
@@ -3100,6 +3141,12 @@ module Aws::RDS
|
|
3100
3141
|
StopDBClusterResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
3101
3142
|
StopDBClusterResult.struct_class = Types::StopDBClusterResult
|
3102
3143
|
|
3144
|
+
StopDBInstanceAutomatedBackupsReplicationMessage.add_member(:source_db_instance_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SourceDBInstanceArn"))
|
3145
|
+
StopDBInstanceAutomatedBackupsReplicationMessage.struct_class = Types::StopDBInstanceAutomatedBackupsReplicationMessage
|
3146
|
+
|
3147
|
+
StopDBInstanceAutomatedBackupsReplicationResult.add_member(:db_instance_automated_backup, Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackup, location_name: "DBInstanceAutomatedBackup"))
|
3148
|
+
StopDBInstanceAutomatedBackupsReplicationResult.struct_class = Types::StopDBInstanceAutomatedBackupsReplicationResult
|
3149
|
+
|
3103
3150
|
StopDBInstanceMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
3104
3151
|
StopDBInstanceMessage.add_member(:db_snapshot_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBSnapshotIdentifier"))
|
3105
3152
|
StopDBInstanceMessage.struct_class = Types::StopDBInstanceMessage
|
@@ -3367,6 +3414,7 @@ module Aws::RDS
|
|
3367
3414
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBSnapshotStateFault)
|
3368
3415
|
o.errors << Shapes::ShapeRef.new(shape: SnapshotQuotaExceededFault)
|
3369
3416
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
3417
|
+
o.errors << Shapes::ShapeRef.new(shape: CustomAvailabilityZoneNotFoundFault)
|
3370
3418
|
end)
|
3371
3419
|
|
3372
3420
|
api.add_operation(:copy_option_group, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4927,6 +4975,19 @@ module Aws::RDS
|
|
4927
4975
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
4928
4976
|
end)
|
4929
4977
|
|
4978
|
+
api.add_operation(:start_db_instance_automated_backups_replication, Seahorse::Model::Operation.new.tap do |o|
|
4979
|
+
o.name = "StartDBInstanceAutomatedBackupsReplication"
|
4980
|
+
o.http_method = "POST"
|
4981
|
+
o.http_request_uri = "/"
|
4982
|
+
o.input = Shapes::ShapeRef.new(shape: StartDBInstanceAutomatedBackupsReplicationMessage)
|
4983
|
+
o.output = Shapes::ShapeRef.new(shape: StartDBInstanceAutomatedBackupsReplicationResult)
|
4984
|
+
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
|
4985
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
4986
|
+
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
4987
|
+
o.errors << Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackupQuotaExceededFault)
|
4988
|
+
o.errors << Shapes::ShapeRef.new(shape: StorageTypeNotSupportedFault)
|
4989
|
+
end)
|
4990
|
+
|
4930
4991
|
api.add_operation(:start_export_task, Seahorse::Model::Operation.new.tap do |o|
|
4931
4992
|
o.name = "StartExportTask"
|
4932
4993
|
o.http_method = "POST"
|
@@ -4980,6 +5041,16 @@ module Aws::RDS
|
|
4980
5041
|
o.errors << Shapes::ShapeRef.new(shape: SnapshotQuotaExceededFault)
|
4981
5042
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
4982
5043
|
end)
|
5044
|
+
|
5045
|
+
api.add_operation(:stop_db_instance_automated_backups_replication, Seahorse::Model::Operation.new.tap do |o|
|
5046
|
+
o.name = "StopDBInstanceAutomatedBackupsReplication"
|
5047
|
+
o.http_method = "POST"
|
5048
|
+
o.http_request_uri = "/"
|
5049
|
+
o.input = Shapes::ShapeRef.new(shape: StopDBInstanceAutomatedBackupsReplicationMessage)
|
5050
|
+
o.output = Shapes::ShapeRef.new(shape: StopDBInstanceAutomatedBackupsReplicationResult)
|
5051
|
+
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
|
5052
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
5053
|
+
end)
|
4983
5054
|
end
|
4984
5055
|
|
4985
5056
|
end
|
@@ -236,6 +236,9 @@ module Aws::RDS
|
|
236
236
|
|
237
237
|
# If `StorageEncrypted` is enabled, the AWS KMS key identifier for the
|
238
238
|
# encrypted DB cluster.
|
239
|
+
#
|
240
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
241
|
+
# name for the AWS KMS customer master key (CMK).
|
239
242
|
# @return [String]
|
240
243
|
def kms_key_id
|
241
244
|
data[:kms_key_id]
|
@@ -243,7 +246,7 @@ module Aws::RDS
|
|
243
246
|
|
244
247
|
# The AWS Region-unique, immutable identifier for the DB cluster. This
|
245
248
|
# identifier is found in AWS CloudTrail log entries whenever the AWS KMS
|
246
|
-
#
|
249
|
+
# CMK for the DB cluster is accessed.
|
247
250
|
# @return [String]
|
248
251
|
def db_cluster_resource_id
|
249
252
|
data[:db_cluster_resource_id]
|
@@ -336,14 +339,11 @@ module Aws::RDS
|
|
336
339
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
337
340
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
338
341
|
#
|
339
|
-
#
|
340
|
-
#
|
341
|
-
# the clusters in a global database use `provisioned` engine mode. To
|
342
|
-
# check if a DB cluster is part of a global database, use
|
343
|
-
# `DescribeGlobalClusters` instead of checking the `EngineMode` return
|
344
|
-
# value from `DescribeDBClusters`.
|
342
|
+
# For more information, see [ CreateDBCluster][1].
|
343
|
+
#
|
345
344
|
#
|
346
|
-
#
|
345
|
+
#
|
346
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
|
347
347
|
# @return [String]
|
348
348
|
def engine_mode
|
349
349
|
data[:engine_mode]
|
@@ -406,6 +406,9 @@ module Aws::RDS
|
|
406
406
|
|
407
407
|
# The AWS KMS key identifier used for encrypting messages in the
|
408
408
|
# database activity stream.
|
409
|
+
#
|
410
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
411
|
+
# name for the AWS KMS customer master key (CMK).
|
409
412
|
# @return [String]
|
410
413
|
def activity_stream_kms_key_id
|
411
414
|
data[:activity_stream_kms_key_id]
|
@@ -439,6 +442,17 @@ module Aws::RDS
|
|
439
442
|
data[:domain_memberships]
|
440
443
|
end
|
441
444
|
|
445
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
446
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
447
|
+
#
|
448
|
+
#
|
449
|
+
#
|
450
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
451
|
+
# @return [Array<Types::Tag>]
|
452
|
+
def tag_list
|
453
|
+
data[:tag_list]
|
454
|
+
end
|
455
|
+
|
442
456
|
# Specifies whether a secondary cluster in an Aurora global database has
|
443
457
|
# write forwarding enabled, not enabled, or is in the process of
|
444
458
|
# enabling it.
|
@@ -457,6 +471,14 @@ module Aws::RDS
|
|
457
471
|
data[:global_write_forwarding_requested]
|
458
472
|
end
|
459
473
|
|
474
|
+
# Specifies that changes to the DB cluster are pending. This element is
|
475
|
+
# only included when changes are pending. Specific changes are
|
476
|
+
# identified by subelements.
|
477
|
+
# @return [Types::ClusterPendingModifiedValues]
|
478
|
+
def pending_modified_values
|
479
|
+
data[:pending_modified_values]
|
480
|
+
end
|
481
|
+
|
460
482
|
# @!endgroup
|
461
483
|
|
462
484
|
# @return [Client]
|
@@ -800,30 +822,27 @@ module Aws::RDS
|
|
800
822
|
# @option options [String] :kms_key_id
|
801
823
|
# The AWS KMS key identifier for an encrypted DB cluster.
|
802
824
|
#
|
803
|
-
# The KMS key identifier is the
|
804
|
-
#
|
805
|
-
# account
|
806
|
-
# cluster, then you can use the KMS key alias instead of the ARN for the
|
807
|
-
# KMS encryption key.
|
825
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
826
|
+
# name for the AWS KMS customer master key (CMK). To use a CMK in a
|
827
|
+
# different AWS account, specify the key ARN or alias ARN.
|
808
828
|
#
|
809
|
-
#
|
829
|
+
# When a CMK isn't specified in `KmsKeyId`\:
|
810
830
|
#
|
811
831
|
# * If `ReplicationSourceIdentifier` identifies an encrypted source,
|
812
|
-
# then Amazon RDS will use the
|
813
|
-
#
|
832
|
+
# then Amazon RDS will use the CMK used to encrypt the source.
|
833
|
+
# Otherwise, Amazon RDS will use your default CMK.
|
814
834
|
#
|
815
835
|
# * If the `StorageEncrypted` parameter is enabled and
|
816
836
|
# `ReplicationSourceIdentifier` isn't specified, then Amazon RDS will
|
817
|
-
# use your default
|
837
|
+
# use your default CMK.
|
818
838
|
#
|
819
|
-
#
|
820
|
-
#
|
821
|
-
# Region.
|
839
|
+
# There is a default CMK for your AWS account. Your AWS account has a
|
840
|
+
# different default CMK for each AWS Region.
|
822
841
|
#
|
823
842
|
# If you create a read replica of an encrypted DB cluster in another AWS
|
824
|
-
# Region, you must set `KmsKeyId` to a KMS key
|
825
|
-
# destination AWS Region. This
|
826
|
-
# in that AWS Region.
|
843
|
+
# Region, you must set `KmsKeyId` to a AWS KMS key identifier that is
|
844
|
+
# valid in the destination AWS Region. This CMK is used to encrypt the
|
845
|
+
# read replica in that AWS Region.
|
827
846
|
# @option options [String] :pre_signed_url
|
828
847
|
# A URL that contains a Signature Version 4 signed request for the
|
829
848
|
# `CreateDBCluster` action to be called in the source AWS Region where
|
@@ -840,9 +859,9 @@ module Aws::RDS
|
|
840
859
|
#
|
841
860
|
# * `KmsKeyId` - The AWS KMS key identifier for the key to use to
|
842
861
|
# encrypt the copy of the DB cluster in the destination AWS Region.
|
843
|
-
# This should refer to the same KMS
|
844
|
-
# action that is called in the destination AWS
|
845
|
-
# contained in the pre-signed URL.
|
862
|
+
# This should refer to the same AWS KMS CMK for both the
|
863
|
+
# `CreateDBCluster` action that is called in the destination AWS
|
864
|
+
# Region, and the action contained in the pre-signed URL.
|
846
865
|
#
|
847
866
|
# * `DestinationRegion` - The name of the AWS Region that Aurora read
|
848
867
|
# replica will be created in.
|
@@ -916,14 +935,23 @@ module Aws::RDS
|
|
916
935
|
#
|
917
936
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
918
937
|
# @option options [String] :engine_mode
|
919
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
938
|
+
# The DB engine mode of the DB cluster, either `provisioned`
|
920
939
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
921
940
|
#
|
922
|
-
#
|
923
|
-
#
|
924
|
-
#
|
941
|
+
# The `parallelquery` engine mode isn't required for Aurora MySQL
|
942
|
+
# version 1.23 and higher 1.x versions, and version 2.09 and higher 2.x
|
943
|
+
# versions.
|
925
944
|
#
|
926
|
-
#
|
945
|
+
# The `global` engine mode isn't required for Aurora MySQL version 1.22
|
946
|
+
# and higher 1.x versions, and `global` engine mode isn't required for
|
947
|
+
# any 2.x versions.
|
948
|
+
#
|
949
|
+
# The `multimaster` engine mode only applies for DB clusters created
|
950
|
+
# with Aurora MySQL version 5.6.10a.
|
951
|
+
#
|
952
|
+
# For Aurora PostgreSQL, the `global` engine mode isn't required, and
|
953
|
+
# both the `parallelquery` and the `multimaster` engine modes currently
|
954
|
+
# aren't supported.
|
927
955
|
#
|
928
956
|
# Limitations and requirements apply to some DB engine modes. For more
|
929
957
|
# information, see the following sections in the *Amazon Aurora User
|
@@ -933,7 +961,7 @@ module Aws::RDS
|
|
933
961
|
#
|
934
962
|
# * [ Limitations of Parallel Query][2]
|
935
963
|
#
|
936
|
-
# * [
|
964
|
+
# * [ Limitations of Aurora Global Databases][3]
|
937
965
|
#
|
938
966
|
# * [ Limitations of Multi-Master Clusters][4]
|
939
967
|
#
|
@@ -993,7 +1021,6 @@ module Aws::RDS
|
|
993
1021
|
# This parameter only applies to DB clusters that are secondary clusters
|
994
1022
|
# in an Aurora global database. By default, Aurora disallows write
|
995
1023
|
# operations for secondary clusters.
|
996
|
-
# @option options [String] :destination_region
|
997
1024
|
# @option options [String] :source_region
|
998
1025
|
# The source region of the snapshot. This is only needed when the
|
999
1026
|
# shapshot is encrypted and in a different region.
|
@@ -1508,23 +1535,21 @@ module Aws::RDS
|
|
1508
1535
|
# The AWS KMS key identifier to use when restoring an encrypted DB
|
1509
1536
|
# cluster from an encrypted DB cluster.
|
1510
1537
|
#
|
1511
|
-
# The KMS key identifier is the
|
1512
|
-
#
|
1513
|
-
# account
|
1514
|
-
# cluster, then you can use the KMS key alias instead of the ARN for the
|
1515
|
-
# KMS encryption key.
|
1538
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
1539
|
+
# name for the AWS KMS customer master key (CMK). To use a CMK in a
|
1540
|
+
# different AWS account, specify the key ARN or alias ARN.
|
1516
1541
|
#
|
1517
1542
|
# You can restore to a new DB cluster and encrypt the new DB cluster
|
1518
|
-
# with a KMS
|
1519
|
-
# source DB cluster. The new DB cluster is encrypted with
|
1520
|
-
# identified by the `KmsKeyId` parameter.
|
1543
|
+
# with a AWS KMS CMK that is different than the AWS KMS key used to
|
1544
|
+
# encrypt the source DB cluster. The new DB cluster is encrypted with
|
1545
|
+
# the AWS KMS CMK identified by the `KmsKeyId` parameter.
|
1521
1546
|
#
|
1522
1547
|
# If you don't specify a value for the `KmsKeyId` parameter, then the
|
1523
1548
|
# following occurs:
|
1524
1549
|
#
|
1525
1550
|
# * If the DB cluster is encrypted, then the restored DB cluster is
|
1526
|
-
# encrypted using the KMS
|
1527
|
-
# cluster.
|
1551
|
+
# encrypted using the AWS KMS CMK that was used to encrypt the source
|
1552
|
+
# DB cluster.
|
1528
1553
|
#
|
1529
1554
|
# * If the DB cluster isn't encrypted, then the restored DB cluster
|
1530
1555
|
# isn't encrypted.
|