aws-sdk-rds 1.0.0.rc15 → 1.0.0.rc16
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 +274 -277
- data/lib/aws-sdk-rds/db_cluster.rb +21 -21
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +17 -16
- data/lib/aws-sdk-rds/db_instance.rb +135 -90
- data/lib/aws-sdk-rds/db_snapshot.rb +28 -27
- data/lib/aws-sdk-rds/resource.rb +74 -61
- data/lib/aws-sdk-rds/types.rb +239 -183
- metadata +2 -2
@@ -135,14 +135,15 @@ module Aws::RDS
|
|
135
135
|
data.percent_progress
|
136
136
|
end
|
137
137
|
|
138
|
-
# The
|
138
|
+
# The AWS Region that the DB snapshot was created in or copied from.
|
139
139
|
# @return [String]
|
140
140
|
def source_region
|
141
141
|
data.source_region
|
142
142
|
end
|
143
143
|
|
144
|
-
# The DB snapshot
|
145
|
-
# value in case of cross
|
144
|
+
# The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was
|
145
|
+
# copied from. It only has value in case of cross-customer or
|
146
|
+
# cross-region copy.
|
146
147
|
# @return [String]
|
147
148
|
def source_db_snapshot_identifier
|
148
149
|
data.source_db_snapshot_identifier
|
@@ -309,10 +310,10 @@ module Aws::RDS
|
|
309
310
|
# If you specify this parameter when you copy an unencrypted snapshot,
|
310
311
|
# the copy is encrypted.
|
311
312
|
#
|
312
|
-
# If you copy an encrypted snapshot to a different AWS
|
313
|
-
# must specify a KMS key for the destination AWS
|
314
|
-
# keys are specific to the
|
315
|
-
# cannot use encryption keys from one
|
313
|
+
# If you copy an encrypted snapshot to a different AWS Region, then you
|
314
|
+
# must specify a KMS key for the destination AWS Region. KMS encryption
|
315
|
+
# keys are specific to the AWS Region that they are created in, and you
|
316
|
+
# cannot use encryption keys from one AWS Region in another AWS Region.
|
316
317
|
# @option options [Array<Types::Tag>] :tags
|
317
318
|
# A list of tags.
|
318
319
|
# @option options [Boolean] :copy_tags
|
@@ -320,39 +321,39 @@ module Aws::RDS
|
|
320
321
|
# snapshot; otherwise false. The default is false.
|
321
322
|
# @option options [String] :pre_signed_url
|
322
323
|
# The URL that contains a Signature Version 4 signed request for the
|
323
|
-
# `CopyDBSnapshot` API action in the source AWS
|
324
|
+
# `CopyDBSnapshot` API action in the source AWS Region that contains the
|
324
325
|
# source DB snapshot to copy.
|
325
326
|
#
|
326
327
|
# You must specify this parameter when you copy an encrypted DB snapshot
|
327
|
-
# from another AWS
|
328
|
+
# from another AWS Region by using the Amazon RDS API. You can specify
|
328
329
|
# the source region option instead of this parameter when you copy an
|
329
|
-
# encrypted DB snapshot from another AWS
|
330
|
+
# encrypted DB snapshot from another AWS Region by using the AWS CLI.
|
330
331
|
#
|
331
332
|
# The presigned URL must be a valid request for the `CopyDBSnapshot` API
|
332
|
-
# action that can be executed in the source
|
333
|
+
# action that can be executed in the source AWS Region that contains the
|
333
334
|
# encrypted DB snapshot to be copied. The presigned URL request must
|
334
335
|
# contain the following parameter values:
|
335
336
|
#
|
336
337
|
# * `DestinationRegion` - The AWS Region that the encrypted DB snapshot
|
337
|
-
# will be copied to. This
|
338
|
+
# will be copied to. This AWS Region is the same one where the
|
338
339
|
# `CopyDBSnapshot` action is called that contains this presigned URL.
|
339
340
|
#
|
340
341
|
# For example, if you copy an encrypted DB snapshot from the us-west-2
|
341
|
-
# region to the us-east-1 region, then you
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
342
|
+
# region to the us-east-1 region, then you call the `CopyDBSnapshot`
|
343
|
+
# action in the us-east-1 region and provide a presigned URL that
|
344
|
+
# contains a call to the `CopyDBSnapshot` action in the us-west-2
|
345
|
+
# region. For this example, the `DestinationRegion` in the presigned
|
346
|
+
# URL must be set to the us-east-1 region.
|
346
347
|
#
|
347
348
|
# * `KmsKeyId` - The KMS key identifier for the key to use to encrypt
|
348
|
-
# the copy of the DB snapshot in the destination
|
349
|
-
# same identifier for both the `CopyDBSnapshot` action that is
|
350
|
-
# in the destination
|
351
|
-
# URL.
|
349
|
+
# the copy of the DB snapshot in the destination AWS Region. This is
|
350
|
+
# the same identifier for both the `CopyDBSnapshot` action that is
|
351
|
+
# called in the destination AWS Region, and the action contained in
|
352
|
+
# the presigned URL.
|
352
353
|
#
|
353
354
|
# * `SourceDBSnapshotIdentifier` - The DB snapshot identifier for the
|
354
355
|
# encrypted snapshot to be copied. This identifier must be in the
|
355
|
-
# Amazon Resource Name (ARN) format for the source
|
356
|
+
# Amazon Resource Name (ARN) format for the source AWS Region. For
|
356
357
|
# example, if you are copying an encrypted DB snapshot from the
|
357
358
|
# us-west-2 region, then your `SourceDBSnapshotIdentifier` looks like
|
358
359
|
# the following example:
|
@@ -367,10 +368,11 @@ module Aws::RDS
|
|
367
368
|
# [1]: http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
368
369
|
# [2]: http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
369
370
|
# @option options [String] :option_group_name
|
370
|
-
# The name of an option group to associate with the copy
|
371
|
+
# The name of an option group to associate with the copy of the
|
372
|
+
# snapshot.
|
371
373
|
#
|
372
|
-
# Specify this option if you are copying a snapshot from one AWS
|
373
|
-
# to another, and your DB instance uses a
|
374
|
+
# Specify this option if you are copying a snapshot from one AWS Region
|
375
|
+
# to another, and your DB instance uses a nondefault option group. If
|
374
376
|
# your source DB instance uses Transparent Data Encryption for Oracle or
|
375
377
|
# Microsoft SQL Server, you must specify this option when copying across
|
376
378
|
# regions. For more information, see [Option Group Considerations][1].
|
@@ -447,8 +449,7 @@ module Aws::RDS
|
|
447
449
|
#
|
448
450
|
# Constraints:
|
449
451
|
#
|
450
|
-
# * Must contain from 1 to 63 alphanumeric characters or hyphens
|
451
|
-
# 15 for SQL Server)
|
452
|
+
# * Must contain from 1 to 63 alphanumeric characters or hyphens
|
452
453
|
#
|
453
454
|
# * First character must be a letter
|
454
455
|
#
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -157,8 +157,8 @@ module Aws::RDS
|
|
157
157
|
# parameter.
|
158
158
|
#
|
159
159
|
# Default: A 30-minute window selected at random from an 8-hour block of
|
160
|
-
# time per
|
161
|
-
# Preferred Maintenance Window][1] in the *Amazon RDS User Guide.*
|
160
|
+
# time per AWS Region. To see the time blocks available, see [ Adjusting
|
161
|
+
# the Preferred Maintenance Window][1] in the *Amazon RDS User Guide.*
|
162
162
|
#
|
163
163
|
# Constraints:
|
164
164
|
#
|
@@ -180,7 +180,7 @@ module Aws::RDS
|
|
180
180
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
181
181
|
#
|
182
182
|
# Default: A 30-minute window selected at random from an 8-hour block of
|
183
|
-
# time per
|
183
|
+
# time per AWS Region, occurring on a random day of the week. To see the
|
184
184
|
# time blocks available, see [ Adjusting the Preferred Maintenance
|
185
185
|
# Window][1] in the *Amazon RDS User Guide.*
|
186
186
|
#
|
@@ -211,38 +211,38 @@ module Aws::RDS
|
|
211
211
|
# value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
212
212
|
# default encryption key. AWS KMS creates the default encryption key for
|
213
213
|
# your AWS account. Your AWS account has a different default encryption
|
214
|
-
# key for each AWS
|
214
|
+
# key for each AWS Region.
|
215
215
|
#
|
216
|
-
# If you create a Read Replica of an encrypted DB cluster in another
|
217
|
-
#
|
218
|
-
# destination
|
219
|
-
# that
|
216
|
+
# If you create a Read Replica of an encrypted DB cluster in another AWS
|
217
|
+
# Region, you must set `KmsKeyId` to a KMS key ID that is valid in the
|
218
|
+
# destination AWS Region. This key is used to encrypt the Read Replica
|
219
|
+
# in that AWS Region.
|
220
220
|
# @option options [String] :pre_signed_url
|
221
221
|
# A URL that contains a Signature Version 4 signed request for the
|
222
|
-
# `CreateDBCluster` action to be called in the source
|
223
|
-
# DB cluster will be replicated from. You only need to specify
|
222
|
+
# `CreateDBCluster` action to be called in the source AWS Region where
|
223
|
+
# the DB cluster will be replicated from. You only need to specify
|
224
224
|
# `PreSignedUrl` when you are performing cross-region replication from
|
225
225
|
# an encrypted DB cluster.
|
226
226
|
#
|
227
227
|
# The pre-signed URL must be a valid request for the `CreateDBCluster`
|
228
|
-
# API action that can be executed in the source
|
229
|
-
# encrypted DB cluster to be copied.
|
228
|
+
# API action that can be executed in the source AWS Region that contains
|
229
|
+
# the encrypted DB cluster to be copied.
|
230
230
|
#
|
231
231
|
# The pre-signed URL request must contain the following parameter
|
232
232
|
# values:
|
233
233
|
#
|
234
234
|
# * `KmsKeyId` - The KMS key identifier for the key to use to encrypt
|
235
|
-
# the copy of the DB cluster in the destination
|
236
|
-
# refer to the same KMS key for both the `CreateDBCluster`
|
237
|
-
# is called in the destination
|
238
|
-
# pre-signed URL.
|
235
|
+
# the copy of the DB cluster in the destination AWS Region. This
|
236
|
+
# should refer to the same KMS key for both the `CreateDBCluster`
|
237
|
+
# action that is called in the destination AWS Region, and the action
|
238
|
+
# contained in the pre-signed URL.
|
239
239
|
#
|
240
|
-
# * `DestinationRegion` - The name of the
|
240
|
+
# * `DestinationRegion` - The name of the AWS Region that Aurora Read
|
241
241
|
# Replica will be created in.
|
242
242
|
#
|
243
243
|
# * `ReplicationSourceIdentifier` - The DB cluster identifier for the
|
244
244
|
# encrypted DB cluster to be copied. This identifier must be in the
|
245
|
-
# Amazon Resource Name (ARN) format for the source
|
245
|
+
# Amazon Resource Name (ARN) format for the source AWS Region. For
|
246
246
|
# example, if you are copying an encrypted DB cluster from the
|
247
247
|
# us-west-2 region, then your `ReplicationSourceIdentifier` would look
|
248
248
|
# like Example:
|
@@ -453,8 +453,7 @@ module Aws::RDS
|
|
453
453
|
#
|
454
454
|
# Constraints:
|
455
455
|
#
|
456
|
-
# * Must contain from 1 to 63 alphanumeric characters or hyphens
|
457
|
-
# 15 for SQL Server).
|
456
|
+
# * Must contain from 1 to 63 alphanumeric characters or hyphens.
|
458
457
|
#
|
459
458
|
# * First character must be a letter.
|
460
459
|
#
|
@@ -508,7 +507,7 @@ module Aws::RDS
|
|
508
507
|
# @option options [required, String] :engine
|
509
508
|
# The name of the database engine to be used for this instance.
|
510
509
|
#
|
511
|
-
# Not every database engine is available for every AWS
|
510
|
+
# Not every database engine is available for every AWS Region.
|
512
511
|
#
|
513
512
|
# Valid Values:
|
514
513
|
#
|
@@ -536,12 +535,12 @@ module Aws::RDS
|
|
536
535
|
#
|
537
536
|
# * `sqlserver-web`
|
538
537
|
# @option options [String] :master_username
|
539
|
-
# The name for the master
|
538
|
+
# The name for the master user.
|
540
539
|
#
|
541
540
|
# **Amazon Aurora**
|
542
541
|
#
|
543
|
-
# Not applicable.
|
544
|
-
#
|
542
|
+
# Not applicable. The name for the master user is managed by the DB
|
543
|
+
# cluster. For more information, see CreateDBCluster.
|
545
544
|
#
|
546
545
|
# **MariaDB**
|
547
546
|
#
|
@@ -591,13 +590,13 @@ module Aws::RDS
|
|
591
590
|
#
|
592
591
|
# * Cannot be a reserved word for the chosen database engine.
|
593
592
|
# @option options [String] :master_user_password
|
594
|
-
# The password for the master
|
595
|
-
#
|
593
|
+
# The password for the master user. Can be any printable ASCII character
|
594
|
+
# except "/", """, or "@".
|
596
595
|
#
|
597
596
|
# **Amazon Aurora**
|
598
597
|
#
|
599
|
-
# Not applicable.
|
600
|
-
#
|
598
|
+
# Not applicable. The password for the master user is managed by the DB
|
599
|
+
# cluster. For more information, see CreateDBCluster.
|
601
600
|
#
|
602
601
|
# **MariaDB**
|
603
602
|
#
|
@@ -625,6 +624,11 @@ module Aws::RDS
|
|
625
624
|
# @option options [Array<String>] :vpc_security_group_ids
|
626
625
|
# A list of EC2 VPC security groups to associate with this DB instance.
|
627
626
|
#
|
627
|
+
# **Amazon Aurora**
|
628
|
+
#
|
629
|
+
# Not applicable. The associated list of EC2 VPC security groups is
|
630
|
+
# managed by the DB cluster. For more information, see CreateDBCluster.
|
631
|
+
#
|
628
632
|
# Default: The default EC2 VPC security group for the DB subnet group's
|
629
633
|
# VPC.
|
630
634
|
# @option options [String] :availability_zone
|
@@ -633,13 +637,13 @@ module Aws::RDS
|
|
633
637
|
# and Availability Zones][1].
|
634
638
|
#
|
635
639
|
# Default: A random, system-chosen Availability Zone in the endpoint's
|
636
|
-
#
|
640
|
+
# AWS Region.
|
637
641
|
#
|
638
642
|
# Example: `us-east-1d`
|
639
643
|
#
|
640
644
|
# Constraint: The AvailabilityZone parameter cannot be specified if the
|
641
645
|
# MultiAZ parameter is set to `true`. The specified Availability Zone
|
642
|
-
# must be in the same
|
646
|
+
# must be in the same AWS Region as the current endpoint.
|
643
647
|
#
|
644
648
|
#
|
645
649
|
#
|
@@ -656,7 +660,7 @@ module Aws::RDS
|
|
656
660
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
657
661
|
#
|
658
662
|
# Default: A 30-minute window selected at random from an 8-hour block of
|
659
|
-
# time per
|
663
|
+
# time per AWS Region, occurring on a random day of the week. To see the
|
660
664
|
# time blocks available, see [ Adjusting the Preferred Maintenance
|
661
665
|
# Window][2] in the *Amazon RDS User Guide.*
|
662
666
|
#
|
@@ -685,6 +689,11 @@ module Aws::RDS
|
|
685
689
|
# this parameter to a positive number enables backups. Setting this
|
686
690
|
# parameter to 0 disables automated backups.
|
687
691
|
#
|
692
|
+
# **Amazon Aurora**
|
693
|
+
#
|
694
|
+
# Not applicable. The retention period for automated backups is managed
|
695
|
+
# by the DB cluster. For more information, see CreateDBCluster.
|
696
|
+
#
|
688
697
|
# Default: 1
|
689
698
|
#
|
690
699
|
# Constraints:
|
@@ -697,9 +706,14 @@ module Aws::RDS
|
|
697
706
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
698
707
|
# parameter. For more information, see [DB Instance Backups][1].
|
699
708
|
#
|
709
|
+
# **Amazon Aurora**
|
710
|
+
#
|
711
|
+
# Not applicable. The daily time range for creating automated backups is
|
712
|
+
# managed by the DB cluster. For more information, see CreateDBCluster.
|
713
|
+
#
|
700
714
|
# Default: A 30-minute window selected at random from an 8-hour block of
|
701
|
-
# time per
|
702
|
-
# Preferred DB Instance Maintenance Window][2].
|
715
|
+
# time per AWS Region. To see the time blocks available, see [ Adjusting
|
716
|
+
# the Preferred DB Instance Maintenance Window][2].
|
703
717
|
#
|
704
718
|
# Constraints:
|
705
719
|
#
|
@@ -771,15 +785,13 @@ module Aws::RDS
|
|
771
785
|
#
|
772
786
|
# The following are the database engines and major and minor versions
|
773
787
|
# that are available with Amazon RDS. Not every database engine is
|
774
|
-
# available for every AWS
|
788
|
+
# available for every AWS Region.
|
775
789
|
#
|
776
790
|
# **Amazon Aurora**
|
777
791
|
#
|
778
|
-
#
|
779
|
-
#
|
780
|
-
#
|
781
|
-
#
|
782
|
-
# ^
|
792
|
+
# Not applicable. The version number of the database engine to be used
|
793
|
+
# by the DB instance is managed by the DB cluster. For more information,
|
794
|
+
# see CreateDBCluster.
|
783
795
|
#
|
784
796
|
# **MariaDB**
|
785
797
|
#
|
@@ -842,9 +854,6 @@ module Aws::RDS
|
|
842
854
|
#
|
843
855
|
# * `5.7.11` (supported in all AWS regions)
|
844
856
|
#
|
845
|
-
# * `5.7.10` (supported in all regions except us-east-2, ca-central-1,
|
846
|
-
# eu-west-2)
|
847
|
-
#
|
848
857
|
#
|
849
858
|
#
|
850
859
|
# * `5.6.35` (supported in all AWS regions)
|
@@ -856,24 +865,6 @@ module Aws::RDS
|
|
856
865
|
# * `5.6.27` (supported in all regions except us-east-2, ca-central-1,
|
857
866
|
# eu-west-2)
|
858
867
|
#
|
859
|
-
# * `5.6.23` (supported in all regions except us-east-2, ap-south-1,
|
860
|
-
# ca-central-1, eu-west-2)
|
861
|
-
#
|
862
|
-
# * `5.6.22` (supported in all regions except us-east-2, ap-south-1,
|
863
|
-
# ap-northeast-2, ca-central-1, eu-west-2)
|
864
|
-
#
|
865
|
-
# * `5.6.21b` (supported in all regions except us-east-2, ap-south-1,
|
866
|
-
# ap-northeast-2, ca-central-1, eu-west-2)
|
867
|
-
#
|
868
|
-
# * `5.6.21` (supported in all regions except us-east-2, ap-south-1,
|
869
|
-
# ap-northeast-2, ca-central-1, eu-west-2)
|
870
|
-
#
|
871
|
-
# * `5.6.19b` (supported in all regions except us-east-2, ap-south-1,
|
872
|
-
# ap-northeast-2, ca-central-1, eu-west-2)
|
873
|
-
#
|
874
|
-
# * `5.6.19a` (supported in all regions except us-east-2, ap-south-1,
|
875
|
-
# ap-northeast-2, ca-central-1, eu-west-2)
|
876
|
-
#
|
877
868
|
#
|
878
869
|
#
|
879
870
|
# * `5.5.54` (supported in all AWS regions)
|
@@ -970,6 +961,11 @@ module Aws::RDS
|
|
970
961
|
# @option options [String] :character_set_name
|
971
962
|
# For supported engines, indicates that the DB instance should be
|
972
963
|
# associated with the specified CharacterSet.
|
964
|
+
#
|
965
|
+
# **Amazon Aurora**
|
966
|
+
#
|
967
|
+
# Not applicable. The character set is managed by the DB cluster. For
|
968
|
+
# more information, see CreateDBCluster.
|
973
969
|
# @option options [Boolean] :publicly_accessible
|
974
970
|
# Specifies the accessibility options for the DB instance. A value of
|
975
971
|
# true specifies an Internet-facing instance with a publicly resolvable
|
@@ -1017,6 +1013,11 @@ module Aws::RDS
|
|
1017
1013
|
# @option options [Boolean] :storage_encrypted
|
1018
1014
|
# Specifies whether the DB instance is encrypted.
|
1019
1015
|
#
|
1016
|
+
# **Amazon Aurora**
|
1017
|
+
#
|
1018
|
+
# Not applicable. The encryption for DB instances is managed by the DB
|
1019
|
+
# cluster. For more information, see CreateDBCluster.
|
1020
|
+
#
|
1020
1021
|
# Default: false
|
1021
1022
|
# @option options [String] :kms_key_id
|
1022
1023
|
# The KMS key identifier for an encrypted DB instance.
|
@@ -1027,11 +1028,16 @@ module Aws::RDS
|
|
1027
1028
|
# instance, then you can use the KMS key alias instead of the ARN for
|
1028
1029
|
# the KM encryption key.
|
1029
1030
|
#
|
1031
|
+
# **Amazon Aurora**
|
1032
|
+
#
|
1033
|
+
# Not applicable. The KMS key identifier is managed by the DB cluster.
|
1034
|
+
# For more information, see CreateDBCluster.
|
1035
|
+
#
|
1030
1036
|
# If the `StorageEncrypted` parameter is true, and you do not specify a
|
1031
1037
|
# value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
1032
1038
|
# default encryption key. AWS KMS creates the default encryption key for
|
1033
1039
|
# your AWS account. Your AWS account has a different default encryption
|
1034
|
-
# key for each AWS
|
1040
|
+
# key for each AWS Region.
|
1035
1041
|
# @option options [String] :domain
|
1036
1042
|
# Specify the Active Directory Domain to create the instance in.
|
1037
1043
|
# @option options [Boolean] :copy_tags_to_snapshot
|
@@ -1089,6 +1095,13 @@ module Aws::RDS
|
|
1089
1095
|
# You can enable IAM database authentication for the following database
|
1090
1096
|
# engines:
|
1091
1097
|
#
|
1098
|
+
# **Amazon Aurora**
|
1099
|
+
#
|
1100
|
+
# Not applicable. Mapping AWS IAM accounts to database accounts is
|
1101
|
+
# managed by the DB cluster. For more information, see CreateDBCluster.
|
1102
|
+
#
|
1103
|
+
# **MySQL**
|
1104
|
+
#
|
1092
1105
|
# * For MySQL 5.6, minor version 5.6.34 or higher
|
1093
1106
|
#
|
1094
1107
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -420,12 +420,13 @@ module Aws::RDS
|
|
420
420
|
#
|
421
421
|
# * Must specify a valid DB cluster parameter group.
|
422
422
|
#
|
423
|
-
# * If the source DB cluster parameter group is in the same
|
424
|
-
# the copy, specify a valid DB parameter group identifier, for
|
423
|
+
# * If the source DB cluster parameter group is in the same AWS Region
|
424
|
+
# as the copy, specify a valid DB parameter group identifier, for
|
425
425
|
# example `my-db-cluster-param-group`, or a valid ARN.
|
426
426
|
#
|
427
|
-
# * If the source DB parameter group is in a different
|
428
|
-
# copy, specify a valid DB cluster parameter group ARN, for
|
427
|
+
# * If the source DB parameter group is in a different AWS Region than
|
428
|
+
# the copy, specify a valid DB cluster parameter group ARN, for
|
429
|
+
# example
|
429
430
|
# `arn:aws:rds:us-east-1:123456789012:cluster-pg:custom-cluster-group1`.
|
430
431
|
#
|
431
432
|
#
|
@@ -506,7 +507,7 @@ module Aws::RDS
|
|
506
507
|
# not case-sensitive.
|
507
508
|
#
|
508
509
|
# You cannot copy an encrypted, shared DB cluster snapshot from one
|
509
|
-
# AWS
|
510
|
+
# AWS Region to another.
|
510
511
|
#
|
511
512
|
# Constraints:
|
512
513
|
#
|
@@ -518,10 +519,10 @@ module Aws::RDS
|
|
518
519
|
#
|
519
520
|
# * Must specify a valid system snapshot in the "available" state.
|
520
521
|
#
|
521
|
-
# * If the source snapshot is in the same
|
522
|
-
# a valid DB snapshot identifier.
|
522
|
+
# * If the source snapshot is in the same AWS Region as the copy,
|
523
|
+
# specify a valid DB snapshot identifier.
|
523
524
|
#
|
524
|
-
# * If the source snapshot is in a different
|
525
|
+
# * If the source snapshot is in a different AWS Region than the copy,
|
525
526
|
# specify a valid DB cluster snapshot ARN. For more information, go
|
526
527
|
# to [ Copying a DB Snapshot or DB Cluster Snapshot][1].
|
527
528
|
#
|
@@ -565,39 +566,40 @@ module Aws::RDS
|
|
565
566
|
# If you copy an encrypted DB cluster snapshot that is shared from
|
566
567
|
# another AWS account, then you must specify a value for `KmsKeyId`.
|
567
568
|
#
|
568
|
-
# To copy an encrypted DB cluster snapshot to another
|
569
|
-
# set `KmsKeyId` to the KMS key ID you want to use to encrypt the
|
570
|
-
# of the DB cluster snapshot in the destination
|
571
|
-
# keys are specific to the
|
572
|
-
# cannot use encryption keys from one
|
569
|
+
# To copy an encrypted DB cluster snapshot to another AWS Region, you
|
570
|
+
# must set `KmsKeyId` to the KMS key ID you want to use to encrypt the
|
571
|
+
# copy of the DB cluster snapshot in the destination AWS Region. KMS
|
572
|
+
# encryption keys are specific to the AWS Region that they are created
|
573
|
+
# in, and you cannot use encryption keys from one AWS Region in
|
574
|
+
# another AWS Region.
|
573
575
|
# @return [String]
|
574
576
|
#
|
575
577
|
# @!attribute [rw] pre_signed_url
|
576
578
|
# The URL that contains a Signature Version 4 signed request for the
|
577
|
-
# `CopyDBClusterSnapshot` API action in the AWS
|
579
|
+
# `CopyDBClusterSnapshot` API action in the AWS Region that contains
|
578
580
|
# the source DB cluster snapshot to copy. The `PreSignedUrl` parameter
|
579
581
|
# must be used when copying an encrypted DB cluster snapshot from
|
580
|
-
# another AWS
|
582
|
+
# another AWS Region.
|
581
583
|
#
|
582
584
|
# The pre-signed URL must be a valid request for the
|
583
585
|
# `CopyDBSClusterSnapshot` API action that can be executed in the
|
584
|
-
# source
|
585
|
-
# copied. The pre-signed URL request must contain the following
|
586
|
+
# source AWS Region that contains the encrypted DB cluster snapshot to
|
587
|
+
# be copied. The pre-signed URL request must contain the following
|
586
588
|
# parameter values:
|
587
589
|
#
|
588
590
|
# * `KmsKeyId` - The KMS key identifier for the key to use to encrypt
|
589
|
-
# the copy of the DB cluster snapshot in the destination
|
591
|
+
# the copy of the DB cluster snapshot in the destination AWS Region.
|
590
592
|
# This is the same identifier for both the `CopyDBClusterSnapshot`
|
591
|
-
# action that is called in the destination
|
592
|
-
# contained in the pre-signed URL.
|
593
|
+
# action that is called in the destination AWS Region, and the
|
594
|
+
# action contained in the pre-signed URL.
|
593
595
|
#
|
594
|
-
# * `DestinationRegion` - The name of the
|
595
|
-
# snapshot will be created in.
|
596
|
+
# * `DestinationRegion` - The name of the AWS Region that the DB
|
597
|
+
# cluster snapshot will be created in.
|
596
598
|
#
|
597
599
|
# * `SourceDBClusterSnapshotIdentifier` - The DB cluster snapshot
|
598
600
|
# identifier for the encrypted DB cluster snapshot to be copied.
|
599
601
|
# This identifier must be in the Amazon Resource Name (ARN) format
|
600
|
-
# for the source
|
602
|
+
# for the source AWS Region. For example, if you are copying an
|
601
603
|
# encrypted DB cluster snapshot from the us-west-2 region, then your
|
602
604
|
# `SourceDBClusterSnapshotIdentifier` looks like the following
|
603
605
|
# example:
|
@@ -767,19 +769,19 @@ module Aws::RDS
|
|
767
769
|
# @!attribute [rw] source_db_snapshot_identifier
|
768
770
|
# The identifier for the source DB snapshot.
|
769
771
|
#
|
770
|
-
# If the source snapshot is in the same
|
771
|
-
# valid DB snapshot identifier. For example,
|
772
|
-
# `rds:mysql-instance1-snapshot-20130805`.
|
772
|
+
# If the source snapshot is in the same AWS Region as the copy,
|
773
|
+
# specify a valid DB snapshot identifier. For example, you might
|
774
|
+
# specify `rds:mysql-instance1-snapshot-20130805`.
|
773
775
|
#
|
774
|
-
# If the source snapshot is in a different
|
775
|
-
# specify a valid DB snapshot ARN. For example,
|
776
|
+
# If the source snapshot is in a different AWS Region than the copy,
|
777
|
+
# specify a valid DB snapshot ARN. For example, you might specify
|
776
778
|
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805`.
|
777
779
|
#
|
778
780
|
# If you are copying from a shared manual DB snapshot, this parameter
|
779
781
|
# must be the Amazon Resource Name (ARN) of the shared DB snapshot.
|
780
782
|
#
|
781
783
|
# If you are copying an encrypted snapshot this parameter must be in
|
782
|
-
# the ARN format for the source
|
784
|
+
# the ARN format for the source AWS Region, and must match the
|
783
785
|
# `SourceDBSnapshotIdentifier` in the `PreSignedUrl` parameter.
|
784
786
|
#
|
785
787
|
# Constraints:
|
@@ -827,11 +829,11 @@ module Aws::RDS
|
|
827
829
|
# If you specify this parameter when you copy an unencrypted snapshot,
|
828
830
|
# the copy is encrypted.
|
829
831
|
#
|
830
|
-
# If you copy an encrypted snapshot to a different AWS
|
831
|
-
# you must specify a KMS key for the destination AWS
|
832
|
-
# encryption keys are specific to the
|
833
|
-
# and you cannot use encryption keys from one
|
834
|
-
#
|
832
|
+
# If you copy an encrypted snapshot to a different AWS Region, then
|
833
|
+
# you must specify a KMS key for the destination AWS Region. KMS
|
834
|
+
# encryption keys are specific to the AWS Region that they are created
|
835
|
+
# in, and you cannot use encryption keys from one AWS Region in
|
836
|
+
# another AWS Region.
|
835
837
|
# @return [String]
|
836
838
|
#
|
837
839
|
# @!attribute [rw] tags
|
@@ -845,41 +847,41 @@ module Aws::RDS
|
|
845
847
|
#
|
846
848
|
# @!attribute [rw] pre_signed_url
|
847
849
|
# The URL that contains a Signature Version 4 signed request for the
|
848
|
-
# `CopyDBSnapshot` API action in the source AWS
|
850
|
+
# `CopyDBSnapshot` API action in the source AWS Region that contains
|
849
851
|
# the source DB snapshot to copy.
|
850
852
|
#
|
851
853
|
# You must specify this parameter when you copy an encrypted DB
|
852
|
-
# snapshot from another AWS
|
854
|
+
# snapshot from another AWS Region by using the Amazon RDS API. You
|
853
855
|
# can specify the source region option instead of this parameter when
|
854
|
-
# you copy an encrypted DB snapshot from another AWS
|
856
|
+
# you copy an encrypted DB snapshot from another AWS Region by using
|
855
857
|
# the AWS CLI.
|
856
858
|
#
|
857
859
|
# The presigned URL must be a valid request for the `CopyDBSnapshot`
|
858
|
-
# API action that can be executed in the source
|
859
|
-
# the encrypted DB snapshot to be copied. The presigned URL
|
860
|
-
# must contain the following parameter values:
|
860
|
+
# API action that can be executed in the source AWS Region that
|
861
|
+
# contains the encrypted DB snapshot to be copied. The presigned URL
|
862
|
+
# request must contain the following parameter values:
|
861
863
|
#
|
862
864
|
# * `DestinationRegion` - The AWS Region that the encrypted DB
|
863
|
-
# snapshot will be copied to. This
|
864
|
-
# `CopyDBSnapshot` action is called that contains this presigned
|
865
|
+
# snapshot will be copied to. This AWS Region is the same one where
|
866
|
+
# the `CopyDBSnapshot` action is called that contains this presigned
|
865
867
|
# URL.
|
866
868
|
#
|
867
869
|
# For example, if you copy an encrypted DB snapshot from the
|
868
|
-
# us-west-2 region to the us-east-1 region, then you
|
870
|
+
# us-west-2 region to the us-east-1 region, then you call the
|
869
871
|
# `CopyDBSnapshot` action in the us-east-1 region and provide a
|
870
872
|
# presigned URL that contains a call to the `CopyDBSnapshot` action
|
871
873
|
# in the us-west-2 region. For this example, the `DestinationRegion`
|
872
874
|
# in the presigned URL must be set to the us-east-1 region.
|
873
875
|
#
|
874
876
|
# * `KmsKeyId` - The KMS key identifier for the key to use to encrypt
|
875
|
-
# the copy of the DB snapshot in the destination
|
876
|
-
# same identifier for both the `CopyDBSnapshot` action that is
|
877
|
-
# called in the destination
|
878
|
-
# presigned URL.
|
877
|
+
# the copy of the DB snapshot in the destination AWS Region. This is
|
878
|
+
# the same identifier for both the `CopyDBSnapshot` action that is
|
879
|
+
# called in the destination AWS Region, and the action contained in
|
880
|
+
# the presigned URL.
|
879
881
|
#
|
880
882
|
# * `SourceDBSnapshotIdentifier` - The DB snapshot identifier for the
|
881
883
|
# encrypted snapshot to be copied. This identifier must be in the
|
882
|
-
# Amazon Resource Name (ARN) format for the source
|
884
|
+
# Amazon Resource Name (ARN) format for the source AWS Region. For
|
883
885
|
# example, if you are copying an encrypted DB snapshot from the
|
884
886
|
# us-west-2 region, then your `SourceDBSnapshotIdentifier` looks
|
885
887
|
# like the following example:
|
@@ -896,10 +898,11 @@ module Aws::RDS
|
|
896
898
|
# @return [String]
|
897
899
|
#
|
898
900
|
# @!attribute [rw] option_group_name
|
899
|
-
# The name of an option group to associate with the copy
|
901
|
+
# The name of an option group to associate with the copy of the
|
902
|
+
# snapshot.
|
900
903
|
#
|
901
904
|
# Specify this option if you are copying a snapshot from one AWS
|
902
|
-
#
|
905
|
+
# Region to another, and your DB instance uses a nondefault option
|
903
906
|
# group. If your source DB instance uses Transparent Data Encryption
|
904
907
|
# for Oracle or Microsoft SQL Server, you must specify this option
|
905
908
|
# when copying across regions. For more information, see [Option Group
|
@@ -976,12 +979,12 @@ module Aws::RDS
|
|
976
979
|
#
|
977
980
|
# * Must specify a valid option group.
|
978
981
|
#
|
979
|
-
# * If the source option group is in the same
|
982
|
+
# * If the source option group is in the same AWS Region as the copy,
|
980
983
|
# specify a valid option group identifier, for example
|
981
984
|
# `my-option-group`, or a valid ARN.
|
982
985
|
#
|
983
|
-
# * If the source option group is in a different
|
984
|
-
# specify a valid option group ARN, for example
|
986
|
+
# * If the source option group is in a different AWS Region than the
|
987
|
+
# copy, specify a valid option group ARN, for example
|
985
988
|
# `arn:aws:rds:us-west-2:123456789012:og:special-options`.
|
986
989
|
#
|
987
990
|
#
|
@@ -1198,7 +1201,7 @@ module Aws::RDS
|
|
1198
1201
|
# parameter.
|
1199
1202
|
#
|
1200
1203
|
# Default: A 30-minute window selected at random from an 8-hour block
|
1201
|
-
# of time per
|
1204
|
+
# of time per AWS Region. To see the time blocks available, see [
|
1202
1205
|
# Adjusting the Preferred Maintenance Window][1] in the *Amazon RDS
|
1203
1206
|
# User Guide.*
|
1204
1207
|
#
|
@@ -1224,9 +1227,9 @@ module Aws::RDS
|
|
1224
1227
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
1225
1228
|
#
|
1226
1229
|
# Default: A 30-minute window selected at random from an 8-hour block
|
1227
|
-
# of time per
|
1228
|
-
# the time blocks available, see [ Adjusting the Preferred
|
1229
|
-
# Window][1] in the *Amazon RDS User Guide.*
|
1230
|
+
# of time per AWS Region, occurring on a random day of the week. To
|
1231
|
+
# see the time blocks available, see [ Adjusting the Preferred
|
1232
|
+
# Maintenance Window][1] in the *Amazon RDS User Guide.*
|
1230
1233
|
#
|
1231
1234
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
|
1232
1235
|
#
|
@@ -1263,40 +1266,40 @@ module Aws::RDS
|
|
1263
1266
|
# a value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
1264
1267
|
# default encryption key. AWS KMS creates the default encryption key
|
1265
1268
|
# for your AWS account. Your AWS account has a different default
|
1266
|
-
# encryption key for each AWS
|
1269
|
+
# encryption key for each AWS Region.
|
1267
1270
|
#
|
1268
1271
|
# If you create a Read Replica of an encrypted DB cluster in another
|
1269
|
-
#
|
1270
|
-
# destination
|
1271
|
-
# that
|
1272
|
+
# AWS Region, you must set `KmsKeyId` to a KMS key ID that is valid in
|
1273
|
+
# the destination AWS Region. This key is used to encrypt the Read
|
1274
|
+
# Replica in that AWS Region.
|
1272
1275
|
# @return [String]
|
1273
1276
|
#
|
1274
1277
|
# @!attribute [rw] pre_signed_url
|
1275
1278
|
# A URL that contains a Signature Version 4 signed request for the
|
1276
|
-
# `CreateDBCluster` action to be called in the source
|
1277
|
-
# DB cluster will be replicated from. You only need to specify
|
1279
|
+
# `CreateDBCluster` action to be called in the source AWS Region where
|
1280
|
+
# the DB cluster will be replicated from. You only need to specify
|
1278
1281
|
# `PreSignedUrl` when you are performing cross-region replication from
|
1279
1282
|
# an encrypted DB cluster.
|
1280
1283
|
#
|
1281
1284
|
# The pre-signed URL must be a valid request for the `CreateDBCluster`
|
1282
|
-
# API action that can be executed in the source
|
1283
|
-
# the encrypted DB cluster to be copied.
|
1285
|
+
# API action that can be executed in the source AWS Region that
|
1286
|
+
# contains the encrypted DB cluster to be copied.
|
1284
1287
|
#
|
1285
1288
|
# The pre-signed URL request must contain the following parameter
|
1286
1289
|
# values:
|
1287
1290
|
#
|
1288
1291
|
# * `KmsKeyId` - The KMS key identifier for the key to use to encrypt
|
1289
|
-
# the copy of the DB cluster in the destination
|
1290
|
-
# refer to the same KMS key for both the `CreateDBCluster`
|
1291
|
-
# that is called in the destination
|
1292
|
-
# in the pre-signed URL.
|
1292
|
+
# the copy of the DB cluster in the destination AWS Region. This
|
1293
|
+
# should refer to the same KMS key for both the `CreateDBCluster`
|
1294
|
+
# action that is called in the destination AWS Region, and the
|
1295
|
+
# action contained in the pre-signed URL.
|
1293
1296
|
#
|
1294
|
-
# * `DestinationRegion` - The name of the
|
1297
|
+
# * `DestinationRegion` - The name of the AWS Region that Aurora Read
|
1295
1298
|
# Replica will be created in.
|
1296
1299
|
#
|
1297
1300
|
# * `ReplicationSourceIdentifier` - The DB cluster identifier for the
|
1298
1301
|
# encrypted DB cluster to be copied. This identifier must be in the
|
1299
|
-
# Amazon Resource Name (ARN) format for the source
|
1302
|
+
# Amazon Resource Name (ARN) format for the source AWS Region. For
|
1300
1303
|
# example, if you are copying an encrypted DB cluster from the
|
1301
1304
|
# us-west-2 region, then your `ReplicationSourceIdentifier` would
|
1302
1305
|
# look like Example:
|
@@ -1666,8 +1669,7 @@ module Aws::RDS
|
|
1666
1669
|
#
|
1667
1670
|
# Constraints:
|
1668
1671
|
#
|
1669
|
-
# * Must contain from 1 to 63 alphanumeric characters or hyphens
|
1670
|
-
# 15 for SQL Server).
|
1672
|
+
# * Must contain from 1 to 63 alphanumeric characters or hyphens.
|
1671
1673
|
#
|
1672
1674
|
# * First character must be a letter.
|
1673
1675
|
#
|
@@ -1728,7 +1730,7 @@ module Aws::RDS
|
|
1728
1730
|
# @!attribute [rw] engine
|
1729
1731
|
# The name of the database engine to be used for this instance.
|
1730
1732
|
#
|
1731
|
-
# Not every database engine is available for every AWS
|
1733
|
+
# Not every database engine is available for every AWS Region.
|
1732
1734
|
#
|
1733
1735
|
# Valid Values:
|
1734
1736
|
#
|
@@ -1758,12 +1760,12 @@ module Aws::RDS
|
|
1758
1760
|
# @return [String]
|
1759
1761
|
#
|
1760
1762
|
# @!attribute [rw] master_username
|
1761
|
-
# The name for the master
|
1763
|
+
# The name for the master user.
|
1762
1764
|
#
|
1763
1765
|
# **Amazon Aurora**
|
1764
1766
|
#
|
1765
|
-
# Not applicable.
|
1766
|
-
#
|
1767
|
+
# Not applicable. The name for the master user is managed by the DB
|
1768
|
+
# cluster. For more information, see CreateDBCluster.
|
1767
1769
|
#
|
1768
1770
|
# **MariaDB**
|
1769
1771
|
#
|
@@ -1815,13 +1817,13 @@ module Aws::RDS
|
|
1815
1817
|
# @return [String]
|
1816
1818
|
#
|
1817
1819
|
# @!attribute [rw] master_user_password
|
1818
|
-
# The password for the master
|
1819
|
-
#
|
1820
|
+
# The password for the master user. Can be any printable ASCII
|
1821
|
+
# character except "/", """, or "@".
|
1820
1822
|
#
|
1821
1823
|
# **Amazon Aurora**
|
1822
1824
|
#
|
1823
|
-
# Not applicable.
|
1824
|
-
#
|
1825
|
+
# Not applicable. The password for the master user is managed by the
|
1826
|
+
# DB cluster. For more information, see CreateDBCluster.
|
1825
1827
|
#
|
1826
1828
|
# **MariaDB**
|
1827
1829
|
#
|
@@ -1854,6 +1856,12 @@ module Aws::RDS
|
|
1854
1856
|
# A list of EC2 VPC security groups to associate with this DB
|
1855
1857
|
# instance.
|
1856
1858
|
#
|
1859
|
+
# **Amazon Aurora**
|
1860
|
+
#
|
1861
|
+
# Not applicable. The associated list of EC2 VPC security groups is
|
1862
|
+
# managed by the DB cluster. For more information, see
|
1863
|
+
# CreateDBCluster.
|
1864
|
+
#
|
1857
1865
|
# Default: The default EC2 VPC security group for the DB subnet
|
1858
1866
|
# group's VPC.
|
1859
1867
|
# @return [Array<String>]
|
@@ -1864,13 +1872,13 @@ module Aws::RDS
|
|
1864
1872
|
# and Availability Zones][1].
|
1865
1873
|
#
|
1866
1874
|
# Default: A random, system-chosen Availability Zone in the
|
1867
|
-
# endpoint's
|
1875
|
+
# endpoint's AWS Region.
|
1868
1876
|
#
|
1869
1877
|
# Example: `us-east-1d`
|
1870
1878
|
#
|
1871
1879
|
# Constraint: The AvailabilityZone parameter cannot be specified if
|
1872
1880
|
# the MultiAZ parameter is set to `true`. The specified Availability
|
1873
|
-
# Zone must be in the same
|
1881
|
+
# Zone must be in the same AWS Region as the current endpoint.
|
1874
1882
|
#
|
1875
1883
|
#
|
1876
1884
|
#
|
@@ -1891,9 +1899,9 @@ module Aws::RDS
|
|
1891
1899
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
1892
1900
|
#
|
1893
1901
|
# Default: A 30-minute window selected at random from an 8-hour block
|
1894
|
-
# of time per
|
1895
|
-
# the time blocks available, see [ Adjusting the Preferred
|
1896
|
-
# Window][2] in the *Amazon RDS User Guide.*
|
1902
|
+
# of time per AWS Region, occurring on a random day of the week. To
|
1903
|
+
# see the time blocks available, see [ Adjusting the Preferred
|
1904
|
+
# Maintenance Window][2] in the *Amazon RDS User Guide.*
|
1897
1905
|
#
|
1898
1906
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
|
1899
1907
|
#
|
@@ -1924,6 +1932,12 @@ module Aws::RDS
|
|
1924
1932
|
# this parameter to a positive number enables backups. Setting this
|
1925
1933
|
# parameter to 0 disables automated backups.
|
1926
1934
|
#
|
1935
|
+
# **Amazon Aurora**
|
1936
|
+
#
|
1937
|
+
# Not applicable. The retention period for automated backups is
|
1938
|
+
# managed by the DB cluster. For more information, see
|
1939
|
+
# CreateDBCluster.
|
1940
|
+
#
|
1927
1941
|
# Default: 1
|
1928
1942
|
#
|
1929
1943
|
# Constraints:
|
@@ -1938,8 +1952,14 @@ module Aws::RDS
|
|
1938
1952
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
1939
1953
|
# parameter. For more information, see [DB Instance Backups][1].
|
1940
1954
|
#
|
1955
|
+
# **Amazon Aurora**
|
1956
|
+
#
|
1957
|
+
# Not applicable. The daily time range for creating automated backups
|
1958
|
+
# is managed by the DB cluster. For more information, see
|
1959
|
+
# CreateDBCluster.
|
1960
|
+
#
|
1941
1961
|
# Default: A 30-minute window selected at random from an 8-hour block
|
1942
|
-
# of time per
|
1962
|
+
# of time per AWS Region. To see the time blocks available, see [
|
1943
1963
|
# Adjusting the Preferred DB Instance Maintenance Window][2].
|
1944
1964
|
#
|
1945
1965
|
# Constraints:
|
@@ -2018,15 +2038,13 @@ module Aws::RDS
|
|
2018
2038
|
#
|
2019
2039
|
# The following are the database engines and major and minor versions
|
2020
2040
|
# that are available with Amazon RDS. Not every database engine is
|
2021
|
-
# available for every AWS
|
2041
|
+
# available for every AWS Region.
|
2022
2042
|
#
|
2023
2043
|
# **Amazon Aurora**
|
2024
2044
|
#
|
2025
|
-
#
|
2026
|
-
#
|
2027
|
-
#
|
2028
|
-
#
|
2029
|
-
# ^
|
2045
|
+
# Not applicable. The version number of the database engine to be used
|
2046
|
+
# by the DB instance is managed by the DB cluster. For more
|
2047
|
+
# information, see CreateDBCluster.
|
2030
2048
|
#
|
2031
2049
|
# **MariaDB**
|
2032
2050
|
#
|
@@ -2095,9 +2113,6 @@ module Aws::RDS
|
|
2095
2113
|
#
|
2096
2114
|
# * `5.7.11` (supported in all AWS regions)
|
2097
2115
|
#
|
2098
|
-
# * `5.7.10` (supported in all regions except us-east-2, ca-central-1,
|
2099
|
-
# eu-west-2)
|
2100
|
-
#
|
2101
2116
|
#
|
2102
2117
|
#
|
2103
2118
|
# * `5.6.35` (supported in all AWS regions)
|
@@ -2109,24 +2124,6 @@ module Aws::RDS
|
|
2109
2124
|
# * `5.6.27` (supported in all regions except us-east-2, ca-central-1,
|
2110
2125
|
# eu-west-2)
|
2111
2126
|
#
|
2112
|
-
# * `5.6.23` (supported in all regions except us-east-2, ap-south-1,
|
2113
|
-
# ca-central-1, eu-west-2)
|
2114
|
-
#
|
2115
|
-
# * `5.6.22` (supported in all regions except us-east-2, ap-south-1,
|
2116
|
-
# ap-northeast-2, ca-central-1, eu-west-2)
|
2117
|
-
#
|
2118
|
-
# * `5.6.21b` (supported in all regions except us-east-2, ap-south-1,
|
2119
|
-
# ap-northeast-2, ca-central-1, eu-west-2)
|
2120
|
-
#
|
2121
|
-
# * `5.6.21` (supported in all regions except us-east-2, ap-south-1,
|
2122
|
-
# ap-northeast-2, ca-central-1, eu-west-2)
|
2123
|
-
#
|
2124
|
-
# * `5.6.19b` (supported in all regions except us-east-2, ap-south-1,
|
2125
|
-
# ap-northeast-2, ca-central-1, eu-west-2)
|
2126
|
-
#
|
2127
|
-
# * `5.6.19a` (supported in all regions except us-east-2, ap-south-1,
|
2128
|
-
# ap-northeast-2, ca-central-1, eu-west-2)
|
2129
|
-
#
|
2130
2127
|
#
|
2131
2128
|
#
|
2132
2129
|
# * `5.5.54` (supported in all AWS regions)
|
@@ -2233,6 +2230,11 @@ module Aws::RDS
|
|
2233
2230
|
# @!attribute [rw] character_set_name
|
2234
2231
|
# For supported engines, indicates that the DB instance should be
|
2235
2232
|
# associated with the specified CharacterSet.
|
2233
|
+
#
|
2234
|
+
# **Amazon Aurora**
|
2235
|
+
#
|
2236
|
+
# Not applicable. The character set is managed by the DB cluster. For
|
2237
|
+
# more information, see CreateDBCluster.
|
2236
2238
|
# @return [String]
|
2237
2239
|
#
|
2238
2240
|
# @!attribute [rw] publicly_accessible
|
@@ -2294,6 +2296,11 @@ module Aws::RDS
|
|
2294
2296
|
# @!attribute [rw] storage_encrypted
|
2295
2297
|
# Specifies whether the DB instance is encrypted.
|
2296
2298
|
#
|
2299
|
+
# **Amazon Aurora**
|
2300
|
+
#
|
2301
|
+
# Not applicable. The encryption for DB instances is managed by the DB
|
2302
|
+
# cluster. For more information, see CreateDBCluster.
|
2303
|
+
#
|
2297
2304
|
# Default: false
|
2298
2305
|
# @return [Boolean]
|
2299
2306
|
#
|
@@ -2306,11 +2313,16 @@ module Aws::RDS
|
|
2306
2313
|
# instance, then you can use the KMS key alias instead of the ARN for
|
2307
2314
|
# the KM encryption key.
|
2308
2315
|
#
|
2316
|
+
# **Amazon Aurora**
|
2317
|
+
#
|
2318
|
+
# Not applicable. The KMS key identifier is managed by the DB cluster.
|
2319
|
+
# For more information, see CreateDBCluster.
|
2320
|
+
#
|
2309
2321
|
# If the `StorageEncrypted` parameter is true, and you do not specify
|
2310
2322
|
# a value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
2311
2323
|
# default encryption key. AWS KMS creates the default encryption key
|
2312
2324
|
# for your AWS account. Your AWS account has a different default
|
2313
|
-
# encryption key for each AWS
|
2325
|
+
# encryption key for each AWS Region.
|
2314
2326
|
# @return [String]
|
2315
2327
|
#
|
2316
2328
|
# @!attribute [rw] domain
|
@@ -2384,6 +2396,14 @@ module Aws::RDS
|
|
2384
2396
|
# You can enable IAM database authentication for the following
|
2385
2397
|
# database engines:
|
2386
2398
|
#
|
2399
|
+
# **Amazon Aurora**
|
2400
|
+
#
|
2401
|
+
# Not applicable. Mapping AWS IAM accounts to database accounts is
|
2402
|
+
# managed by the DB cluster. For more information, see
|
2403
|
+
# CreateDBCluster.
|
2404
|
+
#
|
2405
|
+
# **MySQL**
|
2406
|
+
#
|
2387
2407
|
# * For MySQL 5.6, minor version 5.6.34 or higher
|
2388
2408
|
#
|
2389
2409
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
@@ -2491,12 +2511,13 @@ module Aws::RDS
|
|
2491
2511
|
# * The specified DB instance must have automatic backups enabled, its
|
2492
2512
|
# backup retention period must be greater than 0.
|
2493
2513
|
#
|
2494
|
-
# * If the source DB instance is in the same
|
2514
|
+
# * If the source DB instance is in the same AWS Region as the Read
|
2495
2515
|
# Replica, specify a valid DB instance identifier.
|
2496
2516
|
#
|
2497
|
-
# * If the source DB instance is in a different
|
2498
|
-
# Replica, specify a valid DB instance ARN. For more
|
2499
|
-
# to [ Constructing a Amazon RDS Amazon Resource
|
2517
|
+
# * If the source DB instance is in a different AWS Region than the
|
2518
|
+
# Read Replica, specify a valid DB instance ARN. For more
|
2519
|
+
# information, go to [ Constructing a Amazon RDS Amazon Resource
|
2520
|
+
# Name (ARN)][1].
|
2500
2521
|
#
|
2501
2522
|
#
|
2502
2523
|
#
|
@@ -2524,7 +2545,7 @@ module Aws::RDS
|
|
2524
2545
|
# created in.
|
2525
2546
|
#
|
2526
2547
|
# Default: A random, system-chosen Availability Zone in the
|
2527
|
-
# endpoint's
|
2548
|
+
# endpoint's AWS Region.
|
2528
2549
|
#
|
2529
2550
|
# Example: `us-east-1d`
|
2530
2551
|
# @return [String]
|
@@ -2590,12 +2611,12 @@ module Aws::RDS
|
|
2590
2611
|
# Constraints:
|
2591
2612
|
#
|
2592
2613
|
# * Can only be specified if the source DB instance identifier
|
2593
|
-
# specifies a DB instance in another
|
2614
|
+
# specifies a DB instance in another AWS Region.
|
2594
2615
|
#
|
2595
|
-
# * The specified DB subnet group must be in the same
|
2596
|
-
# the operation is running.
|
2616
|
+
# * The specified DB subnet group must be in the same AWS Region in
|
2617
|
+
# which the operation is running.
|
2597
2618
|
#
|
2598
|
-
# * All Read Replicas in one
|
2619
|
+
# * All Read Replicas in one AWS Region that are created from the same
|
2599
2620
|
# source DB instance must either:>
|
2600
2621
|
#
|
2601
2622
|
# * Specify DB subnet groups from the same VPC. All these Read
|
@@ -2658,41 +2679,45 @@ module Aws::RDS
|
|
2658
2679
|
# the Amazon Resource Name (ARN), KMS key identifier, or the KMS key
|
2659
2680
|
# alias for the KMS encryption key.
|
2660
2681
|
#
|
2661
|
-
# If you
|
2662
|
-
#
|
2663
|
-
# Replica using the specified KMS encryption key.
|
2682
|
+
# If you specify this parameter when you create a Read Replica from an
|
2683
|
+
# unencrypted DB instance, the Read Replica is encrypted.
|
2664
2684
|
#
|
2665
|
-
# If you create an encrypted Read Replica
|
2666
|
-
#
|
2667
|
-
#
|
2668
|
-
# `KmsKeyId`, then the Read Replica is encrypted with the same KMS key
|
2685
|
+
# If you create an encrypted Read Replica in the same AWS Region as
|
2686
|
+
# the source DB instance, then you do not have to specify a value for
|
2687
|
+
# this parameter. The Read Replica is encrypted with the same KMS key
|
2669
2688
|
# as the source DB instance.
|
2670
2689
|
#
|
2671
|
-
# If you create an encrypted Read Replica in a different AWS
|
2672
|
-
# then you must specify a KMS key for the destination AWS
|
2673
|
-
# encryption keys are specific to the
|
2674
|
-
# and you cannot use encryption keys from one
|
2675
|
-
#
|
2690
|
+
# If you create an encrypted Read Replica in a different AWS Region,
|
2691
|
+
# then you must specify a KMS key for the destination AWS Region. KMS
|
2692
|
+
# encryption keys are specific to the AWS Region that they are created
|
2693
|
+
# in, and you cannot use encryption keys from one AWS Region in
|
2694
|
+
# another AWS Region.
|
2676
2695
|
# @return [String]
|
2677
2696
|
#
|
2678
2697
|
# @!attribute [rw] pre_signed_url
|
2679
|
-
# The URL that contains a Signature Version 4 signed request for the
|
2680
|
-
# CreateDBInstanceReadReplica` API action in the AWS
|
2681
|
-
# contains the source DB instance.
|
2682
|
-
#
|
2698
|
+
# The URL that contains a Signature Version 4 signed request for the
|
2699
|
+
# `CreateDBInstanceReadReplica` API action in the source AWS Region
|
2700
|
+
# that contains the source DB instance.
|
2701
|
+
#
|
2702
|
+
# You must specify this parameter when you create an encrypted Read
|
2703
|
+
# Replica from another AWS Region by using the Amazon RDS API. You can
|
2704
|
+
# specify the source region option instead of this parameter when you
|
2705
|
+
# create an encrypted Read Replica from another AWS Region by using
|
2706
|
+
# the AWS CLI.
|
2683
2707
|
#
|
2684
2708
|
# The presigned URL must be a valid request for the
|
2685
2709
|
# `CreateDBInstanceReadReplica` API action that can be executed in the
|
2686
|
-
# source
|
2687
|
-
# URL request must contain the following parameter
|
2710
|
+
# source AWS Region that contains the encrypted source DB instance.
|
2711
|
+
# The presigned URL request must contain the following parameter
|
2712
|
+
# values:
|
2688
2713
|
#
|
2689
|
-
# * `DestinationRegion` - The AWS Region that the Read
|
2690
|
-
# created in. This
|
2691
|
-
# `CreateDBInstanceReadReplica` action is called that contains
|
2692
|
-
# presigned URL.
|
2714
|
+
# * `DestinationRegion` - The AWS Region that the encrypted Read
|
2715
|
+
# Replica will be created in. This AWS Region is the same one where
|
2716
|
+
# the `CreateDBInstanceReadReplica` action is called that contains
|
2717
|
+
# this presigned URL.
|
2693
2718
|
#
|
2694
|
-
# For example, if you create an encrypted
|
2695
|
-
# us-
|
2719
|
+
# For example, if you create an encrypted DB instance in the
|
2720
|
+
# us-west-1 region, from a source DB instance in the us-east-2
|
2696
2721
|
# region, then you call the `CreateDBInstanceReadReplica` action in
|
2697
2722
|
# the us-east-1 region and provide a presigned URL that contains a
|
2698
2723
|
# call to the `CreateDBInstanceReadReplica` action in the us-west-2
|
@@ -2700,22 +2725,22 @@ module Aws::RDS
|
|
2700
2725
|
# URL must be set to the us-east-1 region.
|
2701
2726
|
#
|
2702
2727
|
# * `KmsKeyId` - The KMS key identifier for the key to use to encrypt
|
2703
|
-
# the Read Replica in the destination
|
2728
|
+
# the Read Replica in the destination AWS Region. This is the same
|
2704
2729
|
# identifier for both the `CreateDBInstanceReadReplica` action that
|
2705
|
-
# is called in the destination
|
2706
|
-
# the presigned URL.
|
2730
|
+
# is called in the destination AWS Region, and the action contained
|
2731
|
+
# in the presigned URL.
|
2707
2732
|
#
|
2708
2733
|
# * `SourceDBInstanceIdentifier` - The DB instance identifier for the
|
2709
|
-
# encrypted
|
2710
|
-
# the Amazon Resource Name (ARN) format for the source
|
2711
|
-
# example, if you
|
2712
|
-
# instance in the us-west-2 region, then your
|
2713
|
-
# `SourceDBInstanceIdentifier`
|
2714
|
-
# arn:aws:rds:us-west-2:123456789012:instance:mysql-instance1-
|
2734
|
+
# encrypted DB instance to be replicated. This identifier must be in
|
2735
|
+
# the Amazon Resource Name (ARN) format for the source AWS Region.
|
2736
|
+
# For example, if you are creating an encrypted Read Replica from a
|
2737
|
+
# DB instance in the us-west-2 region, then your
|
2738
|
+
# `SourceDBInstanceIdentifier` looks like the following example:
|
2739
|
+
# `arn:aws:rds:us-west-2:123456789012:instance:mysql-instance1-20161115`.
|
2715
2740
|
#
|
2716
|
-
# To learn how to generate a Signature Version 4 signed request, see
|
2717
|
-
# Authenticating Requests: Using Query Parameters (AWS Signature
|
2718
|
-
# Version 4)][1] and [
|
2741
|
+
# To learn how to generate a Signature Version 4 signed request, see
|
2742
|
+
# [Authenticating Requests: Using Query Parameters (AWS Signature
|
2743
|
+
# Version 4)][1] and [Signature Version 4 Signing Process][2].
|
2719
2744
|
#
|
2720
2745
|
#
|
2721
2746
|
#
|
@@ -4748,12 +4773,13 @@ module Aws::RDS
|
|
4748
4773
|
# @return [Integer]
|
4749
4774
|
#
|
4750
4775
|
# @!attribute [rw] source_region
|
4751
|
-
# The
|
4776
|
+
# The AWS Region that the DB snapshot was created in or copied from.
|
4752
4777
|
# @return [String]
|
4753
4778
|
#
|
4754
4779
|
# @!attribute [rw] source_db_snapshot_identifier
|
4755
|
-
# The DB snapshot
|
4756
|
-
# has value in case of cross
|
4780
|
+
# The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was
|
4781
|
+
# copied from. It only has value in case of cross-customer or
|
4782
|
+
# cross-region copy.
|
4757
4783
|
# @return [String]
|
4758
4784
|
#
|
4759
4785
|
# @!attribute [rw] storage_type
|
@@ -7338,7 +7364,7 @@ module Aws::RDS
|
|
7338
7364
|
# }
|
7339
7365
|
#
|
7340
7366
|
# @!attribute [rw] region_name
|
7341
|
-
# The source
|
7367
|
+
# The source AWS Region name. For example, `us-east-1`.
|
7342
7368
|
#
|
7343
7369
|
# Constraints:
|
7344
7370
|
#
|
@@ -8054,7 +8080,7 @@ module Aws::RDS
|
|
8054
8080
|
# parameter.
|
8055
8081
|
#
|
8056
8082
|
# Default: A 30-minute window selected at random from an 8-hour block
|
8057
|
-
# of time per
|
8083
|
+
# of time per AWS Region. To see the time blocks available, see [
|
8058
8084
|
# Adjusting the Preferred Maintenance Window][1] in the *Amazon RDS
|
8059
8085
|
# User Guide.*
|
8060
8086
|
#
|
@@ -8080,9 +8106,9 @@ module Aws::RDS
|
|
8080
8106
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
8081
8107
|
#
|
8082
8108
|
# Default: A 30-minute window selected at random from an 8-hour block
|
8083
|
-
# of time per
|
8084
|
-
# the time blocks available, see [ Adjusting the Preferred
|
8085
|
-
# Window][1] in the *Amazon RDS User Guide.*
|
8109
|
+
# of time per AWS Region, occurring on a random day of the week. To
|
8110
|
+
# see the time blocks available, see [ Adjusting the Preferred
|
8111
|
+
# Maintenance Window][1] in the *Amazon RDS User Guide.*
|
8086
8112
|
#
|
8087
8113
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
|
8088
8114
|
#
|
@@ -8448,6 +8474,12 @@ module Aws::RDS
|
|
8448
8474
|
# A list of EC2 VPC security groups to authorize on this DB instance.
|
8449
8475
|
# This change is asynchronously applied as soon as possible.
|
8450
8476
|
#
|
8477
|
+
# **Amazon Aurora**
|
8478
|
+
#
|
8479
|
+
# Not applicable. The associated list of EC2 VPC security groups is
|
8480
|
+
# managed by the DB cluster. For more information, see
|
8481
|
+
# ModifyDBCluster.
|
8482
|
+
#
|
8451
8483
|
# Constraints:
|
8452
8484
|
#
|
8453
8485
|
# * Must be 1 to 255 alphanumeric characters
|
@@ -8480,8 +8512,8 @@ module Aws::RDS
|
|
8480
8512
|
# @return [Boolean]
|
8481
8513
|
#
|
8482
8514
|
# @!attribute [rw] master_user_password
|
8483
|
-
# The new password for the
|
8484
|
-
#
|
8515
|
+
# The new password for the master user. Can be any printable ASCII
|
8516
|
+
# character except "/", """, or "@".
|
8485
8517
|
#
|
8486
8518
|
# Changing this parameter does not result in an outage and the change
|
8487
8519
|
# is asynchronously applied as soon as possible. Between the time of
|
@@ -8489,6 +8521,11 @@ module Aws::RDS
|
|
8489
8521
|
# `MasterUserPassword` element exists in the `PendingModifiedValues`
|
8490
8522
|
# element of the operation response.
|
8491
8523
|
#
|
8524
|
+
# **Amazon Aurora**
|
8525
|
+
#
|
8526
|
+
# Not applicable. The password for the master user is managed by the
|
8527
|
+
# DB cluster. For more information, see ModifyDBCluster.
|
8528
|
+
#
|
8492
8529
|
# Default: Uses existing setting
|
8493
8530
|
#
|
8494
8531
|
# Constraints: Must be 8 to 41 alphanumeric characters (MySQL,
|
@@ -8530,6 +8567,12 @@ module Aws::RDS
|
|
8530
8567
|
# you change the parameter from one non-zero value to another non-zero
|
8531
8568
|
# value, the change is asynchronously applied as soon as possible.
|
8532
8569
|
#
|
8570
|
+
# **Amazon Aurora**
|
8571
|
+
#
|
8572
|
+
# Not applicable. The retention period for automated backups is
|
8573
|
+
# managed by the DB cluster. For more information, see
|
8574
|
+
# ModifyDBCluster.
|
8575
|
+
#
|
8533
8576
|
# Default: Uses existing setting
|
8534
8577
|
#
|
8535
8578
|
# Constraints:
|
@@ -8552,6 +8595,12 @@ module Aws::RDS
|
|
8552
8595
|
# result in an outage and the change is asynchronously applied as soon
|
8553
8596
|
# as possible.
|
8554
8597
|
#
|
8598
|
+
# **Amazon Aurora**
|
8599
|
+
#
|
8600
|
+
# Not applicable. The daily time range for creating automated backups
|
8601
|
+
# is managed by the DB cluster. For more information, see
|
8602
|
+
# ModifyDBCluster.
|
8603
|
+
#
|
8555
8604
|
# Constraints:
|
8556
8605
|
#
|
8557
8606
|
# * Must be in the format hh24:mi-hh24:mi
|
@@ -8599,7 +8648,7 @@ module Aws::RDS
|
|
8599
8648
|
# the next maintenance window unless the `ApplyImmediately` parameter
|
8600
8649
|
# is set to `true` for this request.
|
8601
8650
|
#
|
8602
|
-
# For major version upgrades, if a
|
8651
|
+
# For major version upgrades, if a nondefault DB parameter group is
|
8603
8652
|
# currently in use, a new DB parameter group in the DB parameter group
|
8604
8653
|
# family for the new engine version must be specified. The new DB
|
8605
8654
|
# parameter group can be the default for that DB parameter group
|
@@ -8866,6 +8915,14 @@ module Aws::RDS
|
|
8866
8915
|
# You can enable IAM database authentication for the following
|
8867
8916
|
# database engines
|
8868
8917
|
#
|
8918
|
+
# **Amazon Aurora**
|
8919
|
+
#
|
8920
|
+
# Not applicable. Mapping AWS IAM accounts to database accounts is
|
8921
|
+
# managed by the DB cluster. For more information, see
|
8922
|
+
# ModifyDBCluster.
|
8923
|
+
#
|
8924
|
+
# **MySQL**
|
8925
|
+
#
|
8869
8926
|
# * For MySQL 5.6, minor version 5.6.34 or higher
|
8870
8927
|
#
|
8871
8928
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
@@ -10206,7 +10263,7 @@ module Aws::RDS
|
|
10206
10263
|
# parameter.
|
10207
10264
|
#
|
10208
10265
|
# Default: A 30-minute window selected at random from an 8-hour block
|
10209
|
-
# of time per
|
10266
|
+
# of time per AWS Region. To see the time blocks available, see [
|
10210
10267
|
# Adjusting the Preferred Maintenance Window][1] in the *Amazon RDS
|
10211
10268
|
# User Guide.*
|
10212
10269
|
#
|
@@ -10989,7 +11046,7 @@ module Aws::RDS
|
|
10989
11046
|
# parameter.
|
10990
11047
|
#
|
10991
11048
|
# Default: A 30-minute window selected at random from an 8-hour block
|
10992
|
-
# of time per
|
11049
|
+
# of time per AWS Region. To see the time blocks available, see [
|
10993
11050
|
# Adjusting the Preferred Maintenance Window][1] in the *Amazon RDS
|
10994
11051
|
# User Guide.*
|
10995
11052
|
#
|
@@ -11015,9 +11072,9 @@ module Aws::RDS
|
|
11015
11072
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
11016
11073
|
#
|
11017
11074
|
# Default: A 30-minute window selected at random from an 8-hour block
|
11018
|
-
# of time per
|
11019
|
-
# the time blocks available, see [ Adjusting the Preferred
|
11020
|
-
# Window][1] in the *Amazon RDS User Guide.*
|
11075
|
+
# of time per AWS Region, occurring on a random day of the week. To
|
11076
|
+
# see the time blocks available, see [ Adjusting the Preferred
|
11077
|
+
# Maintenance Window][1] in the *Amazon RDS User Guide.*
|
11021
11078
|
#
|
11022
11079
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
|
11023
11080
|
#
|
@@ -11049,7 +11106,7 @@ module Aws::RDS
|
|
11049
11106
|
# a value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
11050
11107
|
# default encryption key. AWS KMS creates the default encryption key
|
11051
11108
|
# for your AWS account. Your AWS account has a different default
|
11052
|
-
# encryption key for each AWS
|
11109
|
+
# encryption key for each AWS Region.
|
11053
11110
|
# @return [String]
|
11054
11111
|
#
|
11055
11112
|
# @!attribute [rw] enable_iam_database_authentication
|
@@ -11574,8 +11631,7 @@ module Aws::RDS
|
|
11574
11631
|
#
|
11575
11632
|
# Constraints:
|
11576
11633
|
#
|
11577
|
-
# * Must contain from 1 to 63 alphanumeric characters or hyphens
|
11578
|
-
# 15 for SQL Server)
|
11634
|
+
# * Must contain from 1 to 63 alphanumeric characters or hyphens
|
11579
11635
|
#
|
11580
11636
|
# * First character must be a letter
|
11581
11637
|
#
|
@@ -12248,15 +12304,15 @@ module Aws::RDS
|
|
12248
12304
|
# DescribeSourceRegions action.
|
12249
12305
|
#
|
12250
12306
|
# @!attribute [rw] region_name
|
12251
|
-
# The source
|
12307
|
+
# The name of the source AWS Region.
|
12252
12308
|
# @return [String]
|
12253
12309
|
#
|
12254
12310
|
# @!attribute [rw] endpoint
|
12255
|
-
# The source
|
12311
|
+
# The endpoint for the source AWS Region endpoint.
|
12256
12312
|
# @return [String]
|
12257
12313
|
#
|
12258
12314
|
# @!attribute [rw] status
|
12259
|
-
# The status of the source
|
12315
|
+
# The status of the source AWS Region.
|
12260
12316
|
# @return [String]
|
12261
12317
|
#
|
12262
12318
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SourceRegion AWS API Documentation
|
@@ -12279,7 +12335,7 @@ module Aws::RDS
|
|
12279
12335
|
#
|
12280
12336
|
# @!attribute [rw] source_regions
|
12281
12337
|
# A list of SourceRegion instances that contains each source AWS
|
12282
|
-
# Region that the current
|
12338
|
+
# Region that the current AWS Region can get a Read Replica or a DB
|
12283
12339
|
# snapshot from.
|
12284
12340
|
# @return [Array<Types::SourceRegion>]
|
12285
12341
|
#
|