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
@@ -163,9 +163,9 @@ module Aws::RDS
|
|
163
163
|
data[:preferred_maintenance_window]
|
164
164
|
end
|
165
165
|
|
166
|
-
#
|
167
|
-
# only included when changes are pending. Specific
|
168
|
-
# identified by subelements.
|
166
|
+
# A value that specifies that changes to the DB instance are pending.
|
167
|
+
# This element is only included when changes are pending. Specific
|
168
|
+
# changes are identified by subelements.
|
169
169
|
# @return [Types::PendingModifiedValues]
|
170
170
|
def pending_modified_values
|
171
171
|
data[:pending_modified_values]
|
@@ -190,7 +190,8 @@ module Aws::RDS
|
|
190
190
|
data[:engine_version]
|
191
191
|
end
|
192
192
|
|
193
|
-
#
|
193
|
+
# A value that indicates that minor version patches are applied
|
194
|
+
# automatically.
|
194
195
|
# @return [Boolean]
|
195
196
|
def auto_minor_version_upgrade
|
196
197
|
data[:auto_minor_version_upgrade]
|
@@ -341,6 +342,9 @@ module Aws::RDS
|
|
341
342
|
|
342
343
|
# If `StorageEncrypted` is true, the AWS KMS key identifier for the
|
343
344
|
# encrypted DB instance.
|
345
|
+
#
|
346
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
347
|
+
# name for the AWS KMS customer master key (CMK).
|
344
348
|
# @return [String]
|
345
349
|
def kms_key_id
|
346
350
|
data[:kms_key_id]
|
@@ -348,7 +352,7 @@ module Aws::RDS
|
|
348
352
|
|
349
353
|
# The AWS Region-unique, immutable identifier for the DB instance. This
|
350
354
|
# identifier is found in AWS CloudTrail log entries whenever the AWS KMS
|
351
|
-
# key for the DB instance is accessed.
|
355
|
+
# customer master key (CMK) for the DB instance is accessed.
|
352
356
|
# @return [String]
|
353
357
|
def dbi_resource_id
|
354
358
|
data[:dbi_resource_id]
|
@@ -454,8 +458,10 @@ module Aws::RDS
|
|
454
458
|
end
|
455
459
|
|
456
460
|
# The AWS KMS key identifier for encryption of Performance Insights
|
457
|
-
# data.
|
458
|
-
#
|
461
|
+
# data.
|
462
|
+
#
|
463
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
464
|
+
# name for the AWS KMS customer master key (CMK).
|
459
465
|
# @return [String]
|
460
466
|
def performance_insights_kms_key_id
|
461
467
|
data[:performance_insights_kms_key_id]
|
@@ -533,6 +539,37 @@ module Aws::RDS
|
|
533
539
|
data[:tag_list]
|
534
540
|
end
|
535
541
|
|
542
|
+
# The list of replicated automated backups associated with the DB
|
543
|
+
# instance.
|
544
|
+
# @return [Array<Types::DBInstanceAutomatedBackupsReplication>]
|
545
|
+
def db_instance_automated_backups_replications
|
546
|
+
data[:db_instance_automated_backups_replications]
|
547
|
+
end
|
548
|
+
|
549
|
+
# Specifies whether a customer-owned IP address (CoIP) is enabled for an
|
550
|
+
# RDS on Outposts DB instance.
|
551
|
+
#
|
552
|
+
# A <i>CoIP </i>provides local or external connectivity to resources in
|
553
|
+
# your Outpost subnets through your on-premises network. For some use
|
554
|
+
# cases, a CoIP can provide lower latency for connections to the DB
|
555
|
+
# instance from outside of its virtual private cloud (VPC) on your local
|
556
|
+
# network.
|
557
|
+
#
|
558
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
559
|
+
# RDS on AWS Outposts][1] in the *Amazon RDS User Guide*.
|
560
|
+
#
|
561
|
+
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
562
|
+
# in the *AWS Outposts User Guide*.
|
563
|
+
#
|
564
|
+
#
|
565
|
+
#
|
566
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
567
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
568
|
+
# @return [Boolean]
|
569
|
+
def customer_owned_ip_enabled
|
570
|
+
data[:customer_owned_ip_enabled]
|
571
|
+
end
|
572
|
+
|
536
573
|
# @!endgroup
|
537
574
|
|
538
575
|
# @return [Client]
|
@@ -726,6 +763,7 @@ module Aws::RDS
|
|
726
763
|
# ],
|
727
764
|
# deletion_protection: false,
|
728
765
|
# max_allocated_storage: 1,
|
766
|
+
# enable_customer_owned_ip: false,
|
729
767
|
# })
|
730
768
|
# @param [Hash] options ({})
|
731
769
|
# @option options [String] :db_name
|
@@ -765,7 +803,7 @@ module Aws::RDS
|
|
765
803
|
# **PostgreSQL**
|
766
804
|
#
|
767
805
|
# The name of the database to create when the DB instance is created. If
|
768
|
-
# this parameter isn't specified,
|
806
|
+
# this parameter isn't specified, a database named `postgres` is
|
769
807
|
# created in the DB instance.
|
770
808
|
#
|
771
809
|
# Constraints:
|
@@ -795,17 +833,34 @@ module Aws::RDS
|
|
795
833
|
#
|
796
834
|
# Not applicable. Must be null.
|
797
835
|
#
|
798
|
-
# **Amazon Aurora**
|
836
|
+
# **Amazon Aurora MySQL**
|
799
837
|
#
|
800
|
-
# The name of the database to create when the primary instance of the
|
801
|
-
# cluster is created. If this parameter isn't specified
|
802
|
-
# created in the DB
|
838
|
+
# The name of the database to create when the primary DB instance of the
|
839
|
+
# Aurora MySQL DB cluster is created. If this parameter isn't specified
|
840
|
+
# for an Aurora MySQL DB cluster, no database is created in the DB
|
841
|
+
# cluster.
|
803
842
|
#
|
804
843
|
# Constraints:
|
805
844
|
#
|
806
|
-
# *
|
845
|
+
# * It must contain 1 to 64 alphanumeric characters.
|
807
846
|
#
|
808
|
-
# *
|
847
|
+
# * It can't be a word reserved by the database engine.
|
848
|
+
#
|
849
|
+
# **Amazon Aurora PostgreSQL**
|
850
|
+
#
|
851
|
+
# The name of the database to create when the primary DB instance of the
|
852
|
+
# Aurora PostgreSQL DB cluster is created. If this parameter isn't
|
853
|
+
# specified for an Aurora PostgreSQL DB cluster, a database named
|
854
|
+
# `postgres` is created in the DB cluster.
|
855
|
+
#
|
856
|
+
# Constraints:
|
857
|
+
#
|
858
|
+
# * It must contain 1 to 63 alphanumeric characters.
|
859
|
+
#
|
860
|
+
# * It must begin with a letter or an underscore. Subsequent characters
|
861
|
+
# can be letters, underscores, or digits (0 to 9).
|
862
|
+
#
|
863
|
+
# * It can't be a word reserved by the database engine.
|
809
864
|
# @option options [Integer] :allocated_storage
|
810
865
|
# The amount of storage (in gibibytes) to allocate for the DB instance.
|
811
866
|
#
|
@@ -1064,8 +1119,8 @@ module Aws::RDS
|
|
1064
1119
|
# specify the identifier of the custom Availability Zone to create the
|
1065
1120
|
# DB instance in.
|
1066
1121
|
#
|
1067
|
-
# For more information about RDS on VMware, see the [
|
1068
|
-
#
|
1122
|
+
# For more information about RDS on VMware, see the [ RDS on VMware User
|
1123
|
+
# Guide.][2]
|
1069
1124
|
#
|
1070
1125
|
# </note>
|
1071
1126
|
#
|
@@ -1241,8 +1296,8 @@ module Aws::RDS
|
|
1241
1296
|
#
|
1242
1297
|
# **PostgreSQL**
|
1243
1298
|
#
|
1244
|
-
# See [
|
1245
|
-
# User Guide.*
|
1299
|
+
# See [Amazon RDS for PostgreSQL versions and extensions][5] in the
|
1300
|
+
# *Amazon RDS User Guide.*
|
1246
1301
|
#
|
1247
1302
|
#
|
1248
1303
|
#
|
@@ -1250,7 +1305,7 @@ module Aws::RDS
|
|
1250
1305
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
1251
1306
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
1252
1307
|
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
|
1253
|
-
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts
|
1308
|
+
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts
|
1254
1309
|
# @option options [Boolean] :auto_minor_version_upgrade
|
1255
1310
|
# A value that indicates whether minor engine upgrades are applied
|
1256
1311
|
# automatically to the DB instance during the maintenance window. By
|
@@ -1275,8 +1330,8 @@ module Aws::RDS
|
|
1275
1330
|
#
|
1276
1331
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
1277
1332
|
# @option options [String] :option_group_name
|
1278
|
-
#
|
1279
|
-
# option group.
|
1333
|
+
# A value that indicates that the DB instance should be associated with
|
1334
|
+
# the specified option group.
|
1280
1335
|
#
|
1281
1336
|
# Permanent options, such as the TDE option for Oracle Advanced Security
|
1282
1337
|
# TDE, can't be removed from an option group. Also, that option group
|
@@ -1355,22 +1410,19 @@ module Aws::RDS
|
|
1355
1410
|
# @option options [String] :kms_key_id
|
1356
1411
|
# The AWS KMS key identifier for an encrypted DB instance.
|
1357
1412
|
#
|
1358
|
-
# The KMS key identifier is the
|
1359
|
-
#
|
1360
|
-
# account
|
1361
|
-
# instance, then you can use the KMS key alias instead of the ARN for
|
1362
|
-
# the KM encryption key.
|
1413
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
1414
|
+
# name for the AWS KMS customer master key (CMK). To use a CMK in a
|
1415
|
+
# different AWS account, specify the key ARN or alias ARN.
|
1363
1416
|
#
|
1364
1417
|
# **Amazon Aurora**
|
1365
1418
|
#
|
1366
|
-
# Not applicable. The KMS key identifier is managed by the DB
|
1367
|
-
# For more information, see `CreateDBCluster`.
|
1419
|
+
# Not applicable. The AWS KMS key identifier is managed by the DB
|
1420
|
+
# cluster. For more information, see `CreateDBCluster`.
|
1368
1421
|
#
|
1369
1422
|
# If `StorageEncrypted` is enabled, and you do not specify a value for
|
1370
|
-
# the `KmsKeyId` parameter, then Amazon RDS
|
1371
|
-
#
|
1372
|
-
#
|
1373
|
-
# for each AWS Region.
|
1423
|
+
# the `KmsKeyId` parameter, then Amazon RDS uses your default CMK. There
|
1424
|
+
# is a default CMK for your AWS account. Your AWS account has a
|
1425
|
+
# different default CMK for each AWS Region.
|
1374
1426
|
# @option options [String] :domain
|
1375
1427
|
# The Active Directory directory ID to create the DB instance in.
|
1376
1428
|
# Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
|
@@ -1462,13 +1514,15 @@ module Aws::RDS
|
|
1462
1514
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
1463
1515
|
# @option options [String] :performance_insights_kms_key_id
|
1464
1516
|
# The AWS KMS key identifier for encryption of Performance Insights
|
1465
|
-
# data.
|
1466
|
-
#
|
1517
|
+
# data.
|
1518
|
+
#
|
1519
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
1520
|
+
# name for the AWS KMS customer master key (CMK).
|
1467
1521
|
#
|
1468
1522
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
|
1469
|
-
# Amazon RDS uses your default
|
1470
|
-
#
|
1471
|
-
#
|
1523
|
+
# Amazon RDS uses your default CMK. There is a default CMK for your AWS
|
1524
|
+
# account. Your AWS account has a different default CMK for each AWS
|
1525
|
+
# Region.
|
1472
1526
|
# @option options [Integer] :performance_insights_retention_period
|
1473
1527
|
# The amount of time, in days, to retain Performance Insights data.
|
1474
1528
|
# Valid values are 7 or 731 (2 years).
|
@@ -1497,7 +1551,8 @@ module Aws::RDS
|
|
1497
1551
|
#
|
1498
1552
|
# **Oracle**
|
1499
1553
|
#
|
1500
|
-
# Possible values are `alert`, `audit`, `listener`,
|
1554
|
+
# Possible values are `alert`, `audit`, `listener`, `trace`, and
|
1555
|
+
# `oemagent`.
|
1501
1556
|
#
|
1502
1557
|
# **PostgreSQL**
|
1503
1558
|
#
|
@@ -1528,6 +1583,33 @@ module Aws::RDS
|
|
1528
1583
|
# @option options [Integer] :max_allocated_storage
|
1529
1584
|
# The upper limit to which Amazon RDS can automatically scale the
|
1530
1585
|
# storage of the DB instance.
|
1586
|
+
#
|
1587
|
+
# For more information about this setting, including limitations that
|
1588
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
1589
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
1590
|
+
#
|
1591
|
+
#
|
1592
|
+
#
|
1593
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
1594
|
+
# @option options [Boolean] :enable_customer_owned_ip
|
1595
|
+
# A value that indicates whether to enable a customer-owned IP address
|
1596
|
+
# (CoIP) for an RDS on Outposts DB instance.
|
1597
|
+
#
|
1598
|
+
# A *CoIP* provides local or external connectivity to resources in your
|
1599
|
+
# Outpost subnets through your on-premises network. For some use cases,
|
1600
|
+
# a CoIP can provide lower latency for connections to the DB instance
|
1601
|
+
# from outside of its virtual private cloud (VPC) on your local network.
|
1602
|
+
#
|
1603
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
1604
|
+
# RDS on AWS Outposts][1] in the *Amazon RDS User Guide*.
|
1605
|
+
#
|
1606
|
+
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
1607
|
+
# in the *AWS Outposts User Guide*.
|
1608
|
+
#
|
1609
|
+
#
|
1610
|
+
#
|
1611
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
1612
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
1531
1613
|
# @return [DBInstance]
|
1532
1614
|
def create(options = {})
|
1533
1615
|
options = options.merge(db_instance_identifier: @id)
|
@@ -1747,20 +1829,21 @@ module Aws::RDS
|
|
1747
1829
|
#
|
1748
1830
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole
|
1749
1831
|
# @option options [String] :kms_key_id
|
1750
|
-
# The AWS KMS key
|
1751
|
-
#
|
1752
|
-
#
|
1832
|
+
# The AWS KMS key identifier for an encrypted read replica.
|
1833
|
+
#
|
1834
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
1835
|
+
# name for the AWS KMS CMK.
|
1753
1836
|
#
|
1754
1837
|
# If you create an encrypted read replica in the same AWS Region as the
|
1755
|
-
# source DB instance, then
|
1756
|
-
#
|
1757
|
-
# source DB instance.
|
1838
|
+
# source DB instance, then do not specify a value for this parameter. A
|
1839
|
+
# read replica in the same Region is always encrypted with the same AWS
|
1840
|
+
# KMS CMK as the source DB instance.
|
1758
1841
|
#
|
1759
1842
|
# If you create an encrypted read replica in a different AWS Region,
|
1760
|
-
# then you must specify a KMS key for the destination AWS
|
1761
|
-
#
|
1762
|
-
# in, and you can't use
|
1763
|
-
#
|
1843
|
+
# then you must specify a AWS KMS key identifier for the destination AWS
|
1844
|
+
# Region. AWS KMS CMKs are specific to the AWS Region that they are
|
1845
|
+
# created in, and you can't use CMKs from one AWS Region in another AWS
|
1846
|
+
# Region.
|
1764
1847
|
#
|
1765
1848
|
# You can't create an encrypted read replica from an unencrypted DB
|
1766
1849
|
# instance.
|
@@ -1849,13 +1932,15 @@ module Aws::RDS
|
|
1849
1932
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
1850
1933
|
# @option options [String] :performance_insights_kms_key_id
|
1851
1934
|
# The AWS KMS key identifier for encryption of Performance Insights
|
1852
|
-
# data.
|
1853
|
-
#
|
1935
|
+
# data.
|
1936
|
+
#
|
1937
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
1938
|
+
# name for the AWS KMS customer master key (CMK).
|
1854
1939
|
#
|
1855
1940
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
|
1856
|
-
# Amazon RDS uses your default
|
1857
|
-
#
|
1858
|
-
#
|
1941
|
+
# Amazon RDS uses your default CMK. There is a default CMK for your AWS
|
1942
|
+
# account. Your AWS account has a different default CMK for each AWS
|
1943
|
+
# Region.
|
1859
1944
|
# @option options [Integer] :performance_insights_retention_period
|
1860
1945
|
# The amount of time, in days, to retain Performance Insights data.
|
1861
1946
|
# Valid values are 7 or 731 (2 years).
|
@@ -1921,7 +2006,14 @@ module Aws::RDS
|
|
1921
2006
|
# @option options [Integer] :max_allocated_storage
|
1922
2007
|
# The upper limit to which Amazon RDS can automatically scale the
|
1923
2008
|
# storage of the DB instance.
|
1924
|
-
#
|
2009
|
+
#
|
2010
|
+
# For more information about this setting, including limitations that
|
2011
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
2012
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
2013
|
+
#
|
2014
|
+
#
|
2015
|
+
#
|
2016
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
1925
2017
|
# @option options [String] :source_region
|
1926
2018
|
# The source region of the snapshot. This is only needed when the
|
1927
2019
|
# shapshot is encrypted and in a different region.
|
@@ -2093,6 +2185,7 @@ module Aws::RDS
|
|
2093
2185
|
# max_allocated_storage: 1,
|
2094
2186
|
# certificate_rotation_restart: false,
|
2095
2187
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
2188
|
+
# enable_customer_owned_ip: false,
|
2096
2189
|
# })
|
2097
2190
|
# @param [Hash] options ({})
|
2098
2191
|
# @option options [Integer] :allocated_storage
|
@@ -2126,8 +2219,8 @@ module Aws::RDS
|
|
2126
2219
|
# The new DB subnet group for the DB instance. You can use this
|
2127
2220
|
# parameter to move your DB instance to a different VPC. If your DB
|
2128
2221
|
# instance isn't in a VPC, you can also use this parameter to move your
|
2129
|
-
# DB instance into a VPC. For more information, see [
|
2130
|
-
#
|
2222
|
+
# DB instance into a VPC. For more information, see [Working with a DB
|
2223
|
+
# instance in a VPC][1] in the *Amazon RDS User Guide.*
|
2131
2224
|
#
|
2132
2225
|
# Changing the subnet group causes an outage during the change. The
|
2133
2226
|
# change is applied during the next maintenance window, unless you
|
@@ -2140,7 +2233,7 @@ module Aws::RDS
|
|
2140
2233
|
#
|
2141
2234
|
#
|
2142
2235
|
#
|
2143
|
-
# [1]:
|
2236
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html#USER_VPC.Non-VPC2VPC
|
2144
2237
|
# @option options [Array<String>] :db_security_groups
|
2145
2238
|
# A list of DB security groups to authorize on this DB instance.
|
2146
2239
|
# Changing this setting doesn't result in an outage and the change is
|
@@ -2325,8 +2418,10 @@ module Aws::RDS
|
|
2325
2418
|
# family for the new engine version must be specified. The new DB
|
2326
2419
|
# parameter group can be the default for that DB parameter group family.
|
2327
2420
|
#
|
2328
|
-
#
|
2329
|
-
#
|
2421
|
+
# If you specify only a major version, Amazon RDS will update the DB
|
2422
|
+
# instance to the default minor version if the current minor version is
|
2423
|
+
# lower. For information about valid engine versions, see
|
2424
|
+
# `CreateDBInstance`, or call `DescribeDBEngineVersions`.
|
2330
2425
|
# @option options [Boolean] :allow_major_version_upgrade
|
2331
2426
|
# A value that indicates whether major version upgrades are allowed.
|
2332
2427
|
# Changing this parameter doesn't result in an outage and the change is
|
@@ -2381,14 +2476,14 @@ module Aws::RDS
|
|
2381
2476
|
#
|
2382
2477
|
# Default: Uses existing setting
|
2383
2478
|
# @option options [String] :option_group_name
|
2384
|
-
#
|
2385
|
-
# option group. Changing this parameter doesn't result in an
|
2386
|
-
# except in the following case and the change is applied during
|
2387
|
-
# maintenance window unless the `ApplyImmediately` parameter is
|
2388
|
-
# for this request. If the parameter change results in an option
|
2389
|
-
# that enables OEM, this change can cause a brief (sub-second)
|
2390
|
-
# during which new connections are rejected but existing
|
2391
|
-
# not interrupted.
|
2479
|
+
# A value that indicates the DB instance should be associated with the
|
2480
|
+
# specified option group. Changing this parameter doesn't result in an
|
2481
|
+
# outage except in the following case and the change is applied during
|
2482
|
+
# the next maintenance window unless the `ApplyImmediately` parameter is
|
2483
|
+
# enabled for this request. If the parameter change results in an option
|
2484
|
+
# group that enables OEM, this change can cause a brief (sub-second)
|
2485
|
+
# period during which new connections are rejected but existing
|
2486
|
+
# connections are not interrupted.
|
2392
2487
|
#
|
2393
2488
|
# Permanent options, such as the TDE option for Oracle Advanced Security
|
2394
2489
|
# TDE, can't be removed from an option group, and that option group
|
@@ -2597,13 +2692,15 @@ module Aws::RDS
|
|
2597
2692
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
2598
2693
|
# @option options [String] :performance_insights_kms_key_id
|
2599
2694
|
# The AWS KMS key identifier for encryption of Performance Insights
|
2600
|
-
# data.
|
2601
|
-
#
|
2695
|
+
# data.
|
2696
|
+
#
|
2697
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
2698
|
+
# name for the AWS KMS customer master key (CMK).
|
2602
2699
|
#
|
2603
2700
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
|
2604
|
-
# Amazon RDS uses your default
|
2605
|
-
#
|
2606
|
-
#
|
2701
|
+
# Amazon RDS uses your default CMK. There is a default CMK for your AWS
|
2702
|
+
# account. Your AWS account has a different default CMK for each AWS
|
2703
|
+
# Region.
|
2607
2704
|
# @option options [Integer] :performance_insights_retention_period
|
2608
2705
|
# The amount of time, in days, to retain Performance Insights data.
|
2609
2706
|
# Valid values are 7 or 731 (2 years).
|
@@ -2632,6 +2729,14 @@ module Aws::RDS
|
|
2632
2729
|
# @option options [Integer] :max_allocated_storage
|
2633
2730
|
# The upper limit to which Amazon RDS can automatically scale the
|
2634
2731
|
# storage of the DB instance.
|
2732
|
+
#
|
2733
|
+
# For more information about this setting, including limitations that
|
2734
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
2735
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
2736
|
+
#
|
2737
|
+
#
|
2738
|
+
#
|
2739
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
2635
2740
|
# @option options [Boolean] :certificate_rotation_restart
|
2636
2741
|
# A value that indicates whether the DB instance is restarted when you
|
2637
2742
|
# rotate your SSL/TLS certificate.
|
@@ -2678,6 +2783,25 @@ module Aws::RDS
|
|
2678
2783
|
#
|
2679
2784
|
#
|
2680
2785
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
2786
|
+
# @option options [Boolean] :enable_customer_owned_ip
|
2787
|
+
# A value that indicates whether to enable a customer-owned IP address
|
2788
|
+
# (CoIP) for an RDS on Outposts DB instance.
|
2789
|
+
#
|
2790
|
+
# A *CoIP* provides local or external connectivity to resources in your
|
2791
|
+
# Outpost subnets through your on-premises network. For some use cases,
|
2792
|
+
# a CoIP can provide lower latency for connections to the DB instance
|
2793
|
+
# from outside of its virtual private cloud (VPC) on your local network.
|
2794
|
+
#
|
2795
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
2796
|
+
# RDS on AWS Outposts][1] in the *Amazon RDS User Guide*.
|
2797
|
+
#
|
2798
|
+
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
2799
|
+
# in the *AWS Outposts User Guide*.
|
2800
|
+
#
|
2801
|
+
#
|
2802
|
+
#
|
2803
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
2804
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
2681
2805
|
# @return [DBInstance]
|
2682
2806
|
def modify(options = {})
|
2683
2807
|
options = options.merge(db_instance_identifier: @id)
|
@@ -2809,6 +2933,8 @@ module Aws::RDS
|
|
2809
2933
|
# deletion_protection: false,
|
2810
2934
|
# source_dbi_resource_id: "String",
|
2811
2935
|
# max_allocated_storage: 1,
|
2936
|
+
# source_db_instance_automated_backups_arn: "String",
|
2937
|
+
# enable_customer_owned_ip: false,
|
2812
2938
|
# })
|
2813
2939
|
# @param [Hash] options ({})
|
2814
2940
|
# @option options [required, String] :target_db_instance_identifier
|
@@ -3061,6 +3187,37 @@ module Aws::RDS
|
|
3061
3187
|
# @option options [Integer] :max_allocated_storage
|
3062
3188
|
# The upper limit to which Amazon RDS can automatically scale the
|
3063
3189
|
# storage of the DB instance.
|
3190
|
+
#
|
3191
|
+
# For more information about this setting, including limitations that
|
3192
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
3193
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
3194
|
+
#
|
3195
|
+
#
|
3196
|
+
#
|
3197
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
3198
|
+
# @option options [String] :source_db_instance_automated_backups_arn
|
3199
|
+
# The Amazon Resource Name (ARN) of the replicated automated backups
|
3200
|
+
# from which to restore, for example,
|
3201
|
+
# `arn:aws:rds:useast-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
3202
|
+
# @option options [Boolean] :enable_customer_owned_ip
|
3203
|
+
# A value that indicates whether to enable a customer-owned IP address
|
3204
|
+
# (CoIP) for an RDS on Outposts DB instance.
|
3205
|
+
#
|
3206
|
+
# A *CoIP* provides local or external connectivity to resources in your
|
3207
|
+
# Outpost subnets through your on-premises network. For some use cases,
|
3208
|
+
# a CoIP can provide lower latency for connections to the DB instance
|
3209
|
+
# from outside of its virtual private cloud (VPC) on your local network.
|
3210
|
+
#
|
3211
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
3212
|
+
# RDS on AWS Outposts][1] in the *Amazon RDS User Guide*.
|
3213
|
+
#
|
3214
|
+
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
3215
|
+
# in the *AWS Outposts User Guide*.
|
3216
|
+
#
|
3217
|
+
#
|
3218
|
+
#
|
3219
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
3220
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
3064
3221
|
# @return [DBInstance]
|
3065
3222
|
def restore(options = {})
|
3066
3223
|
options = options.merge(source_db_instance_identifier: @id)
|