aws-sdk-rds 1.26.0 → 1.27.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 +186 -181
- data/lib/aws-sdk-rds/db_cluster.rb +30 -30
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +1 -1
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +3 -4
- data/lib/aws-sdk-rds/db_instance.rb +30 -26
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_security_group.rb +1 -1
- data/lib/aws-sdk-rds/db_snapshot.rb +8 -8
- data/lib/aws-sdk-rds/db_subnet_group.rb +1 -1
- data/lib/aws-sdk-rds/event_subscription.rb +3 -3
- data/lib/aws-sdk-rds/option_group.rb +2 -2
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +27 -25
- data/lib/aws-sdk-rds/types.rb +127 -117
- metadata +2 -2
@@ -300,11 +300,11 @@ module Aws::RDS
|
|
300
300
|
#
|
301
301
|
# Log types vary by DB engine. For information about the log types for
|
302
302
|
# each DB engine, see [Amazon RDS Database Log Files][1] in the *Amazon
|
303
|
-
#
|
303
|
+
# Aurora User Guide.*
|
304
304
|
#
|
305
305
|
#
|
306
306
|
#
|
307
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/
|
307
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html
|
308
308
|
# @return [Array<String>]
|
309
309
|
def enabled_cloudwatch_logs_exports
|
310
310
|
data[:enabled_cloudwatch_logs_exports]
|
@@ -326,11 +326,11 @@ module Aws::RDS
|
|
326
326
|
# `serverless` DB engine mode.
|
327
327
|
#
|
328
328
|
# For more information, see [Using Amazon Aurora Serverless][1] in the
|
329
|
-
# *Amazon
|
329
|
+
# *Amazon Aurora User Guide*.
|
330
330
|
#
|
331
331
|
#
|
332
332
|
#
|
333
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/
|
333
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html
|
334
334
|
# @return [Types::ScalingConfigurationInfo]
|
335
335
|
def scaling_configuration_info
|
336
336
|
data[:scaling_configuration_info]
|
@@ -512,11 +512,12 @@ module Aws::RDS
|
|
512
512
|
# @option options [Array<String>] :availability_zones
|
513
513
|
# A list of EC2 Availability Zones that instances in the DB cluster can
|
514
514
|
# be created in. For information on AWS Regions and Availability Zones,
|
515
|
-
# see [Regions and Availability Zones][1]
|
515
|
+
# see [Choosing the Regions and Availability Zones][1] in the *Amazon
|
516
|
+
# Aurora User Guide*.
|
516
517
|
#
|
517
518
|
#
|
518
519
|
#
|
519
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/
|
520
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html
|
520
521
|
# @option options [Integer] :backup_retention_period
|
521
522
|
# The number of days for which automated backups are retained. You must
|
522
523
|
# specify a minimum value of 1.
|
@@ -605,8 +606,8 @@ module Aws::RDS
|
|
605
606
|
#
|
606
607
|
# The default is a 30-minute window selected at random from an 8-hour
|
607
608
|
# block of time for each AWS Region. To see the time blocks available,
|
608
|
-
# see [ Adjusting the Preferred Maintenance Window][1] in the
|
609
|
-
#
|
609
|
+
# see [ Adjusting the Preferred DB Cluster Maintenance Window][1] in the
|
610
|
+
# *Amazon Aurora User Guide.*
|
610
611
|
#
|
611
612
|
# Constraints:
|
612
613
|
#
|
@@ -620,7 +621,7 @@ module Aws::RDS
|
|
620
621
|
#
|
621
622
|
#
|
622
623
|
#
|
623
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/
|
624
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
624
625
|
# @option options [String] :preferred_maintenance_window
|
625
626
|
# The weekly time range during which system maintenance can occur, in
|
626
627
|
# Universal Coordinated Time (UTC).
|
@@ -630,7 +631,7 @@ module Aws::RDS
|
|
630
631
|
# The default is a 30-minute window selected at random from an 8-hour
|
631
632
|
# block of time for each AWS Region, occurring on a random day of the
|
632
633
|
# week. To see the time blocks available, see [ Adjusting the Preferred
|
633
|
-
# Maintenance Window][1] in the *Amazon
|
634
|
+
# DB Cluster Maintenance Window][1] in the *Amazon Aurora User Guide.*
|
634
635
|
#
|
635
636
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
636
637
|
#
|
@@ -638,13 +639,13 @@ module Aws::RDS
|
|
638
639
|
#
|
639
640
|
#
|
640
641
|
#
|
641
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/
|
642
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
642
643
|
# @option options [String] :replication_source_identifier
|
643
644
|
# The Amazon Resource Name (ARN) of the source DB instance or DB cluster
|
644
645
|
# if this DB cluster is created as a Read Replica.
|
645
646
|
# @option options [Array<Types::Tag>] :tags
|
646
647
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
647
|
-
# Resources][1]
|
648
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
648
649
|
#
|
649
650
|
#
|
650
651
|
#
|
@@ -738,12 +739,11 @@ module Aws::RDS
|
|
738
739
|
# The list of log types that need to be enabled for exporting to
|
739
740
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
740
741
|
# used. For more information, see [Publishing Database Logs to Amazon
|
741
|
-
# CloudWatch Logs
|
742
|
-
# Guide*.
|
742
|
+
# CloudWatch Logs][1] in the *Amazon Aurora User Guide*.
|
743
743
|
#
|
744
744
|
#
|
745
745
|
#
|
746
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/
|
746
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
747
747
|
# @option options [String] :engine_mode
|
748
748
|
# The DB engine mode of the DB cluster, either `provisioned` or
|
749
749
|
# `serverless`.
|
@@ -921,12 +921,13 @@ module Aws::RDS
|
|
921
921
|
# cluster are applied during the next maintenance window.
|
922
922
|
#
|
923
923
|
# The `ApplyImmediately` parameter only affects the
|
924
|
-
# `
|
925
|
-
#
|
926
|
-
#
|
927
|
-
#
|
928
|
-
#
|
929
|
-
#
|
924
|
+
# `EnableIAMDatabaseAuthentication`, `MasterUserPassword`, and
|
925
|
+
# `NewDBClusterIdentifier` values. If you set the `ApplyImmediately`
|
926
|
+
# parameter value to false, then changes to the
|
927
|
+
# `EnableIAMDatabaseAuthentication`, `MasterUserPassword`, and
|
928
|
+
# `NewDBClusterIdentifier` values are applied during the next
|
929
|
+
# maintenance window. All other changes are applied immediately,
|
930
|
+
# regardless of the value of the `ApplyImmediately` parameter.
|
930
931
|
#
|
931
932
|
# Default: `false`
|
932
933
|
# @option options [Integer] :backup_retention_period
|
@@ -975,8 +976,8 @@ module Aws::RDS
|
|
975
976
|
#
|
976
977
|
# The default is a 30-minute window selected at random from an 8-hour
|
977
978
|
# block of time for each AWS Region. To see the time blocks available,
|
978
|
-
# see [ Adjusting the Preferred Maintenance Window][1] in the
|
979
|
-
#
|
979
|
+
# see [ Adjusting the Preferred DB Cluster Maintenance Window][1] in the
|
980
|
+
# *Amazon Aurora User Guide.*
|
980
981
|
#
|
981
982
|
# Constraints:
|
982
983
|
#
|
@@ -990,7 +991,7 @@ module Aws::RDS
|
|
990
991
|
#
|
991
992
|
#
|
992
993
|
#
|
993
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/
|
994
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
994
995
|
# @option options [String] :preferred_maintenance_window
|
995
996
|
# The weekly time range during which system maintenance can occur, in
|
996
997
|
# Universal Coordinated Time (UTC).
|
@@ -1000,7 +1001,7 @@ module Aws::RDS
|
|
1000
1001
|
# The default is a 30-minute window selected at random from an 8-hour
|
1001
1002
|
# block of time for each AWS Region, occurring on a random day of the
|
1002
1003
|
# week. To see the time blocks available, see [ Adjusting the Preferred
|
1003
|
-
# Maintenance Window][1] in the *Amazon
|
1004
|
+
# DB Cluster Maintenance Window][1] in the *Amazon Aurora User Guide.*
|
1004
1005
|
#
|
1005
1006
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
1006
1007
|
#
|
@@ -1008,7 +1009,7 @@ module Aws::RDS
|
|
1008
1009
|
#
|
1009
1010
|
#
|
1010
1011
|
#
|
1011
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/
|
1012
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
1012
1013
|
# @option options [Boolean] :enable_iam_database_authentication
|
1013
1014
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
1014
1015
|
# accounts to database accounts, and otherwise false.
|
@@ -1144,7 +1145,7 @@ module Aws::RDS
|
|
1144
1145
|
# A list of VPC security groups that the new DB cluster belongs to.
|
1145
1146
|
# @option options [Array<Types::Tag>] :tags
|
1146
1147
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
1147
|
-
# Resources][1]
|
1148
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
1148
1149
|
#
|
1149
1150
|
#
|
1150
1151
|
#
|
@@ -1197,12 +1198,11 @@ module Aws::RDS
|
|
1197
1198
|
# The list of logs that the restored DB cluster is to export to
|
1198
1199
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
1199
1200
|
# used. For more information, see [Publishing Database Logs to Amazon
|
1200
|
-
# CloudWatch Logs
|
1201
|
-
# Guide*.
|
1201
|
+
# CloudWatch Logs][1] in the *Amazon Aurora User Guide*.
|
1202
1202
|
#
|
1203
1203
|
#
|
1204
1204
|
#
|
1205
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/
|
1205
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
1206
1206
|
# @return [DBCluster]
|
1207
1207
|
def restore(options = {})
|
1208
1208
|
options = options.merge(source_db_cluster_identifier: @id)
|
@@ -214,7 +214,7 @@ module Aws::RDS
|
|
214
214
|
# The description for the DB cluster parameter group.
|
215
215
|
# @option options [Array<Types::Tag>] :tags
|
216
216
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
217
|
-
# Resources][1]
|
217
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
218
218
|
#
|
219
219
|
#
|
220
220
|
#
|
@@ -414,7 +414,7 @@ module Aws::RDS
|
|
414
414
|
# target DB cluster snapshot, and otherwise false. The default is false.
|
415
415
|
# @option options [Array<Types::Tag>] :tags
|
416
416
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
417
|
-
# Resources][1]
|
417
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
418
418
|
#
|
419
419
|
#
|
420
420
|
#
|
@@ -567,12 +567,11 @@ module Aws::RDS
|
|
567
567
|
# The list of logs that the restored DB cluster is to export to
|
568
568
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
569
569
|
# used. For more information, see [Publishing Database Logs to Amazon
|
570
|
-
# CloudWatch Logs ][1] in the *Amazon
|
571
|
-
# Guide*.
|
570
|
+
# CloudWatch Logs ][1] in the *Amazon Aurora User Guide*.
|
572
571
|
#
|
573
572
|
#
|
574
573
|
#
|
575
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/
|
574
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
576
575
|
# @option options [String] :engine_mode
|
577
576
|
# The DB engine mode of the DB cluster, either `provisioned` or
|
578
577
|
# `serverless`.
|
@@ -202,8 +202,11 @@ module Aws::RDS
|
|
202
202
|
data[:read_replica_db_instance_identifiers]
|
203
203
|
end
|
204
204
|
|
205
|
-
# Contains one or more identifiers of Aurora DB clusters
|
206
|
-
#
|
205
|
+
# Contains one or more identifiers of Aurora DB clusters to which the
|
206
|
+
# RDS DB instance is replicated as a Read Replica. For example, when you
|
207
|
+
# create an Aurora Read Replica of an RDS MySQL DB instance, the Aurora
|
208
|
+
# MySQL DB cluster for the Aurora Read Replica is shown. This output
|
209
|
+
# does not contain information about cross region Aurora Read Replicas.
|
207
210
|
# @return [Array<String>]
|
208
211
|
def read_replica_db_cluster_identifiers
|
209
212
|
data[:read_replica_db_cluster_identifiers]
|
@@ -352,11 +355,11 @@ module Aws::RDS
|
|
352
355
|
# A value that specifies the order in which an Aurora Replica is
|
353
356
|
# promoted to the primary instance after a failure of the existing
|
354
357
|
# primary instance. For more information, see [ Fault Tolerance for an
|
355
|
-
# Aurora DB Cluster][1]
|
358
|
+
# Aurora DB Cluster][1] in the *Amazon Aurora User Guide*.
|
356
359
|
#
|
357
360
|
#
|
358
361
|
#
|
359
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/
|
362
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.FaultTolerance
|
360
363
|
# @return [Integer]
|
361
364
|
def promotion_tier
|
362
365
|
data[:promotion_tier]
|
@@ -1011,7 +1014,8 @@ module Aws::RDS
|
|
1011
1014
|
# @option options [String] :preferred_backup_window
|
1012
1015
|
# The daily time range during which automated backups are created if
|
1013
1016
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
1014
|
-
# parameter. For more information, see [The Backup Window][1]
|
1017
|
+
# parameter. For more information, see [The Backup Window][1] in the
|
1018
|
+
# *Amazon RDS User Guide*.
|
1015
1019
|
#
|
1016
1020
|
# **Amazon Aurora**
|
1017
1021
|
#
|
@@ -1020,7 +1024,8 @@ module Aws::RDS
|
|
1020
1024
|
#
|
1021
1025
|
# The default is a 30-minute window selected at random from an 8-hour
|
1022
1026
|
# block of time for each AWS Region. To see the time blocks available,
|
1023
|
-
# see [ Adjusting the Preferred DB Instance Maintenance Window][2]
|
1027
|
+
# see [ Adjusting the Preferred DB Instance Maintenance Window][2] in
|
1028
|
+
# the *Amazon RDS User Guide*.
|
1024
1029
|
#
|
1025
1030
|
# Constraints:
|
1026
1031
|
#
|
@@ -1147,7 +1152,7 @@ module Aws::RDS
|
|
1147
1152
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
1148
1153
|
# be initially allocated for the DB instance. For information about
|
1149
1154
|
# valid Iops values, see see [Amazon RDS Provisioned IOPS Storage to
|
1150
|
-
# Improve Performance][1]
|
1155
|
+
# Improve Performance][1] in the *Amazon RDS User Guide*.
|
1151
1156
|
#
|
1152
1157
|
# Constraints: Must be a multiple between 1 and 50 of the storage amount
|
1153
1158
|
# for the DB instance. Must also be an integer multiple of 1000. For
|
@@ -1202,7 +1207,7 @@ module Aws::RDS
|
|
1202
1207
|
# attached to it, the DB instance is public.
|
1203
1208
|
# @option options [Array<Types::Tag>] :tags
|
1204
1209
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
1205
|
-
# Resources][1]
|
1210
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
1206
1211
|
#
|
1207
1212
|
#
|
1208
1213
|
#
|
@@ -1276,7 +1281,7 @@ module Aws::RDS
|
|
1276
1281
|
# metrics to Amazon CloudWatch Logs. For example,
|
1277
1282
|
# `arn:aws:iam:123456789012:role/emaccess`. For information on creating
|
1278
1283
|
# a monitoring role, go to [Setting Up and Enabling Enhanced
|
1279
|
-
# Monitoring][1]
|
1284
|
+
# Monitoring][1] in the *Amazon RDS User Guide*.
|
1280
1285
|
#
|
1281
1286
|
# If `MonitoringInterval` is set to a value other than 0, then you must
|
1282
1287
|
# supply a `MonitoringRoleArn` value.
|
@@ -1291,7 +1296,7 @@ module Aws::RDS
|
|
1291
1296
|
# A value that specifies the order in which an Aurora Replica is
|
1292
1297
|
# promoted to the primary instance after a failure of the existing
|
1293
1298
|
# primary instance. For more information, see [ Fault Tolerance for an
|
1294
|
-
# Aurora DB Cluster][1]
|
1299
|
+
# Aurora DB Cluster][1] in the *Amazon Aurora User Guide*.
|
1295
1300
|
#
|
1296
1301
|
# Default: 1
|
1297
1302
|
#
|
@@ -1299,7 +1304,7 @@ module Aws::RDS
|
|
1299
1304
|
#
|
1300
1305
|
#
|
1301
1306
|
#
|
1302
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/
|
1307
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.FaultTolerance
|
1303
1308
|
# @option options [String] :timezone
|
1304
1309
|
# The time zone of the DB instance. The time zone parameter is currently
|
1305
1310
|
# supported only by [Microsoft SQL Server][1].
|
@@ -1463,7 +1468,7 @@ module Aws::RDS
|
|
1463
1468
|
# private IP address. For more information, see CreateDBInstance.
|
1464
1469
|
# @option options [Array<Types::Tag>] :tags
|
1465
1470
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
1466
|
-
# Resources][1]
|
1471
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
1467
1472
|
#
|
1468
1473
|
#
|
1469
1474
|
#
|
@@ -1521,7 +1526,7 @@ module Aws::RDS
|
|
1521
1526
|
# metrics to Amazon CloudWatch Logs. For example,
|
1522
1527
|
# `arn:aws:iam:123456789012:role/emaccess`. For information on creating
|
1523
1528
|
# a monitoring role, go to [To create an IAM role for Amazon RDS
|
1524
|
-
# Enhanced Monitoring][1]
|
1529
|
+
# Enhanced Monitoring][1] in the *Amazon RDS User Guide*.
|
1525
1530
|
#
|
1526
1531
|
# If `MonitoringInterval` is set to a value other than 0, then you must
|
1527
1532
|
# supply a `MonitoringRoleArn` value.
|
@@ -1617,7 +1622,7 @@ module Aws::RDS
|
|
1617
1622
|
# otherwise false.
|
1618
1623
|
#
|
1619
1624
|
# For more information, see [Using Amazon Performance Insights][1] in
|
1620
|
-
# the *Amazon
|
1625
|
+
# the *Amazon RDS User Guide*.
|
1621
1626
|
#
|
1622
1627
|
#
|
1623
1628
|
#
|
@@ -1633,7 +1638,7 @@ module Aws::RDS
|
|
1633
1638
|
# The list of logs that the new DB instance is to export to CloudWatch
|
1634
1639
|
# Logs. The values in the list depend on the DB engine being used. For
|
1635
1640
|
# more information, see [Publishing Database Logs to Amazon CloudWatch
|
1636
|
-
# Logs ][1] in the *Amazon
|
1641
|
+
# Logs ][1] in the *Amazon RDS User Guide*.
|
1637
1642
|
#
|
1638
1643
|
#
|
1639
1644
|
#
|
@@ -1687,7 +1692,7 @@ module Aws::RDS
|
|
1687
1692
|
# Example: `my-snapshot-id`
|
1688
1693
|
# @option options [Array<Types::Tag>] :tags
|
1689
1694
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
1690
|
-
# Resources][1]
|
1695
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
1691
1696
|
#
|
1692
1697
|
#
|
1693
1698
|
#
|
@@ -1842,7 +1847,7 @@ module Aws::RDS
|
|
1842
1847
|
# parameter to move your DB instance to a different VPC. If your DB
|
1843
1848
|
# instance is not in a VPC, you can also use this parameter to move your
|
1844
1849
|
# DB instance into a VPC. For more information, see [Updating the VPC
|
1845
|
-
# for a DB Instance][1]
|
1850
|
+
# for a DB Instance][1] in the *Amazon RDS User Guide.*
|
1846
1851
|
#
|
1847
1852
|
# Changing the subnet group causes an outage during the change. The
|
1848
1853
|
# change is applied during the next maintenance window, unless you
|
@@ -1891,9 +1896,9 @@ module Aws::RDS
|
|
1891
1896
|
# cause an outage and are applied on the next call to RebootDBInstance,
|
1892
1897
|
# or the next failure reboot. Review the table of parameters in
|
1893
1898
|
# [Modifying a DB Instance and Using the Apply Immediately Parameter][1]
|
1894
|
-
# to see the impact that setting
|
1895
|
-
#
|
1896
|
-
# applied.
|
1899
|
+
# in the *Amazon RDS User Guide.* to see the impact that setting
|
1900
|
+
# `ApplyImmediately` to `true` or `false` has for each modified
|
1901
|
+
# parameter and to determine when the changes are applied.
|
1897
1902
|
#
|
1898
1903
|
# Default: `false`
|
1899
1904
|
#
|
@@ -2245,7 +2250,7 @@ module Aws::RDS
|
|
2245
2250
|
# metrics to Amazon CloudWatch Logs. For example,
|
2246
2251
|
# `arn:aws:iam:123456789012:role/emaccess`. For information on creating
|
2247
2252
|
# a monitoring role, go to [To create an IAM role for Amazon RDS
|
2248
|
-
# Enhanced Monitoring][1]
|
2253
|
+
# Enhanced Monitoring][1] in the *Amazon RDS User Guide.*
|
2249
2254
|
#
|
2250
2255
|
# If `MonitoringInterval` is set to a value other than 0, then you must
|
2251
2256
|
# supply a `MonitoringRoleArn` value.
|
@@ -2260,7 +2265,7 @@ module Aws::RDS
|
|
2260
2265
|
# A value that specifies the order in which an Aurora Replica is
|
2261
2266
|
# promoted to the primary instance after a failure of the existing
|
2262
2267
|
# primary instance. For more information, see [ Fault Tolerance for an
|
2263
|
-
# Aurora DB Cluster][1]
|
2268
|
+
# Aurora DB Cluster][1] in the *Amazon Aurora User Guide*.
|
2264
2269
|
#
|
2265
2270
|
# Default: 1
|
2266
2271
|
#
|
@@ -2268,7 +2273,7 @@ module Aws::RDS
|
|
2268
2273
|
#
|
2269
2274
|
#
|
2270
2275
|
#
|
2271
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/
|
2276
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.FaultTolerance
|
2272
2277
|
# @option options [Boolean] :enable_iam_database_authentication
|
2273
2278
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
2274
2279
|
# accounts to database accounts, and otherwise false.
|
@@ -2584,7 +2589,7 @@ module Aws::RDS
|
|
2584
2589
|
# the DB instance, and otherwise false. The default is false.
|
2585
2590
|
# @option options [Array<Types::Tag>] :tags
|
2586
2591
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
2587
|
-
# Resources][1]
|
2592
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
2588
2593
|
#
|
2589
2594
|
#
|
2590
2595
|
#
|
@@ -2626,8 +2631,7 @@ module Aws::RDS
|
|
2626
2631
|
# The list of logs that the restored DB instance is to export to
|
2627
2632
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
2628
2633
|
# used. For more information, see [Publishing Database Logs to Amazon
|
2629
|
-
# CloudWatch Logs
|
2630
|
-
# Guide*.
|
2634
|
+
# CloudWatch Logs][1] in the *Amazon RDS User Guide*.
|
2631
2635
|
#
|
2632
2636
|
#
|
2633
2637
|
#
|
@@ -215,7 +215,7 @@ module Aws::RDS
|
|
215
215
|
# The description for the DB parameter group.
|
216
216
|
# @option options [Array<Types::Tag>] :tags
|
217
217
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
218
|
-
# Resources][1]
|
218
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
219
219
|
#
|
220
220
|
#
|
221
221
|
#
|
@@ -262,7 +262,7 @@ module Aws::RDS
|
|
262
262
|
# A description for the copied DB parameter group.
|
263
263
|
# @option options [Array<Types::Tag>] :tags
|
264
264
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
265
|
-
# Resources][1]
|
265
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
266
266
|
#
|
267
267
|
#
|
268
268
|
#
|
@@ -253,7 +253,7 @@ module Aws::RDS
|
|
253
253
|
# The description for the DB security group.
|
254
254
|
# @option options [Array<Types::Tag>] :tags
|
255
255
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
256
|
-
# Resources][1]
|
256
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
257
257
|
#
|
258
258
|
#
|
259
259
|
#
|
@@ -349,7 +349,7 @@ module Aws::RDS
|
|
349
349
|
# @param [Hash] options ({})
|
350
350
|
# @option options [Array<Types::Tag>] :tags
|
351
351
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
352
|
-
# Resources][1]
|
352
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
353
353
|
#
|
354
354
|
#
|
355
355
|
#
|
@@ -423,7 +423,7 @@ module Aws::RDS
|
|
423
423
|
# can't use encryption keys from one AWS Region in another AWS Region.
|
424
424
|
# @option options [Array<Types::Tag>] :tags
|
425
425
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
426
|
-
# Resources][1]
|
426
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
427
427
|
#
|
428
428
|
#
|
429
429
|
#
|
@@ -488,7 +488,7 @@ module Aws::RDS
|
|
488
488
|
# your source DB instance uses Transparent Data Encryption for Oracle or
|
489
489
|
# Microsoft SQL Server, you must specify this option when copying across
|
490
490
|
# AWS Regions. For more information, see [Option Group
|
491
|
-
# Considerations][1]
|
491
|
+
# Considerations][1] in the *Amazon RDS User Guide.*
|
492
492
|
#
|
493
493
|
#
|
494
494
|
#
|
@@ -681,7 +681,8 @@ module Aws::RDS
|
|
681
681
|
#
|
682
682
|
# The provisioned IOPS value must follow the requirements for your
|
683
683
|
# database engine. For more information, see [Amazon RDS Provisioned
|
684
|
-
# IOPS Storage to Improve Performance][1]
|
684
|
+
# IOPS Storage to Improve Performance][1] in the *Amazon RDS User
|
685
|
+
# Guide.*
|
685
686
|
#
|
686
687
|
# Constraints: Must be an integer greater than 1000.
|
687
688
|
#
|
@@ -697,7 +698,7 @@ module Aws::RDS
|
|
697
698
|
# instance
|
698
699
|
# @option options [Array<Types::Tag>] :tags
|
699
700
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
700
|
-
# Resources][1]
|
701
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
701
702
|
#
|
702
703
|
#
|
703
704
|
#
|
@@ -742,12 +743,11 @@ module Aws::RDS
|
|
742
743
|
# The list of logs that the restored DB instance is to export to
|
743
744
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
744
745
|
# used. For more information, see [Publishing Database Logs to Amazon
|
745
|
-
# CloudWatch Logs
|
746
|
-
# Guide*.
|
746
|
+
# CloudWatch Logs][1] in the *Amazon Aurora User Guide*.
|
747
747
|
#
|
748
748
|
#
|
749
749
|
#
|
750
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/
|
750
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
751
751
|
# @option options [Array<Types::ProcessorFeature>] :processor_features
|
752
752
|
# The number of CPU cores and the number of threads per core for the DB
|
753
753
|
# instance class of the DB instance.
|