aws-sdk-rds 1.69.0 → 1.70.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +194 -141
- data/lib/aws-sdk-rds/db_cluster.rb +23 -14
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +19 -5
- data/lib/aws-sdk-rds/db_engine.rb +3 -3
- data/lib/aws-sdk-rds/db_engine_version.rb +3 -3
- data/lib/aws-sdk-rds/db_instance.rb +43 -31
- data/lib/aws-sdk-rds/db_log_file.rb +1 -1
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_parameter_group_family.rb +4 -4
- data/lib/aws-sdk-rds/db_security_group.rb +5 -5
- data/lib/aws-sdk-rds/db_snapshot.rb +14 -6
- data/lib/aws-sdk-rds/event_subscription.rb +3 -3
- data/lib/aws-sdk-rds/resource.rb +42 -33
- data/lib/aws-sdk-rds/types.rb +175 -134
- metadata +2 -2
@@ -34,7 +34,7 @@ module Aws::RDS
|
|
34
34
|
# For all database engines except Amazon Aurora, `AllocatedStorage`
|
35
35
|
# specifies the allocated storage size in gibibytes (GiB). For Aurora,
|
36
36
|
# `AllocatedStorage` always returns 1, because Aurora DB cluster storage
|
37
|
-
# size
|
37
|
+
# size isn't fixed, but instead automatically adjusts as needed.
|
38
38
|
# @return [Integer]
|
39
39
|
def allocated_storage
|
40
40
|
data[:allocated_storage]
|
@@ -626,7 +626,8 @@ module Aws::RDS
|
|
626
626
|
# the DB cluster you are creating.
|
627
627
|
# @option options [String] :db_cluster_parameter_group_name
|
628
628
|
# The name of the DB cluster parameter group to associate with this DB
|
629
|
-
# cluster. If
|
629
|
+
# cluster. If you do not specify a value, then the default DB cluster
|
630
|
+
# parameter group for the specified DB engine and version is used.
|
630
631
|
#
|
631
632
|
# Constraints:
|
632
633
|
#
|
@@ -763,14 +764,14 @@ module Aws::RDS
|
|
763
764
|
# cluster, then you can use the KMS key alias instead of the ARN for the
|
764
765
|
# KMS encryption key.
|
765
766
|
#
|
766
|
-
# If an encryption key
|
767
|
+
# If an encryption key isn't specified in `KmsKeyId`\:
|
767
768
|
#
|
768
769
|
# * If `ReplicationSourceIdentifier` identifies an encrypted source,
|
769
770
|
# then Amazon RDS will use the encryption key used to encrypt the
|
770
771
|
# source. Otherwise, Amazon RDS will use your default encryption key.
|
771
772
|
#
|
772
773
|
# * If the `StorageEncrypted` parameter is enabled and
|
773
|
-
# `ReplicationSourceIdentifier`
|
774
|
+
# `ReplicationSourceIdentifier` isn't specified, then Amazon RDS will
|
774
775
|
# use your default encryption key.
|
775
776
|
#
|
776
777
|
# AWS KMS creates the default encryption key for your AWS account. Your
|
@@ -816,6 +817,14 @@ module Aws::RDS
|
|
816
817
|
# Authenticating Requests: Using Query Parameters (AWS Signature Version
|
817
818
|
# 4)][1] and [ Signature Version 4 Signing Process][2].
|
818
819
|
#
|
820
|
+
# <note markdown="1"> If you are using an AWS SDK tool or the AWS CLI, you can specify
|
821
|
+
# `SourceRegion` (or `--source-region` for the AWS CLI) instead of
|
822
|
+
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
823
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
824
|
+
# operation that can be executed in the source AWS Region.
|
825
|
+
#
|
826
|
+
# </note>
|
827
|
+
#
|
819
828
|
#
|
820
829
|
#
|
821
830
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
@@ -948,9 +957,9 @@ module Aws::RDS
|
|
948
957
|
# @option options [Boolean] :skip_final_snapshot
|
949
958
|
# A value that indicates whether to skip the creation of a final DB
|
950
959
|
# cluster snapshot before the DB cluster is deleted. If skip is
|
951
|
-
# specified, no DB cluster snapshot is created. If skip
|
960
|
+
# specified, no DB cluster snapshot is created. If skip isn't
|
952
961
|
# specified, a DB cluster snapshot is created before the DB cluster is
|
953
|
-
# deleted. By default, skip
|
962
|
+
# deleted. By default, skip isn't specified, and the DB cluster
|
954
963
|
# snapshot is created. By default, this parameter is disabled.
|
955
964
|
#
|
956
965
|
# <note markdown="1"> You must specify a `FinalDBSnapshotIdentifier` parameter if
|
@@ -1324,7 +1333,7 @@ module Aws::RDS
|
|
1324
1333
|
#
|
1325
1334
|
# * Must be before the latest restorable time for the DB instance
|
1326
1335
|
#
|
1327
|
-
# * Must be specified if `UseLatestRestorableTime` parameter
|
1336
|
+
# * Must be specified if `UseLatestRestorableTime` parameter isn't
|
1328
1337
|
# provided
|
1329
1338
|
#
|
1330
1339
|
# * Can't be specified if the `UseLatestRestorableTime` parameter is
|
@@ -1336,7 +1345,7 @@ module Aws::RDS
|
|
1336
1345
|
# Example: `2015-03-07T23:45:00Z`
|
1337
1346
|
# @option options [Boolean] :use_latest_restorable_time
|
1338
1347
|
# A value that indicates whether to restore the DB cluster to the latest
|
1339
|
-
# restorable backup time. By default, the DB cluster
|
1348
|
+
# restorable backup time. By default, the DB cluster isn't restored to
|
1340
1349
|
# the latest restorable backup time.
|
1341
1350
|
#
|
1342
1351
|
# Constraints: Can't be specified if `RestoreToTime` parameter is
|
@@ -1387,10 +1396,10 @@ module Aws::RDS
|
|
1387
1396
|
# encrypted using the KMS key that was used to encrypt the source DB
|
1388
1397
|
# cluster.
|
1389
1398
|
#
|
1390
|
-
# * If the DB cluster
|
1391
|
-
#
|
1399
|
+
# * If the DB cluster isn't encrypted, then the restored DB cluster
|
1400
|
+
# isn't encrypted.
|
1392
1401
|
#
|
1393
|
-
# If `DBClusterIdentifier` refers to a DB cluster that
|
1402
|
+
# If `DBClusterIdentifier` refers to a DB cluster that isn't encrypted,
|
1394
1403
|
# then the restore request is rejected.
|
1395
1404
|
# @option options [Boolean] :enable_iam_database_authentication
|
1396
1405
|
# A value that indicates whether to enable mapping of AWS Identity and
|
@@ -1503,7 +1512,7 @@ module Aws::RDS
|
|
1503
1512
|
# A list of event categories that trigger notifications for a event
|
1504
1513
|
# notification subscription.
|
1505
1514
|
# @option options [Array<Types::Filter>] :filters
|
1506
|
-
# This parameter
|
1515
|
+
# This parameter isn't currently supported.
|
1507
1516
|
# @return [Event::Collection]
|
1508
1517
|
def events(options = {})
|
1509
1518
|
batches = Enumerator.new do |y|
|
@@ -1638,8 +1647,8 @@ module Aws::RDS
|
|
1638
1647
|
# @option options [Integer] :max_records
|
1639
1648
|
# The maximum number of records to include in the response. If more
|
1640
1649
|
# records exist than the specified `MaxRecords` value, a pagination
|
1641
|
-
# token called a marker is included in the response so
|
1642
|
-
#
|
1650
|
+
# token called a marker is included in the response so you can retrieve
|
1651
|
+
# the remaining results.
|
1643
1652
|
#
|
1644
1653
|
# Default: 100
|
1645
1654
|
#
|
@@ -336,7 +336,7 @@ module Aws::RDS
|
|
336
336
|
# @param [Hash] options ({})
|
337
337
|
# @option options [required, String] :target_db_cluster_snapshot_identifier
|
338
338
|
# The identifier of the new DB cluster snapshot to create from the
|
339
|
-
# source DB cluster snapshot. This parameter
|
339
|
+
# source DB cluster snapshot. This parameter isn't case-sensitive.
|
340
340
|
#
|
341
341
|
# Constraints:
|
342
342
|
#
|
@@ -375,7 +375,8 @@ module Aws::RDS
|
|
375
375
|
# `CopyDBClusterSnapshot` API action in the AWS Region that contains the
|
376
376
|
# source DB cluster snapshot to copy. The `PreSignedUrl` parameter must
|
377
377
|
# be used when copying an encrypted DB cluster snapshot from another AWS
|
378
|
-
# Region.
|
378
|
+
# Region. Don't specify `PreSignedUrl` when you are copying an
|
379
|
+
# encrypted DB cluster snapshot in the same AWS Region.
|
379
380
|
#
|
380
381
|
# The pre-signed URL must be a valid request for the
|
381
382
|
# `CopyDBSClusterSnapshot` API action that can be executed in the source
|
@@ -405,6 +406,14 @@ module Aws::RDS
|
|
405
406
|
# Authenticating Requests: Using Query Parameters (AWS Signature Version
|
406
407
|
# 4)][1] and [ Signature Version 4 Signing Process][2].
|
407
408
|
#
|
409
|
+
# <note markdown="1"> If you are using an AWS SDK tool or the AWS CLI, you can specify
|
410
|
+
# `SourceRegion` (or `--source-region` for the AWS CLI) instead of
|
411
|
+
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
412
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
413
|
+
# operation that can be executed in the source AWS Region.
|
414
|
+
#
|
415
|
+
# </note>
|
416
|
+
#
|
408
417
|
#
|
409
418
|
#
|
410
419
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
@@ -530,6 +539,11 @@ module Aws::RDS
|
|
530
539
|
# `aws rds describe-db-engine-versions --engine aurora-postgresql
|
531
540
|
# --query "DBEngineVersions[].EngineVersion"`
|
532
541
|
#
|
542
|
+
# <note markdown="1"> If you aren't using the default engine version, then you must specify
|
543
|
+
# the engine version.
|
544
|
+
#
|
545
|
+
# </note>
|
546
|
+
#
|
533
547
|
# **Aurora MySQL**
|
534
548
|
#
|
535
549
|
# Example: `5.6.10a`, `5.6.mysql_aurora.1.19.2`, `5.7.12`,
|
@@ -576,8 +590,8 @@ module Aws::RDS
|
|
576
590
|
# encrypted, then the restored DB cluster is encrypted using the KMS
|
577
591
|
# key that was used to encrypt the DB snapshot or DB cluster snapshot.
|
578
592
|
#
|
579
|
-
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier`
|
580
|
-
#
|
593
|
+
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier`
|
594
|
+
# isn't encrypted, then the restored DB cluster isn't encrypted.
|
581
595
|
# @option options [Boolean] :enable_iam_database_authentication
|
582
596
|
# A value that indicates whether to enable mapping of AWS Identity and
|
583
597
|
# Access Management (IAM) accounts to database accounts. By default,
|
@@ -703,7 +717,7 @@ module Aws::RDS
|
|
703
717
|
# A list of event categories that trigger notifications for a event
|
704
718
|
# notification subscription.
|
705
719
|
# @option options [Array<Types::Filter>] :filters
|
706
|
-
# This parameter
|
720
|
+
# This parameter isn't currently supported.
|
707
721
|
# @return [Event::Collection]
|
708
722
|
def events(options = {})
|
709
723
|
batches = Enumerator.new do |y|
|
@@ -171,7 +171,7 @@ module Aws::RDS
|
|
171
171
|
# If specified, filters the results to include only options for the
|
172
172
|
# specified major engine version.
|
173
173
|
# @option options [Array<Types::Filter>] :filters
|
174
|
-
# This parameter
|
174
|
+
# This parameter isn't currently supported.
|
175
175
|
# @return [OptionGroupOption::Collection]
|
176
176
|
def option_group_options(options = {})
|
177
177
|
batches = Enumerator.new do |y|
|
@@ -209,7 +209,7 @@ module Aws::RDS
|
|
209
209
|
# The name of the option group to describe. Can't be supplied together
|
210
210
|
# with EngineName or MajorEngineVersion.
|
211
211
|
# @option options [Array<Types::Filter>] :filters
|
212
|
-
# This parameter
|
212
|
+
# This parameter isn't currently supported.
|
213
213
|
# @option options [String] :major_engine_version
|
214
214
|
# Filters the list of option groups to only include groups associated
|
215
215
|
# with a specific database engine version. If specified, then EngineName
|
@@ -275,7 +275,7 @@ module Aws::RDS
|
|
275
275
|
#
|
276
276
|
# ^
|
277
277
|
# @option options [Array<Types::Filter>] :filters
|
278
|
-
# This parameter
|
278
|
+
# This parameter isn't currently supported.
|
279
279
|
# @option options [Boolean] :default_only
|
280
280
|
# A value that indicates whether only the default version of the
|
281
281
|
# specified engine or engine and major version combination is returned.
|
@@ -59,7 +59,7 @@ module Aws::RDS
|
|
59
59
|
end
|
60
60
|
|
61
61
|
# The default character set for new instances of this engine version, if
|
62
|
-
# the `CharacterSetName` parameter of the CreateDBInstance API
|
62
|
+
# the `CharacterSetName` parameter of the CreateDBInstance API isn't
|
63
63
|
# specified.
|
64
64
|
# @return [Types::CharacterSet]
|
65
65
|
def default_character_set
|
@@ -286,7 +286,7 @@ module Aws::RDS
|
|
286
286
|
# })
|
287
287
|
# @param [Hash] options ({})
|
288
288
|
# @option options [Array<Types::Filter>] :filters
|
289
|
-
# This parameter
|
289
|
+
# This parameter isn't currently supported.
|
290
290
|
# @return [OptionGroupOption::Collection]
|
291
291
|
def option_group_options(options = {})
|
292
292
|
batches = Enumerator.new do |y|
|
@@ -326,7 +326,7 @@ module Aws::RDS
|
|
326
326
|
# The name of the option group to describe. Can't be supplied together
|
327
327
|
# with EngineName or MajorEngineVersion.
|
328
328
|
# @option options [Array<Types::Filter>] :filters
|
329
|
-
# This parameter
|
329
|
+
# This parameter isn't currently supported.
|
330
330
|
# @return [OptionGroup::Collection]
|
331
331
|
def option_groups(options = {})
|
332
332
|
batches = Enumerator.new do |y|
|
@@ -256,7 +256,7 @@ module Aws::RDS
|
|
256
256
|
data[:publicly_accessible]
|
257
257
|
end
|
258
258
|
|
259
|
-
# The status of a Read Replica. If the instance
|
259
|
+
# The status of a Read Replica. If the instance isn't a Read Replica,
|
260
260
|
# this is blank.
|
261
261
|
# @return [Array<Types::DBInstanceStatusInfo>]
|
262
262
|
def status_infos
|
@@ -679,7 +679,7 @@ module Aws::RDS
|
|
679
679
|
# **MySQL**
|
680
680
|
#
|
681
681
|
# The name of the database to create when the DB instance is created. If
|
682
|
-
# this parameter
|
682
|
+
# this parameter isn't specified, no database is created in the DB
|
683
683
|
# instance.
|
684
684
|
#
|
685
685
|
# Constraints:
|
@@ -691,7 +691,7 @@ module Aws::RDS
|
|
691
691
|
# **MariaDB**
|
692
692
|
#
|
693
693
|
# The name of the database to create when the DB instance is created. If
|
694
|
-
# this parameter
|
694
|
+
# this parameter isn't specified, no database is created in the DB
|
695
695
|
# instance.
|
696
696
|
#
|
697
697
|
# Constraints:
|
@@ -703,7 +703,7 @@ module Aws::RDS
|
|
703
703
|
# **PostgreSQL**
|
704
704
|
#
|
705
705
|
# The name of the database to create when the DB instance is created. If
|
706
|
-
# this parameter
|
706
|
+
# this parameter isn't specified, the default "postgres" database is
|
707
707
|
# created in the DB instance.
|
708
708
|
#
|
709
709
|
# Constraints:
|
@@ -736,7 +736,7 @@ module Aws::RDS
|
|
736
736
|
# **Amazon Aurora**
|
737
737
|
#
|
738
738
|
# The name of the database to create when the primary instance of the DB
|
739
|
-
# cluster is created. If this parameter
|
739
|
+
# cluster is created. If this parameter isn't specified, no database is
|
740
740
|
# created in the DB instance.
|
741
741
|
#
|
742
742
|
# Constraints:
|
@@ -1035,8 +1035,8 @@ module Aws::RDS
|
|
1035
1035
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance
|
1036
1036
|
# @option options [String] :db_parameter_group_name
|
1037
1037
|
# The name of the DB parameter group to associate with this DB instance.
|
1038
|
-
# If you do not specify a value
|
1039
|
-
#
|
1038
|
+
# If you do not specify a value, then the default DB parameter group for
|
1039
|
+
# the specified DB engine and version is used.
|
1040
1040
|
#
|
1041
1041
|
# Constraints:
|
1042
1042
|
#
|
@@ -1230,15 +1230,15 @@ module Aws::RDS
|
|
1230
1230
|
# A value that indicates whether the DB instance is publicly accessible.
|
1231
1231
|
# When the DB instance is publicly accessible, it is an Internet-facing
|
1232
1232
|
# instance with a publicly resolvable DNS name, which resolves to a
|
1233
|
-
# public IP address. When the DB instance
|
1233
|
+
# public IP address. When the DB instance isn't publicly accessible, it
|
1234
1234
|
# is an internal instance with a DNS name that resolves to a private IP
|
1235
1235
|
# address.
|
1236
1236
|
#
|
1237
1237
|
# Default: The default behavior varies depending on whether
|
1238
1238
|
# `DBSubnetGroupName` is specified.
|
1239
1239
|
#
|
1240
|
-
# If `DBSubnetGroupName`
|
1241
|
-
#
|
1240
|
+
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
1241
|
+
# isn't specified, the following applies:
|
1242
1242
|
#
|
1243
1243
|
# * If the default VPC in the target region doesn’t have an Internet
|
1244
1244
|
# gateway attached to it, the DB instance is private.
|
@@ -1246,7 +1246,7 @@ module Aws::RDS
|
|
1246
1246
|
# * If the default VPC in the target region has an Internet gateway
|
1247
1247
|
# attached to it, the DB instance is public.
|
1248
1248
|
#
|
1249
|
-
# If `DBSubnetGroupName` is specified, and `PubliclyAccessible`
|
1249
|
+
# If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
|
1250
1250
|
# specified, the following applies:
|
1251
1251
|
#
|
1252
1252
|
# * If the subnets are part of a VPC that doesn’t have an Internet
|
@@ -1275,7 +1275,7 @@ module Aws::RDS
|
|
1275
1275
|
# the device.
|
1276
1276
|
# @option options [Boolean] :storage_encrypted
|
1277
1277
|
# A value that indicates whether the DB instance is encrypted. By
|
1278
|
-
# default, it
|
1278
|
+
# default, it isn't encrypted.
|
1279
1279
|
#
|
1280
1280
|
# **Amazon Aurora**
|
1281
1281
|
#
|
@@ -1571,6 +1571,11 @@ module Aws::RDS
|
|
1571
1571
|
# region Read Replica, or the default `DBParameterGroup` for the
|
1572
1572
|
# specified DB engine for a cross region Read Replica.
|
1573
1573
|
#
|
1574
|
+
# <note markdown="1"> Currently, specifying a parameter group for this operation is only
|
1575
|
+
# supported for Oracle DB instances.
|
1576
|
+
#
|
1577
|
+
# </note>
|
1578
|
+
#
|
1574
1579
|
# Constraints:
|
1575
1580
|
#
|
1576
1581
|
# * Must be 1 to 255 letters, numbers, or hyphens.
|
@@ -1582,7 +1587,7 @@ module Aws::RDS
|
|
1582
1587
|
# A value that indicates whether the DB instance is publicly accessible.
|
1583
1588
|
# When the DB instance is publicly accessible, it is an Internet-facing
|
1584
1589
|
# instance with a publicly resolvable DNS name, which resolves to a
|
1585
|
-
# public IP address. When the DB instance
|
1590
|
+
# public IP address. When the DB instance isn't publicly accessible, it
|
1586
1591
|
# is an internal instance with a DNS name that resolves to a private IP
|
1587
1592
|
# address. For more information, see CreateDBInstance.
|
1588
1593
|
# @option options [Array<Types::Tag>] :tags
|
@@ -1595,7 +1600,7 @@ module Aws::RDS
|
|
1595
1600
|
# @option options [String] :db_subnet_group_name
|
1596
1601
|
# Specifies a DB subnet group for the DB instance. The new DB instance
|
1597
1602
|
# is created in the VPC associated with the DB subnet group. If no DB
|
1598
|
-
# subnet group is specified, then the new DB instance
|
1603
|
+
# subnet group is specified, then the new DB instance isn't created in
|
1599
1604
|
# a VPC.
|
1600
1605
|
#
|
1601
1606
|
# Constraints:
|
@@ -1681,10 +1686,9 @@ module Aws::RDS
|
|
1681
1686
|
# contains the source DB instance.
|
1682
1687
|
#
|
1683
1688
|
# You must specify this parameter when you create an encrypted Read
|
1684
|
-
# Replica from another AWS Region by using the Amazon RDS API.
|
1685
|
-
# specify
|
1686
|
-
#
|
1687
|
-
# the AWS CLI.
|
1689
|
+
# Replica from another AWS Region by using the Amazon RDS API. Don't
|
1690
|
+
# specify `PreSignedUrl` when you are creating an encrypted Read Replica
|
1691
|
+
# in the same AWS Region.
|
1688
1692
|
#
|
1689
1693
|
# The presigned URL must be a valid request for the
|
1690
1694
|
# `CreateDBInstanceReadReplica` API action that can be executed in the
|
@@ -1722,6 +1726,14 @@ module Aws::RDS
|
|
1722
1726
|
# [Authenticating Requests: Using Query Parameters (AWS Signature
|
1723
1727
|
# Version 4)][1] and [Signature Version 4 Signing Process][2].
|
1724
1728
|
#
|
1729
|
+
# <note markdown="1"> If you are using an AWS SDK tool or the AWS CLI, you can specify
|
1730
|
+
# `SourceRegion` (or `--source-region` for the AWS CLI) instead of
|
1731
|
+
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
1732
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
1733
|
+
# operation that can be executed in the source AWS Region.
|
1734
|
+
#
|
1735
|
+
# </note>
|
1736
|
+
#
|
1725
1737
|
#
|
1726
1738
|
#
|
1727
1739
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
@@ -1870,8 +1882,8 @@ module Aws::RDS
|
|
1870
1882
|
# @option options [Boolean] :skip_final_snapshot
|
1871
1883
|
# A value that indicates whether to skip the creation of a final DB
|
1872
1884
|
# snapshot before the DB instance is deleted. If skip is specified, no
|
1873
|
-
# DB snapshot is created. If skip
|
1874
|
-
# created before the DB instance is deleted. By default, skip
|
1885
|
+
# DB snapshot is created. If skip isn't specified, a DB snapshot is
|
1886
|
+
# created before the DB instance is deleted. By default, skip isn't
|
1875
1887
|
# specified, and the DB snapshot is created.
|
1876
1888
|
#
|
1877
1889
|
# Note that when a DB instance is in a failure state and has a status of
|
@@ -1880,8 +1892,8 @@ module Aws::RDS
|
|
1880
1892
|
#
|
1881
1893
|
# Specify skip when deleting a Read Replica.
|
1882
1894
|
#
|
1883
|
-
# <note markdown="1"> The FinalDBSnapshotIdentifier parameter must be specified if skip
|
1884
|
-
#
|
1895
|
+
# <note markdown="1"> The FinalDBSnapshotIdentifier parameter must be specified if skip
|
1896
|
+
# isn't specified.
|
1885
1897
|
#
|
1886
1898
|
# </note>
|
1887
1899
|
# @option options [String] :final_db_snapshot_identifier
|
@@ -2001,7 +2013,7 @@ module Aws::RDS
|
|
2001
2013
|
# @option options [String] :db_subnet_group_name
|
2002
2014
|
# The new DB subnet group for the DB instance. You can use this
|
2003
2015
|
# parameter to move your DB instance to a different VPC. If your DB
|
2004
|
-
# instance
|
2016
|
+
# instance isn't in a VPC, you can also use this parameter to move your
|
2005
2017
|
# DB instance into a VPC. For more information, see [Updating the VPC
|
2006
2018
|
# for a DB Instance][1] in the *Amazon RDS User Guide.*
|
2007
2019
|
#
|
@@ -2411,7 +2423,7 @@ module Aws::RDS
|
|
2411
2423
|
# A value that indicates whether the DB instance is publicly accessible.
|
2412
2424
|
# When the DB instance is publicly accessible, it is an Internet-facing
|
2413
2425
|
# instance with a publicly resolvable DNS name, which resolves to a
|
2414
|
-
# public IP address. When the DB instance
|
2426
|
+
# public IP address. When the DB instance isn't publicly accessible, it
|
2415
2427
|
# is an internal instance with a DNS name that resolves to a private IP
|
2416
2428
|
# address.
|
2417
2429
|
#
|
@@ -2584,7 +2596,7 @@ module Aws::RDS
|
|
2584
2596
|
# A value that indicates whether the reboot is conducted through a
|
2585
2597
|
# Multi-AZ failover.
|
2586
2598
|
#
|
2587
|
-
# Constraint: You can't enable force failover if the instance
|
2599
|
+
# Constraint: You can't enable force failover if the instance isn't
|
2588
2600
|
# configured for Multi-AZ.
|
2589
2601
|
# @return [DBInstance]
|
2590
2602
|
def reboot(options = {})
|
@@ -2668,7 +2680,7 @@ module Aws::RDS
|
|
2668
2680
|
# Example: `2009-09-07T23:45:00Z`
|
2669
2681
|
# @option options [Boolean] :use_latest_restorable_time
|
2670
2682
|
# A value that indicates whether the DB instance is restored from the
|
2671
|
-
# latest backup time. By default, the DB instance
|
2683
|
+
# latest backup time. By default, the DB instance isn't restored from
|
2672
2684
|
# the latest backup time.
|
2673
2685
|
#
|
2674
2686
|
# Constraints: Can't be specified if the `RestoreTime` parameter is
|
@@ -2717,7 +2729,7 @@ module Aws::RDS
|
|
2717
2729
|
# A value that indicates whether the DB instance is publicly accessible.
|
2718
2730
|
# When the DB instance is publicly accessible, it is an Internet-facing
|
2719
2731
|
# instance with a publicly resolvable DNS name, which resolves to a
|
2720
|
-
# public IP address. When the DB instance
|
2732
|
+
# public IP address. When the DB instance isn't publicly accessible, it
|
2721
2733
|
# is an internal instance with a DNS name that resolves to a private IP
|
2722
2734
|
# address. For more information, see CreateDBInstance.
|
2723
2735
|
# @option options [Boolean] :auto_minor_version_upgrade
|
@@ -2733,7 +2745,7 @@ module Aws::RDS
|
|
2733
2745
|
# @option options [String] :db_name
|
2734
2746
|
# The database name for the restored DB instance.
|
2735
2747
|
#
|
2736
|
-
# <note markdown="1"> This parameter
|
2748
|
+
# <note markdown="1"> This parameter isn't used for the MySQL or MariaDB engines.
|
2737
2749
|
#
|
2738
2750
|
# </note>
|
2739
2751
|
# @option options [String] :engine
|
@@ -2774,7 +2786,7 @@ module Aws::RDS
|
|
2774
2786
|
#
|
2775
2787
|
# **SQL Server**
|
2776
2788
|
#
|
2777
|
-
# Setting the IOPS value for the SQL Server database engine
|
2789
|
+
# Setting the IOPS value for the SQL Server database engine isn't
|
2778
2790
|
# supported.
|
2779
2791
|
# @option options [String] :option_group_name
|
2780
2792
|
# The name of the option group to be used for the restored DB instance.
|
@@ -3012,7 +3024,7 @@ module Aws::RDS
|
|
3012
3024
|
# A list of event categories that trigger notifications for a event
|
3013
3025
|
# notification subscription.
|
3014
3026
|
# @option options [Array<Types::Filter>] :filters
|
3015
|
-
# This parameter
|
3027
|
+
# This parameter isn't currently supported.
|
3016
3028
|
# @return [Event::Collection]
|
3017
3029
|
def events(options = {})
|
3018
3030
|
batches = Enumerator.new do |y|
|
@@ -3061,7 +3073,7 @@ module Aws::RDS
|
|
3061
3073
|
# Filters the available log files for files larger than the specified
|
3062
3074
|
# size.
|
3063
3075
|
# @option options [Array<Types::Filter>] :filters
|
3064
|
-
# This parameter
|
3076
|
+
# This parameter isn't currently supported.
|
3065
3077
|
# @return [DBLogFile::Collection]
|
3066
3078
|
def log_files(options = {})
|
3067
3079
|
batches = Enumerator.new do |y|
|