aws-sdk-rds 1.106.0 → 1.111.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/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +828 -211
- data/lib/aws-sdk-rds/client_api.rb +78 -5
- data/lib/aws-sdk-rds/db_cluster.rb +39 -31
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +23 -22
- data/lib/aws-sdk-rds/db_instance.rb +229 -72
- data/lib/aws-sdk-rds/db_snapshot.rb +39 -17
- data/lib/aws-sdk-rds/option_group.rb +24 -0
- data/lib/aws-sdk-rds/plugins/cross_region_copying.rb +11 -12
- data/lib/aws-sdk-rds/resource.rb +170 -51
- data/lib/aws-sdk-rds/types.rb +837 -257
- 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
|
|
@@ -730,7 +743,6 @@ module Aws::RDS
|
|
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
745
|
CopyDBSnapshotMessage.add_member(:target_custom_availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "TargetCustomAvailabilityZone"))
|
733
|
-
CopyDBSnapshotMessage.add_member(:destination_region, Shapes::ShapeRef.new(shape: String, location_name: "DestinationRegion", metadata: {"documented"=>false}))
|
734
746
|
CopyDBSnapshotMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
735
747
|
CopyDBSnapshotMessage.struct_class = Types::CopyDBSnapshotMessage
|
736
748
|
|
@@ -796,7 +808,6 @@ module Aws::RDS
|
|
796
808
|
CreateDBClusterMessage.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "Domain"))
|
797
809
|
CreateDBClusterMessage.add_member(:domain_iam_role_name, Shapes::ShapeRef.new(shape: String, location_name: "DomainIAMRoleName"))
|
798
810
|
CreateDBClusterMessage.add_member(:enable_global_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableGlobalWriteForwarding"))
|
799
|
-
CreateDBClusterMessage.add_member(:destination_region, Shapes::ShapeRef.new(shape: String, location_name: "DestinationRegion", metadata: {"documented"=>false}))
|
800
811
|
CreateDBClusterMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
801
812
|
CreateDBClusterMessage.struct_class = Types::CreateDBClusterMessage
|
802
813
|
|
@@ -867,6 +878,7 @@ module Aws::RDS
|
|
867
878
|
CreateDBInstanceMessage.add_member(:processor_features, Shapes::ShapeRef.new(shape: ProcessorFeatureList, location_name: "ProcessorFeatures"))
|
868
879
|
CreateDBInstanceMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
869
880
|
CreateDBInstanceMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
881
|
+
CreateDBInstanceMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
870
882
|
CreateDBInstanceMessage.struct_class = Types::CreateDBInstanceMessage
|
871
883
|
|
872
884
|
CreateDBInstanceReadReplicaMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
@@ -901,7 +913,6 @@ module Aws::RDS
|
|
901
913
|
CreateDBInstanceReadReplicaMessage.add_member(:domain_iam_role_name, Shapes::ShapeRef.new(shape: String, location_name: "DomainIAMRoleName"))
|
902
914
|
CreateDBInstanceReadReplicaMessage.add_member(:replica_mode, Shapes::ShapeRef.new(shape: ReplicaMode, location_name: "ReplicaMode"))
|
903
915
|
CreateDBInstanceReadReplicaMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
904
|
-
CreateDBInstanceReadReplicaMessage.add_member(:destination_region, Shapes::ShapeRef.new(shape: String, location_name: "DestinationRegion", metadata: {"documented"=>false}))
|
905
916
|
CreateDBInstanceReadReplicaMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
906
917
|
CreateDBInstanceReadReplicaMessage.struct_class = Types::CreateDBInstanceReadReplicaMessage
|
907
918
|
|
@@ -1067,6 +1078,7 @@ module Aws::RDS
|
|
1067
1078
|
DBCluster.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1068
1079
|
DBCluster.add_member(:global_write_forwarding_status, Shapes::ShapeRef.new(shape: WriteForwardingStatus, location_name: "GlobalWriteForwardingStatus"))
|
1069
1080
|
DBCluster.add_member(:global_write_forwarding_requested, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "GlobalWriteForwardingRequested"))
|
1081
|
+
DBCluster.add_member(:pending_modified_values, Shapes::ShapeRef.new(shape: ClusterPendingModifiedValues, location_name: "PendingModifiedValues"))
|
1070
1082
|
DBCluster.struct_class = Types::DBCluster
|
1071
1083
|
|
1072
1084
|
DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
|
@@ -1306,6 +1318,8 @@ module Aws::RDS
|
|
1306
1318
|
DBInstance.add_member(:listener_endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "ListenerEndpoint"))
|
1307
1319
|
DBInstance.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
1308
1320
|
DBInstance.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1321
|
+
DBInstance.add_member(:db_instance_automated_backups_replications, Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackupsReplicationList, location_name: "DBInstanceAutomatedBackupsReplications"))
|
1322
|
+
DBInstance.add_member(:customer_owned_ip_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CustomerOwnedIpEnabled"))
|
1309
1323
|
DBInstance.struct_class = Types::DBInstance
|
1310
1324
|
|
1311
1325
|
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
@@ -1333,6 +1347,9 @@ module Aws::RDS
|
|
1333
1347
|
DBInstanceAutomatedBackup.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
1334
1348
|
DBInstanceAutomatedBackup.add_member(:timezone, Shapes::ShapeRef.new(shape: String, location_name: "Timezone"))
|
1335
1349
|
DBInstanceAutomatedBackup.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IAMDatabaseAuthenticationEnabled"))
|
1350
|
+
DBInstanceAutomatedBackup.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
1351
|
+
DBInstanceAutomatedBackup.add_member(:db_instance_automated_backups_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceAutomatedBackupsArn"))
|
1352
|
+
DBInstanceAutomatedBackup.add_member(:db_instance_automated_backups_replications, Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackupsReplicationList, location_name: "DBInstanceAutomatedBackupsReplications"))
|
1336
1353
|
DBInstanceAutomatedBackup.struct_class = Types::DBInstanceAutomatedBackup
|
1337
1354
|
|
1338
1355
|
DBInstanceAutomatedBackupList.member = Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackup, location_name: "DBInstanceAutomatedBackup")
|
@@ -1345,6 +1362,11 @@ module Aws::RDS
|
|
1345
1362
|
|
1346
1363
|
DBInstanceAutomatedBackupQuotaExceededFault.struct_class = Types::DBInstanceAutomatedBackupQuotaExceededFault
|
1347
1364
|
|
1365
|
+
DBInstanceAutomatedBackupsReplication.add_member(:db_instance_automated_backups_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceAutomatedBackupsArn"))
|
1366
|
+
DBInstanceAutomatedBackupsReplication.struct_class = Types::DBInstanceAutomatedBackupsReplication
|
1367
|
+
|
1368
|
+
DBInstanceAutomatedBackupsReplicationList.member = Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackupsReplication, location_name: "DBInstanceAutomatedBackupsReplication")
|
1369
|
+
|
1348
1370
|
DBInstanceList.member = Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance")
|
1349
1371
|
|
1350
1372
|
DBInstanceMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
@@ -1592,7 +1614,8 @@ module Aws::RDS
|
|
1592
1614
|
DeleteDBClusterSnapshotResult.add_member(:db_cluster_snapshot, Shapes::ShapeRef.new(shape: DBClusterSnapshot, location_name: "DBClusterSnapshot"))
|
1593
1615
|
DeleteDBClusterSnapshotResult.struct_class = Types::DeleteDBClusterSnapshotResult
|
1594
1616
|
|
1595
|
-
DeleteDBInstanceAutomatedBackupMessage.add_member(:dbi_resource_id, Shapes::ShapeRef.new(shape: String,
|
1617
|
+
DeleteDBInstanceAutomatedBackupMessage.add_member(:dbi_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "DbiResourceId"))
|
1618
|
+
DeleteDBInstanceAutomatedBackupMessage.add_member(:db_instance_automated_backups_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceAutomatedBackupsArn"))
|
1596
1619
|
DeleteDBInstanceAutomatedBackupMessage.struct_class = Types::DeleteDBInstanceAutomatedBackupMessage
|
1597
1620
|
|
1598
1621
|
DeleteDBInstanceAutomatedBackupResult.add_member(:db_instance_automated_backup, Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackup, location_name: "DBInstanceAutomatedBackup"))
|
@@ -1735,6 +1758,7 @@ module Aws::RDS
|
|
1735
1758
|
DescribeDBInstanceAutomatedBackupsMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
1736
1759
|
DescribeDBInstanceAutomatedBackupsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRecords"))
|
1737
1760
|
DescribeDBInstanceAutomatedBackupsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
1761
|
+
DescribeDBInstanceAutomatedBackupsMessage.add_member(:db_instance_automated_backups_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceAutomatedBackupsArn"))
|
1738
1762
|
DescribeDBInstanceAutomatedBackupsMessage.struct_class = Types::DescribeDBInstanceAutomatedBackupsMessage
|
1739
1763
|
|
1740
1764
|
DescribeDBInstancesMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceIdentifier"))
|
@@ -2347,6 +2371,7 @@ module Aws::RDS
|
|
2347
2371
|
ModifyDBInstanceMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
2348
2372
|
ModifyDBInstanceMessage.add_member(:certificate_rotation_restart, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CertificateRotationRestart"))
|
2349
2373
|
ModifyDBInstanceMessage.add_member(:replica_mode, Shapes::ShapeRef.new(shape: ReplicaMode, location_name: "ReplicaMode"))
|
2374
|
+
ModifyDBInstanceMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
2350
2375
|
ModifyDBInstanceMessage.struct_class = Types::ModifyDBInstanceMessage
|
2351
2376
|
|
2352
2377
|
ModifyDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -2416,6 +2441,8 @@ module Aws::RDS
|
|
2416
2441
|
ModifyGlobalClusterMessage.add_member(:global_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "GlobalClusterIdentifier"))
|
2417
2442
|
ModifyGlobalClusterMessage.add_member(:new_global_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "NewGlobalClusterIdentifier"))
|
2418
2443
|
ModifyGlobalClusterMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
2444
|
+
ModifyGlobalClusterMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
2445
|
+
ModifyGlobalClusterMessage.add_member(:allow_major_version_upgrade, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AllowMajorVersionUpgrade"))
|
2419
2446
|
ModifyGlobalClusterMessage.struct_class = Types::ModifyGlobalClusterMessage
|
2420
2447
|
|
2421
2448
|
ModifyGlobalClusterResult.add_member(:global_cluster, Shapes::ShapeRef.new(shape: GlobalCluster, location_name: "GlobalCluster"))
|
@@ -2632,6 +2659,7 @@ module Aws::RDS
|
|
2632
2659
|
PendingModifiedValues.add_member(:db_subnet_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroupName"))
|
2633
2660
|
PendingModifiedValues.add_member(:pending_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: PendingCloudwatchLogsExports, location_name: "PendingCloudwatchLogsExports"))
|
2634
2661
|
PendingModifiedValues.add_member(:processor_features, Shapes::ShapeRef.new(shape: ProcessorFeatureList, location_name: "ProcessorFeatures"))
|
2662
|
+
PendingModifiedValues.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IAMDatabaseAuthenticationEnabled"))
|
2635
2663
|
PendingModifiedValues.struct_class = Types::PendingModifiedValues
|
2636
2664
|
|
2637
2665
|
PointInTimeRestoreNotEnabledFault.struct_class = Types::PointInTimeRestoreNotEnabledFault
|
@@ -2913,6 +2941,7 @@ module Aws::RDS
|
|
2913
2941
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:use_default_processor_features, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UseDefaultProcessorFeatures"))
|
2914
2942
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:db_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupName"))
|
2915
2943
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
2944
|
+
RestoreDBInstanceFromDBSnapshotMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
2916
2945
|
RestoreDBInstanceFromDBSnapshotMessage.struct_class = Types::RestoreDBInstanceFromDBSnapshotMessage
|
2917
2946
|
|
2918
2947
|
RestoreDBInstanceFromDBSnapshotResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -2999,6 +3028,8 @@ module Aws::RDS
|
|
2999
3028
|
RestoreDBInstanceToPointInTimeMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
3000
3029
|
RestoreDBInstanceToPointInTimeMessage.add_member(:source_dbi_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "SourceDbiResourceId"))
|
3001
3030
|
RestoreDBInstanceToPointInTimeMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
3031
|
+
RestoreDBInstanceToPointInTimeMessage.add_member(:source_db_instance_automated_backups_arn, Shapes::ShapeRef.new(shape: String, location_name: "SourceDBInstanceAutomatedBackupsArn"))
|
3032
|
+
RestoreDBInstanceToPointInTimeMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
3002
3033
|
RestoreDBInstanceToPointInTimeMessage.struct_class = Types::RestoreDBInstanceToPointInTimeMessage
|
3003
3034
|
|
3004
3035
|
RestoreDBInstanceToPointInTimeResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -3049,6 +3080,7 @@ module Aws::RDS
|
|
3049
3080
|
SourceRegion.add_member(:region_name, Shapes::ShapeRef.new(shape: String, location_name: "RegionName"))
|
3050
3081
|
SourceRegion.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "Endpoint"))
|
3051
3082
|
SourceRegion.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
3083
|
+
SourceRegion.add_member(:supports_db_instance_automated_backups_replication, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsDBInstanceAutomatedBackupsReplication"))
|
3052
3084
|
SourceRegion.struct_class = Types::SourceRegion
|
3053
3085
|
|
3054
3086
|
SourceRegionList.member = Shapes::ShapeRef.new(shape: SourceRegion, location_name: "SourceRegion")
|
@@ -3076,6 +3108,16 @@ module Aws::RDS
|
|
3076
3108
|
StartDBClusterResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
3077
3109
|
StartDBClusterResult.struct_class = Types::StartDBClusterResult
|
3078
3110
|
|
3111
|
+
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:source_db_instance_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SourceDBInstanceArn"))
|
3112
|
+
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
3113
|
+
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
3114
|
+
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:pre_signed_url, Shapes::ShapeRef.new(shape: String, location_name: "PreSignedUrl"))
|
3115
|
+
StartDBInstanceAutomatedBackupsReplicationMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
3116
|
+
StartDBInstanceAutomatedBackupsReplicationMessage.struct_class = Types::StartDBInstanceAutomatedBackupsReplicationMessage
|
3117
|
+
|
3118
|
+
StartDBInstanceAutomatedBackupsReplicationResult.add_member(:db_instance_automated_backup, Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackup, location_name: "DBInstanceAutomatedBackup"))
|
3119
|
+
StartDBInstanceAutomatedBackupsReplicationResult.struct_class = Types::StartDBInstanceAutomatedBackupsReplicationResult
|
3120
|
+
|
3079
3121
|
StartDBInstanceMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
3080
3122
|
StartDBInstanceMessage.struct_class = Types::StartDBInstanceMessage
|
3081
3123
|
|
@@ -3106,6 +3148,12 @@ module Aws::RDS
|
|
3106
3148
|
StopDBClusterResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
3107
3149
|
StopDBClusterResult.struct_class = Types::StopDBClusterResult
|
3108
3150
|
|
3151
|
+
StopDBInstanceAutomatedBackupsReplicationMessage.add_member(:source_db_instance_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SourceDBInstanceArn"))
|
3152
|
+
StopDBInstanceAutomatedBackupsReplicationMessage.struct_class = Types::StopDBInstanceAutomatedBackupsReplicationMessage
|
3153
|
+
|
3154
|
+
StopDBInstanceAutomatedBackupsReplicationResult.add_member(:db_instance_automated_backup, Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackup, location_name: "DBInstanceAutomatedBackup"))
|
3155
|
+
StopDBInstanceAutomatedBackupsReplicationResult.struct_class = Types::StopDBInstanceAutomatedBackupsReplicationResult
|
3156
|
+
|
3109
3157
|
StopDBInstanceMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
3110
3158
|
StopDBInstanceMessage.add_member(:db_snapshot_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBSnapshotIdentifier"))
|
3111
3159
|
StopDBInstanceMessage.struct_class = Types::StopDBInstanceMessage
|
@@ -4575,6 +4623,8 @@ module Aws::RDS
|
|
4575
4623
|
o.output = Shapes::ShapeRef.new(shape: ModifyGlobalClusterResult)
|
4576
4624
|
o.errors << Shapes::ShapeRef.new(shape: GlobalClusterNotFoundFault)
|
4577
4625
|
o.errors << Shapes::ShapeRef.new(shape: InvalidGlobalClusterStateFault)
|
4626
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
4627
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
4578
4628
|
end)
|
4579
4629
|
|
4580
4630
|
api.add_operation(:modify_option_group, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4934,6 +4984,19 @@ module Aws::RDS
|
|
4934
4984
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
4935
4985
|
end)
|
4936
4986
|
|
4987
|
+
api.add_operation(:start_db_instance_automated_backups_replication, Seahorse::Model::Operation.new.tap do |o|
|
4988
|
+
o.name = "StartDBInstanceAutomatedBackupsReplication"
|
4989
|
+
o.http_method = "POST"
|
4990
|
+
o.http_request_uri = "/"
|
4991
|
+
o.input = Shapes::ShapeRef.new(shape: StartDBInstanceAutomatedBackupsReplicationMessage)
|
4992
|
+
o.output = Shapes::ShapeRef.new(shape: StartDBInstanceAutomatedBackupsReplicationResult)
|
4993
|
+
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
|
4994
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
4995
|
+
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
4996
|
+
o.errors << Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackupQuotaExceededFault)
|
4997
|
+
o.errors << Shapes::ShapeRef.new(shape: StorageTypeNotSupportedFault)
|
4998
|
+
end)
|
4999
|
+
|
4937
5000
|
api.add_operation(:start_export_task, Seahorse::Model::Operation.new.tap do |o|
|
4938
5001
|
o.name = "StartExportTask"
|
4939
5002
|
o.http_method = "POST"
|
@@ -4987,6 +5050,16 @@ module Aws::RDS
|
|
4987
5050
|
o.errors << Shapes::ShapeRef.new(shape: SnapshotQuotaExceededFault)
|
4988
5051
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
4989
5052
|
end)
|
5053
|
+
|
5054
|
+
api.add_operation(:stop_db_instance_automated_backups_replication, Seahorse::Model::Operation.new.tap do |o|
|
5055
|
+
o.name = "StopDBInstanceAutomatedBackupsReplication"
|
5056
|
+
o.http_method = "POST"
|
5057
|
+
o.http_request_uri = "/"
|
5058
|
+
o.input = Shapes::ShapeRef.new(shape: StopDBInstanceAutomatedBackupsReplicationMessage)
|
5059
|
+
o.output = Shapes::ShapeRef.new(shape: StopDBInstanceAutomatedBackupsReplicationResult)
|
5060
|
+
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
|
5061
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
5062
|
+
end)
|
4990
5063
|
end
|
4991
5064
|
|
4992
5065
|
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]
|
@@ -403,6 +406,9 @@ module Aws::RDS
|
|
403
406
|
|
404
407
|
# The AWS KMS key identifier used for encrypting messages in the
|
405
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).
|
406
412
|
# @return [String]
|
407
413
|
def activity_stream_kms_key_id
|
408
414
|
data[:activity_stream_kms_key_id]
|
@@ -465,6 +471,14 @@ module Aws::RDS
|
|
465
471
|
data[:global_write_forwarding_requested]
|
466
472
|
end
|
467
473
|
|
474
|
+
# A value that specifies that changes to the DB cluster are pending.
|
475
|
+
# This element is only included when changes are pending. Specific
|
476
|
+
# changes are identified by subelements.
|
477
|
+
# @return [Types::ClusterPendingModifiedValues]
|
478
|
+
def pending_modified_values
|
479
|
+
data[:pending_modified_values]
|
480
|
+
end
|
481
|
+
|
468
482
|
# @!endgroup
|
469
483
|
|
470
484
|
# @return [Client]
|
@@ -808,30 +822,27 @@ module Aws::RDS
|
|
808
822
|
# @option options [String] :kms_key_id
|
809
823
|
# The AWS KMS key identifier for an encrypted DB cluster.
|
810
824
|
#
|
811
|
-
# The KMS key identifier is the
|
812
|
-
#
|
813
|
-
# account
|
814
|
-
# cluster, then you can use the KMS key alias instead of the ARN for the
|
815
|
-
# 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.
|
816
828
|
#
|
817
|
-
#
|
829
|
+
# When a CMK isn't specified in `KmsKeyId`\:
|
818
830
|
#
|
819
831
|
# * If `ReplicationSourceIdentifier` identifies an encrypted source,
|
820
|
-
# then Amazon RDS will use the
|
821
|
-
#
|
832
|
+
# then Amazon RDS will use the CMK used to encrypt the source.
|
833
|
+
# Otherwise, Amazon RDS will use your default CMK.
|
822
834
|
#
|
823
835
|
# * If the `StorageEncrypted` parameter is enabled and
|
824
836
|
# `ReplicationSourceIdentifier` isn't specified, then Amazon RDS will
|
825
|
-
# use your default
|
837
|
+
# use your default CMK.
|
826
838
|
#
|
827
|
-
#
|
828
|
-
#
|
829
|
-
# Region.
|
839
|
+
# There is a default CMK for your AWS account. Your AWS account has a
|
840
|
+
# different default CMK for each AWS Region.
|
830
841
|
#
|
831
842
|
# If you create a read replica of an encrypted DB cluster in another AWS
|
832
|
-
# Region, you must set `KmsKeyId` to a KMS key
|
833
|
-
# destination AWS Region. This
|
834
|
-
# 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.
|
835
846
|
# @option options [String] :pre_signed_url
|
836
847
|
# A URL that contains a Signature Version 4 signed request for the
|
837
848
|
# `CreateDBCluster` action to be called in the source AWS Region where
|
@@ -848,9 +859,9 @@ module Aws::RDS
|
|
848
859
|
#
|
849
860
|
# * `KmsKeyId` - The AWS KMS key identifier for the key to use to
|
850
861
|
# encrypt the copy of the DB cluster in the destination AWS Region.
|
851
|
-
# This should refer to the same KMS
|
852
|
-
# action that is called in the destination AWS
|
853
|
-
# 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.
|
854
865
|
#
|
855
866
|
# * `DestinationRegion` - The name of the AWS Region that Aurora read
|
856
867
|
# replica will be created in.
|
@@ -924,7 +935,7 @@ module Aws::RDS
|
|
924
935
|
#
|
925
936
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
926
937
|
# @option options [String] :engine_mode
|
927
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
938
|
+
# The DB engine mode of the DB cluster, either `provisioned`,
|
928
939
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
929
940
|
#
|
930
941
|
# The `parallelquery` engine mode isn't required for Aurora MySQL
|
@@ -1010,7 +1021,6 @@ module Aws::RDS
|
|
1010
1021
|
# This parameter only applies to DB clusters that are secondary clusters
|
1011
1022
|
# in an Aurora global database. By default, Aurora disallows write
|
1012
1023
|
# operations for secondary clusters.
|
1013
|
-
# @option options [String] :destination_region
|
1014
1024
|
# @option options [String] :source_region
|
1015
1025
|
# The source region of the snapshot. This is only needed when the
|
1016
1026
|
# shapshot is encrypted and in a different region.
|
@@ -1525,23 +1535,21 @@ module Aws::RDS
|
|
1525
1535
|
# The AWS KMS key identifier to use when restoring an encrypted DB
|
1526
1536
|
# cluster from an encrypted DB cluster.
|
1527
1537
|
#
|
1528
|
-
# The KMS key identifier is the
|
1529
|
-
#
|
1530
|
-
# account
|
1531
|
-
# cluster, then you can use the KMS key alias instead of the ARN for the
|
1532
|
-
# 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.
|
1533
1541
|
#
|
1534
1542
|
# You can restore to a new DB cluster and encrypt the new DB cluster
|
1535
|
-
# with a KMS
|
1536
|
-
# source DB cluster. The new DB cluster is encrypted with
|
1537
|
-
# 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.
|
1538
1546
|
#
|
1539
1547
|
# If you don't specify a value for the `KmsKeyId` parameter, then the
|
1540
1548
|
# following occurs:
|
1541
1549
|
#
|
1542
1550
|
# * If the DB cluster is encrypted, then the restored DB cluster is
|
1543
|
-
# encrypted using the KMS
|
1544
|
-
# cluster.
|
1551
|
+
# encrypted using the AWS KMS CMK that was used to encrypt the source
|
1552
|
+
# DB cluster.
|
1545
1553
|
#
|
1546
1554
|
# * If the DB cluster isn't encrypted, then the restored DB cluster
|
1547
1555
|
# isn't encrypted.
|
@@ -136,6 +136,9 @@ module Aws::RDS
|
|
136
136
|
|
137
137
|
# If `StorageEncrypted` is true, the AWS KMS key identifier for the
|
138
138
|
# encrypted DB cluster snapshot.
|
139
|
+
#
|
140
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
141
|
+
# name for the AWS KMS customer master key (CMK).
|
139
142
|
# @return [String]
|
140
143
|
def kms_key_id
|
141
144
|
data[:kms_key_id]
|
@@ -365,25 +368,25 @@ module Aws::RDS
|
|
365
368
|
#
|
366
369
|
# Example: `my-cluster-snapshot2`
|
367
370
|
# @option options [String] :kms_key_id
|
368
|
-
# The AWS KMS key
|
369
|
-
#
|
370
|
-
#
|
371
|
+
# The AWS KMS key identifier for an encrypted DB cluster snapshot. The
|
372
|
+
# AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
373
|
+
# name for the AWS KMS customer master key (CMK).
|
371
374
|
#
|
372
375
|
# If you copy an encrypted DB cluster snapshot from your AWS account,
|
373
376
|
# you can specify a value for `KmsKeyId` to encrypt the copy with a new
|
374
|
-
# KMS
|
375
|
-
#
|
377
|
+
# AWS KMS CMK. If you don't specify a value for `KmsKeyId`, then the
|
378
|
+
# copy of the DB cluster snapshot is encrypted with the same AWS KMS key
|
376
379
|
# as the source DB cluster snapshot.
|
377
380
|
#
|
378
381
|
# If you copy an encrypted DB cluster snapshot that is shared from
|
379
382
|
# another AWS account, then you must specify a value for `KmsKeyId`.
|
380
383
|
#
|
381
384
|
# To copy an encrypted DB cluster snapshot to another AWS Region, you
|
382
|
-
# must set `KmsKeyId` to the KMS key
|
383
|
-
# copy of the DB cluster snapshot in the destination AWS
|
384
|
-
#
|
385
|
-
# in, and you can't use
|
386
|
-
#
|
385
|
+
# must set `KmsKeyId` to the AWS KMS key identifier you want to use to
|
386
|
+
# encrypt the copy of the DB cluster snapshot in the destination AWS
|
387
|
+
# Region. AWS KMS CMKs are specific to the AWS Region that they are
|
388
|
+
# created in, and you can't use CMKs from one AWS Region in another AWS
|
389
|
+
# Region.
|
387
390
|
#
|
388
391
|
# If you copy an unencrypted DB cluster snapshot and specify a value for
|
389
392
|
# the `KmsKeyId` parameter, an error is returned.
|
@@ -401,9 +404,9 @@ module Aws::RDS
|
|
401
404
|
# copied. The pre-signed URL request must contain the following
|
402
405
|
# parameter values:
|
403
406
|
#
|
404
|
-
# * `KmsKeyId` - The AWS KMS key identifier for the
|
405
|
-
# encrypt the copy of the DB cluster snapshot in the
|
406
|
-
# Region. This is the same identifier for both the
|
407
|
+
# * `KmsKeyId` - The AWS KMS key identifier for the customer master key
|
408
|
+
# (CMK) to use to encrypt the copy of the DB cluster snapshot in the
|
409
|
+
# destination AWS Region. This is the same identifier for both the
|
407
410
|
# `CopyDBClusterSnapshot` action that is called in the destination AWS
|
408
411
|
# Region, and the action contained in the pre-signed URL.
|
409
412
|
#
|
@@ -446,7 +449,6 @@ module Aws::RDS
|
|
446
449
|
#
|
447
450
|
#
|
448
451
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
449
|
-
# @option options [String] :destination_region
|
450
452
|
# @option options [String] :source_region
|
451
453
|
# The source region of the snapshot. This is only needed when the
|
452
454
|
# shapshot is encrypted and in a different region.
|
@@ -596,18 +598,17 @@ module Aws::RDS
|
|
596
598
|
# The AWS KMS key identifier to use when restoring an encrypted DB
|
597
599
|
# cluster from a DB snapshot or DB cluster snapshot.
|
598
600
|
#
|
599
|
-
# The KMS key identifier is the
|
600
|
-
#
|
601
|
-
# account
|
602
|
-
# cluster, then you can use the KMS key alias instead of the ARN for the
|
603
|
-
# KMS encryption key.
|
601
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
602
|
+
# name for the AWS KMS customer master key (CMK). To use a CMK in a
|
603
|
+
# different AWS account, specify the key ARN or alias ARN.
|
604
604
|
#
|
605
|
-
#
|
605
|
+
# When you don't specify a value for the `KmsKeyId` parameter, then the
|
606
606
|
# following occurs:
|
607
607
|
#
|
608
608
|
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier` is
|
609
|
-
# encrypted, then the restored DB cluster is encrypted using the
|
610
|
-
#
|
609
|
+
# encrypted, then the restored DB cluster is encrypted using the AWS
|
610
|
+
# KMS CMK that was used to encrypt the DB snapshot or DB cluster
|
611
|
+
# snapshot.
|
611
612
|
#
|
612
613
|
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier`
|
613
614
|
# isn't encrypted, then the restored DB cluster isn't encrypted.
|