aws-sdk-rds 1.144.0 → 1.147.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +576 -243
- data/lib/aws-sdk-rds/client_api.rb +18 -0
- data/lib/aws-sdk-rds/db_cluster.rb +96 -37
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +25 -22
- data/lib/aws-sdk-rds/db_instance.rb +279 -56
- data/lib/aws-sdk-rds/db_snapshot.rb +49 -23
- data/lib/aws-sdk-rds/db_subnet_group.rb +22 -0
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/resource.rb +155 -54
- data/lib/aws-sdk-rds/types.rb +609 -176
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
@@ -432,6 +432,7 @@ module Aws::RDS
|
|
432
432
|
ModifyGlobalClusterResult = Shapes::StructureShape.new(name: 'ModifyGlobalClusterResult')
|
433
433
|
ModifyOptionGroupMessage = Shapes::StructureShape.new(name: 'ModifyOptionGroupMessage')
|
434
434
|
ModifyOptionGroupResult = Shapes::StructureShape.new(name: 'ModifyOptionGroupResult')
|
435
|
+
NetworkTypeNotSupported = Shapes::StructureShape.new(name: 'NetworkTypeNotSupported')
|
435
436
|
Option = Shapes::StructureShape.new(name: 'Option')
|
436
437
|
OptionConfiguration = Shapes::StructureShape.new(name: 'OptionConfiguration')
|
437
438
|
OptionConfigurationList = Shapes::ListShape.new(name: 'OptionConfigurationList')
|
@@ -922,6 +923,7 @@ module Aws::RDS
|
|
922
923
|
CreateDBInstanceMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
923
924
|
CreateDBInstanceMessage.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
924
925
|
CreateDBInstanceMessage.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
926
|
+
CreateDBInstanceMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
925
927
|
CreateDBInstanceMessage.struct_class = Types::CreateDBInstanceMessage
|
926
928
|
|
927
929
|
CreateDBInstanceReadReplicaMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
@@ -957,6 +959,7 @@ module Aws::RDS
|
|
957
959
|
CreateDBInstanceReadReplicaMessage.add_member(:replica_mode, Shapes::ShapeRef.new(shape: ReplicaMode, location_name: "ReplicaMode"))
|
958
960
|
CreateDBInstanceReadReplicaMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
959
961
|
CreateDBInstanceReadReplicaMessage.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
962
|
+
CreateDBInstanceReadReplicaMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
960
963
|
CreateDBInstanceReadReplicaMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
961
964
|
CreateDBInstanceReadReplicaMessage.struct_class = Types::CreateDBInstanceReadReplicaMessage
|
962
965
|
|
@@ -1397,6 +1400,7 @@ module Aws::RDS
|
|
1397
1400
|
DBInstance.add_member(:resume_full_automation_mode_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ResumeFullAutomationModeTime"))
|
1398
1401
|
DBInstance.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
1399
1402
|
DBInstance.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
1403
|
+
DBInstance.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
1400
1404
|
DBInstance.struct_class = Types::DBInstance
|
1401
1405
|
|
1402
1406
|
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
@@ -1669,6 +1673,7 @@ module Aws::RDS
|
|
1669
1673
|
DBSubnetGroup.add_member(:subnet_group_status, Shapes::ShapeRef.new(shape: String, location_name: "SubnetGroupStatus"))
|
1670
1674
|
DBSubnetGroup.add_member(:subnets, Shapes::ShapeRef.new(shape: SubnetList, location_name: "Subnets"))
|
1671
1675
|
DBSubnetGroup.add_member(:db_subnet_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroupArn"))
|
1676
|
+
DBSubnetGroup.add_member(:supported_network_types, Shapes::ShapeRef.new(shape: StringList, location_name: "SupportedNetworkTypes"))
|
1672
1677
|
DBSubnetGroup.struct_class = Types::DBSubnetGroup
|
1673
1678
|
|
1674
1679
|
DBSubnetGroupAlreadyExistsFault.struct_class = Types::DBSubnetGroupAlreadyExistsFault
|
@@ -2482,6 +2487,7 @@ module Aws::RDS
|
|
2482
2487
|
ModifyDBInstanceMessage.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: AwsBackupRecoveryPointArn, location_name: "AwsBackupRecoveryPointArn"))
|
2483
2488
|
ModifyDBInstanceMessage.add_member(:automation_mode, Shapes::ShapeRef.new(shape: AutomationMode, location_name: "AutomationMode"))
|
2484
2489
|
ModifyDBInstanceMessage.add_member(:resume_full_automation_mode_minutes, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ResumeFullAutomationModeMinutes"))
|
2490
|
+
ModifyDBInstanceMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
2485
2491
|
ModifyDBInstanceMessage.struct_class = Types::ModifyDBInstanceMessage
|
2486
2492
|
|
2487
2493
|
ModifyDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -2575,6 +2581,8 @@ module Aws::RDS
|
|
2575
2581
|
ModifyOptionGroupResult.add_member(:option_group, Shapes::ShapeRef.new(shape: OptionGroup, location_name: "OptionGroup"))
|
2576
2582
|
ModifyOptionGroupResult.struct_class = Types::ModifyOptionGroupResult
|
2577
2583
|
|
2584
|
+
NetworkTypeNotSupported.struct_class = Types::NetworkTypeNotSupported
|
2585
|
+
|
2578
2586
|
Option.add_member(:option_name, Shapes::ShapeRef.new(shape: String, location_name: "OptionName"))
|
2579
2587
|
Option.add_member(:option_description, Shapes::ShapeRef.new(shape: String, location_name: "OptionDescription"))
|
2580
2588
|
Option.add_member(:persistent, Shapes::ShapeRef.new(shape: Boolean, location_name: "Persistent"))
|
@@ -2718,6 +2726,7 @@ module Aws::RDS
|
|
2718
2726
|
OrderableDBInstanceOption.add_member(:supported_activity_stream_modes, Shapes::ShapeRef.new(shape: ActivityStreamModeList, location_name: "SupportedActivityStreamModes"))
|
2719
2727
|
OrderableDBInstanceOption.add_member(:supports_global_databases, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsGlobalDatabases"))
|
2720
2728
|
OrderableDBInstanceOption.add_member(:supports_clusters, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsClusters"))
|
2729
|
+
OrderableDBInstanceOption.add_member(:supported_network_types, Shapes::ShapeRef.new(shape: StringList, location_name: "SupportedNetworkTypes"))
|
2721
2730
|
OrderableDBInstanceOption.struct_class = Types::OrderableDBInstanceOption
|
2722
2731
|
|
2723
2732
|
OrderableDBInstanceOptionsList.member = Shapes::ShapeRef.new(shape: OrderableDBInstanceOption, location_name: "OrderableDBInstanceOption")
|
@@ -3085,6 +3094,7 @@ module Aws::RDS
|
|
3085
3094
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
3086
3095
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
3087
3096
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
3097
|
+
RestoreDBInstanceFromDBSnapshotMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
3088
3098
|
RestoreDBInstanceFromDBSnapshotMessage.struct_class = Types::RestoreDBInstanceFromDBSnapshotMessage
|
3089
3099
|
|
3090
3100
|
RestoreDBInstanceFromDBSnapshotResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -3134,6 +3144,7 @@ module Aws::RDS
|
|
3134
3144
|
RestoreDBInstanceFromS3Message.add_member(:use_default_processor_features, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UseDefaultProcessorFeatures"))
|
3135
3145
|
RestoreDBInstanceFromS3Message.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
3136
3146
|
RestoreDBInstanceFromS3Message.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
3147
|
+
RestoreDBInstanceFromS3Message.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
3137
3148
|
RestoreDBInstanceFromS3Message.struct_class = Types::RestoreDBInstanceFromS3Message
|
3138
3149
|
|
3139
3150
|
RestoreDBInstanceFromS3Result.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -3175,6 +3186,7 @@ module Aws::RDS
|
|
3175
3186
|
RestoreDBInstanceToPointInTimeMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
3176
3187
|
RestoreDBInstanceToPointInTimeMessage.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
3177
3188
|
RestoreDBInstanceToPointInTimeMessage.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
3189
|
+
RestoreDBInstanceToPointInTimeMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
3178
3190
|
RestoreDBInstanceToPointInTimeMessage.struct_class = Types::RestoreDBInstanceToPointInTimeMessage
|
3179
3191
|
|
3180
3192
|
RestoreDBInstanceToPointInTimeResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -3687,6 +3699,7 @@ module Aws::RDS
|
|
3687
3699
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
3688
3700
|
o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
|
3689
3701
|
o.errors << Shapes::ShapeRef.new(shape: BackupPolicyNotFoundFault)
|
3702
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
3690
3703
|
end)
|
3691
3704
|
|
3692
3705
|
api.add_operation(:create_db_instance_read_replica, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3714,6 +3727,7 @@ module Aws::RDS
|
|
3714
3727
|
o.errors << Shapes::ShapeRef.new(shape: StorageTypeNotSupportedFault)
|
3715
3728
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
3716
3729
|
o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
|
3730
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
3717
3731
|
end)
|
3718
3732
|
|
3719
3733
|
api.add_operation(:create_db_parameter_group, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4699,6 +4713,7 @@ module Aws::RDS
|
|
4699
4713
|
o.errors << Shapes::ShapeRef.new(shape: BackupPolicyNotFoundFault)
|
4700
4714
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
4701
4715
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
4716
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
4702
4717
|
end)
|
4703
4718
|
|
4704
4719
|
api.add_operation(:modify_db_parameter_group, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5060,6 +5075,7 @@ module Aws::RDS
|
|
5060
5075
|
o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
|
5061
5076
|
o.errors << Shapes::ShapeRef.new(shape: DBParameterGroupNotFoundFault)
|
5062
5077
|
o.errors << Shapes::ShapeRef.new(shape: BackupPolicyNotFoundFault)
|
5078
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
5063
5079
|
end)
|
5064
5080
|
|
5065
5081
|
api.add_operation(:restore_db_instance_from_s3, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5085,6 +5101,7 @@ module Aws::RDS
|
|
5085
5101
|
o.errors << Shapes::ShapeRef.new(shape: AuthorizationNotFoundFault)
|
5086
5102
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
5087
5103
|
o.errors << Shapes::ShapeRef.new(shape: BackupPolicyNotFoundFault)
|
5104
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
5088
5105
|
end)
|
5089
5106
|
|
5090
5107
|
api.add_operation(:restore_db_instance_to_point_in_time, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5115,6 +5132,7 @@ module Aws::RDS
|
|
5115
5132
|
o.errors << Shapes::ShapeRef.new(shape: BackupPolicyNotFoundFault)
|
5116
5133
|
o.errors << Shapes::ShapeRef.new(shape: DBParameterGroupNotFoundFault)
|
5117
5134
|
o.errors << Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackupNotFoundFault)
|
5135
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
5118
5136
|
end)
|
5119
5137
|
|
5120
5138
|
api.add_operation(:revoke_db_security_group_ingress, Seahorse::Model::Operation.new.tap do |o|
|
@@ -579,8 +579,24 @@ module Aws::RDS
|
|
579
579
|
data[:performance_insights_kms_key_id]
|
580
580
|
end
|
581
581
|
|
582
|
-
# The
|
583
|
-
#
|
582
|
+
# The number of days to retain Performance Insights data. The default is
|
583
|
+
# 7 days. The following values are valid:
|
584
|
+
#
|
585
|
+
# * 7
|
586
|
+
#
|
587
|
+
# * *month* * 31, where *month* is a number of months from 1-23
|
588
|
+
#
|
589
|
+
# * 731
|
590
|
+
#
|
591
|
+
# For example, the following values are valid:
|
592
|
+
#
|
593
|
+
# * 93 (3 months * 31)
|
594
|
+
#
|
595
|
+
# * 341 (11 months * 31)
|
596
|
+
#
|
597
|
+
# * 589 (19 months * 31)
|
598
|
+
#
|
599
|
+
# * 731
|
584
600
|
#
|
585
601
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
586
602
|
# @return [Integer]
|
@@ -1075,25 +1091,25 @@ module Aws::RDS
|
|
1075
1091
|
#
|
1076
1092
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
1077
1093
|
# @option options [String] :pre_signed_url
|
1078
|
-
#
|
1079
|
-
#
|
1080
|
-
#
|
1081
|
-
#
|
1082
|
-
# from
|
1083
|
-
#
|
1084
|
-
#
|
1085
|
-
#
|
1086
|
-
#
|
1087
|
-
#
|
1088
|
-
#
|
1089
|
-
# values:
|
1090
|
-
#
|
1091
|
-
# * `KmsKeyId` - The
|
1092
|
-
#
|
1093
|
-
#
|
1094
|
-
#
|
1095
|
-
#
|
1096
|
-
#
|
1094
|
+
# When you are replicating a DB cluster from one Amazon Web Services
|
1095
|
+
# GovCloud (US) Region to another, an URL that contains a Signature
|
1096
|
+
# Version 4 signed request for the `CreateDBCluster` operation to be
|
1097
|
+
# called in the source Amazon Web Services Region where the DB cluster
|
1098
|
+
# is replicated from. Specify `PreSignedUrl` only when you are
|
1099
|
+
# performing cross-Region replication from an encrypted DB cluster.
|
1100
|
+
#
|
1101
|
+
# The presigned URL must be a valid request for the `CreateDBCluster`
|
1102
|
+
# API operation that can run in the source Amazon Web Services Region
|
1103
|
+
# that contains the encrypted DB cluster to copy.
|
1104
|
+
#
|
1105
|
+
# The presigned URL request must contain the following parameter values:
|
1106
|
+
#
|
1107
|
+
# * `KmsKeyId` - The KMS key identifier for the KMS key to use to
|
1108
|
+
# encrypt the copy of the DB cluster in the destination Amazon Web
|
1109
|
+
# Services Region. This should refer to the same KMS key for both the
|
1110
|
+
# `CreateDBCluster` operation that is called in the destination Amazon
|
1111
|
+
# Web Services Region, and the operation contained in the presigned
|
1112
|
+
# URL.
|
1097
1113
|
#
|
1098
1114
|
# * `DestinationRegion` - The name of the Amazon Web Services Region
|
1099
1115
|
# that Aurora read replica will be created in.
|
@@ -1114,9 +1130,8 @@ module Aws::RDS
|
|
1114
1130
|
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
1115
1131
|
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
1116
1132
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
1117
|
-
# autogenerates a
|
1118
|
-
# operation that can
|
1119
|
-
# Region.
|
1133
|
+
# autogenerates a presigned URL that is a valid request for the
|
1134
|
+
# operation that can run in the source Amazon Web Services Region.
|
1120
1135
|
#
|
1121
1136
|
# </note>
|
1122
1137
|
#
|
@@ -1132,7 +1147,7 @@ module Aws::RDS
|
|
1132
1147
|
# accounts. By default, mapping isn't enabled.
|
1133
1148
|
#
|
1134
1149
|
# For more information, see [ IAM Database Authentication][1] in the
|
1135
|
-
# *Amazon Aurora User Guide
|
1150
|
+
# *Amazon Aurora User Guide*.
|
1136
1151
|
#
|
1137
1152
|
# Valid for: Aurora DB clusters only
|
1138
1153
|
#
|
@@ -1203,6 +1218,9 @@ module Aws::RDS
|
|
1203
1218
|
# The `multimaster` engine mode only applies for DB clusters created
|
1204
1219
|
# with Aurora MySQL version 5.6.10a.
|
1205
1220
|
#
|
1221
|
+
# The `serverless` engine mode only applies for Aurora Serverless v1 DB
|
1222
|
+
# clusters.
|
1223
|
+
#
|
1206
1224
|
# For Aurora PostgreSQL, the `global` engine mode isn't required, and
|
1207
1225
|
# both the `parallelquery` and the `multimaster` engine modes currently
|
1208
1226
|
# aren't supported.
|
@@ -1211,22 +1229,25 @@ module Aws::RDS
|
|
1211
1229
|
# information, see the following sections in the *Amazon Aurora User
|
1212
1230
|
# Guide*\:
|
1213
1231
|
#
|
1214
|
-
# * [
|
1232
|
+
# * [Limitations of Aurora Serverless v1][1]
|
1215
1233
|
#
|
1216
|
-
# * [
|
1234
|
+
# * [Requirements for Aurora Serverless v2][2]
|
1217
1235
|
#
|
1218
|
-
# * [
|
1236
|
+
# * [Limitations of Parallel Query][3]
|
1219
1237
|
#
|
1220
|
-
# * [
|
1238
|
+
# * [Limitations of Aurora Global Databases][4]
|
1239
|
+
#
|
1240
|
+
# * [Limitations of Multi-Master Clusters][5]
|
1221
1241
|
#
|
1222
1242
|
# Valid for: Aurora DB clusters only
|
1223
1243
|
#
|
1224
1244
|
#
|
1225
1245
|
#
|
1226
1246
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html#aurora-serverless.limitations
|
1227
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-
|
1228
|
-
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-
|
1229
|
-
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-
|
1247
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.requirements.html
|
1248
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-parallel-query.html#aurora-mysql-parallel-query-limitations
|
1249
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database.html#aurora-global-database.limitations
|
1250
|
+
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-multi-master.html#aurora-multi-master-limitations
|
1230
1251
|
# @option options [Types::ScalingConfiguration] :scaling_configuration
|
1231
1252
|
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
1232
1253
|
# of the DB cluster.
|
@@ -1449,8 +1470,27 @@ module Aws::RDS
|
|
1449
1470
|
#
|
1450
1471
|
# Valid for: Multi-AZ DB clusters only
|
1451
1472
|
# @option options [Integer] :performance_insights_retention_period
|
1452
|
-
# The
|
1453
|
-
#
|
1473
|
+
# The number of days to retain Performance Insights data. The default is
|
1474
|
+
# 7 days. The following values are valid:
|
1475
|
+
#
|
1476
|
+
# * 7
|
1477
|
+
#
|
1478
|
+
# * *month* * 31, where *month* is a number of months from 1-23
|
1479
|
+
#
|
1480
|
+
# * 731
|
1481
|
+
#
|
1482
|
+
# For example, the following values are valid:
|
1483
|
+
#
|
1484
|
+
# * 93 (3 months * 31)
|
1485
|
+
#
|
1486
|
+
# * 341 (11 months * 31)
|
1487
|
+
#
|
1488
|
+
# * 589 (19 months * 31)
|
1489
|
+
#
|
1490
|
+
# * 731
|
1491
|
+
#
|
1492
|
+
# If you specify a retention period such as 94, which isn't a valid
|
1493
|
+
# value, RDS issues an error.
|
1454
1494
|
#
|
1455
1495
|
# Valid for: Multi-AZ DB clusters only
|
1456
1496
|
# @option options [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
@@ -2066,8 +2106,27 @@ module Aws::RDS
|
|
2066
2106
|
#
|
2067
2107
|
# Valid for: Multi-AZ DB clusters only
|
2068
2108
|
# @option options [Integer] :performance_insights_retention_period
|
2069
|
-
# The
|
2070
|
-
#
|
2109
|
+
# The number of days to retain Performance Insights data. The default is
|
2110
|
+
# 7 days. The following values are valid:
|
2111
|
+
#
|
2112
|
+
# * 7
|
2113
|
+
#
|
2114
|
+
# * *month* * 31, where *month* is a number of months from 1-23
|
2115
|
+
#
|
2116
|
+
# * 731
|
2117
|
+
#
|
2118
|
+
# For example, the following values are valid:
|
2119
|
+
#
|
2120
|
+
# * 93 (3 months * 31)
|
2121
|
+
#
|
2122
|
+
# * 341 (11 months * 31)
|
2123
|
+
#
|
2124
|
+
# * 589 (19 months * 31)
|
2125
|
+
#
|
2126
|
+
# * 731
|
2127
|
+
#
|
2128
|
+
# If you specify a retention period such as 94, which isn't a valid
|
2129
|
+
# value, RDS issues an error.
|
2071
2130
|
#
|
2072
2131
|
# Valid for: Multi-AZ DB clusters only
|
2073
2132
|
# @option options [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
@@ -2307,7 +2366,7 @@ module Aws::RDS
|
|
2307
2366
|
#
|
2308
2367
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
2309
2368
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
2310
|
-
# *Amazon RDS User Guide
|
2369
|
+
# *Amazon RDS User Guide*.
|
2311
2370
|
#
|
2312
2371
|
# For more information about exporting CloudWatch Logs for Amazon
|
2313
2372
|
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2] in
|
@@ -408,26 +408,30 @@ module Aws::RDS
|
|
408
408
|
# If you copy an unencrypted DB cluster snapshot and specify a value for
|
409
409
|
# the `KmsKeyId` parameter, an error is returned.
|
410
410
|
# @option options [String] :pre_signed_url
|
411
|
-
#
|
412
|
-
#
|
413
|
-
#
|
414
|
-
#
|
415
|
-
# cluster snapshot
|
416
|
-
#
|
417
|
-
#
|
418
|
-
#
|
419
|
-
#
|
420
|
-
#
|
411
|
+
# When you are copying a DB cluster snapshot from one Amazon Web
|
412
|
+
# Services GovCloud (US) Region to another, the URL that contains a
|
413
|
+
# Signature Version 4 signed request for the `CopyDBClusterSnapshot` API
|
414
|
+
# operation in the Amazon Web Services Region that contains the source
|
415
|
+
# DB cluster snapshot to copy. Use the `PreSignedUrl` parameter when
|
416
|
+
# copying an encrypted DB cluster snapshot from another Amazon Web
|
417
|
+
# Services Region. Don't specify `PreSignedUrl` when copying an
|
418
|
+
# encrypted DB cluster snapshot in the same Amazon Web Services Region.
|
419
|
+
#
|
420
|
+
# This setting applies only to Amazon Web Services GovCloud (US)
|
421
|
+
# Regions. It's ignored in other Amazon Web Services Regions.
|
422
|
+
#
|
423
|
+
# The presigned URL must be a valid request for the
|
424
|
+
# `CopyDBClusterSnapshot` API operation that can run in the source
|
421
425
|
# Amazon Web Services Region that contains the encrypted DB cluster
|
422
|
-
# snapshot to
|
423
|
-
#
|
426
|
+
# snapshot to copy. The presigned URL request must contain the following
|
427
|
+
# parameter values:
|
424
428
|
#
|
425
|
-
# * `KmsKeyId` - The
|
426
|
-
#
|
427
|
-
#
|
428
|
-
#
|
429
|
-
#
|
430
|
-
#
|
429
|
+
# * `KmsKeyId` - The KMS key identifier for the KMS key to use to
|
430
|
+
# encrypt the copy of the DB cluster snapshot in the destination
|
431
|
+
# Amazon Web Services Region. This is the same identifier for both the
|
432
|
+
# `CopyDBClusterSnapshot` operation that is called in the destination
|
433
|
+
# Amazon Web Services Region, and the operation contained in the
|
434
|
+
# presigned URL.
|
431
435
|
#
|
432
436
|
# * `DestinationRegion` - The name of the Amazon Web Services Region
|
433
437
|
# that the DB cluster snapshot is to be created in.
|
@@ -449,9 +453,8 @@ module Aws::RDS
|
|
449
453
|
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
450
454
|
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
451
455
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
452
|
-
# autogenerates a
|
453
|
-
# operation that can
|
454
|
-
# Region.
|
456
|
+
# autogenerates a presigned URL that is a valid request for the
|
457
|
+
# operation that can run in the source Amazon Web Services Region.
|
455
458
|
#
|
456
459
|
# </note>
|
457
460
|
#
|
@@ -743,7 +746,7 @@ module Aws::RDS
|
|
743
746
|
#
|
744
747
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
745
748
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
746
|
-
# *Amazon RDS User Guide
|
749
|
+
# *Amazon RDS User Guide*.
|
747
750
|
#
|
748
751
|
# For more information about exporting CloudWatch Logs for Amazon
|
749
752
|
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2] in
|