aws-sdk-rds 1.147.0 → 1.148.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +242 -405
- data/lib/aws-sdk-rds/db_cluster.rb +37 -96
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +22 -25
- data/lib/aws-sdk-rds/db_instance.rb +45 -173
- data/lib/aws-sdk-rds/db_snapshot.rb +23 -29
- data/lib/aws-sdk-rds/resource.rb +43 -134
- data/lib/aws-sdk-rds/types.rb +157 -395
- data/lib/aws-sdk-rds/waiters.rb +137 -0
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
@@ -579,24 +579,8 @@ module Aws::RDS
|
|
579
579
|
data[:performance_insights_kms_key_id]
|
580
580
|
end
|
581
581
|
|
582
|
-
# The
|
583
|
-
#
|
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
|
582
|
+
# The amount of time, in days, to retain Performance Insights data.
|
583
|
+
# Valid values are 7 or 731 (2 years).
|
600
584
|
#
|
601
585
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
602
586
|
# @return [Integer]
|
@@ -1091,25 +1075,25 @@ module Aws::RDS
|
|
1091
1075
|
#
|
1092
1076
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
1093
1077
|
# @option options [String] :pre_signed_url
|
1094
|
-
#
|
1095
|
-
#
|
1096
|
-
#
|
1097
|
-
#
|
1098
|
-
#
|
1099
|
-
#
|
1100
|
-
#
|
1101
|
-
#
|
1102
|
-
#
|
1103
|
-
#
|
1104
|
-
#
|
1105
|
-
#
|
1106
|
-
#
|
1107
|
-
# * `KmsKeyId` - The KMS key identifier for the KMS
|
1108
|
-
# encrypt the copy of the DB cluster in the destination
|
1109
|
-
# Services Region. This should refer to the same KMS key
|
1110
|
-
# `CreateDBCluster`
|
1111
|
-
# Web Services Region, and the
|
1112
|
-
# URL.
|
1078
|
+
# A URL that contains a Signature Version 4 signed request for the
|
1079
|
+
# `CreateDBCluster` action to be called in the source Amazon Web
|
1080
|
+
# Services Region where the DB cluster is replicated from. Specify
|
1081
|
+
# `PreSignedUrl` only when you are performing cross-Region replication
|
1082
|
+
# from an encrypted DB cluster.
|
1083
|
+
#
|
1084
|
+
# The pre-signed URL must be a valid request for the `CreateDBCluster`
|
1085
|
+
# API action that can be executed in the source Amazon Web Services
|
1086
|
+
# Region that contains the encrypted DB cluster to be copied.
|
1087
|
+
#
|
1088
|
+
# The pre-signed URL request must contain the following parameter
|
1089
|
+
# values:
|
1090
|
+
#
|
1091
|
+
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the KMS
|
1092
|
+
# key to use to encrypt the copy of the DB cluster in the destination
|
1093
|
+
# Amazon Web Services Region. This should refer to the same KMS key
|
1094
|
+
# for both the `CreateDBCluster` action that is called in the
|
1095
|
+
# destination Amazon Web Services Region, and the action contained in
|
1096
|
+
# the pre-signed URL.
|
1113
1097
|
#
|
1114
1098
|
# * `DestinationRegion` - The name of the Amazon Web Services Region
|
1115
1099
|
# that Aurora read replica will be created in.
|
@@ -1130,8 +1114,9 @@ module Aws::RDS
|
|
1130
1114
|
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
1131
1115
|
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
1132
1116
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
1133
|
-
# autogenerates a
|
1134
|
-
# operation that can
|
1117
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
1118
|
+
# operation that can be executed in the source Amazon Web Services
|
1119
|
+
# Region.
|
1135
1120
|
#
|
1136
1121
|
# </note>
|
1137
1122
|
#
|
@@ -1147,7 +1132,7 @@ module Aws::RDS
|
|
1147
1132
|
# accounts. By default, mapping isn't enabled.
|
1148
1133
|
#
|
1149
1134
|
# For more information, see [ IAM Database Authentication][1] in the
|
1150
|
-
# *Amazon Aurora User Guide
|
1135
|
+
# *Amazon Aurora User Guide.*.
|
1151
1136
|
#
|
1152
1137
|
# Valid for: Aurora DB clusters only
|
1153
1138
|
#
|
@@ -1218,9 +1203,6 @@ module Aws::RDS
|
|
1218
1203
|
# The `multimaster` engine mode only applies for DB clusters created
|
1219
1204
|
# with Aurora MySQL version 5.6.10a.
|
1220
1205
|
#
|
1221
|
-
# The `serverless` engine mode only applies for Aurora Serverless v1 DB
|
1222
|
-
# clusters.
|
1223
|
-
#
|
1224
1206
|
# For Aurora PostgreSQL, the `global` engine mode isn't required, and
|
1225
1207
|
# both the `parallelquery` and the `multimaster` engine modes currently
|
1226
1208
|
# aren't supported.
|
@@ -1229,25 +1211,22 @@ module Aws::RDS
|
|
1229
1211
|
# information, see the following sections in the *Amazon Aurora User
|
1230
1212
|
# Guide*\:
|
1231
1213
|
#
|
1232
|
-
# * [Limitations of Aurora Serverless v1][1]
|
1214
|
+
# * [ Limitations of Aurora Serverless v1][1]
|
1233
1215
|
#
|
1234
|
-
# * [
|
1216
|
+
# * [ Limitations of Parallel Query][2]
|
1235
1217
|
#
|
1236
|
-
# * [Limitations of
|
1218
|
+
# * [ Limitations of Aurora Global Databases][3]
|
1237
1219
|
#
|
1238
|
-
# * [Limitations of
|
1239
|
-
#
|
1240
|
-
# * [Limitations of Multi-Master Clusters][5]
|
1220
|
+
# * [ Limitations of Multi-Master Clusters][4]
|
1241
1221
|
#
|
1242
1222
|
# Valid for: Aurora DB clusters only
|
1243
1223
|
#
|
1244
1224
|
#
|
1245
1225
|
#
|
1246
1226
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html#aurora-serverless.limitations
|
1247
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-
|
1248
|
-
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-
|
1249
|
-
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-
|
1250
|
-
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-multi-master.html#aurora-multi-master-limitations
|
1227
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-parallel-query.html#aurora-mysql-parallel-query-limitations
|
1228
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database.html#aurora-global-database.limitations
|
1229
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-multi-master.html#aurora-multi-master-limitations
|
1251
1230
|
# @option options [Types::ScalingConfiguration] :scaling_configuration
|
1252
1231
|
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
1253
1232
|
# of the DB cluster.
|
@@ -1470,27 +1449,8 @@ module Aws::RDS
|
|
1470
1449
|
#
|
1471
1450
|
# Valid for: Multi-AZ DB clusters only
|
1472
1451
|
# @option options [Integer] :performance_insights_retention_period
|
1473
|
-
# The
|
1474
|
-
#
|
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.
|
1452
|
+
# The amount of time, in days, to retain Performance Insights data.
|
1453
|
+
# Valid values are 7 or 731 (2 years).
|
1494
1454
|
#
|
1495
1455
|
# Valid for: Multi-AZ DB clusters only
|
1496
1456
|
# @option options [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
@@ -2106,27 +2066,8 @@ module Aws::RDS
|
|
2106
2066
|
#
|
2107
2067
|
# Valid for: Multi-AZ DB clusters only
|
2108
2068
|
# @option options [Integer] :performance_insights_retention_period
|
2109
|
-
# The
|
2110
|
-
#
|
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.
|
2069
|
+
# The amount of time, in days, to retain Performance Insights data.
|
2070
|
+
# Valid values are 7 or 731 (2 years).
|
2130
2071
|
#
|
2131
2072
|
# Valid for: Multi-AZ DB clusters only
|
2132
2073
|
# @option options [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
@@ -2366,7 +2307,7 @@ module Aws::RDS
|
|
2366
2307
|
#
|
2367
2308
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
2368
2309
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
2369
|
-
# *Amazon RDS User Guide
|
2310
|
+
# *Amazon RDS User Guide.*.
|
2370
2311
|
#
|
2371
2312
|
# For more information about exporting CloudWatch Logs for Amazon
|
2372
2313
|
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2] in
|
@@ -408,30 +408,26 @@ 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
|
-
#
|
416
|
-
# copying an encrypted DB cluster
|
417
|
-
#
|
418
|
-
#
|
419
|
-
#
|
420
|
-
#
|
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
|
411
|
+
# The URL that contains a Signature Version 4 signed request for the
|
412
|
+
# `CopyDBClusterSnapshot` API action in the Amazon Web Services Region
|
413
|
+
# that contains the source DB cluster snapshot to copy. The
|
414
|
+
# `PreSignedUrl` parameter must be used when copying an encrypted DB
|
415
|
+
# cluster snapshot from another Amazon Web Services Region. Don't
|
416
|
+
# specify `PreSignedUrl` when you are copying an encrypted DB cluster
|
417
|
+
# snapshot in the same Amazon Web Services Region.
|
418
|
+
#
|
419
|
+
# The pre-signed URL must be a valid request for the
|
420
|
+
# `CopyDBClusterSnapshot` API action that can be executed in the source
|
425
421
|
# Amazon Web Services Region that contains the encrypted DB cluster
|
426
|
-
# snapshot to
|
427
|
-
# parameter values:
|
422
|
+
# snapshot to be copied. The pre-signed URL request must contain the
|
423
|
+
# following parameter values:
|
428
424
|
#
|
429
|
-
# * `KmsKeyId` - The KMS key identifier for the KMS
|
430
|
-
# encrypt the copy of the DB cluster snapshot in the
|
431
|
-
# Amazon Web Services Region. This is the same identifier
|
432
|
-
# `CopyDBClusterSnapshot`
|
433
|
-
# Amazon Web Services Region, and the
|
434
|
-
#
|
425
|
+
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the KMS
|
426
|
+
# key to use to encrypt the copy of the DB cluster snapshot in the
|
427
|
+
# destination Amazon Web Services Region. This is the same identifier
|
428
|
+
# for both the `CopyDBClusterSnapshot` action that is called in the
|
429
|
+
# destination Amazon Web Services Region, and the action contained in
|
430
|
+
# the pre-signed URL.
|
435
431
|
#
|
436
432
|
# * `DestinationRegion` - The name of the Amazon Web Services Region
|
437
433
|
# that the DB cluster snapshot is to be created in.
|
@@ -453,8 +449,9 @@ module Aws::RDS
|
|
453
449
|
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
454
450
|
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
455
451
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
456
|
-
# autogenerates a
|
457
|
-
# operation that can
|
452
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
453
|
+
# operation that can be executed in the source Amazon Web Services
|
454
|
+
# Region.
|
458
455
|
#
|
459
456
|
# </note>
|
460
457
|
#
|
@@ -746,7 +743,7 @@ module Aws::RDS
|
|
746
743
|
#
|
747
744
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
748
745
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
749
|
-
# *Amazon RDS User Guide
|
746
|
+
# *Amazon RDS User Guide.*.
|
750
747
|
#
|
751
748
|
# For more information about exporting CloudWatch Logs for Amazon
|
752
749
|
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2] in
|