aws-sdk-rds 1.148.0 → 1.151.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +485 -240
- data/lib/aws-sdk-rds/client_api.rb +28 -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 +181 -48
- data/lib/aws-sdk-rds/db_snapshot.rb +29 -23
- data/lib/aws-sdk-rds/resource.rb +137 -48
- data/lib/aws-sdk-rds/types.rb +486 -169
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
@@ -483,8 +483,24 @@ module Aws::RDS
|
|
483
483
|
data[:performance_insights_kms_key_id]
|
484
484
|
end
|
485
485
|
|
486
|
-
# The
|
487
|
-
#
|
486
|
+
# The number of days to retain Performance Insights data. The default is
|
487
|
+
# 7 days. The following values are valid:
|
488
|
+
#
|
489
|
+
# * 7
|
490
|
+
#
|
491
|
+
# * *month* * 31, where *month* is a number of months from 1-23
|
492
|
+
#
|
493
|
+
# * 731
|
494
|
+
#
|
495
|
+
# For example, the following values are valid:
|
496
|
+
#
|
497
|
+
# * 93 (3 months * 31)
|
498
|
+
#
|
499
|
+
# * 341 (11 months * 31)
|
500
|
+
#
|
501
|
+
# * 589 (19 months * 31)
|
502
|
+
#
|
503
|
+
# * 731
|
488
504
|
# @return [Integer]
|
489
505
|
def performance_insights_retention_period
|
490
506
|
data[:performance_insights_retention_period]
|
@@ -703,6 +719,12 @@ module Aws::RDS
|
|
703
719
|
data[:network_type]
|
704
720
|
end
|
705
721
|
|
722
|
+
# The status of the policy state of the activity stream.
|
723
|
+
# @return [String]
|
724
|
+
def activity_stream_policy_status
|
725
|
+
data[:activity_stream_policy_status]
|
726
|
+
end
|
727
|
+
|
706
728
|
# @!endgroup
|
707
729
|
|
708
730
|
# @return [Client]
|
@@ -1119,14 +1141,16 @@ module Aws::RDS
|
|
1119
1141
|
# * Web and Express editions: Must be an integer from 20 to 1024.
|
1120
1142
|
# @option options [required, String] :db_instance_class
|
1121
1143
|
# The compute and memory capacity of the DB instance, for example
|
1122
|
-
# db.
|
1144
|
+
# db.m5.large. Not all DB instance classes are available in all Amazon
|
1123
1145
|
# Web Services Regions, or for all database engines. For the full list
|
1124
1146
|
# of DB instance classes, and availability for your engine, see [DB
|
1125
|
-
#
|
1147
|
+
# instance classes][1] in the *Amazon RDS User Guide* or [Aurora DB
|
1148
|
+
# instance classes][2] in the *Amazon Aurora User Guide*.
|
1126
1149
|
#
|
1127
1150
|
#
|
1128
1151
|
#
|
1129
1152
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
1153
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html
|
1130
1154
|
# @option options [required, String] :engine
|
1131
1155
|
# The name of the database engine to be used for this instance.
|
1132
1156
|
#
|
@@ -1221,7 +1245,9 @@ module Aws::RDS
|
|
1221
1245
|
# @option options [Array<String>] :db_security_groups
|
1222
1246
|
# A list of DB security groups to associate with this DB instance.
|
1223
1247
|
#
|
1224
|
-
#
|
1248
|
+
# This setting applies to the legacy EC2-Classic platform, which is no
|
1249
|
+
# longer used to create new DB instances. Use the `VpcSecurityGroupIds`
|
1250
|
+
# setting instead.
|
1225
1251
|
# @option options [Array<String>] :vpc_security_group_ids
|
1226
1252
|
# A list of Amazon EC2 VPC security groups to associate with this DB
|
1227
1253
|
# instance.
|
@@ -1315,7 +1341,7 @@ module Aws::RDS
|
|
1315
1341
|
#
|
1316
1342
|
# * Can't be set to 0 if the DB instance is a source to read replicas
|
1317
1343
|
#
|
1318
|
-
# * Can't be set to 0
|
1344
|
+
# * Can't be set to 0 for an RDS Custom for Oracle DB instance
|
1319
1345
|
# @option options [String] :preferred_backup_window
|
1320
1346
|
# The daily time range during which automated backups are created if
|
1321
1347
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
@@ -1394,11 +1420,16 @@ module Aws::RDS
|
|
1394
1420
|
# instance is a Multi-AZ deployment.
|
1395
1421
|
#
|
1396
1422
|
# This setting doesn't apply to RDS Custom.
|
1423
|
+
#
|
1424
|
+
# **Amazon Aurora**
|
1425
|
+
#
|
1426
|
+
# Not applicable. DB instance Availability Zones (AZs) are managed by
|
1427
|
+
# the DB cluster.
|
1397
1428
|
# @option options [String] :engine_version
|
1398
1429
|
# The version number of the database engine to use.
|
1399
1430
|
#
|
1400
1431
|
# For a list of valid engine versions, use the
|
1401
|
-
# `DescribeDBEngineVersions`
|
1432
|
+
# `DescribeDBEngineVersions` operation.
|
1402
1433
|
#
|
1403
1434
|
# The following are the database engines and links to information about
|
1404
1435
|
# the major and minor versions that are available with Amazon RDS. Not
|
@@ -1471,6 +1502,10 @@ module Aws::RDS
|
|
1471
1502
|
# `general-public-license`
|
1472
1503
|
#
|
1473
1504
|
# This setting doesn't apply to RDS Custom.
|
1505
|
+
#
|
1506
|
+
# **Amazon Aurora**
|
1507
|
+
#
|
1508
|
+
# Not applicable.
|
1474
1509
|
# @option options [Integer] :iops
|
1475
1510
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
1476
1511
|
# be initially allocated for the DB instance. For information about
|
@@ -1482,6 +1517,10 @@ module Aws::RDS
|
|
1482
1517
|
# instance. For SQL Server DB instances, must be a multiple between 1
|
1483
1518
|
# and 50 of the storage amount for the DB instance.
|
1484
1519
|
#
|
1520
|
+
# **Amazon Aurora**
|
1521
|
+
#
|
1522
|
+
# Not applicable. Storage is managed by the DB cluster.
|
1523
|
+
#
|
1485
1524
|
#
|
1486
1525
|
#
|
1487
1526
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
@@ -1495,6 +1534,10 @@ module Aws::RDS
|
|
1495
1534
|
# instance.
|
1496
1535
|
#
|
1497
1536
|
# This setting doesn't apply to RDS Custom.
|
1537
|
+
#
|
1538
|
+
# **Amazon Aurora**
|
1539
|
+
#
|
1540
|
+
# Not applicable.
|
1498
1541
|
# @option options [String] :character_set_name
|
1499
1542
|
# For supported engines, this value indicates that the DB instance
|
1500
1543
|
# should be associated with the specified `CharacterSet`.
|
@@ -1559,11 +1602,19 @@ module Aws::RDS
|
|
1559
1602
|
# parameter.
|
1560
1603
|
#
|
1561
1604
|
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
1605
|
+
#
|
1606
|
+
# **Amazon Aurora**
|
1607
|
+
#
|
1608
|
+
# Not applicable. Storage is managed by the DB cluster.
|
1562
1609
|
# @option options [String] :tde_credential_arn
|
1563
1610
|
# The ARN from the key store with which to associate the instance for
|
1564
1611
|
# TDE encryption.
|
1565
1612
|
#
|
1566
1613
|
# This setting doesn't apply to RDS Custom.
|
1614
|
+
#
|
1615
|
+
# **Amazon Aurora**
|
1616
|
+
#
|
1617
|
+
# Not applicable.
|
1567
1618
|
# @option options [String] :tde_credential_password
|
1568
1619
|
# The password for the given ARN from the key store in order to access
|
1569
1620
|
# the device.
|
@@ -1617,6 +1668,10 @@ module Aws::RDS
|
|
1617
1668
|
#
|
1618
1669
|
# This setting doesn't apply to RDS Custom.
|
1619
1670
|
#
|
1671
|
+
# **Amazon Aurora**
|
1672
|
+
#
|
1673
|
+
# Not applicable. The domain is managed by the DB cluster.
|
1674
|
+
#
|
1620
1675
|
#
|
1621
1676
|
#
|
1622
1677
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
@@ -1660,6 +1715,10 @@ module Aws::RDS
|
|
1660
1715
|
# the Directory Service.
|
1661
1716
|
#
|
1662
1717
|
# This setting doesn't apply to RDS Custom.
|
1718
|
+
#
|
1719
|
+
# **Amazon Aurora**
|
1720
|
+
#
|
1721
|
+
# Not applicable. The domain is managed by the DB cluster.
|
1663
1722
|
# @option options [Integer] :promotion_tier
|
1664
1723
|
# A value that specifies the order in which an Aurora Replica is
|
1665
1724
|
# promoted to the primary instance after a failure of the existing
|
@@ -1687,13 +1746,16 @@ module Aws::RDS
|
|
1687
1746
|
# Services Identity and Access Management (IAM) accounts to database
|
1688
1747
|
# accounts. By default, mapping isn't enabled.
|
1689
1748
|
#
|
1690
|
-
# This setting doesn't apply to RDS Custom or Amazon Aurora. In Aurora,
|
1691
|
-
# mapping Amazon Web Services IAM accounts to database accounts is
|
1692
|
-
# managed by the DB cluster.
|
1693
|
-
#
|
1694
1749
|
# For more information, see [ IAM Database Authentication for MySQL and
|
1695
1750
|
# PostgreSQL][1] in the *Amazon RDS User Guide*.
|
1696
1751
|
#
|
1752
|
+
# This setting doesn't apply to RDS Custom.
|
1753
|
+
#
|
1754
|
+
# **Amazon Aurora**
|
1755
|
+
#
|
1756
|
+
# Not applicable. Mapping Amazon Web Services IAM accounts to database
|
1757
|
+
# accounts is managed by the DB cluster.
|
1758
|
+
#
|
1697
1759
|
#
|
1698
1760
|
#
|
1699
1761
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
@@ -1721,8 +1783,27 @@ module Aws::RDS
|
|
1721
1783
|
#
|
1722
1784
|
# This setting doesn't apply to RDS Custom.
|
1723
1785
|
# @option options [Integer] :performance_insights_retention_period
|
1724
|
-
# The
|
1725
|
-
#
|
1786
|
+
# The number of days to retain Performance Insights data. The default is
|
1787
|
+
# 7 days. The following values are valid:
|
1788
|
+
#
|
1789
|
+
# * 7
|
1790
|
+
#
|
1791
|
+
# * *month* * 31, where *month* is a number of months from 1-23
|
1792
|
+
#
|
1793
|
+
# * 731
|
1794
|
+
#
|
1795
|
+
# For example, the following values are valid:
|
1796
|
+
#
|
1797
|
+
# * 93 (3 months * 31)
|
1798
|
+
#
|
1799
|
+
# * 341 (11 months * 31)
|
1800
|
+
#
|
1801
|
+
# * 589 (19 months * 31)
|
1802
|
+
#
|
1803
|
+
# * 731
|
1804
|
+
#
|
1805
|
+
# If you specify a retention period such as 94, which isn't a valid
|
1806
|
+
# value, RDS issues an error.
|
1726
1807
|
#
|
1727
1808
|
# This setting doesn't apply to RDS Custom.
|
1728
1809
|
# @option options [Array<String>] :enable_cloudwatch_logs_exports
|
@@ -1768,6 +1849,10 @@ module Aws::RDS
|
|
1768
1849
|
# instance class of the DB instance.
|
1769
1850
|
#
|
1770
1851
|
# This setting doesn't apply to RDS Custom.
|
1852
|
+
#
|
1853
|
+
# **Amazon Aurora**
|
1854
|
+
#
|
1855
|
+
# Not applicable.
|
1771
1856
|
# @option options [Boolean] :deletion_protection
|
1772
1857
|
# A value that indicates whether the DB instance has deletion protection
|
1773
1858
|
# enabled. The database can't be deleted when deletion protection is
|
@@ -1794,6 +1879,10 @@ module Aws::RDS
|
|
1794
1879
|
#
|
1795
1880
|
# This setting doesn't apply to RDS Custom.
|
1796
1881
|
#
|
1882
|
+
# **Amazon Aurora**
|
1883
|
+
#
|
1884
|
+
# Not applicable. Storage is managed by the DB cluster.
|
1885
|
+
#
|
1797
1886
|
#
|
1798
1887
|
#
|
1799
1888
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
@@ -1998,7 +2087,7 @@ module Aws::RDS
|
|
1998
2087
|
# specified DB engine for a cross-Region read replica.
|
1999
2088
|
#
|
2000
2089
|
# Specifying a parameter group for this operation is only supported for
|
2001
|
-
# Oracle DB instances. It isn't supported for RDS Custom.
|
2090
|
+
# MySQL and Oracle DB instances. It isn't supported for RDS Custom.
|
2002
2091
|
#
|
2003
2092
|
# Constraints:
|
2004
2093
|
#
|
@@ -2127,9 +2216,16 @@ module Aws::RDS
|
|
2127
2216
|
# This setting doesn't apply to RDS Custom, which uses the same KMS key
|
2128
2217
|
# as the primary replica.
|
2129
2218
|
# @option options [String] :pre_signed_url
|
2130
|
-
#
|
2131
|
-
#
|
2132
|
-
#
|
2219
|
+
# When you are creating a read replica from one Amazon Web Services
|
2220
|
+
# GovCloud (US) Region to another or from one China Amazon Web Services
|
2221
|
+
# Region to another, the URL that contains a Signature Version 4 signed
|
2222
|
+
# request for the `CreateDBInstanceReadReplica` API operation in the
|
2223
|
+
# source Amazon Web Services Region that contains the source DB
|
2224
|
+
# instance.
|
2225
|
+
#
|
2226
|
+
# This setting applies only to Amazon Web Services GovCloud (US) Regions
|
2227
|
+
# and China Amazon Web Services Regions. It's ignored in other Amazon
|
2228
|
+
# Web Services Regions.
|
2133
2229
|
#
|
2134
2230
|
# You must specify this parameter when you create an encrypted read
|
2135
2231
|
# replica from another Amazon Web Services Region by using the Amazon
|
@@ -2137,32 +2233,31 @@ module Aws::RDS
|
|
2137
2233
|
# encrypted read replica in the same Amazon Web Services Region.
|
2138
2234
|
#
|
2139
2235
|
# The presigned URL must be a valid request for the
|
2140
|
-
# `CreateDBInstanceReadReplica` API
|
2141
|
-
#
|
2142
|
-
#
|
2236
|
+
# `CreateDBInstanceReadReplica` API operation that can run in the source
|
2237
|
+
# Amazon Web Services Region that contains the encrypted source DB
|
2238
|
+
# instance. The presigned URL request must contain the following
|
2143
2239
|
# parameter values:
|
2144
2240
|
#
|
2145
2241
|
# * `DestinationRegion` - The Amazon Web Services Region that the
|
2146
2242
|
# encrypted read replica is created in. This Amazon Web Services
|
2147
2243
|
# Region is the same one where the `CreateDBInstanceReadReplica`
|
2148
|
-
#
|
2244
|
+
# operation is called that contains this presigned URL.
|
2149
2245
|
#
|
2150
2246
|
# For example, if you create an encrypted DB instance in the us-west-1
|
2151
2247
|
# Amazon Web Services Region, from a source DB instance in the
|
2152
2248
|
# us-east-2 Amazon Web Services Region, then you call the
|
2153
|
-
# `CreateDBInstanceReadReplica`
|
2249
|
+
# `CreateDBInstanceReadReplica` operation in the us-east-1 Amazon Web
|
2154
2250
|
# Services Region and provide a presigned URL that contains a call to
|
2155
|
-
# the `CreateDBInstanceReadReplica`
|
2156
|
-
# Services Region. For this example, the `DestinationRegion` in
|
2157
|
-
# presigned URL must be set to the us-east-1 Amazon Web Services
|
2251
|
+
# the `CreateDBInstanceReadReplica` operation in the us-west-2 Amazon
|
2252
|
+
# Web Services Region. For this example, the `DestinationRegion` in
|
2253
|
+
# the presigned URL must be set to the us-east-1 Amazon Web Services
|
2158
2254
|
# Region.
|
2159
2255
|
#
|
2160
|
-
# * `KmsKeyId` - The
|
2161
|
-
#
|
2162
|
-
#
|
2163
|
-
#
|
2164
|
-
#
|
2165
|
-
# the presigned URL.
|
2256
|
+
# * `KmsKeyId` - The KMS key identifier for the key to use to encrypt
|
2257
|
+
# the read replica in the destination Amazon Web Services Region. This
|
2258
|
+
# is the same identifier for both the `CreateDBInstanceReadReplica`
|
2259
|
+
# operation that is called in the destination Amazon Web Services
|
2260
|
+
# Region, and the operation contained in the presigned URL.
|
2166
2261
|
#
|
2167
2262
|
# * `SourceDBInstanceIdentifier` - The DB instance identifier for the
|
2168
2263
|
# encrypted DB instance to be replicated. This identifier must be in
|
@@ -2181,11 +2276,10 @@ module Aws::RDS
|
|
2181
2276
|
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
2182
2277
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
2183
2278
|
# autogenerates a presigned URL that is a valid request for the
|
2184
|
-
# operation that can
|
2185
|
-
# Region.
|
2279
|
+
# operation that can run in the source Amazon Web Services Region.
|
2186
2280
|
#
|
2187
|
-
# `SourceRegion` isn't supported for SQL Server, because
|
2188
|
-
#
|
2281
|
+
# `SourceRegion` isn't supported for SQL Server, because Amazon RDS for
|
2282
|
+
# SQL Server doesn't support cross-Region read replicas.
|
2189
2283
|
#
|
2190
2284
|
# </note>
|
2191
2285
|
#
|
@@ -2235,8 +2329,27 @@ module Aws::RDS
|
|
2235
2329
|
#
|
2236
2330
|
# This setting doesn't apply to RDS Custom.
|
2237
2331
|
# @option options [Integer] :performance_insights_retention_period
|
2238
|
-
# The
|
2239
|
-
#
|
2332
|
+
# The number of days to retain Performance Insights data. The default is
|
2333
|
+
# 7 days. The following values are valid:
|
2334
|
+
#
|
2335
|
+
# * 7
|
2336
|
+
#
|
2337
|
+
# * *month* * 31, where *month* is a number of months from 1-23
|
2338
|
+
#
|
2339
|
+
# * 731
|
2340
|
+
#
|
2341
|
+
# For example, the following values are valid:
|
2342
|
+
#
|
2343
|
+
# * 93 (3 months * 31)
|
2344
|
+
#
|
2345
|
+
# * 341 (11 months * 31)
|
2346
|
+
#
|
2347
|
+
# * 589 (19 months * 31)
|
2348
|
+
#
|
2349
|
+
# * 731
|
2350
|
+
#
|
2351
|
+
# If you specify a retention period such as 94, which isn't a valid
|
2352
|
+
# value, RDS issues an error.
|
2240
2353
|
#
|
2241
2354
|
# This setting doesn't apply to RDS Custom.
|
2242
2355
|
# @option options [Array<String>] :enable_cloudwatch_logs_exports
|
@@ -2561,10 +2674,11 @@ module Aws::RDS
|
|
2561
2674
|
# `CreateDBInstance`.
|
2562
2675
|
# @option options [String] :db_instance_class
|
2563
2676
|
# The new compute and memory capacity of the DB instance, for example
|
2564
|
-
# db.
|
2677
|
+
# db.m5.large. Not all DB instance classes are available in all Amazon
|
2565
2678
|
# Web Services Regions, or for all database engines. For the full list
|
2566
2679
|
# of DB instance classes, and availability for your engine, see [DB
|
2567
|
-
#
|
2680
|
+
# instance classes][1] in the *Amazon RDS User Guide* or [Aurora DB
|
2681
|
+
# instance classes][2] in the *Amazon Aurora User Guide*.
|
2568
2682
|
#
|
2569
2683
|
# If you modify the DB instance class, an outage occurs during the
|
2570
2684
|
# change. The change is applied during the next maintenance window,
|
@@ -2577,6 +2691,7 @@ module Aws::RDS
|
|
2577
2691
|
#
|
2578
2692
|
#
|
2579
2693
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
2694
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html
|
2580
2695
|
# @option options [String] :db_subnet_group_name
|
2581
2696
|
# The new DB subnet group for the DB instance. You can use this
|
2582
2697
|
# parameter to move your DB instance to a different VPC. If your DB
|
@@ -2683,7 +2798,7 @@ module Aws::RDS
|
|
2683
2798
|
#
|
2684
2799
|
# Constraints: Must contain from 8 to 128 characters.
|
2685
2800
|
#
|
2686
|
-
# <note markdown="1"> Amazon RDS API
|
2801
|
+
# <note markdown="1"> Amazon RDS API operations never return the password, so this action
|
2687
2802
|
# provides a way to regain access to a primary instance user if the
|
2688
2803
|
# password is lost. This includes restoring privileges that might have
|
2689
2804
|
# been accidentally revoked.
|
@@ -2733,8 +2848,8 @@ module Aws::RDS
|
|
2733
2848
|
# Constraints:
|
2734
2849
|
#
|
2735
2850
|
# * It must be a value from 0 to 35. It can't be set to 0 if the DB
|
2736
|
-
# instance is a source to read replicas. It can't be set to 0
|
2737
|
-
#
|
2851
|
+
# instance is a source to read replicas. It can't be set to 0 for an
|
2852
|
+
# RDS Custom for Oracle DB instance.
|
2738
2853
|
#
|
2739
2854
|
# * It can be specified for a MySQL read replica only if the source is
|
2740
2855
|
# running MySQL 5.6 or later.
|
@@ -3122,7 +3237,7 @@ module Aws::RDS
|
|
3122
3237
|
# DB instance.
|
3123
3238
|
#
|
3124
3239
|
# For more information, see [Using Amazon Performance Insights][1] in
|
3125
|
-
# the *Amazon RDS User Guide
|
3240
|
+
# the *Amazon RDS User Guide*.
|
3126
3241
|
#
|
3127
3242
|
# This setting doesn't apply to RDS Custom.
|
3128
3243
|
#
|
@@ -3143,8 +3258,27 @@ module Aws::RDS
|
|
3143
3258
|
#
|
3144
3259
|
# This setting doesn't apply to RDS Custom.
|
3145
3260
|
# @option options [Integer] :performance_insights_retention_period
|
3146
|
-
# The
|
3147
|
-
#
|
3261
|
+
# The number of days to retain Performance Insights data. The default is
|
3262
|
+
# 7 days. The following values are valid:
|
3263
|
+
#
|
3264
|
+
# * 7
|
3265
|
+
#
|
3266
|
+
# * *month* * 31, where *month* is a number of months from 1-23
|
3267
|
+
#
|
3268
|
+
# * 731
|
3269
|
+
#
|
3270
|
+
# For example, the following values are valid:
|
3271
|
+
#
|
3272
|
+
# * 93 (3 months * 31)
|
3273
|
+
#
|
3274
|
+
# * 341 (11 months * 31)
|
3275
|
+
#
|
3276
|
+
# * 589 (19 months * 31)
|
3277
|
+
#
|
3278
|
+
# * 731
|
3279
|
+
#
|
3280
|
+
# If you specify a retention period such as 94, which isn't a valid
|
3281
|
+
# value, RDS issues an error.
|
3148
3282
|
#
|
3149
3283
|
# This setting doesn't apply to RDS Custom.
|
3150
3284
|
# @option options [Types::CloudwatchLogsExportConfiguration] :cloudwatch_logs_export_configuration
|
@@ -4107,9 +4241,8 @@ module Aws::RDS
|
|
4107
4241
|
# })
|
4108
4242
|
# @param [Hash] options ({})
|
4109
4243
|
# @option options [String] :db_snapshot_identifier
|
4110
|
-
# A specific DB snapshot identifier to describe. This
|
4111
|
-
#
|
4112
|
-
# stored as a lowercase string.
|
4244
|
+
# A specific DB snapshot identifier to describe. This value is stored as
|
4245
|
+
# a lowercase string.
|
4113
4246
|
#
|
4114
4247
|
# Constraints:
|
4115
4248
|
#
|
@@ -478,39 +478,46 @@ module Aws::RDS
|
|
478
478
|
# A value that indicates whether to copy all tags from the source DB
|
479
479
|
# snapshot to the target DB snapshot. By default, tags are not copied.
|
480
480
|
# @option options [String] :pre_signed_url
|
481
|
-
#
|
482
|
-
#
|
483
|
-
#
|
481
|
+
# When you are copying a snapshot from one Amazon Web Services GovCloud
|
482
|
+
# (US) Region to another, the URL that contains a Signature Version 4
|
483
|
+
# signed request for the `CopyDBSnapshot` API operation in the source
|
484
|
+
# Amazon Web Services Region that contains the source DB snapshot to
|
485
|
+
# copy.
|
486
|
+
#
|
487
|
+
# This setting applies only to Amazon Web Services GovCloud (US)
|
488
|
+
# Regions. It's ignored in other Amazon Web Services Regions.
|
484
489
|
#
|
485
490
|
# You must specify this parameter when you copy an encrypted DB snapshot
|
486
491
|
# from another Amazon Web Services Region by using the Amazon RDS API.
|
487
492
|
# Don't specify `PreSignedUrl` when you are copying an encrypted DB
|
488
493
|
# snapshot in the same Amazon Web Services Region.
|
489
494
|
#
|
490
|
-
# The presigned URL must be a valid request for the
|
491
|
-
#
|
492
|
-
# that contains the encrypted DB
|
493
|
-
# URL request must contain the following
|
495
|
+
# The presigned URL must be a valid request for the
|
496
|
+
# `CopyDBClusterSnapshot` API operation that can run in the source
|
497
|
+
# Amazon Web Services Region that contains the encrypted DB cluster
|
498
|
+
# snapshot to copy. The presigned URL request must contain the following
|
499
|
+
# parameter values:
|
494
500
|
#
|
495
501
|
# * `DestinationRegion` - The Amazon Web Services Region that the
|
496
502
|
# encrypted DB snapshot is copied to. This Amazon Web Services Region
|
497
|
-
# is the same one where the `CopyDBSnapshot`
|
503
|
+
# is the same one where the `CopyDBSnapshot` operation is called that
|
498
504
|
# contains this presigned URL.
|
499
505
|
#
|
500
506
|
# For example, if you copy an encrypted DB snapshot from the us-west-2
|
501
507
|
# Amazon Web Services Region to the us-east-1 Amazon Web Services
|
502
|
-
# Region, then you call the `CopyDBSnapshot`
|
503
|
-
# Amazon Web Services Region and provide a presigned URL
|
504
|
-
# a call to the `CopyDBSnapshot`
|
505
|
-
# Services Region. For this example, the
|
506
|
-
# presigned URL must be set to the
|
507
|
-
# Region.
|
508
|
-
#
|
509
|
-
# * `KmsKeyId` - The
|
510
|
-
#
|
511
|
-
#
|
512
|
-
# `CopyDBSnapshot`
|
513
|
-
# Services Region, and the
|
508
|
+
# Region, then you call the `CopyDBSnapshot` operation in the
|
509
|
+
# us-east-1 Amazon Web Services Region and provide a presigned URL
|
510
|
+
# that contains a call to the `CopyDBSnapshot` operation in the
|
511
|
+
# us-west-2 Amazon Web Services Region. For this example, the
|
512
|
+
# `DestinationRegion` in the presigned URL must be set to the
|
513
|
+
# us-east-1 Amazon Web Services Region.
|
514
|
+
#
|
515
|
+
# * `KmsKeyId` - The KMS key identifier for the KMS key to use to
|
516
|
+
# encrypt the copy of the DB snapshot in the destination Amazon Web
|
517
|
+
# Services Region. This is the same identifier for both the
|
518
|
+
# `CopyDBSnapshot` operation that is called in the destination Amazon
|
519
|
+
# Web Services Region, and the operation contained in the presigned
|
520
|
+
# URL.
|
514
521
|
#
|
515
522
|
# * `SourceDBSnapshotIdentifier` - The DB snapshot identifier for the
|
516
523
|
# encrypted snapshot to be copied. This identifier must be in the
|
@@ -527,9 +534,8 @@ module Aws::RDS
|
|
527
534
|
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
528
535
|
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
529
536
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
530
|
-
# autogenerates a
|
531
|
-
# operation that can
|
532
|
-
# Region.
|
537
|
+
# autogenerates a presigned URL that is a valid request for the
|
538
|
+
# operation that can run in the source Amazon Web Services Region.
|
533
539
|
#
|
534
540
|
# </note>
|
535
541
|
#
|