aws-sdk-rds 1.148.0 → 1.149.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +416 -240
- 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 +175 -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 +410 -168
- 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]
|
@@ -1119,14 +1135,16 @@ module Aws::RDS
|
|
1119
1135
|
# * Web and Express editions: Must be an integer from 20 to 1024.
|
1120
1136
|
# @option options [required, String] :db_instance_class
|
1121
1137
|
# The compute and memory capacity of the DB instance, for example
|
1122
|
-
# db.
|
1138
|
+
# db.m5.large. Not all DB instance classes are available in all Amazon
|
1123
1139
|
# Web Services Regions, or for all database engines. For the full list
|
1124
1140
|
# of DB instance classes, and availability for your engine, see [DB
|
1125
|
-
#
|
1141
|
+
# instance classes][1] in the *Amazon RDS User Guide* or [Aurora DB
|
1142
|
+
# instance classes][2] in the *Amazon Aurora User Guide*.
|
1126
1143
|
#
|
1127
1144
|
#
|
1128
1145
|
#
|
1129
1146
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
1147
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html
|
1130
1148
|
# @option options [required, String] :engine
|
1131
1149
|
# The name of the database engine to be used for this instance.
|
1132
1150
|
#
|
@@ -1221,7 +1239,9 @@ module Aws::RDS
|
|
1221
1239
|
# @option options [Array<String>] :db_security_groups
|
1222
1240
|
# A list of DB security groups to associate with this DB instance.
|
1223
1241
|
#
|
1224
|
-
#
|
1242
|
+
# This setting applies to the legacy EC2-Classic platform, which is no
|
1243
|
+
# longer used to create new DB instances. Use the `VpcSecurityGroupIds`
|
1244
|
+
# setting instead.
|
1225
1245
|
# @option options [Array<String>] :vpc_security_group_ids
|
1226
1246
|
# A list of Amazon EC2 VPC security groups to associate with this DB
|
1227
1247
|
# instance.
|
@@ -1315,7 +1335,7 @@ module Aws::RDS
|
|
1315
1335
|
#
|
1316
1336
|
# * Can't be set to 0 if the DB instance is a source to read replicas
|
1317
1337
|
#
|
1318
|
-
# * Can't be set to 0
|
1338
|
+
# * Can't be set to 0 for an RDS Custom for Oracle DB instance
|
1319
1339
|
# @option options [String] :preferred_backup_window
|
1320
1340
|
# The daily time range during which automated backups are created if
|
1321
1341
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
@@ -1394,11 +1414,16 @@ module Aws::RDS
|
|
1394
1414
|
# instance is a Multi-AZ deployment.
|
1395
1415
|
#
|
1396
1416
|
# This setting doesn't apply to RDS Custom.
|
1417
|
+
#
|
1418
|
+
# **Amazon Aurora**
|
1419
|
+
#
|
1420
|
+
# Not applicable. DB instance Availability Zones (AZs) are managed by
|
1421
|
+
# the DB cluster.
|
1397
1422
|
# @option options [String] :engine_version
|
1398
1423
|
# The version number of the database engine to use.
|
1399
1424
|
#
|
1400
1425
|
# For a list of valid engine versions, use the
|
1401
|
-
# `DescribeDBEngineVersions`
|
1426
|
+
# `DescribeDBEngineVersions` operation.
|
1402
1427
|
#
|
1403
1428
|
# The following are the database engines and links to information about
|
1404
1429
|
# the major and minor versions that are available with Amazon RDS. Not
|
@@ -1471,6 +1496,10 @@ module Aws::RDS
|
|
1471
1496
|
# `general-public-license`
|
1472
1497
|
#
|
1473
1498
|
# This setting doesn't apply to RDS Custom.
|
1499
|
+
#
|
1500
|
+
# **Amazon Aurora**
|
1501
|
+
#
|
1502
|
+
# Not applicable.
|
1474
1503
|
# @option options [Integer] :iops
|
1475
1504
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
1476
1505
|
# be initially allocated for the DB instance. For information about
|
@@ -1482,6 +1511,10 @@ module Aws::RDS
|
|
1482
1511
|
# instance. For SQL Server DB instances, must be a multiple between 1
|
1483
1512
|
# and 50 of the storage amount for the DB instance.
|
1484
1513
|
#
|
1514
|
+
# **Amazon Aurora**
|
1515
|
+
#
|
1516
|
+
# Not applicable. Storage is managed by the DB cluster.
|
1517
|
+
#
|
1485
1518
|
#
|
1486
1519
|
#
|
1487
1520
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
@@ -1495,6 +1528,10 @@ module Aws::RDS
|
|
1495
1528
|
# instance.
|
1496
1529
|
#
|
1497
1530
|
# This setting doesn't apply to RDS Custom.
|
1531
|
+
#
|
1532
|
+
# **Amazon Aurora**
|
1533
|
+
#
|
1534
|
+
# Not applicable.
|
1498
1535
|
# @option options [String] :character_set_name
|
1499
1536
|
# For supported engines, this value indicates that the DB instance
|
1500
1537
|
# should be associated with the specified `CharacterSet`.
|
@@ -1559,11 +1596,19 @@ module Aws::RDS
|
|
1559
1596
|
# parameter.
|
1560
1597
|
#
|
1561
1598
|
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
1599
|
+
#
|
1600
|
+
# **Amazon Aurora**
|
1601
|
+
#
|
1602
|
+
# Not applicable. Storage is managed by the DB cluster.
|
1562
1603
|
# @option options [String] :tde_credential_arn
|
1563
1604
|
# The ARN from the key store with which to associate the instance for
|
1564
1605
|
# TDE encryption.
|
1565
1606
|
#
|
1566
1607
|
# This setting doesn't apply to RDS Custom.
|
1608
|
+
#
|
1609
|
+
# **Amazon Aurora**
|
1610
|
+
#
|
1611
|
+
# Not applicable.
|
1567
1612
|
# @option options [String] :tde_credential_password
|
1568
1613
|
# The password for the given ARN from the key store in order to access
|
1569
1614
|
# the device.
|
@@ -1617,6 +1662,10 @@ module Aws::RDS
|
|
1617
1662
|
#
|
1618
1663
|
# This setting doesn't apply to RDS Custom.
|
1619
1664
|
#
|
1665
|
+
# **Amazon Aurora**
|
1666
|
+
#
|
1667
|
+
# Not applicable. The domain is managed by the DB cluster.
|
1668
|
+
#
|
1620
1669
|
#
|
1621
1670
|
#
|
1622
1671
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
@@ -1660,6 +1709,10 @@ module Aws::RDS
|
|
1660
1709
|
# the Directory Service.
|
1661
1710
|
#
|
1662
1711
|
# This setting doesn't apply to RDS Custom.
|
1712
|
+
#
|
1713
|
+
# **Amazon Aurora**
|
1714
|
+
#
|
1715
|
+
# Not applicable. The domain is managed by the DB cluster.
|
1663
1716
|
# @option options [Integer] :promotion_tier
|
1664
1717
|
# A value that specifies the order in which an Aurora Replica is
|
1665
1718
|
# promoted to the primary instance after a failure of the existing
|
@@ -1687,13 +1740,16 @@ module Aws::RDS
|
|
1687
1740
|
# Services Identity and Access Management (IAM) accounts to database
|
1688
1741
|
# accounts. By default, mapping isn't enabled.
|
1689
1742
|
#
|
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
1743
|
# For more information, see [ IAM Database Authentication for MySQL and
|
1695
1744
|
# PostgreSQL][1] in the *Amazon RDS User Guide*.
|
1696
1745
|
#
|
1746
|
+
# This setting doesn't apply to RDS Custom.
|
1747
|
+
#
|
1748
|
+
# **Amazon Aurora**
|
1749
|
+
#
|
1750
|
+
# Not applicable. Mapping Amazon Web Services IAM accounts to database
|
1751
|
+
# accounts is managed by the DB cluster.
|
1752
|
+
#
|
1697
1753
|
#
|
1698
1754
|
#
|
1699
1755
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
@@ -1721,8 +1777,27 @@ module Aws::RDS
|
|
1721
1777
|
#
|
1722
1778
|
# This setting doesn't apply to RDS Custom.
|
1723
1779
|
# @option options [Integer] :performance_insights_retention_period
|
1724
|
-
# The
|
1725
|
-
#
|
1780
|
+
# The number of days to retain Performance Insights data. The default is
|
1781
|
+
# 7 days. The following values are valid:
|
1782
|
+
#
|
1783
|
+
# * 7
|
1784
|
+
#
|
1785
|
+
# * *month* * 31, where *month* is a number of months from 1-23
|
1786
|
+
#
|
1787
|
+
# * 731
|
1788
|
+
#
|
1789
|
+
# For example, the following values are valid:
|
1790
|
+
#
|
1791
|
+
# * 93 (3 months * 31)
|
1792
|
+
#
|
1793
|
+
# * 341 (11 months * 31)
|
1794
|
+
#
|
1795
|
+
# * 589 (19 months * 31)
|
1796
|
+
#
|
1797
|
+
# * 731
|
1798
|
+
#
|
1799
|
+
# If you specify a retention period such as 94, which isn't a valid
|
1800
|
+
# value, RDS issues an error.
|
1726
1801
|
#
|
1727
1802
|
# This setting doesn't apply to RDS Custom.
|
1728
1803
|
# @option options [Array<String>] :enable_cloudwatch_logs_exports
|
@@ -1768,6 +1843,10 @@ module Aws::RDS
|
|
1768
1843
|
# instance class of the DB instance.
|
1769
1844
|
#
|
1770
1845
|
# This setting doesn't apply to RDS Custom.
|
1846
|
+
#
|
1847
|
+
# **Amazon Aurora**
|
1848
|
+
#
|
1849
|
+
# Not applicable.
|
1771
1850
|
# @option options [Boolean] :deletion_protection
|
1772
1851
|
# A value that indicates whether the DB instance has deletion protection
|
1773
1852
|
# enabled. The database can't be deleted when deletion protection is
|
@@ -1794,6 +1873,10 @@ module Aws::RDS
|
|
1794
1873
|
#
|
1795
1874
|
# This setting doesn't apply to RDS Custom.
|
1796
1875
|
#
|
1876
|
+
# **Amazon Aurora**
|
1877
|
+
#
|
1878
|
+
# Not applicable. Storage is managed by the DB cluster.
|
1879
|
+
#
|
1797
1880
|
#
|
1798
1881
|
#
|
1799
1882
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
@@ -1998,7 +2081,7 @@ module Aws::RDS
|
|
1998
2081
|
# specified DB engine for a cross-Region read replica.
|
1999
2082
|
#
|
2000
2083
|
# Specifying a parameter group for this operation is only supported for
|
2001
|
-
# Oracle DB instances. It isn't supported for RDS Custom.
|
2084
|
+
# MySQL and Oracle DB instances. It isn't supported for RDS Custom.
|
2002
2085
|
#
|
2003
2086
|
# Constraints:
|
2004
2087
|
#
|
@@ -2127,9 +2210,16 @@ module Aws::RDS
|
|
2127
2210
|
# This setting doesn't apply to RDS Custom, which uses the same KMS key
|
2128
2211
|
# as the primary replica.
|
2129
2212
|
# @option options [String] :pre_signed_url
|
2130
|
-
#
|
2131
|
-
#
|
2132
|
-
#
|
2213
|
+
# When you are creating a read replica from one Amazon Web Services
|
2214
|
+
# GovCloud (US) Region to another or from one China Amazon Web Services
|
2215
|
+
# Region to another, the URL that contains a Signature Version 4 signed
|
2216
|
+
# request for the `CreateDBInstanceReadReplica` API operation in the
|
2217
|
+
# source Amazon Web Services Region that contains the source DB
|
2218
|
+
# instance.
|
2219
|
+
#
|
2220
|
+
# This setting applies only to Amazon Web Services GovCloud (US) Regions
|
2221
|
+
# and China Amazon Web Services Regions. It's ignored in other Amazon
|
2222
|
+
# Web Services Regions.
|
2133
2223
|
#
|
2134
2224
|
# You must specify this parameter when you create an encrypted read
|
2135
2225
|
# replica from another Amazon Web Services Region by using the Amazon
|
@@ -2137,32 +2227,31 @@ module Aws::RDS
|
|
2137
2227
|
# encrypted read replica in the same Amazon Web Services Region.
|
2138
2228
|
#
|
2139
2229
|
# The presigned URL must be a valid request for the
|
2140
|
-
# `CreateDBInstanceReadReplica` API
|
2141
|
-
#
|
2142
|
-
#
|
2230
|
+
# `CreateDBInstanceReadReplica` API operation that can run in the source
|
2231
|
+
# Amazon Web Services Region that contains the encrypted source DB
|
2232
|
+
# instance. The presigned URL request must contain the following
|
2143
2233
|
# parameter values:
|
2144
2234
|
#
|
2145
2235
|
# * `DestinationRegion` - The Amazon Web Services Region that the
|
2146
2236
|
# encrypted read replica is created in. This Amazon Web Services
|
2147
2237
|
# Region is the same one where the `CreateDBInstanceReadReplica`
|
2148
|
-
#
|
2238
|
+
# operation is called that contains this presigned URL.
|
2149
2239
|
#
|
2150
2240
|
# For example, if you create an encrypted DB instance in the us-west-1
|
2151
2241
|
# Amazon Web Services Region, from a source DB instance in the
|
2152
2242
|
# us-east-2 Amazon Web Services Region, then you call the
|
2153
|
-
# `CreateDBInstanceReadReplica`
|
2243
|
+
# `CreateDBInstanceReadReplica` operation in the us-east-1 Amazon Web
|
2154
2244
|
# 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
|
2245
|
+
# the `CreateDBInstanceReadReplica` operation in the us-west-2 Amazon
|
2246
|
+
# Web Services Region. For this example, the `DestinationRegion` in
|
2247
|
+
# the presigned URL must be set to the us-east-1 Amazon Web Services
|
2158
2248
|
# Region.
|
2159
2249
|
#
|
2160
|
-
# * `KmsKeyId` - The
|
2161
|
-
#
|
2162
|
-
#
|
2163
|
-
#
|
2164
|
-
#
|
2165
|
-
# the presigned URL.
|
2250
|
+
# * `KmsKeyId` - The KMS key identifier for the key to use to encrypt
|
2251
|
+
# the read replica in the destination Amazon Web Services Region. This
|
2252
|
+
# is the same identifier for both the `CreateDBInstanceReadReplica`
|
2253
|
+
# operation that is called in the destination Amazon Web Services
|
2254
|
+
# Region, and the operation contained in the presigned URL.
|
2166
2255
|
#
|
2167
2256
|
# * `SourceDBInstanceIdentifier` - The DB instance identifier for the
|
2168
2257
|
# encrypted DB instance to be replicated. This identifier must be in
|
@@ -2181,11 +2270,10 @@ module Aws::RDS
|
|
2181
2270
|
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
2182
2271
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
2183
2272
|
# autogenerates a presigned URL that is a valid request for the
|
2184
|
-
# operation that can
|
2185
|
-
# Region.
|
2273
|
+
# operation that can run in the source Amazon Web Services Region.
|
2186
2274
|
#
|
2187
|
-
# `SourceRegion` isn't supported for SQL Server, because
|
2188
|
-
#
|
2275
|
+
# `SourceRegion` isn't supported for SQL Server, because Amazon RDS for
|
2276
|
+
# SQL Server doesn't support cross-Region read replicas.
|
2189
2277
|
#
|
2190
2278
|
# </note>
|
2191
2279
|
#
|
@@ -2235,8 +2323,27 @@ module Aws::RDS
|
|
2235
2323
|
#
|
2236
2324
|
# This setting doesn't apply to RDS Custom.
|
2237
2325
|
# @option options [Integer] :performance_insights_retention_period
|
2238
|
-
# The
|
2239
|
-
#
|
2326
|
+
# The number of days to retain Performance Insights data. The default is
|
2327
|
+
# 7 days. The following values are valid:
|
2328
|
+
#
|
2329
|
+
# * 7
|
2330
|
+
#
|
2331
|
+
# * *month* * 31, where *month* is a number of months from 1-23
|
2332
|
+
#
|
2333
|
+
# * 731
|
2334
|
+
#
|
2335
|
+
# For example, the following values are valid:
|
2336
|
+
#
|
2337
|
+
# * 93 (3 months * 31)
|
2338
|
+
#
|
2339
|
+
# * 341 (11 months * 31)
|
2340
|
+
#
|
2341
|
+
# * 589 (19 months * 31)
|
2342
|
+
#
|
2343
|
+
# * 731
|
2344
|
+
#
|
2345
|
+
# If you specify a retention period such as 94, which isn't a valid
|
2346
|
+
# value, RDS issues an error.
|
2240
2347
|
#
|
2241
2348
|
# This setting doesn't apply to RDS Custom.
|
2242
2349
|
# @option options [Array<String>] :enable_cloudwatch_logs_exports
|
@@ -2561,10 +2668,11 @@ module Aws::RDS
|
|
2561
2668
|
# `CreateDBInstance`.
|
2562
2669
|
# @option options [String] :db_instance_class
|
2563
2670
|
# The new compute and memory capacity of the DB instance, for example
|
2564
|
-
# db.
|
2671
|
+
# db.m5.large. Not all DB instance classes are available in all Amazon
|
2565
2672
|
# Web Services Regions, or for all database engines. For the full list
|
2566
2673
|
# of DB instance classes, and availability for your engine, see [DB
|
2567
|
-
#
|
2674
|
+
# instance classes][1] in the *Amazon RDS User Guide* or [Aurora DB
|
2675
|
+
# instance classes][2] in the *Amazon Aurora User Guide*.
|
2568
2676
|
#
|
2569
2677
|
# If you modify the DB instance class, an outage occurs during the
|
2570
2678
|
# change. The change is applied during the next maintenance window,
|
@@ -2577,6 +2685,7 @@ module Aws::RDS
|
|
2577
2685
|
#
|
2578
2686
|
#
|
2579
2687
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
2688
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html
|
2580
2689
|
# @option options [String] :db_subnet_group_name
|
2581
2690
|
# The new DB subnet group for the DB instance. You can use this
|
2582
2691
|
# parameter to move your DB instance to a different VPC. If your DB
|
@@ -2683,7 +2792,7 @@ module Aws::RDS
|
|
2683
2792
|
#
|
2684
2793
|
# Constraints: Must contain from 8 to 128 characters.
|
2685
2794
|
#
|
2686
|
-
# <note markdown="1"> Amazon RDS API
|
2795
|
+
# <note markdown="1"> Amazon RDS API operations never return the password, so this action
|
2687
2796
|
# provides a way to regain access to a primary instance user if the
|
2688
2797
|
# password is lost. This includes restoring privileges that might have
|
2689
2798
|
# been accidentally revoked.
|
@@ -2733,8 +2842,8 @@ module Aws::RDS
|
|
2733
2842
|
# Constraints:
|
2734
2843
|
#
|
2735
2844
|
# * 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
|
-
#
|
2845
|
+
# instance is a source to read replicas. It can't be set to 0 for an
|
2846
|
+
# RDS Custom for Oracle DB instance.
|
2738
2847
|
#
|
2739
2848
|
# * It can be specified for a MySQL read replica only if the source is
|
2740
2849
|
# running MySQL 5.6 or later.
|
@@ -3122,7 +3231,7 @@ module Aws::RDS
|
|
3122
3231
|
# DB instance.
|
3123
3232
|
#
|
3124
3233
|
# For more information, see [Using Amazon Performance Insights][1] in
|
3125
|
-
# the *Amazon RDS User Guide
|
3234
|
+
# the *Amazon RDS User Guide*.
|
3126
3235
|
#
|
3127
3236
|
# This setting doesn't apply to RDS Custom.
|
3128
3237
|
#
|
@@ -3143,8 +3252,27 @@ module Aws::RDS
|
|
3143
3252
|
#
|
3144
3253
|
# This setting doesn't apply to RDS Custom.
|
3145
3254
|
# @option options [Integer] :performance_insights_retention_period
|
3146
|
-
# The
|
3147
|
-
#
|
3255
|
+
# The number of days to retain Performance Insights data. The default is
|
3256
|
+
# 7 days. The following values are valid:
|
3257
|
+
#
|
3258
|
+
# * 7
|
3259
|
+
#
|
3260
|
+
# * *month* * 31, where *month* is a number of months from 1-23
|
3261
|
+
#
|
3262
|
+
# * 731
|
3263
|
+
#
|
3264
|
+
# For example, the following values are valid:
|
3265
|
+
#
|
3266
|
+
# * 93 (3 months * 31)
|
3267
|
+
#
|
3268
|
+
# * 341 (11 months * 31)
|
3269
|
+
#
|
3270
|
+
# * 589 (19 months * 31)
|
3271
|
+
#
|
3272
|
+
# * 731
|
3273
|
+
#
|
3274
|
+
# If you specify a retention period such as 94, which isn't a valid
|
3275
|
+
# value, RDS issues an error.
|
3148
3276
|
#
|
3149
3277
|
# This setting doesn't apply to RDS Custom.
|
3150
3278
|
# @option options [Types::CloudwatchLogsExportConfiguration] :cloudwatch_logs_export_configuration
|
@@ -4107,9 +4235,8 @@ module Aws::RDS
|
|
4107
4235
|
# })
|
4108
4236
|
# @param [Hash] options ({})
|
4109
4237
|
# @option options [String] :db_snapshot_identifier
|
4110
|
-
# A specific DB snapshot identifier to describe. This
|
4111
|
-
#
|
4112
|
-
# stored as a lowercase string.
|
4238
|
+
# A specific DB snapshot identifier to describe. This value is stored as
|
4239
|
+
# a lowercase string.
|
4113
4240
|
#
|
4114
4241
|
# Constraints:
|
4115
4242
|
#
|
@@ -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
|
#
|