aws-sdk-rds 1.7.0 → 1.8.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 +875 -310
- data/lib/aws-sdk-rds/client_api.rb +69 -0
- data/lib/aws-sdk-rds/db_cluster.rb +66 -59
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +8 -3
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +24 -20
- data/lib/aws-sdk-rds/db_instance.rb +182 -156
- data/lib/aws-sdk-rds/db_parameter_group.rb +12 -2
- data/lib/aws-sdk-rds/db_security_group.rb +7 -2
- data/lib/aws-sdk-rds/db_snapshot.rb +53 -35
- data/lib/aws-sdk-rds/db_subnet_group.rb +6 -1
- data/lib/aws-sdk-rds/event_subscription.rb +7 -2
- data/lib/aws-sdk-rds/option_group.rb +12 -2
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +6 -1
- data/lib/aws-sdk-rds/resource.rb +156 -113
- data/lib/aws-sdk-rds/types.rb +918 -731
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eed623036351e682c67671636987febff4f6e230
|
4
|
+
data.tar.gz: 3dde6398f7e4e3e997fac83fb4d01ce1181af31c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 805d7b34468d6eaa99b8d29e6d8b8bd83618a5d2643d1f6c72b914d41fbae9eb7c5b1b13bc91a65fa47de32ddf94655806237e01b9e9ad891603dfaa7db3cba4
|
7
|
+
data.tar.gz: 09b24dc1060c1cd2327eeb2ad7c7f624416c112533ff80adb7161642ccda7e07eda1e40a4c5e6876c9579d7bdd19ed4791e9d3d3d3f5c859f06b918084f58d17
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -337,7 +337,7 @@ module Aws::RDS
|
|
337
337
|
#
|
338
338
|
# @option params [required, String] :opt_in_type
|
339
339
|
# A value that specifies the type of opt-in request, or undoes an opt-in
|
340
|
-
# request. An opt-in request of type `immediate`
|
340
|
+
# request. An opt-in request of type `immediate` can't be undone.
|
341
341
|
#
|
342
342
|
# Valid values:
|
343
343
|
#
|
@@ -407,8 +407,8 @@ module Aws::RDS
|
|
407
407
|
# EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either
|
408
408
|
# EC2SecurityGroupName or EC2SecurityGroupId for non-VPC).
|
409
409
|
#
|
410
|
-
# <note markdown="1"> You
|
411
|
-
# Region to an Amazon RDS DB instance in another. You
|
410
|
+
# <note markdown="1"> You can't authorize ingress from an EC2 security group in one AWS
|
411
|
+
# Region to an Amazon RDS DB instance in another. You can't authorize
|
412
412
|
# ingress from a VPC security group in one VPC to an Amazon RDS DB
|
413
413
|
# instance in another.
|
414
414
|
#
|
@@ -543,7 +543,12 @@ module Aws::RDS
|
|
543
543
|
# A description for the copied DB cluster parameter group.
|
544
544
|
#
|
545
545
|
# @option params [Array<Types::Tag>] :tags
|
546
|
-
# A list of tags.
|
546
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
547
|
+
# Resources][1].
|
548
|
+
#
|
549
|
+
#
|
550
|
+
#
|
551
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
547
552
|
#
|
548
553
|
# @return [Types::CopyDBClusterParameterGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
549
554
|
#
|
@@ -609,9 +614,9 @@ module Aws::RDS
|
|
609
614
|
# cluster snapshot from another AWS Region, you must provide the
|
610
615
|
# following values:
|
611
616
|
#
|
612
|
-
# * `KmsKeyId` - The AWS Key Management System (KMS) key identifier
|
613
|
-
# the key to use to encrypt the copy of the DB cluster snapshot in
|
614
|
-
# destination AWS Region.
|
617
|
+
# * `KmsKeyId` - The AWS Key Management System (AWS KMS) key identifier
|
618
|
+
# for the key to use to encrypt the copy of the DB cluster snapshot in
|
619
|
+
# the destination AWS Region.
|
615
620
|
#
|
616
621
|
# * `PreSignedUrl` - A URL that contains a Signature Version 4 signed
|
617
622
|
# request for the `CopyDBClusterSnapshot` action to be called in the
|
@@ -637,8 +642,8 @@ module Aws::RDS
|
|
637
642
|
# identifier for the encrypted DB cluster snapshot to be copied.
|
638
643
|
# This identifier must be in the Amazon Resource Name (ARN) format
|
639
644
|
# for the source AWS Region. For example, if you are copying an
|
640
|
-
# encrypted DB cluster snapshot from the us-west-2
|
641
|
-
# `SourceDBClusterSnapshotIdentifier` looks like the following
|
645
|
+
# encrypted DB cluster snapshot from the us-west-2 AWS Region, then
|
646
|
+
# your `SourceDBClusterSnapshotIdentifier` looks like the following
|
642
647
|
# example:
|
643
648
|
# `arn:aws:rds:us-west-2:123456789012:cluster-snapshot:aurora-cluster1-snapshot-20161115`.
|
644
649
|
#
|
@@ -678,7 +683,7 @@ module Aws::RDS
|
|
678
683
|
# The identifier of the DB cluster snapshot to copy. This parameter is
|
679
684
|
# not case-sensitive.
|
680
685
|
#
|
681
|
-
# You
|
686
|
+
# You can't copy an encrypted, shared DB cluster snapshot from one AWS
|
682
687
|
# Region to another.
|
683
688
|
#
|
684
689
|
# Constraints:
|
@@ -713,9 +718,9 @@ module Aws::RDS
|
|
713
718
|
# Example: `my-cluster-snapshot2`
|
714
719
|
#
|
715
720
|
# @option params [String] :kms_key_id
|
716
|
-
# The AWS KMS key ID for an encrypted DB cluster snapshot. The KMS
|
717
|
-
# ID is the Amazon Resource Name (ARN), KMS key identifier, or the
|
718
|
-
# key alias for the KMS encryption key.
|
721
|
+
# The AWS AWS KMS key ID for an encrypted DB cluster snapshot. The KMS
|
722
|
+
# key ID is the Amazon Resource Name (ARN), KMS key identifier, or the
|
723
|
+
# KMS key alias for the KMS encryption key.
|
719
724
|
#
|
720
725
|
# If you copy an unencrypted DB cluster snapshot and specify a value for
|
721
726
|
# the `KmsKeyId` parameter, Amazon RDS encrypts the target DB cluster
|
@@ -734,7 +739,7 @@ module Aws::RDS
|
|
734
739
|
# must set `KmsKeyId` to the KMS key ID you want to use to encrypt the
|
735
740
|
# copy of the DB cluster snapshot in the destination AWS Region. KMS
|
736
741
|
# encryption keys are specific to the AWS Region that they are created
|
737
|
-
# in, and you
|
742
|
+
# in, and you can't use encryption keys from one AWS Region in another
|
738
743
|
# AWS Region.
|
739
744
|
#
|
740
745
|
# @option params [String] :pre_signed_url
|
@@ -750,11 +755,11 @@ module Aws::RDS
|
|
750
755
|
# copied. The pre-signed URL request must contain the following
|
751
756
|
# parameter values:
|
752
757
|
#
|
753
|
-
# * `KmsKeyId` - The KMS key identifier for the key to use to
|
754
|
-
# the copy of the DB cluster snapshot in the destination AWS
|
755
|
-
# This is the same identifier for both the
|
756
|
-
# action that is called in the destination AWS
|
757
|
-
# contained in the pre-signed URL.
|
758
|
+
# * `KmsKeyId` - The AWS KMS key identifier for the key to use to
|
759
|
+
# encrypt the copy of the DB cluster snapshot in the destination AWS
|
760
|
+
# Region. This is the same identifier for both the
|
761
|
+
# `CopyDBClusterSnapshot` action that is called in the destination AWS
|
762
|
+
# Region, and the action contained in the pre-signed URL.
|
758
763
|
#
|
759
764
|
# * `DestinationRegion` - The name of the AWS Region that the DB cluster
|
760
765
|
# snapshot will be created in.
|
@@ -763,7 +768,7 @@ module Aws::RDS
|
|
763
768
|
# identifier for the encrypted DB cluster snapshot to be copied. This
|
764
769
|
# identifier must be in the Amazon Resource Name (ARN) format for the
|
765
770
|
# source AWS Region. For example, if you are copying an encrypted DB
|
766
|
-
# cluster snapshot from the us-west-2
|
771
|
+
# cluster snapshot from the us-west-2 AWS Region, then your
|
767
772
|
# `SourceDBClusterSnapshotIdentifier` looks like the following
|
768
773
|
# example:
|
769
774
|
# `arn:aws:rds:us-west-2:123456789012:cluster-snapshot:aurora-cluster1-snapshot-20161115`.
|
@@ -779,10 +784,15 @@ module Aws::RDS
|
|
779
784
|
#
|
780
785
|
# @option params [Boolean] :copy_tags
|
781
786
|
# True to copy all tags from the source DB cluster snapshot to the
|
782
|
-
# target DB cluster snapshot
|
787
|
+
# target DB cluster snapshot, and otherwise false. The default is false.
|
783
788
|
#
|
784
789
|
# @option params [Array<Types::Tag>] :tags
|
785
|
-
# A list of tags.
|
790
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
791
|
+
# Resources][1].
|
792
|
+
#
|
793
|
+
#
|
794
|
+
#
|
795
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
786
796
|
#
|
787
797
|
# @option params [String] :source_region
|
788
798
|
# The source region of the snapshot. This is only needed when the
|
@@ -895,7 +905,12 @@ module Aws::RDS
|
|
895
905
|
# A description for the copied DB parameter group.
|
896
906
|
#
|
897
907
|
# @option params [Array<Types::Tag>] :tags
|
898
|
-
# A list of tags.
|
908
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
909
|
+
# Resources][1].
|
910
|
+
#
|
911
|
+
#
|
912
|
+
#
|
913
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
899
914
|
#
|
900
915
|
# @return [Types::CopyDBParameterGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
901
916
|
#
|
@@ -955,7 +970,7 @@ module Aws::RDS
|
|
955
970
|
# the AWS Region where you call the `CopyDBSnapshot` action is the
|
956
971
|
# destination AWS Region for the DB snapshot copy.
|
957
972
|
#
|
958
|
-
# You
|
973
|
+
# You can't copy an encrypted, shared DB snapshot from one AWS Region
|
959
974
|
# to another.
|
960
975
|
#
|
961
976
|
# For more information about copying snapshots, see [Copying a DB
|
@@ -1029,14 +1044,19 @@ module Aws::RDS
|
|
1029
1044
|
# If you copy an encrypted snapshot to a different AWS Region, then you
|
1030
1045
|
# must specify a KMS key for the destination AWS Region. KMS encryption
|
1031
1046
|
# keys are specific to the AWS Region that they are created in, and you
|
1032
|
-
#
|
1047
|
+
# can't use encryption keys from one AWS Region in another AWS Region.
|
1033
1048
|
#
|
1034
1049
|
# @option params [Array<Types::Tag>] :tags
|
1035
|
-
# A list of tags.
|
1050
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
1051
|
+
# Resources][1].
|
1052
|
+
#
|
1053
|
+
#
|
1054
|
+
#
|
1055
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1036
1056
|
#
|
1037
1057
|
# @option params [Boolean] :copy_tags
|
1038
1058
|
# True to copy all tags from the source DB snapshot to the target DB
|
1039
|
-
# snapshot
|
1059
|
+
# snapshot, and otherwise false. The default is false.
|
1040
1060
|
#
|
1041
1061
|
# @option params [String] :pre_signed_url
|
1042
1062
|
# The URL that contains a Signature Version 4 signed request for the
|
@@ -1045,8 +1065,8 @@ module Aws::RDS
|
|
1045
1065
|
#
|
1046
1066
|
# You must specify this parameter when you copy an encrypted DB snapshot
|
1047
1067
|
# from another AWS Region by using the Amazon RDS API. You can specify
|
1048
|
-
# the source
|
1049
|
-
# encrypted DB snapshot from another AWS Region by using the AWS CLI.
|
1068
|
+
# the `--source-region` option instead of this parameter when you copy
|
1069
|
+
# an encrypted DB snapshot from another AWS Region by using the AWS CLI.
|
1050
1070
|
#
|
1051
1071
|
# The presigned URL must be a valid request for the `CopyDBSnapshot` API
|
1052
1072
|
# action that can be executed in the source AWS Region that contains the
|
@@ -1058,24 +1078,24 @@ module Aws::RDS
|
|
1058
1078
|
# `CopyDBSnapshot` action is called that contains this presigned URL.
|
1059
1079
|
#
|
1060
1080
|
# For example, if you copy an encrypted DB snapshot from the us-west-2
|
1061
|
-
#
|
1062
|
-
# action in the us-east-1
|
1063
|
-
# contains a call to the `CopyDBSnapshot` action in
|
1064
|
-
#
|
1065
|
-
# URL must be set to the us-east-1
|
1066
|
-
#
|
1067
|
-
# * `KmsKeyId` - The KMS key identifier for the key to use to
|
1068
|
-
# the copy of the DB snapshot in the destination AWS Region.
|
1069
|
-
# the same identifier for both the `CopyDBSnapshot` action
|
1070
|
-
# called in the destination AWS Region, and the action
|
1071
|
-
# the presigned URL.
|
1081
|
+
# AWS Region to the us-east-1 AWS Region, then you call the
|
1082
|
+
# `CopyDBSnapshot` action in the us-east-1 AWS Region and provide a
|
1083
|
+
# presigned URL that contains a call to the `CopyDBSnapshot` action in
|
1084
|
+
# the us-west-2 AWS Region. For this example, the `DestinationRegion`
|
1085
|
+
# in the presigned URL must be set to the us-east-1 AWS Region.
|
1086
|
+
#
|
1087
|
+
# * `KmsKeyId` - The AWS KMS key identifier for the key to use to
|
1088
|
+
# encrypt the copy of the DB snapshot in the destination AWS Region.
|
1089
|
+
# This is the same identifier for both the `CopyDBSnapshot` action
|
1090
|
+
# that is called in the destination AWS Region, and the action
|
1091
|
+
# contained in the presigned URL.
|
1072
1092
|
#
|
1073
1093
|
# * `SourceDBSnapshotIdentifier` - The DB snapshot identifier for the
|
1074
1094
|
# encrypted snapshot to be copied. This identifier must be in the
|
1075
1095
|
# Amazon Resource Name (ARN) format for the source AWS Region. For
|
1076
1096
|
# example, if you are copying an encrypted DB snapshot from the
|
1077
|
-
# us-west-2
|
1078
|
-
# the following example:
|
1097
|
+
# us-west-2 AWS Region, then your `SourceDBSnapshotIdentifier` looks
|
1098
|
+
# like the following example:
|
1079
1099
|
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20161115`.
|
1080
1100
|
#
|
1081
1101
|
# To learn how to generate a Signature Version 4 signed request, see
|
@@ -1095,7 +1115,8 @@ module Aws::RDS
|
|
1095
1115
|
# to another, and your DB instance uses a nondefault option group. If
|
1096
1116
|
# your source DB instance uses Transparent Data Encryption for Oracle or
|
1097
1117
|
# Microsoft SQL Server, you must specify this option when copying across
|
1098
|
-
#
|
1118
|
+
# AWS Regions. For more information, see [Option Group
|
1119
|
+
# Considerations][1].
|
1099
1120
|
#
|
1100
1121
|
#
|
1101
1122
|
#
|
@@ -1223,7 +1244,12 @@ module Aws::RDS
|
|
1223
1244
|
# The description for the copied option group.
|
1224
1245
|
#
|
1225
1246
|
# @option params [Array<Types::Tag>] :tags
|
1226
|
-
# A list of tags.
|
1247
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
1248
|
+
# Resources][1].
|
1249
|
+
#
|
1250
|
+
#
|
1251
|
+
#
|
1252
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1227
1253
|
#
|
1228
1254
|
# @return [Types::CopyOptionGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1229
1255
|
#
|
@@ -1319,8 +1345,8 @@ module Aws::RDS
|
|
1319
1345
|
#
|
1320
1346
|
# @option params [Array<String>] :availability_zones
|
1321
1347
|
# A list of EC2 Availability Zones that instances in the DB cluster can
|
1322
|
-
# be created in. For information on
|
1323
|
-
# [Regions and Availability Zones][1].
|
1348
|
+
# be created in. For information on AWS Regions and Availability Zones,
|
1349
|
+
# see [Regions and Availability Zones][1].
|
1324
1350
|
#
|
1325
1351
|
#
|
1326
1352
|
#
|
@@ -1386,7 +1412,7 @@ module Aws::RDS
|
|
1386
1412
|
# @option params [required, String] :engine
|
1387
1413
|
# The name of the database engine to be used for this DB cluster.
|
1388
1414
|
#
|
1389
|
-
# Valid Values: `aurora`
|
1415
|
+
# Valid Values: `aurora`, `aurora-postgresql`
|
1390
1416
|
#
|
1391
1417
|
# @option params [String] :engine_version
|
1392
1418
|
# The version number of the database engine to use.
|
@@ -1422,8 +1448,8 @@ module Aws::RDS
|
|
1422
1448
|
# A value that indicates that the DB cluster should be associated with
|
1423
1449
|
# the specified option group.
|
1424
1450
|
#
|
1425
|
-
# Permanent options
|
1426
|
-
# group
|
1451
|
+
# Permanent options can't be removed from an option group. The option
|
1452
|
+
# group can't be removed from a DB cluster once it is associated with a
|
1427
1453
|
# DB cluster.
|
1428
1454
|
#
|
1429
1455
|
# @option params [String] :preferred_backup_window
|
@@ -1431,15 +1457,16 @@ module Aws::RDS
|
|
1431
1457
|
# automated backups are enabled using the `BackupRetentionPeriod`
|
1432
1458
|
# parameter.
|
1433
1459
|
#
|
1434
|
-
#
|
1435
|
-
# time
|
1436
|
-
# the Preferred Maintenance Window][1] in the *Amazon
|
1460
|
+
# The default is a 30-minute window selected at random from an 8-hour
|
1461
|
+
# block of time for each AWS Region. To see the time blocks available,
|
1462
|
+
# see [ Adjusting the Preferred Maintenance Window][1] in the *Amazon
|
1463
|
+
# RDS User Guide.*
|
1437
1464
|
#
|
1438
1465
|
# Constraints:
|
1439
1466
|
#
|
1440
1467
|
# * Must be in the format `hh24:mi-hh24:mi`.
|
1441
1468
|
#
|
1442
|
-
# *
|
1469
|
+
# * Must be in Universal Coordinated Time (UTC).
|
1443
1470
|
#
|
1444
1471
|
# * Must not conflict with the preferred maintenance window.
|
1445
1472
|
#
|
@@ -1455,12 +1482,12 @@ module Aws::RDS
|
|
1455
1482
|
#
|
1456
1483
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
1457
1484
|
#
|
1458
|
-
#
|
1459
|
-
# time
|
1460
|
-
# time blocks available, see [ Adjusting the Preferred
|
1461
|
-
# Window][1] in the *Amazon RDS User Guide.*
|
1485
|
+
# The default is a 30-minute window selected at random from an 8-hour
|
1486
|
+
# block of time for each AWS Region, occurring on a random day of the
|
1487
|
+
# week. To see the time blocks available, see [ Adjusting the Preferred
|
1488
|
+
# Maintenance Window][1] in the *Amazon RDS User Guide.*
|
1462
1489
|
#
|
1463
|
-
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
|
1490
|
+
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
1464
1491
|
#
|
1465
1492
|
# Constraints: Minimum 30-minute window.
|
1466
1493
|
#
|
@@ -1473,13 +1500,18 @@ module Aws::RDS
|
|
1473
1500
|
# if this DB cluster is created as a Read Replica.
|
1474
1501
|
#
|
1475
1502
|
# @option params [Array<Types::Tag>] :tags
|
1476
|
-
# A list of tags.
|
1503
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
1504
|
+
# Resources][1].
|
1505
|
+
#
|
1506
|
+
#
|
1507
|
+
#
|
1508
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1477
1509
|
#
|
1478
1510
|
# @option params [Boolean] :storage_encrypted
|
1479
1511
|
# Specifies whether the DB cluster is encrypted.
|
1480
1512
|
#
|
1481
1513
|
# @option params [String] :kms_key_id
|
1482
|
-
# The KMS key identifier for an encrypted DB cluster.
|
1514
|
+
# The AWS KMS key identifier for an encrypted DB cluster.
|
1483
1515
|
#
|
1484
1516
|
# The KMS key identifier is the Amazon Resource Name (ARN) for the KMS
|
1485
1517
|
# encryption key. If you are creating a DB cluster with the same AWS
|
@@ -1520,9 +1552,9 @@ module Aws::RDS
|
|
1520
1552
|
# The pre-signed URL request must contain the following parameter
|
1521
1553
|
# values:
|
1522
1554
|
#
|
1523
|
-
# * `KmsKeyId` - The KMS key identifier for the key to use to
|
1524
|
-
# the copy of the DB cluster in the destination AWS Region.
|
1525
|
-
# should refer to the same KMS key for both the `CreateDBCluster`
|
1555
|
+
# * `KmsKeyId` - The AWS KMS key identifier for the key to use to
|
1556
|
+
# encrypt the copy of the DB cluster in the destination AWS Region.
|
1557
|
+
# This should refer to the same KMS key for both the `CreateDBCluster`
|
1526
1558
|
# action that is called in the destination AWS Region, and the action
|
1527
1559
|
# contained in the pre-signed URL.
|
1528
1560
|
#
|
@@ -1533,8 +1565,8 @@ module Aws::RDS
|
|
1533
1565
|
# encrypted DB cluster to be copied. This identifier must be in the
|
1534
1566
|
# Amazon Resource Name (ARN) format for the source AWS Region. For
|
1535
1567
|
# example, if you are copying an encrypted DB cluster from the
|
1536
|
-
# us-west-2
|
1537
|
-
# like Example:
|
1568
|
+
# us-west-2 AWS Region, then your `ReplicationSourceIdentifier` would
|
1569
|
+
# look like Example:
|
1538
1570
|
# `arn:aws:rds:us-west-2:123456789012:cluster:aurora-cluster1`.
|
1539
1571
|
#
|
1540
1572
|
# To learn how to generate a Signature Version 4 signed request, see [
|
@@ -1547,9 +1579,8 @@ module Aws::RDS
|
|
1547
1579
|
# [2]: http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
1548
1580
|
#
|
1549
1581
|
# @option params [Boolean] :enable_iam_database_authentication
|
1550
|
-
#
|
1551
|
-
#
|
1552
|
-
# false.
|
1582
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
1583
|
+
# accounts to database accounts, and otherwise false.
|
1553
1584
|
#
|
1554
1585
|
# Default: `false`
|
1555
1586
|
#
|
@@ -1740,7 +1771,12 @@ module Aws::RDS
|
|
1740
1771
|
# The description for the DB cluster parameter group.
|
1741
1772
|
#
|
1742
1773
|
# @option params [Array<Types::Tag>] :tags
|
1743
|
-
# A list of tags.
|
1774
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
1775
|
+
# Resources][1].
|
1776
|
+
#
|
1777
|
+
#
|
1778
|
+
#
|
1779
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1744
1780
|
#
|
1745
1781
|
# @return [Types::CreateDBClusterParameterGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1746
1782
|
#
|
@@ -1988,7 +2024,7 @@ module Aws::RDS
|
|
1988
2024
|
#
|
1989
2025
|
# @option params [Integer] :allocated_storage
|
1990
2026
|
# The amount of storage (in gigabytes) to be initially allocated for the
|
1991
|
-
#
|
2027
|
+
# DB instance.
|
1992
2028
|
#
|
1993
2029
|
# Type: Integer
|
1994
2030
|
#
|
@@ -2074,8 +2110,8 @@ module Aws::RDS
|
|
2074
2110
|
#
|
2075
2111
|
# @option params [required, String] :db_instance_class
|
2076
2112
|
# The compute and memory capacity of the DB instance, for example,
|
2077
|
-
# `db.m4.large`. Not all DB instance classes are available in all
|
2078
|
-
#
|
2113
|
+
# `db.m4.large`. Not all DB instance classes are available in all AWS
|
2114
|
+
# Regions, or for all database engines. For the full list of DB instance
|
2079
2115
|
# classes, and availability for your engine, see [DB Instance Class][1]
|
2080
2116
|
# in the Amazon RDS User Guide.
|
2081
2117
|
#
|
@@ -2092,6 +2128,8 @@ module Aws::RDS
|
|
2092
2128
|
#
|
2093
2129
|
# * `aurora`
|
2094
2130
|
#
|
2131
|
+
# * `aurora-postgresql`
|
2132
|
+
#
|
2095
2133
|
# * `mariadb`
|
2096
2134
|
#
|
2097
2135
|
# * `mysql`
|
@@ -2181,8 +2219,8 @@ module Aws::RDS
|
|
2181
2219
|
# * Cannot be a reserved word for the chosen database engine.
|
2182
2220
|
#
|
2183
2221
|
# @option params [String] :master_user_password
|
2184
|
-
# The password for the master user.
|
2185
|
-
# except "/", """, or "@".
|
2222
|
+
# The password for the master user. The password can include any
|
2223
|
+
# printable ASCII character except "/", """, or "@".
|
2186
2224
|
#
|
2187
2225
|
# **Amazon Aurora**
|
2188
2226
|
#
|
@@ -2226,8 +2264,8 @@ module Aws::RDS
|
|
2226
2264
|
# VPC.
|
2227
2265
|
#
|
2228
2266
|
# @option params [String] :availability_zone
|
2229
|
-
# The EC2 Availability Zone that the
|
2230
|
-
#
|
2267
|
+
# The EC2 Availability Zone that the DB instance is created in. For
|
2268
|
+
# information on AWS Regions and Availability Zones, see [Regions and
|
2231
2269
|
# Availability Zones][1].
|
2232
2270
|
#
|
2233
2271
|
# Default: A random, system-chosen Availability Zone in the endpoint's
|
@@ -2235,7 +2273,7 @@ module Aws::RDS
|
|
2235
2273
|
#
|
2236
2274
|
# Example: `us-east-1d`
|
2237
2275
|
#
|
2238
|
-
# Constraint: The AvailabilityZone parameter
|
2276
|
+
# Constraint: The AvailabilityZone parameter can't be specified if the
|
2239
2277
|
# MultiAZ parameter is set to `true`. The specified Availability Zone
|
2240
2278
|
# must be in the same AWS Region as the current endpoint.
|
2241
2279
|
#
|
@@ -2249,25 +2287,23 @@ module Aws::RDS
|
|
2249
2287
|
# If there is no DB subnet group, then it is a non-VPC DB instance.
|
2250
2288
|
#
|
2251
2289
|
# @option params [String] :preferred_maintenance_window
|
2252
|
-
# The
|
2253
|
-
# Universal Coordinated Time (UTC). For more information, see [
|
2254
|
-
#
|
2290
|
+
# The time range each week during which system maintenance can occur, in
|
2291
|
+
# Universal Coordinated Time (UTC). For more information, see [Amazon
|
2292
|
+
# RDS Maintenance Window][1].
|
2255
2293
|
#
|
2256
2294
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
2257
2295
|
#
|
2258
|
-
#
|
2259
|
-
# time
|
2260
|
-
#
|
2261
|
-
# Window][2] in the *Amazon RDS User Guide.*
|
2296
|
+
# The default is a 30-minute window selected at random from an 8-hour
|
2297
|
+
# block of time for each AWS Region, occurring on a random day of the
|
2298
|
+
# week.
|
2262
2299
|
#
|
2263
|
-
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
|
2300
|
+
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
2264
2301
|
#
|
2265
2302
|
# Constraints: Minimum 30-minute window.
|
2266
2303
|
#
|
2267
2304
|
#
|
2268
2305
|
#
|
2269
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBMaintenance
|
2270
|
-
# [2]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
|
2306
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance
|
2271
2307
|
#
|
2272
2308
|
# @option params [String] :db_parameter_group_name
|
2273
2309
|
# The name of the DB parameter group to associate with this DB instance.
|
@@ -2303,22 +2339,22 @@ module Aws::RDS
|
|
2303
2339
|
# @option params [String] :preferred_backup_window
|
2304
2340
|
# The daily time range during which automated backups are created if
|
2305
2341
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
2306
|
-
# parameter. For more information, see [
|
2342
|
+
# parameter. For more information, see [The Backup Window][1].
|
2307
2343
|
#
|
2308
2344
|
# **Amazon Aurora**
|
2309
2345
|
#
|
2310
2346
|
# Not applicable. The daily time range for creating automated backups is
|
2311
2347
|
# managed by the DB cluster. For more information, see CreateDBCluster.
|
2312
2348
|
#
|
2313
|
-
#
|
2314
|
-
# time
|
2315
|
-
# the Preferred DB Instance Maintenance Window][2].
|
2349
|
+
# The default is a 30-minute window selected at random from an 8-hour
|
2350
|
+
# block of time for each AWS Region. To see the time blocks available,
|
2351
|
+
# see [ Adjusting the Preferred DB Instance Maintenance Window][2].
|
2316
2352
|
#
|
2317
2353
|
# Constraints:
|
2318
2354
|
#
|
2319
2355
|
# * Must be in the format `hh24:mi-hh24:mi`.
|
2320
2356
|
#
|
2321
|
-
# *
|
2357
|
+
# * Must be in Universal Coordinated Time (UTC).
|
2322
2358
|
#
|
2323
2359
|
# * Must not conflict with the preferred maintenance window.
|
2324
2360
|
#
|
@@ -2326,7 +2362,7 @@ module Aws::RDS
|
|
2326
2362
|
#
|
2327
2363
|
#
|
2328
2364
|
#
|
2329
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
2365
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
|
2330
2366
|
# [2]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow
|
2331
2367
|
#
|
2332
2368
|
# @option params [Integer] :port
|
@@ -2378,7 +2414,7 @@ module Aws::RDS
|
|
2378
2414
|
# Type: Integer
|
2379
2415
|
#
|
2380
2416
|
# @option params [Boolean] :multi_az
|
2381
|
-
# Specifies if the DB instance is a Multi-AZ deployment. You
|
2417
|
+
# Specifies if the DB instance is a Multi-AZ deployment. You can't set
|
2382
2418
|
# the AvailabilityZone parameter if the MultiAZ parameter is set to
|
2383
2419
|
# true.
|
2384
2420
|
#
|
@@ -2397,59 +2433,59 @@ module Aws::RDS
|
|
2397
2433
|
#
|
2398
2434
|
# **MariaDB**
|
2399
2435
|
#
|
2400
|
-
# * `10.1.23` (supported in all AWS
|
2436
|
+
# * `10.1.23` (supported in all AWS Regions)
|
2401
2437
|
#
|
2402
|
-
# * `10.1.19` (supported in all AWS
|
2438
|
+
# * `10.1.19` (supported in all AWS Regions)
|
2403
2439
|
#
|
2404
|
-
# * `10.1.14` (supported in all
|
2440
|
+
# * `10.1.14` (supported in all AWS Regions except us-east-2)
|
2405
2441
|
#
|
2406
2442
|
#
|
2407
2443
|
#
|
2408
|
-
# * `10.0.31` (supported in all AWS
|
2444
|
+
# * `10.0.31` (supported in all AWS Regions)
|
2409
2445
|
#
|
2410
|
-
# * `10.0.28` (supported in all AWS
|
2446
|
+
# * `10.0.28` (supported in all AWS Regions)
|
2411
2447
|
#
|
2412
|
-
# * `10.0.24` (supported in all AWS
|
2448
|
+
# * `10.0.24` (supported in all AWS Regions)
|
2413
2449
|
#
|
2414
|
-
# * `10.0.17` (supported in all
|
2415
|
-
# eu-west-2)
|
2450
|
+
# * `10.0.17` (supported in all AWS Regions except us-east-2,
|
2451
|
+
# ca-central-1, eu-west-2)
|
2416
2452
|
#
|
2417
2453
|
# **Microsoft SQL Server 2016**
|
2418
2454
|
#
|
2419
|
-
# * `13.00.4422.0.v1` (supported for all editions, and all AWS
|
2455
|
+
# * `13.00.4422.0.v1` (supported for all editions, and all AWS Regions)
|
2420
2456
|
#
|
2421
|
-
# * `13.00.2164.0.v1` (supported for all editions, and all AWS
|
2457
|
+
# * `13.00.2164.0.v1` (supported for all editions, and all AWS Regions)
|
2422
2458
|
#
|
2423
2459
|
# **Microsoft SQL Server 2014**
|
2424
2460
|
#
|
2425
|
-
# * `12.00.5546.0.v1` (supported for all editions, and all AWS
|
2461
|
+
# * `12.00.5546.0.v1` (supported for all editions, and all AWS Regions)
|
2426
2462
|
#
|
2427
|
-
# * `12.00.5000.0.v1` (supported for all editions, and all AWS
|
2463
|
+
# * `12.00.5000.0.v1` (supported for all editions, and all AWS Regions)
|
2428
2464
|
#
|
2429
2465
|
# * `12.00.4422.0.v1` (supported for all editions except Enterprise
|
2430
|
-
# Edition, and all AWS
|
2466
|
+
# Edition, and all AWS Regions except ca-central-1 and eu-west-2)
|
2431
2467
|
#
|
2432
2468
|
# **Microsoft SQL Server 2012**
|
2433
2469
|
#
|
2434
|
-
# * `11.00.6594.0.v1` (supported for all editions, and all AWS
|
2470
|
+
# * `11.00.6594.0.v1` (supported for all editions, and all AWS Regions)
|
2435
2471
|
#
|
2436
|
-
# * `11.00.6020.0.v1` (supported for all editions, and all AWS
|
2472
|
+
# * `11.00.6020.0.v1` (supported for all editions, and all AWS Regions)
|
2437
2473
|
#
|
2438
|
-
# * `11.00.5058.0.v1` (supported for all editions, and all AWS
|
2474
|
+
# * `11.00.5058.0.v1` (supported for all editions, and all AWS Regions
|
2439
2475
|
# except us-east-2, ca-central-1, and eu-west-2)
|
2440
2476
|
#
|
2441
|
-
# * `11.00.2100.60.v1` (supported for all editions, and all AWS
|
2477
|
+
# * `11.00.2100.60.v1` (supported for all editions, and all AWS Regions
|
2442
2478
|
# except us-east-2, ca-central-1, and eu-west-2)
|
2443
2479
|
#
|
2444
2480
|
# **Microsoft SQL Server 2008 R2**
|
2445
2481
|
#
|
2446
|
-
# * `10.50.6529.0.v1` (supported for all editions, and all AWS
|
2482
|
+
# * `10.50.6529.0.v1` (supported for all editions, and all AWS Regions
|
2447
2483
|
# except us-east-2, ca-central-1, and eu-west-2)
|
2448
2484
|
#
|
2449
|
-
# * `10.50.6000.34.v1` (supported for all editions, and all AWS
|
2485
|
+
# * `10.50.6000.34.v1` (supported for all editions, and all AWS Regions
|
2450
2486
|
# except us-east-2, ca-central-1, and eu-west-2)
|
2451
2487
|
#
|
2452
|
-
# * `10.50.2789.0.v1` (supported for all editions, and all AWS
|
2488
|
+
# * `10.50.2789.0.v1` (supported for all editions, and all AWS Regions
|
2453
2489
|
# except us-east-2, ca-central-1, and eu-west-2)
|
2454
2490
|
#
|
2455
2491
|
# **MySQL**
|
@@ -2460,30 +2496,28 @@ module Aws::RDS
|
|
2460
2496
|
#
|
2461
2497
|
# * `5.7.16` (supported in all AWS regions)
|
2462
2498
|
#
|
2463
|
-
# * `5.7.11` (supported in all AWS regions)
|
2464
2499
|
#
|
2465
2500
|
#
|
2501
|
+
# * `5.6.37` (supported in all AWS Regions)
|
2466
2502
|
#
|
2467
|
-
# * `5.6.
|
2503
|
+
# * `5.6.35` (supported in all AWS Regions)
|
2468
2504
|
#
|
2469
|
-
# * `5.6.
|
2505
|
+
# * `5.6.34` (supported in all AWS Regions)
|
2470
2506
|
#
|
2471
|
-
# * `5.6.
|
2507
|
+
# * `5.6.29` (supported in all AWS Regions)
|
2472
2508
|
#
|
2473
|
-
# * `5.6.
|
2509
|
+
# * `5.6.27` (supported in all AWS Regions except us-east-2,
|
2510
|
+
# ca-central-1, eu-west-2)
|
2474
2511
|
#
|
2475
|
-
# * `5.6.27` (supported in all regions except us-east-2, ca-central-1,
|
2476
|
-
# eu-west-2)
|
2477
2512
|
#
|
2478
2513
|
#
|
2514
|
+
# * `5.5.57` (supported in all AWS Regions)
|
2479
2515
|
#
|
2480
|
-
# * `5.5.
|
2516
|
+
# * `5.5.54` (supported in all AWS Regions)
|
2481
2517
|
#
|
2482
|
-
# * `5.5.
|
2518
|
+
# * `5.5.53` (supported in all AWS Regions)
|
2483
2519
|
#
|
2484
|
-
# * `5.5.
|
2485
|
-
#
|
2486
|
-
# * `5.5.46` (supported in all AWS regions)
|
2520
|
+
# * `5.5.46` (supported in all AWS Regions)
|
2487
2521
|
#
|
2488
2522
|
# **Oracle 12c**
|
2489
2523
|
#
|
@@ -2564,20 +2598,26 @@ module Aws::RDS
|
|
2564
2598
|
#
|
2565
2599
|
# @option params [Integer] :iops
|
2566
2600
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
2567
|
-
# be initially allocated for the DB instance.
|
2601
|
+
# be initially allocated for the DB instance. For information about
|
2602
|
+
# valid Iops values, see see [Amazon RDS Provisioned IOPS Storage to
|
2603
|
+
# Improve Performance][1].
|
2568
2604
|
#
|
2569
2605
|
# Constraints: Must be a multiple between 3 and 10 of the storage amount
|
2570
2606
|
# for the DB instance. Must also be an integer multiple of 1000. For
|
2571
2607
|
# example, if the size of your DB instance is 500 GB, then your `Iops`
|
2572
2608
|
# value can be 2000, 3000, 4000, or 5000.
|
2573
2609
|
#
|
2610
|
+
#
|
2611
|
+
#
|
2612
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
2613
|
+
#
|
2574
2614
|
# @option params [String] :option_group_name
|
2575
2615
|
# Indicates that the DB instance should be associated with the specified
|
2576
2616
|
# option group.
|
2577
2617
|
#
|
2578
2618
|
# Permanent options, such as the TDE option for Oracle Advanced Security
|
2579
|
-
# TDE,
|
2580
|
-
#
|
2619
|
+
# TDE, can't be removed from an option group, and that option group
|
2620
|
+
# can't be removed from a DB instance once it is associated with a DB
|
2581
2621
|
# instance
|
2582
2622
|
#
|
2583
2623
|
# @option params [String] :character_set_name
|
@@ -2611,7 +2651,12 @@ module Aws::RDS
|
|
2611
2651
|
# set, the DB instance is private.
|
2612
2652
|
#
|
2613
2653
|
# @option params [Array<Types::Tag>] :tags
|
2614
|
-
# A list of tags.
|
2654
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
2655
|
+
# Resources][1].
|
2656
|
+
#
|
2657
|
+
#
|
2658
|
+
#
|
2659
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
2615
2660
|
#
|
2616
2661
|
# @option params [String] :db_cluster_identifier
|
2617
2662
|
# The identifier of the DB cluster that the instance will belong to.
|
@@ -2628,15 +2673,15 @@ module Aws::RDS
|
|
2628
2673
|
# If you specify `io1`, you must also include a value for the `Iops`
|
2629
2674
|
# parameter.
|
2630
2675
|
#
|
2631
|
-
# Default: `io1` if the `Iops` parameter is specified
|
2676
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
2632
2677
|
# `standard`
|
2633
2678
|
#
|
2634
2679
|
# @option params [String] :tde_credential_arn
|
2635
|
-
# The ARN from the
|
2680
|
+
# The ARN from the key store with which to associate the instance for
|
2636
2681
|
# TDE encryption.
|
2637
2682
|
#
|
2638
2683
|
# @option params [String] :tde_credential_password
|
2639
|
-
# The password for the given ARN from the
|
2684
|
+
# The password for the given ARN from the key store in order to access
|
2640
2685
|
# the device.
|
2641
2686
|
#
|
2642
2687
|
# @option params [Boolean] :storage_encrypted
|
@@ -2650,7 +2695,7 @@ module Aws::RDS
|
|
2650
2695
|
# Default: false
|
2651
2696
|
#
|
2652
2697
|
# @option params [String] :kms_key_id
|
2653
|
-
# The KMS key identifier for an encrypted DB instance.
|
2698
|
+
# The AWS KMS key identifier for an encrypted DB instance.
|
2654
2699
|
#
|
2655
2700
|
# The KMS key identifier is the Amazon Resource Name (ARN) for the KMS
|
2656
2701
|
# encryption key. If you are creating a DB instance with the same AWS
|
@@ -2674,7 +2719,7 @@ module Aws::RDS
|
|
2674
2719
|
#
|
2675
2720
|
# @option params [Boolean] :copy_tags_to_snapshot
|
2676
2721
|
# True to copy all tags from the DB instance to snapshots of the DB
|
2677
|
-
# instance
|
2722
|
+
# instance, and otherwise false. The default is false.
|
2678
2723
|
#
|
2679
2724
|
# @option params [Integer] :monitoring_interval
|
2680
2725
|
# The interval, in seconds, between points when Enhanced Monitoring
|
@@ -2688,7 +2733,7 @@ module Aws::RDS
|
|
2688
2733
|
#
|
2689
2734
|
# @option params [String] :monitoring_role_arn
|
2690
2735
|
# The ARN for the IAM role that permits RDS to send enhanced monitoring
|
2691
|
-
# metrics to CloudWatch Logs. For example,
|
2736
|
+
# metrics to Amazon CloudWatch Logs. For example,
|
2692
2737
|
# `arn:aws:iam:123456789012:role/emaccess`. For information on creating
|
2693
2738
|
# a monitoring role, go to [Setting Up and Enabling Enhanced
|
2694
2739
|
# Monitoring][1].
|
@@ -2728,7 +2773,7 @@ module Aws::RDS
|
|
2728
2773
|
#
|
2729
2774
|
# @option params [Boolean] :enable_iam_database_authentication
|
2730
2775
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
2731
|
-
# accounts to database accounts
|
2776
|
+
# accounts to database accounts, and otherwise false.
|
2732
2777
|
#
|
2733
2778
|
# You can enable IAM database authentication for the following database
|
2734
2779
|
# engines:
|
@@ -2747,13 +2792,13 @@ module Aws::RDS
|
|
2747
2792
|
# Default: `false`
|
2748
2793
|
#
|
2749
2794
|
# @option params [Boolean] :enable_performance_insights
|
2750
|
-
# True to enable Performance Insights for the DB instance
|
2795
|
+
# True to enable Performance Insights for the DB instance, and otherwise
|
2751
2796
|
# false.
|
2752
2797
|
#
|
2753
2798
|
# @option params [String] :performance_insights_kms_key_id
|
2754
|
-
# The KMS key identifier for encryption of Performance Insights
|
2755
|
-
# The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
2756
|
-
# or the KMS key alias for the KMS encryption key.
|
2799
|
+
# The AWS KMS key identifier for encryption of Performance Insights
|
2800
|
+
# data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
2801
|
+
# identifier, or the KMS key alias for the KMS encryption key.
|
2757
2802
|
#
|
2758
2803
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2759
2804
|
#
|
@@ -2976,7 +3021,7 @@ module Aws::RDS
|
|
2976
3021
|
#
|
2977
3022
|
# * Can specify a DB instance that is a PostgreSQL DB instance only if
|
2978
3023
|
# the source is running PostgreSQL 9.3.5 or later (9.4.7 and higher
|
2979
|
-
# for cross
|
3024
|
+
# for cross-region replication).
|
2980
3025
|
#
|
2981
3026
|
# * The specified DB instance must have automatic backups enabled, its
|
2982
3027
|
# backup retention period must be greater than 0.
|
@@ -2994,8 +3039,8 @@ module Aws::RDS
|
|
2994
3039
|
#
|
2995
3040
|
# @option params [String] :db_instance_class
|
2996
3041
|
# The compute and memory capacity of the Read Replica, for example,
|
2997
|
-
# `db.m4.large`. Not all DB instance classes are available in all
|
2998
|
-
#
|
3042
|
+
# `db.m4.large`. Not all DB instance classes are available in all AWS
|
3043
|
+
# Regions, or for all database engines. For the full list of DB instance
|
2999
3044
|
# classes, and availability for your engine, see [DB Instance Class][1]
|
3000
3045
|
# in the Amazon RDS User Guide.
|
3001
3046
|
#
|
@@ -3056,7 +3101,12 @@ module Aws::RDS
|
|
3056
3101
|
# set, the DB instance is private.
|
3057
3102
|
#
|
3058
3103
|
# @option params [Array<Types::Tag>] :tags
|
3059
|
-
# A list of tags.
|
3104
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
3105
|
+
# Resources][1].
|
3106
|
+
#
|
3107
|
+
#
|
3108
|
+
#
|
3109
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
3060
3110
|
#
|
3061
3111
|
# @option params [String] :db_subnet_group_name
|
3062
3112
|
# Specifies a DB subnet group for the DB instance. The new DB instance
|
@@ -3093,12 +3143,12 @@ module Aws::RDS
|
|
3093
3143
|
# If you specify `io1`, you must also include a value for the `Iops`
|
3094
3144
|
# parameter.
|
3095
3145
|
#
|
3096
|
-
# Default: `io1` if the `Iops` parameter is specified
|
3146
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
3097
3147
|
# `standard`
|
3098
3148
|
#
|
3099
3149
|
# @option params [Boolean] :copy_tags_to_snapshot
|
3100
3150
|
# True to copy all tags from the Read Replica to snapshots of the Read
|
3101
|
-
# Replica
|
3151
|
+
# Replica, and otherwise false. The default is false.
|
3102
3152
|
#
|
3103
3153
|
# @option params [Integer] :monitoring_interval
|
3104
3154
|
# The interval, in seconds, between points when Enhanced Monitoring
|
@@ -3112,7 +3162,7 @@ module Aws::RDS
|
|
3112
3162
|
#
|
3113
3163
|
# @option params [String] :monitoring_role_arn
|
3114
3164
|
# The ARN for the IAM role that permits RDS to send enhanced monitoring
|
3115
|
-
# metrics to CloudWatch Logs. For example,
|
3165
|
+
# metrics to Amazon CloudWatch Logs. For example,
|
3116
3166
|
# `arn:aws:iam:123456789012:role/emaccess`. For information on creating
|
3117
3167
|
# a monitoring role, go to [To create an IAM role for Amazon RDS
|
3118
3168
|
# Enhanced Monitoring][1].
|
@@ -3140,7 +3190,7 @@ module Aws::RDS
|
|
3140
3190
|
# If you create an encrypted Read Replica in a different AWS Region,
|
3141
3191
|
# then you must specify a KMS key for the destination AWS Region. KMS
|
3142
3192
|
# encryption keys are specific to the AWS Region that they are created
|
3143
|
-
# in, and you
|
3193
|
+
# in, and you can't use encryption keys from one AWS Region in another
|
3144
3194
|
# AWS Region.
|
3145
3195
|
#
|
3146
3196
|
# @option params [String] :pre_signed_url
|
@@ -3150,9 +3200,9 @@ module Aws::RDS
|
|
3150
3200
|
#
|
3151
3201
|
# You must specify this parameter when you create an encrypted Read
|
3152
3202
|
# Replica from another AWS Region by using the Amazon RDS API. You can
|
3153
|
-
# specify the source
|
3154
|
-
# create an encrypted Read Replica from another AWS Region by using
|
3155
|
-
# AWS CLI.
|
3203
|
+
# specify the `--source-region` option instead of this parameter when
|
3204
|
+
# you create an encrypted Read Replica from another AWS Region by using
|
3205
|
+
# the AWS CLI.
|
3156
3206
|
#
|
3157
3207
|
# The presigned URL must be a valid request for the
|
3158
3208
|
# `CreateDBInstanceReadReplica` API action that can be executed in the
|
@@ -3165,24 +3215,24 @@ module Aws::RDS
|
|
3165
3215
|
# presigned URL.
|
3166
3216
|
#
|
3167
3217
|
# For example, if you create an encrypted DB instance in the us-west-1
|
3168
|
-
#
|
3169
|
-
# call the `CreateDBInstanceReadReplica` action in the
|
3170
|
-
#
|
3171
|
-
# `CreateDBInstanceReadReplica` action in the us-west-2
|
3172
|
-
# this example, the `DestinationRegion` in the
|
3173
|
-
# set to the us-east-1
|
3174
|
-
#
|
3175
|
-
# * `KmsKeyId` - The KMS key identifier for the key to use to
|
3176
|
-
# the Read Replica in the destination AWS Region. This is the
|
3177
|
-
# identifier for both the `CreateDBInstanceReadReplica` action
|
3178
|
-
# called in the destination AWS Region, and the action
|
3179
|
-
# the presigned URL.
|
3218
|
+
# AWS Region, from a source DB instance in the us-east-2 AWS Region,
|
3219
|
+
# then you call the `CreateDBInstanceReadReplica` action in the
|
3220
|
+
# us-east-1 AWS Region and provide a presigned URL that contains a
|
3221
|
+
# call to the `CreateDBInstanceReadReplica` action in the us-west-2
|
3222
|
+
# AWS Region. For this example, the `DestinationRegion` in the
|
3223
|
+
# presigned URL must be set to the us-east-1 AWS Region.
|
3224
|
+
#
|
3225
|
+
# * `KmsKeyId` - The AWS KMS key identifier for the key to use to
|
3226
|
+
# encrypt the Read Replica in the destination AWS Region. This is the
|
3227
|
+
# same identifier for both the `CreateDBInstanceReadReplica` action
|
3228
|
+
# that is called in the destination AWS Region, and the action
|
3229
|
+
# contained in the presigned URL.
|
3180
3230
|
#
|
3181
3231
|
# * `SourceDBInstanceIdentifier` - The DB instance identifier for the
|
3182
3232
|
# encrypted DB instance to be replicated. This identifier must be in
|
3183
3233
|
# the Amazon Resource Name (ARN) format for the source AWS Region. For
|
3184
3234
|
# example, if you are creating an encrypted Read Replica from a DB
|
3185
|
-
# instance in the us-west-2
|
3235
|
+
# instance in the us-west-2 AWS Region, then your
|
3186
3236
|
# `SourceDBInstanceIdentifier` looks like the following example:
|
3187
3237
|
# `arn:aws:rds:us-west-2:123456789012:instance:mysql-instance1-20161115`.
|
3188
3238
|
#
|
@@ -3197,7 +3247,7 @@ module Aws::RDS
|
|
3197
3247
|
#
|
3198
3248
|
# @option params [Boolean] :enable_iam_database_authentication
|
3199
3249
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
3200
|
-
# accounts to database accounts
|
3250
|
+
# accounts to database accounts, and otherwise false.
|
3201
3251
|
#
|
3202
3252
|
# You can enable IAM database authentication for the following database
|
3203
3253
|
# engines
|
@@ -3211,13 +3261,13 @@ module Aws::RDS
|
|
3211
3261
|
# Default: `false`
|
3212
3262
|
#
|
3213
3263
|
# @option params [Boolean] :enable_performance_insights
|
3214
|
-
# True to enable Performance Insights for the read replica
|
3215
|
-
# false.
|
3264
|
+
# True to enable Performance Insights for the read replica, and
|
3265
|
+
# otherwise false.
|
3216
3266
|
#
|
3217
3267
|
# @option params [String] :performance_insights_kms_key_id
|
3218
|
-
# The KMS key identifier for encryption of Performance Insights
|
3219
|
-
# The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
3220
|
-
# or the KMS key alias for the KMS encryption key.
|
3268
|
+
# The AWS KMS key identifier for encryption of Performance Insights
|
3269
|
+
# data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
3270
|
+
# identifier, or the KMS key alias for the KMS encryption key.
|
3221
3271
|
#
|
3222
3272
|
# @option params [String] :source_region
|
3223
3273
|
# The source region of the snapshot. This is only needed when the
|
@@ -3441,7 +3491,12 @@ module Aws::RDS
|
|
3441
3491
|
# The description for the DB parameter group.
|
3442
3492
|
#
|
3443
3493
|
# @option params [Array<Types::Tag>] :tags
|
3444
|
-
# A list of tags.
|
3494
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
3495
|
+
# Resources][1].
|
3496
|
+
#
|
3497
|
+
#
|
3498
|
+
#
|
3499
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
3445
3500
|
#
|
3446
3501
|
# @return [Types::CreateDBParameterGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3447
3502
|
#
|
@@ -3517,7 +3572,12 @@ module Aws::RDS
|
|
3517
3572
|
# The description for the DB security group.
|
3518
3573
|
#
|
3519
3574
|
# @option params [Array<Types::Tag>] :tags
|
3520
|
-
# A list of tags.
|
3575
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
3576
|
+
# Resources][1].
|
3577
|
+
#
|
3578
|
+
#
|
3579
|
+
#
|
3580
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
3521
3581
|
#
|
3522
3582
|
# @return [Types::CreateDBSecurityGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3523
3583
|
#
|
@@ -3606,7 +3666,12 @@ module Aws::RDS
|
|
3606
3666
|
# ^
|
3607
3667
|
#
|
3608
3668
|
# @option params [Array<Types::Tag>] :tags
|
3609
|
-
# A list of tags.
|
3669
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
3670
|
+
# Resources][1].
|
3671
|
+
#
|
3672
|
+
#
|
3673
|
+
#
|
3674
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
3610
3675
|
#
|
3611
3676
|
# @return [Types::CreateDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3612
3677
|
#
|
@@ -3698,7 +3763,12 @@ module Aws::RDS
|
|
3698
3763
|
# The EC2 Subnet IDs for the DB subnet group.
|
3699
3764
|
#
|
3700
3765
|
# @option params [Array<Types::Tag>] :tags
|
3701
|
-
# A list of tags.
|
3766
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
3767
|
+
# Resources][1].
|
3768
|
+
#
|
3769
|
+
#
|
3770
|
+
#
|
3771
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
3702
3772
|
#
|
3703
3773
|
# @return [Types::CreateDBSubnetGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3704
3774
|
#
|
@@ -3814,7 +3884,7 @@ module Aws::RDS
|
|
3814
3884
|
# The list of identifiers of the event sources for which events are
|
3815
3885
|
# returned. If not specified, then all sources are included in the
|
3816
3886
|
# response. An identifier must begin with a letter and must contain only
|
3817
|
-
# ASCII letters, digits, and hyphens; it
|
3887
|
+
# ASCII letters, digits, and hyphens; it can't end with a hyphen or
|
3818
3888
|
# contain two consecutive hyphens.
|
3819
3889
|
#
|
3820
3890
|
# Constraints:
|
@@ -3838,7 +3908,12 @@ module Aws::RDS
|
|
3838
3908
|
# **false** to create the subscription but not active it.
|
3839
3909
|
#
|
3840
3910
|
# @option params [Array<Types::Tag>] :tags
|
3841
|
-
# A list of tags.
|
3911
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
3912
|
+
# Resources][1].
|
3913
|
+
#
|
3914
|
+
#
|
3915
|
+
#
|
3916
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
3842
3917
|
#
|
3843
3918
|
# @return [Types::CreateEventSubscriptionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3844
3919
|
#
|
@@ -3936,7 +4011,12 @@ module Aws::RDS
|
|
3936
4011
|
# The description of the option group.
|
3937
4012
|
#
|
3938
4013
|
# @option params [Array<Types::Tag>] :tags
|
3939
|
-
# A list of tags.
|
4014
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
4015
|
+
# Resources][1].
|
4016
|
+
#
|
4017
|
+
#
|
4018
|
+
#
|
4019
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
3940
4020
|
#
|
3941
4021
|
# @return [Types::CreateOptionGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3942
4022
|
#
|
@@ -4019,7 +4099,7 @@ module Aws::RDS
|
|
4019
4099
|
|
4020
4100
|
# The DeleteDBCluster action deletes a previously provisioned DB
|
4021
4101
|
# cluster. When you delete a DB cluster, all automated backups for that
|
4022
|
-
# DB cluster are deleted and
|
4102
|
+
# DB cluster are deleted and can't be recovered. Manual DB cluster
|
4023
4103
|
# snapshots of the specified DB cluster are not deleted.
|
4024
4104
|
#
|
4025
4105
|
#
|
@@ -4159,7 +4239,7 @@ module Aws::RDS
|
|
4159
4239
|
end
|
4160
4240
|
|
4161
4241
|
# Deletes a specified DB cluster parameter group. The DB cluster
|
4162
|
-
# parameter group to be deleted
|
4242
|
+
# parameter group to be deleted can't be associated with any DB
|
4163
4243
|
# clusters.
|
4164
4244
|
#
|
4165
4245
|
# For more information on Amazon Aurora, see [Aurora on Amazon RDS][1]
|
@@ -4176,7 +4256,7 @@ module Aws::RDS
|
|
4176
4256
|
#
|
4177
4257
|
# * Must be the name of an existing DB cluster parameter group.
|
4178
4258
|
#
|
4179
|
-
# * You
|
4259
|
+
# * You can't delete a default DB cluster parameter group.
|
4180
4260
|
#
|
4181
4261
|
# * Cannot be associated with any DB clusters.
|
4182
4262
|
#
|
@@ -4287,14 +4367,14 @@ module Aws::RDS
|
|
4287
4367
|
|
4288
4368
|
# The DeleteDBInstance action deletes a previously provisioned DB
|
4289
4369
|
# instance. When you delete a DB instance, all automated backups for
|
4290
|
-
# that instance are deleted and
|
4370
|
+
# that instance are deleted and can't be recovered. Manual DB snapshots
|
4291
4371
|
# of the DB instance to be deleted by `DeleteDBInstance` are not
|
4292
4372
|
# deleted.
|
4293
4373
|
#
|
4294
4374
|
# If you request a final DB snapshot the status of the Amazon RDS DB
|
4295
4375
|
# instance is `deleting` until the DB snapshot is created. The API
|
4296
4376
|
# action `DescribeDBInstance` is used to monitor the status of this
|
4297
|
-
# operation. The action
|
4377
|
+
# operation. The action can't be canceled or reverted once submitted.
|
4298
4378
|
#
|
4299
4379
|
# Note that when a DB instance is in a failure state and has a status of
|
4300
4380
|
# `failed`, `incompatible-restore`, or `incompatible-network`, you can
|
@@ -4302,7 +4382,7 @@ module Aws::RDS
|
|
4302
4382
|
# `true`.
|
4303
4383
|
#
|
4304
4384
|
# If the specified DB instance is part of an Amazon Aurora DB cluster,
|
4305
|
-
# you
|
4385
|
+
# you can't delete the DB instance if both of the following conditions
|
4306
4386
|
# are true:
|
4307
4387
|
#
|
4308
4388
|
# * The DB cluster is a Read Replica of another Amazon Aurora DB
|
@@ -4497,7 +4577,7 @@ module Aws::RDS
|
|
4497
4577
|
end
|
4498
4578
|
|
4499
4579
|
# Deletes a specified DBParameterGroup. The DBParameterGroup to be
|
4500
|
-
# deleted
|
4580
|
+
# deleted can't be associated with any DB instances.
|
4501
4581
|
#
|
4502
4582
|
# @option params [required, String] :db_parameter_group_name
|
4503
4583
|
# The name of the DB parameter group.
|
@@ -4506,7 +4586,7 @@ module Aws::RDS
|
|
4506
4586
|
#
|
4507
4587
|
# * Must be the name of an existing DB parameter group
|
4508
4588
|
#
|
4509
|
-
# * You
|
4589
|
+
# * You can't delete a default DB parameter group
|
4510
4590
|
#
|
4511
4591
|
# * Cannot be associated with any DB instances
|
4512
4592
|
#
|
@@ -4546,7 +4626,7 @@ module Aws::RDS
|
|
4546
4626
|
# @option params [required, String] :db_security_group_name
|
4547
4627
|
# The name of the DB security group to delete.
|
4548
4628
|
#
|
4549
|
-
# <note markdown="1"> You
|
4629
|
+
# <note markdown="1"> You can't delete the default DB security group.
|
4550
4630
|
#
|
4551
4631
|
# </note>
|
4552
4632
|
#
|
@@ -4672,7 +4752,7 @@ module Aws::RDS
|
|
4672
4752
|
# @option params [required, String] :db_subnet_group_name
|
4673
4753
|
# The name of the database subnet group to delete.
|
4674
4754
|
#
|
4675
|
-
# <note markdown="1"> You
|
4755
|
+
# <note markdown="1"> You can't delete the default subnet group.
|
4676
4756
|
#
|
4677
4757
|
# </note>
|
4678
4758
|
#
|
@@ -4769,7 +4849,7 @@ module Aws::RDS
|
|
4769
4849
|
# @option params [required, String] :option_group_name
|
4770
4850
|
# The name of the option group to be deleted.
|
4771
4851
|
#
|
4772
|
-
# <note markdown="1"> You
|
4852
|
+
# <note markdown="1"> You can't delete default option groups.
|
4773
4853
|
#
|
4774
4854
|
# </note>
|
4775
4855
|
#
|
@@ -5190,7 +5270,7 @@ module Aws::RDS
|
|
5190
5270
|
#
|
5191
5271
|
# @option params [String] :db_cluster_identifier
|
5192
5272
|
# The ID of the DB cluster to retrieve the list of DB cluster snapshots
|
5193
|
-
# for. This parameter
|
5273
|
+
# for. This parameter can't be used in conjunction with the
|
5194
5274
|
# `DBClusterSnapshotIdentifier` parameter. This parameter is not
|
5195
5275
|
# case-sensitive.
|
5196
5276
|
#
|
@@ -5202,7 +5282,7 @@ module Aws::RDS
|
|
5202
5282
|
#
|
5203
5283
|
# @option params [String] :db_cluster_snapshot_identifier
|
5204
5284
|
# A specific DB cluster snapshot identifier to describe. This parameter
|
5205
|
-
#
|
5285
|
+
# can't be used in conjunction with the `DBClusterIdentifier`
|
5206
5286
|
# parameter. This value is stored as a lowercase string.
|
5207
5287
|
#
|
5208
5288
|
# Constraints:
|
@@ -5261,20 +5341,18 @@ module Aws::RDS
|
|
5261
5341
|
# specified by `MaxRecords`.
|
5262
5342
|
#
|
5263
5343
|
# @option params [Boolean] :include_shared
|
5264
|
-
#
|
5265
|
-
#
|
5266
|
-
#
|
5267
|
-
# The default is `false`.
|
5344
|
+
# True to include shared manual DB cluster snapshots from other AWS
|
5345
|
+
# accounts that this AWS account has been given permission to copy or
|
5346
|
+
# restore, and otherwise false. The default is `false`.
|
5268
5347
|
#
|
5269
5348
|
# You can give an AWS account permission to restore a manual DB cluster
|
5270
5349
|
# snapshot from another AWS account by the
|
5271
5350
|
# ModifyDBClusterSnapshotAttribute API action.
|
5272
5351
|
#
|
5273
5352
|
# @option params [Boolean] :include_public
|
5274
|
-
#
|
5275
|
-
#
|
5276
|
-
#
|
5277
|
-
# false.
|
5353
|
+
# True to include manual DB cluster snapshots that are public and can be
|
5354
|
+
# copied or restored by any AWS account, and otherwise false. The
|
5355
|
+
# default is `false`. The default is false.
|
5278
5356
|
#
|
5279
5357
|
# You can share a manual DB cluster snapshot as public by using the
|
5280
5358
|
# ModifyDBClusterSnapshotAttribute API action.
|
@@ -5637,7 +5715,7 @@ module Aws::RDS
|
|
5637
5715
|
#
|
5638
5716
|
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
5639
5717
|
# Amazon Resource Names (ARNs). The results list will only include
|
5640
|
-
# information about the DB instances associated with the DB
|
5718
|
+
# information about the DB instances associated with the DB clusters
|
5641
5719
|
# identified by these ARNs.
|
5642
5720
|
#
|
5643
5721
|
# * `db-instance-id` - Accepts DB instance identifiers and DB instance
|
@@ -6220,7 +6298,7 @@ module Aws::RDS
|
|
6220
6298
|
#
|
6221
6299
|
# @option params [String] :db_instance_identifier
|
6222
6300
|
# The ID of the DB instance to retrieve the list of DB snapshots for.
|
6223
|
-
# This parameter
|
6301
|
+
# This parameter can't be used in conjunction with
|
6224
6302
|
# `DBSnapshotIdentifier`. This parameter is not case-sensitive.
|
6225
6303
|
#
|
6226
6304
|
# Constraints:
|
@@ -6230,7 +6308,7 @@ module Aws::RDS
|
|
6230
6308
|
# ^
|
6231
6309
|
#
|
6232
6310
|
# @option params [String] :db_snapshot_identifier
|
6233
|
-
# A specific DB snapshot identifier to describe. This parameter
|
6311
|
+
# A specific DB snapshot identifier to describe. This parameter can't
|
6234
6312
|
# be used in conjunction with `DBInstanceIdentifier`. This value is
|
6235
6313
|
# stored as a lowercase string.
|
6236
6314
|
#
|
@@ -6289,19 +6367,18 @@ module Aws::RDS
|
|
6289
6367
|
# specified by `MaxRecords`.
|
6290
6368
|
#
|
6291
6369
|
# @option params [Boolean] :include_shared
|
6292
|
-
#
|
6293
|
-
#
|
6294
|
-
#
|
6295
|
-
# `false`.
|
6370
|
+
# True to include shared manual DB snapshots from other AWS accounts
|
6371
|
+
# that this AWS account has been given permission to copy or restore,
|
6372
|
+
# and otherwise false. The default is `false`.
|
6296
6373
|
#
|
6297
6374
|
# You can give an AWS account permission to restore a manual DB snapshot
|
6298
6375
|
# from another AWS account by using the ModifyDBSnapshotAttribute API
|
6299
6376
|
# action.
|
6300
6377
|
#
|
6301
6378
|
# @option params [Boolean] :include_public
|
6302
|
-
#
|
6303
|
-
#
|
6304
|
-
#
|
6379
|
+
# True to include manual DB snapshots that are public and can be copied
|
6380
|
+
# or restored by any AWS account, and otherwise false. The default is
|
6381
|
+
# false.
|
6305
6382
|
#
|
6306
6383
|
# You can share a manual DB snapshot as public by using the
|
6307
6384
|
# ModifyDBSnapshotAttribute API.
|
@@ -7613,7 +7690,7 @@ module Aws::RDS
|
|
7613
7690
|
req.send_request(options)
|
7614
7691
|
end
|
7615
7692
|
|
7616
|
-
# Returns a list of the source AWS
|
7693
|
+
# Returns a list of the source AWS Regions where the current AWS Region
|
7617
7694
|
# can create a Read Replica or copy a DB snapshot from. This API action
|
7618
7695
|
# supports pagination.
|
7619
7696
|
#
|
@@ -8157,8 +8234,8 @@ module Aws::RDS
|
|
8157
8234
|
# brief (sub-second) period during which new connections are rejected
|
8158
8235
|
# but existing connections are not interrupted.
|
8159
8236
|
#
|
8160
|
-
# Permanent options
|
8161
|
-
# group
|
8237
|
+
# Permanent options can't be removed from an option group. The option
|
8238
|
+
# group can't be removed from a DB cluster once it is associated with a
|
8162
8239
|
# DB cluster.
|
8163
8240
|
#
|
8164
8241
|
# @option params [String] :preferred_backup_window
|
@@ -8166,15 +8243,16 @@ module Aws::RDS
|
|
8166
8243
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
8167
8244
|
# parameter.
|
8168
8245
|
#
|
8169
|
-
#
|
8170
|
-
# time
|
8171
|
-
# the Preferred Maintenance Window][1] in the *Amazon
|
8246
|
+
# The default is a 30-minute window selected at random from an 8-hour
|
8247
|
+
# block of time for each AWS Region. To see the time blocks available,
|
8248
|
+
# see [ Adjusting the Preferred Maintenance Window][1] in the *Amazon
|
8249
|
+
# RDS User Guide.*
|
8172
8250
|
#
|
8173
8251
|
# Constraints:
|
8174
8252
|
#
|
8175
8253
|
# * Must be in the format `hh24:mi-hh24:mi`.
|
8176
8254
|
#
|
8177
|
-
# *
|
8255
|
+
# * Must be in Universal Coordinated Time (UTC).
|
8178
8256
|
#
|
8179
8257
|
# * Must not conflict with the preferred maintenance window.
|
8180
8258
|
#
|
@@ -8190,12 +8268,12 @@ module Aws::RDS
|
|
8190
8268
|
#
|
8191
8269
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
8192
8270
|
#
|
8193
|
-
#
|
8194
|
-
# time
|
8195
|
-
# time blocks available, see [ Adjusting the Preferred
|
8196
|
-
# Window][1] in the *Amazon RDS User Guide.*
|
8271
|
+
# The default is a 30-minute window selected at random from an 8-hour
|
8272
|
+
# block of time for each AWS Region, occurring on a random day of the
|
8273
|
+
# week. To see the time blocks available, see [ Adjusting the Preferred
|
8274
|
+
# Maintenance Window][1] in the *Amazon RDS User Guide.*
|
8197
8275
|
#
|
8198
|
-
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
|
8276
|
+
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
8199
8277
|
#
|
8200
8278
|
# Constraints: Minimum 30-minute window.
|
8201
8279
|
#
|
@@ -8204,9 +8282,8 @@ module Aws::RDS
|
|
8204
8282
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
|
8205
8283
|
#
|
8206
8284
|
# @option params [Boolean] :enable_iam_database_authentication
|
8207
|
-
#
|
8208
|
-
#
|
8209
|
-
# false.
|
8285
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
8286
|
+
# accounts to database accounts, and otherwise false.
|
8210
8287
|
#
|
8211
8288
|
# Default: `false`
|
8212
8289
|
#
|
@@ -8603,8 +8680,8 @@ module Aws::RDS
|
|
8603
8680
|
#
|
8604
8681
|
# @option params [String] :db_instance_class
|
8605
8682
|
# The new compute and memory capacity of the DB instance, for example,
|
8606
|
-
# `db.m4.large`. Not all DB instance classes are available in all
|
8607
|
-
#
|
8683
|
+
# `db.m4.large`. Not all DB instance classes are available in all AWS
|
8684
|
+
# Regions, or for all database engines. For the full list of DB instance
|
8608
8685
|
# classes, and availability for your engine, see [DB Instance Class][1]
|
8609
8686
|
# in the Amazon RDS User Guide.
|
8610
8687
|
#
|
@@ -8686,8 +8763,8 @@ module Aws::RDS
|
|
8686
8763
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.DBInstance.Modifying.html
|
8687
8764
|
#
|
8688
8765
|
# @option params [String] :master_user_password
|
8689
|
-
# The new password for the master user.
|
8690
|
-
# character except "/", """, or "@".
|
8766
|
+
# The new password for the master user. The password can include any
|
8767
|
+
# printable ASCII character except "/", """, or "@".
|
8691
8768
|
#
|
8692
8769
|
# Changing this parameter does not result in an outage and the change is
|
8693
8770
|
# asynchronously applied as soon as possible. Between the time of the
|
@@ -8790,7 +8867,7 @@ module Aws::RDS
|
|
8790
8867
|
#
|
8791
8868
|
# * Must be in the format hh24:mi-hh24:mi
|
8792
8869
|
#
|
8793
|
-
# *
|
8870
|
+
# * Must be in Universal Time Coordinated (UTC)
|
8794
8871
|
#
|
8795
8872
|
# * Must not conflict with the preferred maintenance window
|
8796
8873
|
#
|
@@ -8908,8 +8985,8 @@ module Aws::RDS
|
|
8908
8985
|
# connections are not interrupted.
|
8909
8986
|
#
|
8910
8987
|
# Permanent options, such as the TDE option for Oracle Advanced Security
|
8911
|
-
# TDE,
|
8912
|
-
#
|
8988
|
+
# TDE, can't be removed from an option group, and that option group
|
8989
|
+
# can't be removed from a DB instance once it is associated with a DB
|
8913
8990
|
# instance
|
8914
8991
|
#
|
8915
8992
|
# @option params [String] :new_db_instance_identifier
|
@@ -8937,15 +9014,15 @@ module Aws::RDS
|
|
8937
9014
|
# If you specify `io1`, you must also include a value for the `Iops`
|
8938
9015
|
# parameter.
|
8939
9016
|
#
|
8940
|
-
# Default: `io1` if the `Iops` parameter is specified
|
9017
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
8941
9018
|
# `standard`
|
8942
9019
|
#
|
8943
9020
|
# @option params [String] :tde_credential_arn
|
8944
|
-
# The ARN from the
|
9021
|
+
# The ARN from the key store with which to associate the instance for
|
8945
9022
|
# TDE encryption.
|
8946
9023
|
#
|
8947
9024
|
# @option params [String] :tde_credential_password
|
8948
|
-
# The password for the given ARN from the
|
9025
|
+
# The password for the given ARN from the key store in order to access
|
8949
9026
|
# the device.
|
8950
9027
|
#
|
8951
9028
|
# @option params [String] :ca_certificate_identifier
|
@@ -8960,7 +9037,7 @@ module Aws::RDS
|
|
8960
9037
|
#
|
8961
9038
|
# @option params [Boolean] :copy_tags_to_snapshot
|
8962
9039
|
# True to copy all tags from the DB instance to snapshots of the DB
|
8963
|
-
# instance
|
9040
|
+
# instance, and otherwise false. The default is false.
|
8964
9041
|
#
|
8965
9042
|
# @option params [Integer] :monitoring_interval
|
8966
9043
|
# The interval, in seconds, between points when Enhanced Monitoring
|
@@ -9039,7 +9116,7 @@ module Aws::RDS
|
|
9039
9116
|
#
|
9040
9117
|
# @option params [String] :monitoring_role_arn
|
9041
9118
|
# The ARN for the IAM role that permits RDS to send enhanced monitoring
|
9042
|
-
# metrics to CloudWatch Logs. For example,
|
9119
|
+
# metrics to Amazon CloudWatch Logs. For example,
|
9043
9120
|
# `arn:aws:iam:123456789012:role/emaccess`. For information on creating
|
9044
9121
|
# a monitoring role, go to [To create an IAM role for Amazon RDS
|
9045
9122
|
# Enhanced Monitoring][1].
|
@@ -9071,7 +9148,7 @@ module Aws::RDS
|
|
9071
9148
|
#
|
9072
9149
|
# @option params [Boolean] :enable_iam_database_authentication
|
9073
9150
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
9074
|
-
# accounts to database accounts
|
9151
|
+
# accounts to database accounts, and otherwise false.
|
9075
9152
|
#
|
9076
9153
|
# You can enable IAM database authentication for the following database
|
9077
9154
|
# engines
|
@@ -9090,13 +9167,13 @@ module Aws::RDS
|
|
9090
9167
|
# Default: `false`
|
9091
9168
|
#
|
9092
9169
|
# @option params [Boolean] :enable_performance_insights
|
9093
|
-
# True to enable Performance Insights for the DB instance
|
9170
|
+
# True to enable Performance Insights for the DB instance, and otherwise
|
9094
9171
|
# false.
|
9095
9172
|
#
|
9096
9173
|
# @option params [String] :performance_insights_kms_key_id
|
9097
|
-
# The KMS key identifier for encryption of Performance Insights
|
9098
|
-
# The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
9099
|
-
# or the KMS key alias for the KMS encryption key.
|
9174
|
+
# The AWS KMS key identifier for encryption of Performance Insights
|
9175
|
+
# data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
9176
|
+
# identifier, or the KMS key alias for the KMS encryption key.
|
9100
9177
|
#
|
9101
9178
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9102
9179
|
#
|
@@ -9635,7 +9712,7 @@ module Aws::RDS
|
|
9635
9712
|
end
|
9636
9713
|
|
9637
9714
|
# Modifies an existing RDS event notification subscription. Note that
|
9638
|
-
# you
|
9715
|
+
# you can't modify the source identifiers using this call; to change
|
9639
9716
|
# source identifiers for a subscription, use the
|
9640
9717
|
# AddSourceIdentifierToSubscription and
|
9641
9718
|
# RemoveSourceIdentifierFromSubscription calls.
|
@@ -9743,8 +9820,8 @@ module Aws::RDS
|
|
9743
9820
|
# The name of the option group to be modified.
|
9744
9821
|
#
|
9745
9822
|
# Permanent options, such as the TDE option for Oracle Advanced Security
|
9746
|
-
# TDE,
|
9747
|
-
#
|
9823
|
+
# TDE, can't be removed from an option group, and that option group
|
9824
|
+
# can't be removed from a DB instance once it is associated with a DB
|
9748
9825
|
# instance
|
9749
9826
|
#
|
9750
9827
|
# @option params [Array<Types::OptionConfiguration>] :options_to_include
|
@@ -9899,15 +9976,16 @@ module Aws::RDS
|
|
9899
9976
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
9900
9977
|
# parameter.
|
9901
9978
|
#
|
9902
|
-
#
|
9903
|
-
# time
|
9904
|
-
# the Preferred Maintenance Window][1] in the *Amazon
|
9979
|
+
# The default is a 30-minute window selected at random from an 8-hour
|
9980
|
+
# block of time for each AWS Region. To see the time blocks available,
|
9981
|
+
# see [ Adjusting the Preferred Maintenance Window][1] in the *Amazon
|
9982
|
+
# RDS User Guide.*
|
9905
9983
|
#
|
9906
9984
|
# Constraints:
|
9907
9985
|
#
|
9908
9986
|
# * Must be in the format `hh24:mi-hh24:mi`.
|
9909
9987
|
#
|
9910
|
-
# *
|
9988
|
+
# * Must be in Universal Coordinated Time (UTC).
|
9911
9989
|
#
|
9912
9990
|
# * Must not conflict with the preferred maintenance window.
|
9913
9991
|
#
|
@@ -10150,7 +10228,12 @@ module Aws::RDS
|
|
10150
10228
|
# Default: `1`
|
10151
10229
|
#
|
10152
10230
|
# @option params [Array<Types::Tag>] :tags
|
10153
|
-
# A list of tags.
|
10231
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
10232
|
+
# Resources][1].
|
10233
|
+
#
|
10234
|
+
#
|
10235
|
+
#
|
10236
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
10154
10237
|
#
|
10155
10238
|
# @return [Types::PurchaseReservedDBInstancesOfferingResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10156
10239
|
#
|
@@ -10248,7 +10331,7 @@ module Aws::RDS
|
|
10248
10331
|
# @option params [Boolean] :force_failover
|
10249
10332
|
# When `true`, the reboot is conducted through a MultiAZ failover.
|
10250
10333
|
#
|
10251
|
-
# Constraint: You
|
10334
|
+
# Constraint: You can't specify `true` if the instance is not
|
10252
10335
|
# configured for MultiAZ.
|
10253
10336
|
#
|
10254
10337
|
# @return [Types::RebootDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -10554,12 +10637,12 @@ module Aws::RDS
|
|
10554
10637
|
# @option params [Boolean] :reset_all_parameters
|
10555
10638
|
# A value that is set to `true` to reset all parameters in the DB
|
10556
10639
|
# cluster parameter group to their default values, and `false`
|
10557
|
-
# otherwise. You
|
10640
|
+
# otherwise. You can't use this parameter if there is a list of
|
10558
10641
|
# parameter names specified for the `Parameters` parameter.
|
10559
10642
|
#
|
10560
10643
|
# @option params [Array<Types::Parameter>] :parameters
|
10561
10644
|
# A list of parameter names in the DB cluster parameter group to reset
|
10562
|
-
# to the default values. You
|
10645
|
+
# to the default values. You can't use this parameter if the
|
10563
10646
|
# `ResetAllParameters` parameter is set to `true`.
|
10564
10647
|
#
|
10565
10648
|
# @return [Types::DBClusterParameterGroupNameMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -10751,8 +10834,8 @@ module Aws::RDS
|
|
10751
10834
|
# The database name for the restored DB cluster.
|
10752
10835
|
#
|
10753
10836
|
# @option params [required, String] :db_cluster_identifier
|
10754
|
-
# The name of the DB cluster to create from the source data in the
|
10755
|
-
# bucket. This parameter is isn't case-sensitive.
|
10837
|
+
# The name of the DB cluster to create from the source data in the
|
10838
|
+
# Amazon S3 bucket. This parameter is isn't case-sensitive.
|
10756
10839
|
#
|
10757
10840
|
# Constraints:
|
10758
10841
|
#
|
@@ -10792,7 +10875,7 @@ module Aws::RDS
|
|
10792
10875
|
# The name of the database engine to be used for the restored DB
|
10793
10876
|
# cluster.
|
10794
10877
|
#
|
10795
|
-
# Valid Values: `aurora`
|
10878
|
+
# Valid Values: `aurora`, `aurora-postgresql`
|
10796
10879
|
#
|
10797
10880
|
# @option params [String] :engine_version
|
10798
10881
|
# The version number of the database engine to use.
|
@@ -10828,8 +10911,8 @@ module Aws::RDS
|
|
10828
10911
|
# A value that indicates that the restored DB cluster should be
|
10829
10912
|
# associated with the specified option group.
|
10830
10913
|
#
|
10831
|
-
# Permanent options
|
10832
|
-
# group
|
10914
|
+
# Permanent options can't be removed from an option group. An option
|
10915
|
+
# group can't be removed from a DB cluster once it is associated with a
|
10833
10916
|
# DB cluster.
|
10834
10917
|
#
|
10835
10918
|
# @option params [String] :preferred_backup_window
|
@@ -10837,15 +10920,16 @@ module Aws::RDS
|
|
10837
10920
|
# automated backups are enabled using the `BackupRetentionPeriod`
|
10838
10921
|
# parameter.
|
10839
10922
|
#
|
10840
|
-
#
|
10841
|
-
# time
|
10842
|
-
# the Preferred Maintenance Window][1] in the *Amazon
|
10923
|
+
# The default is a 30-minute window selected at random from an 8-hour
|
10924
|
+
# block of time for each AWS Region. To see the time blocks available,
|
10925
|
+
# see [ Adjusting the Preferred Maintenance Window][1] in the *Amazon
|
10926
|
+
# RDS User Guide.*
|
10843
10927
|
#
|
10844
10928
|
# Constraints:
|
10845
10929
|
#
|
10846
10930
|
# * Must be in the format `hh24:mi-hh24:mi`.
|
10847
10931
|
#
|
10848
|
-
# *
|
10932
|
+
# * Must be in Universal Coordinated Time (UTC).
|
10849
10933
|
#
|
10850
10934
|
# * Must not conflict with the preferred maintenance window.
|
10851
10935
|
#
|
@@ -10861,12 +10945,12 @@ module Aws::RDS
|
|
10861
10945
|
#
|
10862
10946
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
10863
10947
|
#
|
10864
|
-
#
|
10865
|
-
# time
|
10866
|
-
# time blocks available, see [ Adjusting the Preferred
|
10867
|
-
# Window][1] in the *Amazon RDS User Guide.*
|
10948
|
+
# The default is a 30-minute window selected at random from an 8-hour
|
10949
|
+
# block of time for each AWS Region, occurring on a random day of the
|
10950
|
+
# week. To see the time blocks available, see [ Adjusting the Preferred
|
10951
|
+
# Maintenance Window][1] in the *Amazon RDS User Guide.*
|
10868
10952
|
#
|
10869
|
-
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
|
10953
|
+
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
10870
10954
|
#
|
10871
10955
|
# Constraints: Minimum 30-minute window.
|
10872
10956
|
#
|
@@ -10875,13 +10959,18 @@ module Aws::RDS
|
|
10875
10959
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
|
10876
10960
|
#
|
10877
10961
|
# @option params [Array<Types::Tag>] :tags
|
10878
|
-
# A list of tags.
|
10962
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
10963
|
+
# Resources][1].
|
10964
|
+
#
|
10965
|
+
#
|
10966
|
+
#
|
10967
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
10879
10968
|
#
|
10880
10969
|
# @option params [Boolean] :storage_encrypted
|
10881
10970
|
# Specifies whether the restored DB cluster is encrypted.
|
10882
10971
|
#
|
10883
10972
|
# @option params [String] :kms_key_id
|
10884
|
-
# The KMS key identifier for an encrypted DB cluster.
|
10973
|
+
# The AWS KMS key identifier for an encrypted DB cluster.
|
10885
10974
|
#
|
10886
10975
|
# The KMS key identifier is the Amazon Resource Name (ARN) for the KMS
|
10887
10976
|
# encryption key. If you are creating a DB cluster with the same AWS
|
@@ -10896,9 +10985,8 @@ module Aws::RDS
|
|
10896
10985
|
# key for each AWS Region.
|
10897
10986
|
#
|
10898
10987
|
# @option params [Boolean] :enable_iam_database_authentication
|
10899
|
-
#
|
10900
|
-
#
|
10901
|
-
# false.
|
10988
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
10989
|
+
# accounts to database accounts, and otherwise false.
|
10902
10990
|
#
|
10903
10991
|
# Default: `false`
|
10904
10992
|
#
|
@@ -11116,8 +11204,8 @@ module Aws::RDS
|
|
11116
11204
|
# The tags to be assigned to the restored DB cluster.
|
11117
11205
|
#
|
11118
11206
|
# @option params [String] :kms_key_id
|
11119
|
-
# The KMS key identifier to use when restoring an encrypted DB
|
11120
|
-
# from a DB snapshot or DB cluster snapshot.
|
11207
|
+
# The AWS KMS key identifier to use when restoring an encrypted DB
|
11208
|
+
# cluster from a DB snapshot or DB cluster snapshot.
|
11121
11209
|
#
|
11122
11210
|
# The KMS key identifier is the Amazon Resource Name (ARN) for the KMS
|
11123
11211
|
# encryption key. If you are restoring a DB cluster with the same AWS
|
@@ -11136,9 +11224,8 @@ module Aws::RDS
|
|
11136
11224
|
# not encrypted, then the restored DB cluster is not encrypted.
|
11137
11225
|
#
|
11138
11226
|
# @option params [Boolean] :enable_iam_database_authentication
|
11139
|
-
#
|
11140
|
-
#
|
11141
|
-
# false.
|
11227
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
11228
|
+
# accounts to database accounts, and otherwise false.
|
11142
11229
|
#
|
11143
11230
|
# Default: `false`
|
11144
11231
|
#
|
@@ -11289,7 +11376,7 @@ module Aws::RDS
|
|
11289
11376
|
# * `copy-on-write` - The new DB cluster is restored as a clone of the
|
11290
11377
|
# source DB cluster.
|
11291
11378
|
#
|
11292
|
-
# Constraints: You
|
11379
|
+
# Constraints: You can't specify `copy-on-write` if the engine version
|
11293
11380
|
# of the source DB cluster is earlier than 1.11.
|
11294
11381
|
#
|
11295
11382
|
# If you don't specify a `RestoreType` value, then the new DB cluster
|
@@ -11354,11 +11441,16 @@ module Aws::RDS
|
|
11354
11441
|
# A list of VPC security groups that the new DB cluster belongs to.
|
11355
11442
|
#
|
11356
11443
|
# @option params [Array<Types::Tag>] :tags
|
11357
|
-
# A list of tags.
|
11444
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
11445
|
+
# Resources][1].
|
11446
|
+
#
|
11447
|
+
#
|
11448
|
+
#
|
11449
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
11358
11450
|
#
|
11359
11451
|
# @option params [String] :kms_key_id
|
11360
|
-
# The KMS key identifier to use when restoring an encrypted DB
|
11361
|
-
# from an encrypted DB cluster.
|
11452
|
+
# The AWS KMS key identifier to use when restoring an encrypted DB
|
11453
|
+
# cluster from an encrypted DB cluster.
|
11362
11454
|
#
|
11363
11455
|
# The KMS key identifier is the Amazon Resource Name (ARN) for the KMS
|
11364
11456
|
# encryption key. If you are restoring a DB cluster with the same AWS
|
@@ -11385,9 +11477,8 @@ module Aws::RDS
|
|
11385
11477
|
# then the restore request is rejected.
|
11386
11478
|
#
|
11387
11479
|
# @option params [Boolean] :enable_iam_database_authentication
|
11388
|
-
#
|
11389
|
-
#
|
11390
|
-
# false.
|
11480
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
11481
|
+
# accounts to database accounts, and otherwise false.
|
11391
11482
|
#
|
11392
11483
|
# Default: `false`
|
11393
11484
|
#
|
@@ -11542,7 +11633,7 @@ module Aws::RDS
|
|
11542
11633
|
# @option params [String] :db_instance_class
|
11543
11634
|
# The compute and memory capacity of the Amazon RDS DB instance, for
|
11544
11635
|
# example, `db.m4.large`. Not all DB instance classes are available in
|
11545
|
-
# all
|
11636
|
+
# all AWS Regions, or for all database engines. For the full list of DB
|
11546
11637
|
# instance classes, and availability for your engine, see [DB Instance
|
11547
11638
|
# Class][1] in the Amazon RDS User Guide.
|
11548
11639
|
#
|
@@ -11560,11 +11651,11 @@ module Aws::RDS
|
|
11560
11651
|
# Constraints: Value must be `1150-65535`
|
11561
11652
|
#
|
11562
11653
|
# @option params [String] :availability_zone
|
11563
|
-
# The EC2 Availability Zone that the
|
11654
|
+
# The EC2 Availability Zone that the DB instance is created in.
|
11564
11655
|
#
|
11565
11656
|
# Default: A random, system-chosen Availability Zone.
|
11566
11657
|
#
|
11567
|
-
# Constraint: You
|
11658
|
+
# Constraint: You can't specify the AvailabilityZone parameter if the
|
11568
11659
|
# MultiAZ parameter is set to `true`.
|
11569
11660
|
#
|
11570
11661
|
# Example: `us-east-1a`
|
@@ -11580,7 +11671,7 @@ module Aws::RDS
|
|
11580
11671
|
# @option params [Boolean] :multi_az
|
11581
11672
|
# Specifies if the DB instance is a Multi-AZ deployment.
|
11582
11673
|
#
|
11583
|
-
# Constraint: You
|
11674
|
+
# Constraint: You can't specify the AvailabilityZone parameter if the
|
11584
11675
|
# MultiAZ parameter is set to `true`.
|
11585
11676
|
#
|
11586
11677
|
# @option params [Boolean] :publicly_accessible
|
@@ -11636,6 +11727,8 @@ module Aws::RDS
|
|
11636
11727
|
#
|
11637
11728
|
# * `aurora`
|
11638
11729
|
#
|
11730
|
+
# * `aurora-postgresql`
|
11731
|
+
#
|
11639
11732
|
# * `mariadb`
|
11640
11733
|
#
|
11641
11734
|
# * `mysql`
|
@@ -11680,12 +11773,17 @@ module Aws::RDS
|
|
11680
11773
|
# The name of the option group to be used for the restored DB instance.
|
11681
11774
|
#
|
11682
11775
|
# Permanent options, such as the TDE option for Oracle Advanced Security
|
11683
|
-
# TDE,
|
11684
|
-
#
|
11776
|
+
# TDE, can't be removed from an option group, and that option group
|
11777
|
+
# can't be removed from a DB instance once it is associated with a DB
|
11685
11778
|
# instance
|
11686
11779
|
#
|
11687
11780
|
# @option params [Array<Types::Tag>] :tags
|
11688
|
-
# A list of tags.
|
11781
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
11782
|
+
# Resources][1].
|
11783
|
+
#
|
11784
|
+
#
|
11785
|
+
#
|
11786
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
11689
11787
|
#
|
11690
11788
|
# @option params [String] :storage_type
|
11691
11789
|
# Specifies the storage type to be associated with the DB instance.
|
@@ -11695,15 +11793,15 @@ module Aws::RDS
|
|
11695
11793
|
# If you specify `io1`, you must also include a value for the `Iops`
|
11696
11794
|
# parameter.
|
11697
11795
|
#
|
11698
|
-
# Default: `io1` if the `Iops` parameter is specified
|
11796
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
11699
11797
|
# `standard`
|
11700
11798
|
#
|
11701
11799
|
# @option params [String] :tde_credential_arn
|
11702
|
-
# The ARN from the
|
11800
|
+
# The ARN from the key store with which to associate the instance for
|
11703
11801
|
# TDE encryption.
|
11704
11802
|
#
|
11705
11803
|
# @option params [String] :tde_credential_password
|
11706
|
-
# The password for the given ARN from the
|
11804
|
+
# The password for the given ARN from the key store in order to access
|
11707
11805
|
# the device.
|
11708
11806
|
#
|
11709
11807
|
# @option params [String] :domain
|
@@ -11711,7 +11809,7 @@ module Aws::RDS
|
|
11711
11809
|
#
|
11712
11810
|
# @option params [Boolean] :copy_tags_to_snapshot
|
11713
11811
|
# True to copy all tags from the restored DB instance to snapshots of
|
11714
|
-
# the DB instance
|
11812
|
+
# the DB instance, and otherwise false. The default is false.
|
11715
11813
|
#
|
11716
11814
|
# @option params [String] :domain_iam_role_name
|
11717
11815
|
# Specify the name of the IAM role to be used when making API calls to
|
@@ -11719,7 +11817,7 @@ module Aws::RDS
|
|
11719
11817
|
#
|
11720
11818
|
# @option params [Boolean] :enable_iam_database_authentication
|
11721
11819
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
11722
|
-
# accounts to database accounts
|
11820
|
+
# accounts to database accounts, and otherwise false.
|
11723
11821
|
#
|
11724
11822
|
# You can enable IAM database authentication for the following database
|
11725
11823
|
# engines
|
@@ -11966,6 +12064,466 @@ module Aws::RDS
|
|
11966
12064
|
req.send_request(options)
|
11967
12065
|
end
|
11968
12066
|
|
12067
|
+
# Amazon Relational Database Service (Amazon RDS) supports importing
|
12068
|
+
# MySQL databases by using backup files. You can create a backup of your
|
12069
|
+
# on-premises database, store it on Amazon Simple Storage Service
|
12070
|
+
# (Amazon S3), and then restore the backup file onto a new Amazon RDS DB
|
12071
|
+
# instance running MySQL. For more information, see [Importing Data into
|
12072
|
+
# an Amazon RDS MySQL DB Instance][1].
|
12073
|
+
#
|
12074
|
+
#
|
12075
|
+
#
|
12076
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Procedural.Importing.html
|
12077
|
+
#
|
12078
|
+
# @option params [String] :db_name
|
12079
|
+
# The name of the database to create when the DB instance is created.
|
12080
|
+
# Follow the naming rules specified in CreateDBInstance.
|
12081
|
+
#
|
12082
|
+
# @option params [required, String] :db_instance_identifier
|
12083
|
+
# The DB instance identifier. This parameter is stored as a lowercase
|
12084
|
+
# string.
|
12085
|
+
#
|
12086
|
+
# Constraints:
|
12087
|
+
#
|
12088
|
+
# * Must contain from 1 to 63 letters, numbers, or hyphens.
|
12089
|
+
#
|
12090
|
+
# * First character must be a letter.
|
12091
|
+
#
|
12092
|
+
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
12093
|
+
#
|
12094
|
+
# Example: `mydbinstance`
|
12095
|
+
#
|
12096
|
+
# @option params [Integer] :allocated_storage
|
12097
|
+
# The amount of storage (in gigabytes) to allocate initially for the DB
|
12098
|
+
# instance. Follow the allocation rules specified in CreateDBInstance.
|
12099
|
+
#
|
12100
|
+
# <note markdown="1"> Be sure to allocate enough memory for your new DB instance so that the
|
12101
|
+
# restore operation can succeed. You can also allocate additional memory
|
12102
|
+
# for future growth.
|
12103
|
+
#
|
12104
|
+
# </note>
|
12105
|
+
#
|
12106
|
+
# @option params [required, String] :db_instance_class
|
12107
|
+
# The compute and memory capacity of the DB instance, for example,
|
12108
|
+
# `db.m4.large`. Not all DB instance classes are available in all AWS
|
12109
|
+
# Regions, or for all database engines. For the full list of DB instance
|
12110
|
+
# classes, and availability for your engine, see [DB Instance Class][1]
|
12111
|
+
# in the Amazon RDS User Guide.
|
12112
|
+
#
|
12113
|
+
# Importing from Amazon S3 is not supported on the db.t2.micro DB
|
12114
|
+
# instance class.
|
12115
|
+
#
|
12116
|
+
#
|
12117
|
+
#
|
12118
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
12119
|
+
#
|
12120
|
+
# @option params [required, String] :engine
|
12121
|
+
# The name of the database engine to be used for this instance.
|
12122
|
+
#
|
12123
|
+
# Valid Values: `mysql`
|
12124
|
+
#
|
12125
|
+
# @option params [String] :master_username
|
12126
|
+
# The name for the master user.
|
12127
|
+
#
|
12128
|
+
# Constraints:
|
12129
|
+
#
|
12130
|
+
# * Must be 1 to 16 letters or numbers.
|
12131
|
+
#
|
12132
|
+
# * First character must be a letter.
|
12133
|
+
#
|
12134
|
+
# * Cannot be a reserved word for the chosen database engine.
|
12135
|
+
#
|
12136
|
+
# @option params [String] :master_user_password
|
12137
|
+
# The password for the master user. The password can include any
|
12138
|
+
# printable ASCII character except "/", """, or "@".
|
12139
|
+
#
|
12140
|
+
# Constraints: Must contain from 8 to 41 characters.
|
12141
|
+
#
|
12142
|
+
# @option params [Array<String>] :db_security_groups
|
12143
|
+
# A list of DB security groups to associate with this DB instance.
|
12144
|
+
#
|
12145
|
+
# Default: The default DB security group for the database engine.
|
12146
|
+
#
|
12147
|
+
# @option params [Array<String>] :vpc_security_group_ids
|
12148
|
+
# A list of VPC security groups to associate with this DB instance.
|
12149
|
+
#
|
12150
|
+
# @option params [String] :availability_zone
|
12151
|
+
# The Availability Zone that the DB instance is created in. For
|
12152
|
+
# information about AWS Regions and Availability Zones, see [Regions and
|
12153
|
+
# Availability Zones][1].
|
12154
|
+
#
|
12155
|
+
# Default: A random, system-chosen Availability Zone in the endpoint's
|
12156
|
+
# AWS Region.
|
12157
|
+
#
|
12158
|
+
# Example: `us-east-1d`
|
12159
|
+
#
|
12160
|
+
# Constraint: The AvailabilityZone parameter can't be specified if the
|
12161
|
+
# MultiAZ parameter is set to `true`. The specified Availability Zone
|
12162
|
+
# must be in the same AWS Region as the current endpoint.
|
12163
|
+
#
|
12164
|
+
#
|
12165
|
+
#
|
12166
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html
|
12167
|
+
#
|
12168
|
+
# @option params [String] :db_subnet_group_name
|
12169
|
+
# A DB subnet group to associate with this DB instance.
|
12170
|
+
#
|
12171
|
+
# @option params [String] :preferred_maintenance_window
|
12172
|
+
# The time range each week during which system maintenance can occur, in
|
12173
|
+
# Universal Coordinated Time (UTC). For more information, see [Amazon
|
12174
|
+
# RDS Maintenance Window][1].
|
12175
|
+
#
|
12176
|
+
# Constraints:
|
12177
|
+
#
|
12178
|
+
# * Must be in the format `ddd:hh24:mi-ddd:hh24:mi`.
|
12179
|
+
#
|
12180
|
+
# * Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
12181
|
+
#
|
12182
|
+
# * Must be in Universal Coordinated Time (UTC).
|
12183
|
+
#
|
12184
|
+
# * Must not conflict with the preferred backup window.
|
12185
|
+
#
|
12186
|
+
# * Must be at least 30 minutes.
|
12187
|
+
#
|
12188
|
+
#
|
12189
|
+
#
|
12190
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance
|
12191
|
+
#
|
12192
|
+
# @option params [String] :db_parameter_group_name
|
12193
|
+
# The name of the DB parameter group to associate with this DB instance.
|
12194
|
+
# If this argument is omitted, the default parameter group for the
|
12195
|
+
# specified engine is used.
|
12196
|
+
#
|
12197
|
+
# @option params [Integer] :backup_retention_period
|
12198
|
+
# The number of days for which automated backups are retained. Setting
|
12199
|
+
# this parameter to a positive number enables backups. For more
|
12200
|
+
# information, see CreateDBInstance.
|
12201
|
+
#
|
12202
|
+
# @option params [String] :preferred_backup_window
|
12203
|
+
# The time range each day during which automated backups are created if
|
12204
|
+
# automated backups are enabled. For more information, see [The Backup
|
12205
|
+
# Window][1].
|
12206
|
+
#
|
12207
|
+
# Constraints:
|
12208
|
+
#
|
12209
|
+
# * Must be in the format `hh24:mi-hh24:mi`.
|
12210
|
+
#
|
12211
|
+
# * Must be in Universal Coordinated Time (UTC).
|
12212
|
+
#
|
12213
|
+
# * Must not conflict with the preferred maintenance window.
|
12214
|
+
#
|
12215
|
+
# * Must be at least 30 minutes.
|
12216
|
+
#
|
12217
|
+
#
|
12218
|
+
#
|
12219
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
|
12220
|
+
#
|
12221
|
+
# @option params [Integer] :port
|
12222
|
+
# The port number on which the database accepts connections.
|
12223
|
+
#
|
12224
|
+
# Type: Integer
|
12225
|
+
#
|
12226
|
+
# Valid Values: `1150`-`65535`
|
12227
|
+
#
|
12228
|
+
# Default: `3306`
|
12229
|
+
#
|
12230
|
+
# @option params [Boolean] :multi_az
|
12231
|
+
# Specifies whether the DB instance is a Multi-AZ deployment. If MultiAZ
|
12232
|
+
# is set to `true`, you can't set the AvailabilityZone parameter.
|
12233
|
+
#
|
12234
|
+
# @option params [String] :engine_version
|
12235
|
+
# The version number of the database engine to use. Choose the latest
|
12236
|
+
# minor version of your database engine as specified in
|
12237
|
+
# CreateDBInstance.
|
12238
|
+
#
|
12239
|
+
# @option params [Boolean] :auto_minor_version_upgrade
|
12240
|
+
# True to indicate that minor engine upgrades are applied automatically
|
12241
|
+
# to the DB instance during the maintenance window, and otherwise false.
|
12242
|
+
#
|
12243
|
+
# Default: `true`
|
12244
|
+
#
|
12245
|
+
# @option params [String] :license_model
|
12246
|
+
# The license model for this DB instance. Use `general-public-license`.
|
12247
|
+
#
|
12248
|
+
# @option params [Integer] :iops
|
12249
|
+
# The amount of Provisioned IOPS (input/output operations per second) to
|
12250
|
+
# allocate initially for the DB instance. For information about valid
|
12251
|
+
# Iops values, see see [Amazon RDS Provisioned IOPS Storage to Improve
|
12252
|
+
# Performance][1].
|
12253
|
+
#
|
12254
|
+
#
|
12255
|
+
#
|
12256
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
12257
|
+
#
|
12258
|
+
# @option params [String] :option_group_name
|
12259
|
+
# The name of the option group to associate with this DB instance. If
|
12260
|
+
# this argument is omitted, the default option group for the specified
|
12261
|
+
# engine is used.
|
12262
|
+
#
|
12263
|
+
# @option params [Boolean] :publicly_accessible
|
12264
|
+
# Specifies whether the DB instance is publicly accessible or not. For
|
12265
|
+
# more information, see CreateDBInstance.
|
12266
|
+
#
|
12267
|
+
# @option params [Array<Types::Tag>] :tags
|
12268
|
+
# A list of tags to associate with this DB instance. For more
|
12269
|
+
# information, see [Tagging Amazon RDS Resources][1].
|
12270
|
+
#
|
12271
|
+
#
|
12272
|
+
#
|
12273
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
12274
|
+
#
|
12275
|
+
# @option params [String] :storage_type
|
12276
|
+
# Specifies the storage type to be associated with the DB instance.
|
12277
|
+
#
|
12278
|
+
# Valid values: `standard` \| `gp2` \| `io1`
|
12279
|
+
#
|
12280
|
+
# If you specify `io1`, you must also include a value for the `Iops`
|
12281
|
+
# parameter.
|
12282
|
+
#
|
12283
|
+
# Default: `io1` if the `Iops` parameter is specified; otherwise
|
12284
|
+
# `standard`
|
12285
|
+
#
|
12286
|
+
# @option params [Boolean] :storage_encrypted
|
12287
|
+
# Specifies whether the new DB instance is encrypted or not.
|
12288
|
+
#
|
12289
|
+
# @option params [String] :kms_key_id
|
12290
|
+
# The AWS KMS key identifier for an encrypted DB instance.
|
12291
|
+
#
|
12292
|
+
# The KMS key identifier is the Amazon Resource Name (ARN) for the KMS
|
12293
|
+
# encryption key. If you are creating a DB instance with the same AWS
|
12294
|
+
# account that owns the KMS encryption key used to encrypt the new DB
|
12295
|
+
# instance, then you can use the KMS key alias instead of the ARN for
|
12296
|
+
# the KM encryption key.
|
12297
|
+
#
|
12298
|
+
# If the `StorageEncrypted` parameter is true, and you do not specify a
|
12299
|
+
# value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
12300
|
+
# default encryption key. AWS KMS creates the default encryption key for
|
12301
|
+
# your AWS account. Your AWS account has a different default encryption
|
12302
|
+
# key for each AWS Region.
|
12303
|
+
#
|
12304
|
+
# @option params [Boolean] :copy_tags_to_snapshot
|
12305
|
+
# True to copy all tags from the DB instance to snapshots of the DB
|
12306
|
+
# instance, and otherwise false.
|
12307
|
+
#
|
12308
|
+
# Default: false.
|
12309
|
+
#
|
12310
|
+
# @option params [Integer] :monitoring_interval
|
12311
|
+
# The interval, in seconds, between points when Enhanced Monitoring
|
12312
|
+
# metrics are collected for the DB instance. To disable collecting
|
12313
|
+
# Enhanced Monitoring metrics, specify 0.
|
12314
|
+
#
|
12315
|
+
# If `MonitoringRoleArn` is specified, then you must also set
|
12316
|
+
# `MonitoringInterval` to a value other than 0.
|
12317
|
+
#
|
12318
|
+
# Valid Values: 0, 1, 5, 10, 15, 30, 60
|
12319
|
+
#
|
12320
|
+
# Default: `0`
|
12321
|
+
#
|
12322
|
+
# @option params [String] :monitoring_role_arn
|
12323
|
+
# The ARN for the IAM role that permits RDS to send enhanced monitoring
|
12324
|
+
# metrics to Amazon CloudWatch Logs. For example,
|
12325
|
+
# `arn:aws:iam:123456789012:role/emaccess`. For information on creating
|
12326
|
+
# a monitoring role, see [Setting Up and Enabling Enhanced
|
12327
|
+
# Monitoring][1].
|
12328
|
+
#
|
12329
|
+
# If `MonitoringInterval` is set to a value other than 0, then you must
|
12330
|
+
# supply a `MonitoringRoleArn` value.
|
12331
|
+
#
|
12332
|
+
#
|
12333
|
+
#
|
12334
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
12335
|
+
#
|
12336
|
+
# @option params [Boolean] :enable_iam_database_authentication
|
12337
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
12338
|
+
# accounts to database accounts, and otherwise false.
|
12339
|
+
#
|
12340
|
+
# Default: `false`
|
12341
|
+
#
|
12342
|
+
# @option params [required, String] :source_engine
|
12343
|
+
# The name of the engine of your source database.
|
12344
|
+
#
|
12345
|
+
# Valid Values: `mysql`
|
12346
|
+
#
|
12347
|
+
# @option params [required, String] :source_engine_version
|
12348
|
+
# The engine version of your source database.
|
12349
|
+
#
|
12350
|
+
# Valid Values: `5.6`
|
12351
|
+
#
|
12352
|
+
# @option params [required, String] :s3_bucket_name
|
12353
|
+
# The name of your Amazon S3 bucket that contains your database backup
|
12354
|
+
# file.
|
12355
|
+
#
|
12356
|
+
# @option params [String] :s3_prefix
|
12357
|
+
# The prefix of your Amazon S3 bucket.
|
12358
|
+
#
|
12359
|
+
# @option params [required, String] :s3_ingestion_role_arn
|
12360
|
+
# An AWS Identity and Access Management (IAM) role to allow Amazon RDS
|
12361
|
+
# to access your Amazon S3 bucket.
|
12362
|
+
#
|
12363
|
+
# @option params [Boolean] :enable_performance_insights
|
12364
|
+
# True to enable Performance Insights for the DB instance, and otherwise
|
12365
|
+
# false.
|
12366
|
+
#
|
12367
|
+
# @option params [String] :performance_insights_kms_key_id
|
12368
|
+
# The AWS KMS key identifier for encryption of Performance Insights
|
12369
|
+
# data. The KMS key ID is the Amazon Resource Name (ARN), the KMS key
|
12370
|
+
# identifier, or the KMS key alias for the KMS encryption key.
|
12371
|
+
#
|
12372
|
+
# @return [Types::RestoreDBInstanceFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12373
|
+
#
|
12374
|
+
# * {Types::RestoreDBInstanceFromS3Result#db_instance #db_instance} => Types::DBInstance
|
12375
|
+
#
|
12376
|
+
# @example Request syntax with placeholder values
|
12377
|
+
#
|
12378
|
+
# resp = client.restore_db_instance_from_s3({
|
12379
|
+
# db_name: "String",
|
12380
|
+
# db_instance_identifier: "String", # required
|
12381
|
+
# allocated_storage: 1,
|
12382
|
+
# db_instance_class: "String", # required
|
12383
|
+
# engine: "String", # required
|
12384
|
+
# master_username: "String",
|
12385
|
+
# master_user_password: "String",
|
12386
|
+
# db_security_groups: ["String"],
|
12387
|
+
# vpc_security_group_ids: ["String"],
|
12388
|
+
# availability_zone: "String",
|
12389
|
+
# db_subnet_group_name: "String",
|
12390
|
+
# preferred_maintenance_window: "String",
|
12391
|
+
# db_parameter_group_name: "String",
|
12392
|
+
# backup_retention_period: 1,
|
12393
|
+
# preferred_backup_window: "String",
|
12394
|
+
# port: 1,
|
12395
|
+
# multi_az: false,
|
12396
|
+
# engine_version: "String",
|
12397
|
+
# auto_minor_version_upgrade: false,
|
12398
|
+
# license_model: "String",
|
12399
|
+
# iops: 1,
|
12400
|
+
# option_group_name: "String",
|
12401
|
+
# publicly_accessible: false,
|
12402
|
+
# tags: [
|
12403
|
+
# {
|
12404
|
+
# key: "String",
|
12405
|
+
# value: "String",
|
12406
|
+
# },
|
12407
|
+
# ],
|
12408
|
+
# storage_type: "String",
|
12409
|
+
# storage_encrypted: false,
|
12410
|
+
# kms_key_id: "String",
|
12411
|
+
# copy_tags_to_snapshot: false,
|
12412
|
+
# monitoring_interval: 1,
|
12413
|
+
# monitoring_role_arn: "String",
|
12414
|
+
# enable_iam_database_authentication: false,
|
12415
|
+
# source_engine: "String", # required
|
12416
|
+
# source_engine_version: "String", # required
|
12417
|
+
# s3_bucket_name: "String", # required
|
12418
|
+
# s3_prefix: "String",
|
12419
|
+
# s3_ingestion_role_arn: "String", # required
|
12420
|
+
# enable_performance_insights: false,
|
12421
|
+
# performance_insights_kms_key_id: "String",
|
12422
|
+
# })
|
12423
|
+
#
|
12424
|
+
# @example Response structure
|
12425
|
+
#
|
12426
|
+
# resp.db_instance.db_instance_identifier #=> String
|
12427
|
+
# resp.db_instance.db_instance_class #=> String
|
12428
|
+
# resp.db_instance.engine #=> String
|
12429
|
+
# resp.db_instance.db_instance_status #=> String
|
12430
|
+
# resp.db_instance.master_username #=> String
|
12431
|
+
# resp.db_instance.db_name #=> String
|
12432
|
+
# resp.db_instance.endpoint.address #=> String
|
12433
|
+
# resp.db_instance.endpoint.port #=> Integer
|
12434
|
+
# resp.db_instance.endpoint.hosted_zone_id #=> String
|
12435
|
+
# resp.db_instance.allocated_storage #=> Integer
|
12436
|
+
# resp.db_instance.instance_create_time #=> Time
|
12437
|
+
# resp.db_instance.preferred_backup_window #=> String
|
12438
|
+
# resp.db_instance.backup_retention_period #=> Integer
|
12439
|
+
# resp.db_instance.db_security_groups #=> Array
|
12440
|
+
# resp.db_instance.db_security_groups[0].db_security_group_name #=> String
|
12441
|
+
# resp.db_instance.db_security_groups[0].status #=> String
|
12442
|
+
# resp.db_instance.vpc_security_groups #=> Array
|
12443
|
+
# resp.db_instance.vpc_security_groups[0].vpc_security_group_id #=> String
|
12444
|
+
# resp.db_instance.vpc_security_groups[0].status #=> String
|
12445
|
+
# resp.db_instance.db_parameter_groups #=> Array
|
12446
|
+
# resp.db_instance.db_parameter_groups[0].db_parameter_group_name #=> String
|
12447
|
+
# resp.db_instance.db_parameter_groups[0].parameter_apply_status #=> String
|
12448
|
+
# resp.db_instance.availability_zone #=> String
|
12449
|
+
# resp.db_instance.db_subnet_group.db_subnet_group_name #=> String
|
12450
|
+
# resp.db_instance.db_subnet_group.db_subnet_group_description #=> String
|
12451
|
+
# resp.db_instance.db_subnet_group.vpc_id #=> String
|
12452
|
+
# resp.db_instance.db_subnet_group.subnet_group_status #=> String
|
12453
|
+
# resp.db_instance.db_subnet_group.subnets #=> Array
|
12454
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
12455
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
12456
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
12457
|
+
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
12458
|
+
# resp.db_instance.preferred_maintenance_window #=> String
|
12459
|
+
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
12460
|
+
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
12461
|
+
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
12462
|
+
# resp.db_instance.pending_modified_values.port #=> Integer
|
12463
|
+
# resp.db_instance.pending_modified_values.backup_retention_period #=> Integer
|
12464
|
+
# resp.db_instance.pending_modified_values.multi_az #=> Boolean
|
12465
|
+
# resp.db_instance.pending_modified_values.engine_version #=> String
|
12466
|
+
# resp.db_instance.pending_modified_values.license_model #=> String
|
12467
|
+
# resp.db_instance.pending_modified_values.iops #=> Integer
|
12468
|
+
# resp.db_instance.pending_modified_values.db_instance_identifier #=> String
|
12469
|
+
# resp.db_instance.pending_modified_values.storage_type #=> String
|
12470
|
+
# resp.db_instance.pending_modified_values.ca_certificate_identifier #=> String
|
12471
|
+
# resp.db_instance.pending_modified_values.db_subnet_group_name #=> String
|
12472
|
+
# resp.db_instance.latest_restorable_time #=> Time
|
12473
|
+
# resp.db_instance.multi_az #=> Boolean
|
12474
|
+
# resp.db_instance.engine_version #=> String
|
12475
|
+
# resp.db_instance.auto_minor_version_upgrade #=> Boolean
|
12476
|
+
# resp.db_instance.read_replica_source_db_instance_identifier #=> String
|
12477
|
+
# resp.db_instance.read_replica_db_instance_identifiers #=> Array
|
12478
|
+
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
12479
|
+
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
12480
|
+
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
12481
|
+
# resp.db_instance.license_model #=> String
|
12482
|
+
# resp.db_instance.iops #=> Integer
|
12483
|
+
# resp.db_instance.option_group_memberships #=> Array
|
12484
|
+
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
12485
|
+
# resp.db_instance.option_group_memberships[0].status #=> String
|
12486
|
+
# resp.db_instance.character_set_name #=> String
|
12487
|
+
# resp.db_instance.secondary_availability_zone #=> String
|
12488
|
+
# resp.db_instance.publicly_accessible #=> Boolean
|
12489
|
+
# resp.db_instance.status_infos #=> Array
|
12490
|
+
# resp.db_instance.status_infos[0].status_type #=> String
|
12491
|
+
# resp.db_instance.status_infos[0].normal #=> Boolean
|
12492
|
+
# resp.db_instance.status_infos[0].status #=> String
|
12493
|
+
# resp.db_instance.status_infos[0].message #=> String
|
12494
|
+
# resp.db_instance.storage_type #=> String
|
12495
|
+
# resp.db_instance.tde_credential_arn #=> String
|
12496
|
+
# resp.db_instance.db_instance_port #=> Integer
|
12497
|
+
# resp.db_instance.db_cluster_identifier #=> String
|
12498
|
+
# resp.db_instance.storage_encrypted #=> Boolean
|
12499
|
+
# resp.db_instance.kms_key_id #=> String
|
12500
|
+
# resp.db_instance.dbi_resource_id #=> String
|
12501
|
+
# resp.db_instance.ca_certificate_identifier #=> String
|
12502
|
+
# resp.db_instance.domain_memberships #=> Array
|
12503
|
+
# resp.db_instance.domain_memberships[0].domain #=> String
|
12504
|
+
# resp.db_instance.domain_memberships[0].status #=> String
|
12505
|
+
# resp.db_instance.domain_memberships[0].fqdn #=> String
|
12506
|
+
# resp.db_instance.domain_memberships[0].iam_role_name #=> String
|
12507
|
+
# resp.db_instance.copy_tags_to_snapshot #=> Boolean
|
12508
|
+
# resp.db_instance.monitoring_interval #=> Integer
|
12509
|
+
# resp.db_instance.enhanced_monitoring_resource_arn #=> String
|
12510
|
+
# resp.db_instance.monitoring_role_arn #=> String
|
12511
|
+
# resp.db_instance.promotion_tier #=> Integer
|
12512
|
+
# resp.db_instance.db_instance_arn #=> String
|
12513
|
+
# resp.db_instance.timezone #=> String
|
12514
|
+
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
12515
|
+
# resp.db_instance.performance_insights_enabled #=> Boolean
|
12516
|
+
# resp.db_instance.performance_insights_kms_key_id #=> String
|
12517
|
+
#
|
12518
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
12519
|
+
#
|
12520
|
+
# @overload restore_db_instance_from_s3(params = {})
|
12521
|
+
# @param [Hash] params ({})
|
12522
|
+
def restore_db_instance_from_s3(params = {}, options = {})
|
12523
|
+
req = build_request(:restore_db_instance_from_s3, params)
|
12524
|
+
req.send_request(options)
|
12525
|
+
end
|
12526
|
+
|
11969
12527
|
# Restores a DB instance to an arbitrary point in time. You can restore
|
11970
12528
|
# to any point in time before the time identified by the
|
11971
12529
|
# LatestRestorableTime property. You can restore to a point up to the
|
@@ -11990,7 +12548,7 @@ module Aws::RDS
|
|
11990
12548
|
# ^
|
11991
12549
|
#
|
11992
12550
|
# @option params [required, String] :target_db_instance_identifier
|
11993
|
-
# The name of the new
|
12551
|
+
# The name of the new DB instance to be created.
|
11994
12552
|
#
|
11995
12553
|
# Constraints:
|
11996
12554
|
#
|
@@ -12025,7 +12583,7 @@ module Aws::RDS
|
|
12025
12583
|
# @option params [String] :db_instance_class
|
12026
12584
|
# The compute and memory capacity of the Amazon RDS DB instance, for
|
12027
12585
|
# example, `db.m4.large`. Not all DB instance classes are available in
|
12028
|
-
# all
|
12586
|
+
# all AWS Regions, or for all database engines. For the full list of DB
|
12029
12587
|
# instance classes, and availability for your engine, see [DB Instance
|
12030
12588
|
# Class][1] in the Amazon RDS User Guide.
|
12031
12589
|
#
|
@@ -12043,11 +12601,11 @@ module Aws::RDS
|
|
12043
12601
|
# Default: The same port as the original DB instance.
|
12044
12602
|
#
|
12045
12603
|
# @option params [String] :availability_zone
|
12046
|
-
# The EC2 Availability Zone that the
|
12604
|
+
# The EC2 Availability Zone that the DB instance is created in.
|
12047
12605
|
#
|
12048
12606
|
# Default: A random, system-chosen Availability Zone.
|
12049
12607
|
#
|
12050
|
-
# Constraint: You
|
12608
|
+
# Constraint: You can't specify the AvailabilityZone parameter if the
|
12051
12609
|
# MultiAZ parameter is set to true.
|
12052
12610
|
#
|
12053
12611
|
# Example: `us-east-1a`
|
@@ -12063,7 +12621,7 @@ module Aws::RDS
|
|
12063
12621
|
# @option params [Boolean] :multi_az
|
12064
12622
|
# Specifies if the DB instance is a Multi-AZ deployment.
|
12065
12623
|
#
|
12066
|
-
# Constraint: You
|
12624
|
+
# Constraint: You can't specify the AvailabilityZone parameter if the
|
12067
12625
|
# MultiAZ parameter is set to `true`.
|
12068
12626
|
#
|
12069
12627
|
# @option params [Boolean] :publicly_accessible
|
@@ -12117,6 +12675,8 @@ module Aws::RDS
|
|
12117
12675
|
#
|
12118
12676
|
# * `aurora`
|
12119
12677
|
#
|
12678
|
+
# * `aurora-postgresql`
|
12679
|
+
#
|
12120
12680
|
# * `mariadb`
|
12121
12681
|
#
|
12122
12682
|
# * `mysql`
|
@@ -12154,16 +12714,21 @@ module Aws::RDS
|
|
12154
12714
|
# The name of the option group to be used for the restored DB instance.
|
12155
12715
|
#
|
12156
12716
|
# Permanent options, such as the TDE option for Oracle Advanced Security
|
12157
|
-
# TDE,
|
12158
|
-
#
|
12717
|
+
# TDE, can't be removed from an option group, and that option group
|
12718
|
+
# can't be removed from a DB instance once it is associated with a DB
|
12159
12719
|
# instance
|
12160
12720
|
#
|
12161
12721
|
# @option params [Boolean] :copy_tags_to_snapshot
|
12162
12722
|
# True to copy all tags from the restored DB instance to snapshots of
|
12163
|
-
# the DB instance
|
12723
|
+
# the DB instance, and otherwise false. The default is false.
|
12164
12724
|
#
|
12165
12725
|
# @option params [Array<Types::Tag>] :tags
|
12166
|
-
# A list of tags.
|
12726
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
12727
|
+
# Resources][1].
|
12728
|
+
#
|
12729
|
+
#
|
12730
|
+
#
|
12731
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
12167
12732
|
#
|
12168
12733
|
# @option params [String] :storage_type
|
12169
12734
|
# Specifies the storage type to be associated with the DB instance.
|
@@ -12173,15 +12738,15 @@ module Aws::RDS
|
|
12173
12738
|
# If you specify `io1`, you must also include a value for the `Iops`
|
12174
12739
|
# parameter.
|
12175
12740
|
#
|
12176
|
-
# Default: `io1` if the `Iops` parameter is specified
|
12741
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
12177
12742
|
# `standard`
|
12178
12743
|
#
|
12179
12744
|
# @option params [String] :tde_credential_arn
|
12180
|
-
# The ARN from the
|
12745
|
+
# The ARN from the key store with which to associate the instance for
|
12181
12746
|
# TDE encryption.
|
12182
12747
|
#
|
12183
12748
|
# @option params [String] :tde_credential_password
|
12184
|
-
# The password for the given ARN from the
|
12749
|
+
# The password for the given ARN from the key store in order to access
|
12185
12750
|
# the device.
|
12186
12751
|
#
|
12187
12752
|
# @option params [String] :domain
|
@@ -12193,7 +12758,7 @@ module Aws::RDS
|
|
12193
12758
|
#
|
12194
12759
|
# @option params [Boolean] :enable_iam_database_authentication
|
12195
12760
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
12196
|
-
# accounts to database accounts
|
12761
|
+
# accounts to database accounts, and otherwise false.
|
12197
12762
|
#
|
12198
12763
|
# You can enable IAM database authentication for the following database
|
12199
12764
|
# engines
|
@@ -12455,7 +13020,7 @@ module Aws::RDS
|
|
12455
13020
|
# @option params [String] :cidrip
|
12456
13021
|
# The IP range to revoke access from. Must be a valid CIDR range. If
|
12457
13022
|
# `CIDRIP` is specified, `EC2SecurityGroupName`, `EC2SecurityGroupId`
|
12458
|
-
# and `EC2SecurityGroupOwnerId`
|
13023
|
+
# and `EC2SecurityGroupOwnerId` can't be provided.
|
12459
13024
|
#
|
12460
13025
|
# @option params [String] :ec2_security_group_name
|
12461
13026
|
# The name of the EC2 security group to revoke access from. For VPC DB
|
@@ -12794,7 +13359,7 @@ module Aws::RDS
|
|
12794
13359
|
params: params,
|
12795
13360
|
config: config)
|
12796
13361
|
context[:gem_name] = 'aws-sdk-rds'
|
12797
|
-
context[:gem_version] = '1.
|
13362
|
+
context[:gem_version] = '1.8.0'
|
12798
13363
|
Seahorse::Client::Request.new(handlers, context)
|
12799
13364
|
end
|
12800
13365
|
|