aws-sdk-rds 1.102.0 → 1.107.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 +517 -215
- data/lib/aws-sdk-rds/client_api.rb +68 -5
- data/lib/aws-sdk-rds/db_cluster.rb +60 -43
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +40 -22
- data/lib/aws-sdk-rds/db_engine_version.rb +0 -6
- data/lib/aws-sdk-rds/db_instance.rb +94 -72
- data/lib/aws-sdk-rds/db_snapshot.rb +38 -20
- data/lib/aws-sdk-rds/plugins/cross_region_copying.rb +11 -12
- data/lib/aws-sdk-rds/resource.rb +54 -67
- data/lib/aws-sdk-rds/types.rb +476 -260
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 56904b4e5d43b4742ae0d99b22c0654f5e3965b6f81a942123cf725fc38c3d73
|
4
|
+
data.tar.gz: b15127fcb4c04c84de4675a6e64f6677f8473f01ebb8adeaa614ea1168eb55d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac4ad62fee5439a080f9d4f6c479a87d8e16bb29e1e51627a4747517ceb32793fb78f94b27c5827dc7ae372fca20499d7046aa97c1cb39dd39efd95f5efcf432
|
7
|
+
data.tar.gz: 8b83cc3d7557e41ca290fd65b4d3c982bf4a77741ab970953c91fefd9a37167a0163825fb38cd84eff7093a0b0a4dc9df426cbd95ea9f1930b5571414f4a6c4f
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -347,7 +347,7 @@ module Aws::RDS
|
|
347
347
|
#
|
348
348
|
# @option params [required, String] :role_arn
|
349
349
|
# The Amazon Resource Name (ARN) of the IAM role to associate with the
|
350
|
-
# Aurora DB cluster, for example
|
350
|
+
# Aurora DB cluster, for example,
|
351
351
|
# `arn:aws:iam::123456789012:role/AuroraAccessRole`.
|
352
352
|
#
|
353
353
|
# @option params [String] :feature_name
|
@@ -1031,11 +1031,12 @@ module Aws::RDS
|
|
1031
1031
|
# The pre-signed URL request must contain the following parameter
|
1032
1032
|
# values:
|
1033
1033
|
#
|
1034
|
-
# * `KmsKeyId` - The KMS key identifier for the
|
1035
|
-
# the copy of the DB cluster snapshot in
|
1036
|
-
# This is the same identifier for both
|
1037
|
-
# action that is called in the
|
1038
|
-
# action contained in the pre-signed
|
1034
|
+
# * `KmsKeyId` - The AWS KMS key identifier for the customer master
|
1035
|
+
# key (CMK) to use to encrypt the copy of the DB cluster snapshot in
|
1036
|
+
# the destination AWS Region. This is the same identifier for both
|
1037
|
+
# the `CopyDBClusterSnapshot` action that is called in the
|
1038
|
+
# destination AWS Region, and the action contained in the pre-signed
|
1039
|
+
# URL.
|
1039
1040
|
#
|
1040
1041
|
# * `DestinationRegion` - The name of the AWS Region that the DB
|
1041
1042
|
# cluster snapshot is to be created in.
|
@@ -1132,25 +1133,25 @@ module Aws::RDS
|
|
1132
1133
|
# Example: `my-cluster-snapshot2`
|
1133
1134
|
#
|
1134
1135
|
# @option params [String] :kms_key_id
|
1135
|
-
# The AWS KMS key
|
1136
|
-
#
|
1137
|
-
#
|
1136
|
+
# The AWS KMS key identifier for an encrypted DB cluster snapshot. The
|
1137
|
+
# AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
1138
|
+
# name for the AWS KMS customer master key (CMK).
|
1138
1139
|
#
|
1139
1140
|
# If you copy an encrypted DB cluster snapshot from your AWS account,
|
1140
1141
|
# you can specify a value for `KmsKeyId` to encrypt the copy with a new
|
1141
|
-
# KMS
|
1142
|
-
#
|
1142
|
+
# AWS KMS CMK. If you don't specify a value for `KmsKeyId`, then the
|
1143
|
+
# copy of the DB cluster snapshot is encrypted with the same AWS KMS key
|
1143
1144
|
# as the source DB cluster snapshot.
|
1144
1145
|
#
|
1145
1146
|
# If you copy an encrypted DB cluster snapshot that is shared from
|
1146
1147
|
# another AWS account, then you must specify a value for `KmsKeyId`.
|
1147
1148
|
#
|
1148
1149
|
# To copy an encrypted DB cluster snapshot to another AWS Region, you
|
1149
|
-
# must set `KmsKeyId` to the KMS key
|
1150
|
-
# copy of the DB cluster snapshot in the destination AWS
|
1151
|
-
#
|
1152
|
-
# in, and you can't use
|
1153
|
-
#
|
1150
|
+
# must set `KmsKeyId` to the AWS KMS key identifier you want to use to
|
1151
|
+
# encrypt the copy of the DB cluster snapshot in the destination AWS
|
1152
|
+
# Region. AWS KMS CMKs are specific to the AWS Region that they are
|
1153
|
+
# created in, and you can't use CMKs from one AWS Region in another AWS
|
1154
|
+
# Region.
|
1154
1155
|
#
|
1155
1156
|
# If you copy an unencrypted DB cluster snapshot and specify a value for
|
1156
1157
|
# the `KmsKeyId` parameter, an error is returned.
|
@@ -1169,9 +1170,9 @@ module Aws::RDS
|
|
1169
1170
|
# copied. The pre-signed URL request must contain the following
|
1170
1171
|
# parameter values:
|
1171
1172
|
#
|
1172
|
-
# * `KmsKeyId` - The AWS KMS key identifier for the
|
1173
|
-
# encrypt the copy of the DB cluster snapshot in the
|
1174
|
-
# Region. This is the same identifier for both the
|
1173
|
+
# * `KmsKeyId` - The AWS KMS key identifier for the customer master key
|
1174
|
+
# (CMK) to use to encrypt the copy of the DB cluster snapshot in the
|
1175
|
+
# destination AWS Region. This is the same identifier for both the
|
1175
1176
|
# `CopyDBClusterSnapshot` action that is called in the destination AWS
|
1176
1177
|
# Region, and the action contained in the pre-signed URL.
|
1177
1178
|
#
|
@@ -1281,6 +1282,9 @@ module Aws::RDS
|
|
1281
1282
|
# resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
|
1282
1283
|
# resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
|
1283
1284
|
# resp.db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
|
1285
|
+
# resp.db_cluster_snapshot.tag_list #=> Array
|
1286
|
+
# resp.db_cluster_snapshot.tag_list[0].key #=> String
|
1287
|
+
# resp.db_cluster_snapshot.tag_list[0].value #=> String
|
1284
1288
|
#
|
1285
1289
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBClusterSnapshot AWS API Documentation
|
1286
1290
|
#
|
@@ -1387,7 +1391,7 @@ module Aws::RDS
|
|
1387
1391
|
end
|
1388
1392
|
|
1389
1393
|
# Copies the specified DB snapshot. The source DB snapshot must be in
|
1390
|
-
# the `available`
|
1394
|
+
# the `available` state.
|
1391
1395
|
#
|
1392
1396
|
# You can copy a snapshot from one AWS Region to another. In that case,
|
1393
1397
|
# the AWS Region where you call the `CopyDBSnapshot` action is the
|
@@ -1445,14 +1449,14 @@ module Aws::RDS
|
|
1445
1449
|
# Example: `my-db-snapshot`
|
1446
1450
|
#
|
1447
1451
|
# @option params [String] :kms_key_id
|
1448
|
-
# The AWS KMS key
|
1449
|
-
#
|
1450
|
-
#
|
1452
|
+
# The AWS KMS key identifier for an encrypted DB snapshot. The AWS KMS
|
1453
|
+
# key identifier is the key ARN, key ID, alias ARN, or alias name for
|
1454
|
+
# the AWS KMS customer master key (CMK).
|
1451
1455
|
#
|
1452
1456
|
# If you copy an encrypted DB snapshot from your AWS account, you can
|
1453
|
-
# specify a value for this parameter to encrypt the copy with a new
|
1454
|
-
#
|
1455
|
-
#
|
1457
|
+
# specify a value for this parameter to encrypt the copy with a new AWS
|
1458
|
+
# KMS CMK. If you don't specify a value for this parameter, then the
|
1459
|
+
# copy of the DB snapshot is encrypted with the same AWS KMS key as the
|
1456
1460
|
# source DB snapshot.
|
1457
1461
|
#
|
1458
1462
|
# If you copy an encrypted DB snapshot that is shared from another AWS
|
@@ -1462,9 +1466,9 @@ module Aws::RDS
|
|
1462
1466
|
# the copy is encrypted.
|
1463
1467
|
#
|
1464
1468
|
# If you copy an encrypted snapshot to a different AWS Region, then you
|
1465
|
-
# must specify a KMS key for the destination AWS Region.
|
1466
|
-
#
|
1467
|
-
# can't use
|
1469
|
+
# must specify a AWS KMS key identifier for the destination AWS Region.
|
1470
|
+
# AWS KMS CMKs are specific to the AWS Region that they are created in,
|
1471
|
+
# and you can't use CMKs from one AWS Region in another AWS Region.
|
1468
1472
|
#
|
1469
1473
|
# @option params [Array<Types::Tag>] :tags
|
1470
1474
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
@@ -1504,11 +1508,11 @@ module Aws::RDS
|
|
1504
1508
|
# the us-west-2 AWS Region. For this example, the `DestinationRegion`
|
1505
1509
|
# in the presigned URL must be set to the us-east-1 AWS Region.
|
1506
1510
|
#
|
1507
|
-
# * `KmsKeyId` - The AWS KMS key identifier for the
|
1508
|
-
# encrypt the copy of the DB snapshot in the
|
1509
|
-
# This is the same identifier for both the
|
1510
|
-
# that is called in the destination AWS
|
1511
|
-
# contained in the presigned URL.
|
1511
|
+
# * `KmsKeyId` - The AWS KMS key identifier for the customer master key
|
1512
|
+
# (CMK) to use to encrypt the copy of the DB snapshot in the
|
1513
|
+
# destination AWS Region. This is the same identifier for both the
|
1514
|
+
# `CopyDBSnapshot` action that is called in the destination AWS
|
1515
|
+
# Region, and the action contained in the presigned URL.
|
1512
1516
|
#
|
1513
1517
|
# * `SourceDBSnapshotIdentifier` - The DB snapshot identifier for the
|
1514
1518
|
# encrypted snapshot to be copied. This identifier must be in the
|
@@ -1550,6 +1554,12 @@ module Aws::RDS
|
|
1550
1554
|
#
|
1551
1555
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#USER_CopySnapshot.Options
|
1552
1556
|
#
|
1557
|
+
# @option params [String] :target_custom_availability_zone
|
1558
|
+
# The external custom Availability Zone (CAZ) identifier for the target
|
1559
|
+
# CAZ.
|
1560
|
+
#
|
1561
|
+
# Example: `rds-caz-aiqhTgQv`.
|
1562
|
+
#
|
1553
1563
|
# @option params [String] :source_region
|
1554
1564
|
# The source region of the snapshot. This is only needed when the
|
1555
1565
|
# shapshot is encrypted and in a different region.
|
@@ -1589,6 +1599,7 @@ module Aws::RDS
|
|
1589
1599
|
# copy_tags: false,
|
1590
1600
|
# pre_signed_url: "String",
|
1591
1601
|
# option_group_name: "String",
|
1602
|
+
# target_custom_availability_zone: "String",
|
1592
1603
|
# source_region: "String",
|
1593
1604
|
# })
|
1594
1605
|
#
|
@@ -1624,6 +1635,9 @@ module Aws::RDS
|
|
1624
1635
|
# resp.db_snapshot.processor_features[0].name #=> String
|
1625
1636
|
# resp.db_snapshot.processor_features[0].value #=> String
|
1626
1637
|
# resp.db_snapshot.dbi_resource_id #=> String
|
1638
|
+
# resp.db_snapshot.tag_list #=> Array
|
1639
|
+
# resp.db_snapshot.tag_list[0].key #=> String
|
1640
|
+
# resp.db_snapshot.tag_list[0].value #=> String
|
1627
1641
|
#
|
1628
1642
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
|
1629
1643
|
#
|
@@ -1637,25 +1651,13 @@ module Aws::RDS
|
|
1637
1651
|
# Copies the specified option group.
|
1638
1652
|
#
|
1639
1653
|
# @option params [required, String] :source_option_group_identifier
|
1640
|
-
# The identifier
|
1641
|
-
# about creating an ARN, see [ Constructing an ARN for Amazon RDS][1] in
|
1642
|
-
# the *Amazon RDS User Guide*.
|
1654
|
+
# The identifier for the source option group.
|
1643
1655
|
#
|
1644
1656
|
# Constraints:
|
1645
1657
|
#
|
1646
1658
|
# * Must specify a valid option group.
|
1647
1659
|
#
|
1648
|
-
#
|
1649
|
-
# specify a valid option group identifier, for example
|
1650
|
-
# `my-option-group`, or a valid ARN.
|
1651
|
-
#
|
1652
|
-
# * If the source option group is in a different AWS Region than the
|
1653
|
-
# copy, specify a valid option group ARN, for example
|
1654
|
-
# `arn:aws:rds:us-west-2:123456789012:og:special-options`.
|
1655
|
-
#
|
1656
|
-
#
|
1657
|
-
#
|
1658
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing
|
1660
|
+
# ^
|
1659
1661
|
#
|
1660
1662
|
# @option params [required, String] :target_option_group_identifier
|
1661
1663
|
# The identifier for the copied option group.
|
@@ -2036,30 +2038,27 @@ module Aws::RDS
|
|
2036
2038
|
# @option params [String] :kms_key_id
|
2037
2039
|
# The AWS KMS key identifier for an encrypted DB cluster.
|
2038
2040
|
#
|
2039
|
-
# The KMS key identifier is the
|
2040
|
-
#
|
2041
|
-
# account
|
2042
|
-
# cluster, then you can use the KMS key alias instead of the ARN for the
|
2043
|
-
# KMS encryption key.
|
2041
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
2042
|
+
# name for the AWS KMS customer master key (CMK). To use a CMK in a
|
2043
|
+
# different AWS account, specify the key ARN or alias ARN.
|
2044
2044
|
#
|
2045
|
-
#
|
2045
|
+
# When a CMK isn't specified in `KmsKeyId`\:
|
2046
2046
|
#
|
2047
2047
|
# * If `ReplicationSourceIdentifier` identifies an encrypted source,
|
2048
|
-
# then Amazon RDS will use the
|
2049
|
-
#
|
2048
|
+
# then Amazon RDS will use the CMK used to encrypt the source.
|
2049
|
+
# Otherwise, Amazon RDS will use your default CMK.
|
2050
2050
|
#
|
2051
2051
|
# * If the `StorageEncrypted` parameter is enabled and
|
2052
2052
|
# `ReplicationSourceIdentifier` isn't specified, then Amazon RDS will
|
2053
|
-
# use your default
|
2053
|
+
# use your default CMK.
|
2054
2054
|
#
|
2055
|
-
#
|
2056
|
-
#
|
2057
|
-
# Region.
|
2055
|
+
# There is a default CMK for your AWS account. Your AWS account has a
|
2056
|
+
# different default CMK for each AWS Region.
|
2058
2057
|
#
|
2059
2058
|
# If you create a read replica of an encrypted DB cluster in another AWS
|
2060
|
-
# Region, you must set `KmsKeyId` to a KMS key
|
2061
|
-
# destination AWS Region. This
|
2062
|
-
# in that AWS Region.
|
2059
|
+
# Region, you must set `KmsKeyId` to a AWS KMS key identifier that is
|
2060
|
+
# valid in the destination AWS Region. This CMK is used to encrypt the
|
2061
|
+
# read replica in that AWS Region.
|
2063
2062
|
#
|
2064
2063
|
# @option params [String] :pre_signed_url
|
2065
2064
|
# A URL that contains a Signature Version 4 signed request for the
|
@@ -2077,9 +2076,9 @@ module Aws::RDS
|
|
2077
2076
|
#
|
2078
2077
|
# * `KmsKeyId` - The AWS KMS key identifier for the key to use to
|
2079
2078
|
# encrypt the copy of the DB cluster in the destination AWS Region.
|
2080
|
-
# This should refer to the same KMS
|
2081
|
-
# action that is called in the destination AWS
|
2082
|
-
# contained in the pre-signed URL.
|
2079
|
+
# This should refer to the same AWS KMS CMK for both the
|
2080
|
+
# `CreateDBCluster` action that is called in the destination AWS
|
2081
|
+
# Region, and the action contained in the pre-signed URL.
|
2083
2082
|
#
|
2084
2083
|
# * `DestinationRegion` - The name of the AWS Region that Aurora read
|
2085
2084
|
# replica will be created in.
|
@@ -2157,14 +2156,23 @@ module Aws::RDS
|
|
2157
2156
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
2158
2157
|
#
|
2159
2158
|
# @option params [String] :engine_mode
|
2160
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
2159
|
+
# The DB engine mode of the DB cluster, either `provisioned`
|
2161
2160
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
2162
2161
|
#
|
2163
|
-
#
|
2164
|
-
#
|
2165
|
-
#
|
2162
|
+
# The `parallelquery` engine mode isn't required for Aurora MySQL
|
2163
|
+
# version 1.23 and higher 1.x versions, and version 2.09 and higher 2.x
|
2164
|
+
# versions.
|
2166
2165
|
#
|
2167
|
-
#
|
2166
|
+
# The `global` engine mode isn't required for Aurora MySQL version 1.22
|
2167
|
+
# and higher 1.x versions, and `global` engine mode isn't required for
|
2168
|
+
# any 2.x versions.
|
2169
|
+
#
|
2170
|
+
# The `multimaster` engine mode only applies for DB clusters created
|
2171
|
+
# with Aurora MySQL version 5.6.10a.
|
2172
|
+
#
|
2173
|
+
# For Aurora PostgreSQL, the `global` engine mode isn't required, and
|
2174
|
+
# both the `parallelquery` and the `multimaster` engine modes currently
|
2175
|
+
# aren't supported.
|
2168
2176
|
#
|
2169
2177
|
# Limitations and requirements apply to some DB engine modes. For more
|
2170
2178
|
# information, see the following sections in the *Amazon Aurora User
|
@@ -2174,7 +2182,7 @@ module Aws::RDS
|
|
2174
2182
|
#
|
2175
2183
|
# * [ Limitations of Parallel Query][2]
|
2176
2184
|
#
|
2177
|
-
# * [
|
2185
|
+
# * [ Limitations of Aurora Global Databases][3]
|
2178
2186
|
#
|
2179
2187
|
# * [ Limitations of Multi-Master Clusters][4]
|
2180
2188
|
#
|
@@ -2405,6 +2413,9 @@ module Aws::RDS
|
|
2405
2413
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
2406
2414
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
2407
2415
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
2416
|
+
# resp.db_cluster.tag_list #=> Array
|
2417
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
2418
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
2408
2419
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
2409
2420
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
2410
2421
|
#
|
@@ -2722,6 +2733,9 @@ module Aws::RDS
|
|
2722
2733
|
# resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
|
2723
2734
|
# resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
|
2724
2735
|
# resp.db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
|
2736
|
+
# resp.db_cluster_snapshot.tag_list #=> Array
|
2737
|
+
# resp.db_cluster_snapshot.tag_list[0].key #=> String
|
2738
|
+
# resp.db_cluster_snapshot.tag_list[0].value #=> String
|
2725
2739
|
#
|
2726
2740
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterSnapshot AWS API Documentation
|
2727
2741
|
#
|
@@ -3263,8 +3277,8 @@ module Aws::RDS
|
|
3263
3277
|
#
|
3264
3278
|
# **Microsoft SQL Server**
|
3265
3279
|
#
|
3266
|
-
# See [
|
3267
|
-
# User Guide.*
|
3280
|
+
# See [Microsoft SQL Server Versions on Amazon RDS][2] in the *Amazon
|
3281
|
+
# RDS User Guide.*
|
3268
3282
|
#
|
3269
3283
|
# **MySQL**
|
3270
3284
|
#
|
@@ -3283,7 +3297,7 @@ module Aws::RDS
|
|
3283
3297
|
#
|
3284
3298
|
#
|
3285
3299
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MariaDB.html#MariaDB.Concepts.VersionMgmt
|
3286
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.
|
3300
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
3287
3301
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
3288
3302
|
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
|
3289
3303
|
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts.General.DBVersions
|
@@ -3405,22 +3419,19 @@ module Aws::RDS
|
|
3405
3419
|
# @option params [String] :kms_key_id
|
3406
3420
|
# The AWS KMS key identifier for an encrypted DB instance.
|
3407
3421
|
#
|
3408
|
-
# The KMS key identifier is the
|
3409
|
-
#
|
3410
|
-
# account
|
3411
|
-
# instance, then you can use the KMS key alias instead of the ARN for
|
3412
|
-
# the KM encryption key.
|
3422
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
3423
|
+
# name for the AWS KMS customer master key (CMK). To use a CMK in a
|
3424
|
+
# different AWS account, specify the key ARN or alias ARN.
|
3413
3425
|
#
|
3414
3426
|
# **Amazon Aurora**
|
3415
3427
|
#
|
3416
|
-
# Not applicable. The KMS key identifier is managed by the DB
|
3417
|
-
# For more information, see `CreateDBCluster`.
|
3428
|
+
# Not applicable. The AWS KMS key identifier is managed by the DB
|
3429
|
+
# cluster. For more information, see `CreateDBCluster`.
|
3418
3430
|
#
|
3419
3431
|
# If `StorageEncrypted` is enabled, and you do not specify a value for
|
3420
|
-
# the `KmsKeyId` parameter, then Amazon RDS
|
3421
|
-
#
|
3422
|
-
#
|
3423
|
-
# for each AWS Region.
|
3432
|
+
# the `KmsKeyId` parameter, then Amazon RDS uses your default CMK. There
|
3433
|
+
# is a default CMK for your AWS account. Your AWS account has a
|
3434
|
+
# different default CMK for each AWS Region.
|
3424
3435
|
#
|
3425
3436
|
# @option params [String] :domain
|
3426
3437
|
# The Active Directory directory ID to create the DB instance in.
|
@@ -3499,29 +3510,8 @@ module Aws::RDS
|
|
3499
3510
|
# Access Management (IAM) accounts to database accounts. By default,
|
3500
3511
|
# mapping is disabled.
|
3501
3512
|
#
|
3502
|
-
#
|
3503
|
-
#
|
3504
|
-
#
|
3505
|
-
# **Amazon Aurora**
|
3506
|
-
#
|
3507
|
-
# Not applicable. Mapping AWS IAM accounts to database accounts is
|
3508
|
-
# managed by the DB cluster.
|
3509
|
-
#
|
3510
|
-
# **MySQL**
|
3511
|
-
#
|
3512
|
-
# * For MySQL 5.6, minor version 5.6.34 or higher
|
3513
|
-
#
|
3514
|
-
# * For MySQL 5.7, minor version 5.7.16 or higher
|
3515
|
-
#
|
3516
|
-
# * For MySQL 8.0, minor version 8.0.16 or higher
|
3517
|
-
#
|
3518
|
-
# **PostgreSQL**
|
3519
|
-
#
|
3520
|
-
# * For PostgreSQL 9.5, minor version 9.5.15 or higher
|
3521
|
-
#
|
3522
|
-
# * For PostgreSQL 9.6, minor version 9.6.11 or higher
|
3523
|
-
#
|
3524
|
-
# * PostgreSQL 10.6, 10.7, and 10.9
|
3513
|
+
# This setting doesn't apply to Amazon Aurora. Mapping AWS IAM accounts
|
3514
|
+
# to database accounts is managed by the DB cluster.
|
3525
3515
|
#
|
3526
3516
|
# For more information, see [ IAM Database Authentication for MySQL and
|
3527
3517
|
# PostgreSQL][1] in the *Amazon RDS User Guide.*
|
@@ -3543,13 +3533,15 @@ module Aws::RDS
|
|
3543
3533
|
#
|
3544
3534
|
# @option params [String] :performance_insights_kms_key_id
|
3545
3535
|
# The AWS KMS key identifier for encryption of Performance Insights
|
3546
|
-
# data.
|
3547
|
-
#
|
3536
|
+
# data.
|
3537
|
+
#
|
3538
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
3539
|
+
# name for the AWS KMS customer master key (CMK).
|
3548
3540
|
#
|
3549
3541
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
|
3550
|
-
# Amazon RDS uses your default
|
3551
|
-
#
|
3552
|
-
#
|
3542
|
+
# Amazon RDS uses your default CMK. There is a default CMK for your AWS
|
3543
|
+
# account. Your AWS account has a different default CMK for each AWS
|
3544
|
+
# Region.
|
3553
3545
|
#
|
3554
3546
|
# @option params [Integer] :performance_insights_retention_period
|
3555
3547
|
# The amount of time, in days, to retain Performance Insights data.
|
@@ -3562,6 +3554,10 @@ module Aws::RDS
|
|
3562
3554
|
# CloudWatch Logs ][1] in the *Amazon Relational Database Service User
|
3563
3555
|
# Guide*.
|
3564
3556
|
#
|
3557
|
+
# **Amazon Aurora**
|
3558
|
+
#
|
3559
|
+
# Not applicable. CloudWatch Logs exports are managed by the DB cluster.
|
3560
|
+
#
|
3565
3561
|
# **MariaDB**
|
3566
3562
|
#
|
3567
3563
|
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
@@ -3815,6 +3811,11 @@ module Aws::RDS
|
|
3815
3811
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
3816
3812
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
3817
3813
|
# resp.db_instance.max_allocated_storage #=> Integer
|
3814
|
+
# resp.db_instance.tag_list #=> Array
|
3815
|
+
# resp.db_instance.tag_list[0].key #=> String
|
3816
|
+
# resp.db_instance.tag_list[0].value #=> String
|
3817
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
3818
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
3818
3819
|
#
|
3819
3820
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
3820
3821
|
#
|
@@ -4065,20 +4066,21 @@ module Aws::RDS
|
|
4065
4066
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole
|
4066
4067
|
#
|
4067
4068
|
# @option params [String] :kms_key_id
|
4068
|
-
# The AWS KMS key
|
4069
|
-
#
|
4070
|
-
#
|
4069
|
+
# The AWS KMS key identifier for an encrypted read replica.
|
4070
|
+
#
|
4071
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
4072
|
+
# name for the AWS KMS CMK.
|
4071
4073
|
#
|
4072
4074
|
# If you create an encrypted read replica in the same AWS Region as the
|
4073
4075
|
# source DB instance, then you do not have to specify a value for this
|
4074
|
-
# parameter. The read replica is encrypted with the same KMS
|
4075
|
-
# source DB instance.
|
4076
|
+
# parameter. The read replica is encrypted with the same AWS KMS CMK as
|
4077
|
+
# the source DB instance.
|
4076
4078
|
#
|
4077
4079
|
# If you create an encrypted read replica in a different AWS Region,
|
4078
|
-
# then you must specify a KMS key for the destination AWS
|
4079
|
-
#
|
4080
|
-
# in, and you can't use
|
4081
|
-
#
|
4080
|
+
# then you must specify a AWS KMS key identifier for the destination AWS
|
4081
|
+
# Region. AWS KMS CMKs are specific to the AWS Region that they are
|
4082
|
+
# created in, and you can't use CMKs from one AWS Region in another AWS
|
4083
|
+
# Region.
|
4082
4084
|
#
|
4083
4085
|
# You can't create an encrypted read replica from an unencrypted DB
|
4084
4086
|
# instance.
|
@@ -4148,8 +4150,7 @@ module Aws::RDS
|
|
4148
4150
|
# @option params [Boolean] :enable_iam_database_authentication
|
4149
4151
|
# A value that indicates whether to enable mapping of AWS Identity and
|
4150
4152
|
# Access Management (IAM) accounts to database accounts. By default,
|
4151
|
-
# mapping is disabled.
|
4152
|
-
# see CreateDBInstance.
|
4153
|
+
# mapping is disabled.
|
4153
4154
|
#
|
4154
4155
|
# For more information about IAM database authentication, see [ IAM
|
4155
4156
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -4172,13 +4173,15 @@ module Aws::RDS
|
|
4172
4173
|
#
|
4173
4174
|
# @option params [String] :performance_insights_kms_key_id
|
4174
4175
|
# The AWS KMS key identifier for encryption of Performance Insights
|
4175
|
-
# data.
|
4176
|
-
#
|
4176
|
+
# data.
|
4177
|
+
#
|
4178
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
4179
|
+
# name for the AWS KMS customer master key (CMK).
|
4177
4180
|
#
|
4178
4181
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
|
4179
|
-
# Amazon RDS uses your default
|
4180
|
-
#
|
4181
|
-
#
|
4182
|
+
# Amazon RDS uses your default CMK. There is a default CMK for your AWS
|
4183
|
+
# account. Your AWS account has a different default CMK for each AWS
|
4184
|
+
# Region.
|
4182
4185
|
#
|
4183
4186
|
# @option params [Integer] :performance_insights_retention_period
|
4184
4187
|
# The amount of time, in days, to retain Performance Insights data.
|
@@ -4250,6 +4253,10 @@ module Aws::RDS
|
|
4250
4253
|
#
|
4251
4254
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
4252
4255
|
#
|
4256
|
+
# @option params [Integer] :max_allocated_storage
|
4257
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
4258
|
+
# storage of the DB instance.
|
4259
|
+
#
|
4253
4260
|
# @option params [String] :source_region
|
4254
4261
|
# The source region of the snapshot. This is only needed when the
|
4255
4262
|
# shapshot is encrypted and in a different region.
|
@@ -4329,6 +4336,7 @@ module Aws::RDS
|
|
4329
4336
|
# domain: "String",
|
4330
4337
|
# domain_iam_role_name: "String",
|
4331
4338
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
4339
|
+
# max_allocated_storage: 1,
|
4332
4340
|
# source_region: "String",
|
4333
4341
|
# })
|
4334
4342
|
#
|
@@ -4450,6 +4458,11 @@ module Aws::RDS
|
|
4450
4458
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
4451
4459
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
4452
4460
|
# resp.db_instance.max_allocated_storage #=> Integer
|
4461
|
+
# resp.db_instance.tag_list #=> Array
|
4462
|
+
# resp.db_instance.tag_list[0].key #=> String
|
4463
|
+
# resp.db_instance.tag_list[0].value #=> String
|
4464
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
4465
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
4453
4466
|
#
|
4454
4467
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
4455
4468
|
#
|
@@ -4780,8 +4793,8 @@ module Aws::RDS
|
|
4780
4793
|
req.send_request(options)
|
4781
4794
|
end
|
4782
4795
|
|
4783
|
-
# Creates a
|
4784
|
-
# state.
|
4796
|
+
# Creates a snapshot of a DB instance. The source DB instance must be in
|
4797
|
+
# the `available` or `storage-optimization` state.
|
4785
4798
|
#
|
4786
4799
|
# @option params [required, String] :db_snapshot_identifier
|
4787
4800
|
# The identifier for the DB snapshot.
|
@@ -4881,6 +4894,9 @@ module Aws::RDS
|
|
4881
4894
|
# resp.db_snapshot.processor_features[0].name #=> String
|
4882
4895
|
# resp.db_snapshot.processor_features[0].value #=> String
|
4883
4896
|
# resp.db_snapshot.dbi_resource_id #=> String
|
4897
|
+
# resp.db_snapshot.tag_list #=> Array
|
4898
|
+
# resp.db_snapshot.tag_list[0].key #=> String
|
4899
|
+
# resp.db_snapshot.tag_list[0].value #=> String
|
4884
4900
|
#
|
4885
4901
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
4886
4902
|
#
|
@@ -5543,6 +5559,9 @@ module Aws::RDS
|
|
5543
5559
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
5544
5560
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
5545
5561
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
5562
|
+
# resp.db_cluster.tag_list #=> Array
|
5563
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
5564
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
5546
5565
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
5547
5566
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
5548
5567
|
#
|
@@ -5734,6 +5753,9 @@ module Aws::RDS
|
|
5734
5753
|
# resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
|
5735
5754
|
# resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
|
5736
5755
|
# resp.db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
|
5756
|
+
# resp.db_cluster_snapshot.tag_list #=> Array
|
5757
|
+
# resp.db_cluster_snapshot.tag_list[0].key #=> String
|
5758
|
+
# resp.db_cluster_snapshot.tag_list[0].value #=> String
|
5737
5759
|
#
|
5738
5760
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterSnapshot AWS API Documentation
|
5739
5761
|
#
|
@@ -5975,6 +5997,11 @@ module Aws::RDS
|
|
5975
5997
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
5976
5998
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
5977
5999
|
# resp.db_instance.max_allocated_storage #=> Integer
|
6000
|
+
# resp.db_instance.tag_list #=> Array
|
6001
|
+
# resp.db_instance.tag_list[0].key #=> String
|
6002
|
+
# resp.db_instance.tag_list[0].value #=> String
|
6003
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
6004
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
5978
6005
|
#
|
5979
6006
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
5980
6007
|
#
|
@@ -5985,13 +6012,19 @@ module Aws::RDS
|
|
5985
6012
|
req.send_request(options)
|
5986
6013
|
end
|
5987
6014
|
|
5988
|
-
# Deletes automated backups
|
5989
|
-
#
|
6015
|
+
# Deletes automated backups using the `DbiResourceId` value of the
|
6016
|
+
# source DB instance or the Amazon Resource Name (ARN) of the automated
|
6017
|
+
# backups.
|
5990
6018
|
#
|
5991
|
-
# @option params [
|
6019
|
+
# @option params [String] :dbi_resource_id
|
5992
6020
|
# The identifier for the source DB instance, which can't be changed and
|
5993
6021
|
# which is unique to an AWS Region.
|
5994
6022
|
#
|
6023
|
+
# @option params [String] :db_instance_automated_backups_arn
|
6024
|
+
# The Amazon Resource Name (ARN) of the automated backups to delete, for
|
6025
|
+
# example,
|
6026
|
+
# `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
6027
|
+
#
|
5995
6028
|
# @return [Types::DeleteDBInstanceAutomatedBackupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5996
6029
|
#
|
5997
6030
|
# * {Types::DeleteDBInstanceAutomatedBackupResult#db_instance_automated_backup #db_instance_automated_backup} => Types::DBInstanceAutomatedBackup
|
@@ -5999,7 +6032,8 @@ module Aws::RDS
|
|
5999
6032
|
# @example Request syntax with placeholder values
|
6000
6033
|
#
|
6001
6034
|
# resp = client.delete_db_instance_automated_backup({
|
6002
|
-
# dbi_resource_id: "String",
|
6035
|
+
# dbi_resource_id: "String",
|
6036
|
+
# db_instance_automated_backups_arn: "String",
|
6003
6037
|
# })
|
6004
6038
|
#
|
6005
6039
|
# @example Response structure
|
@@ -6028,6 +6062,10 @@ module Aws::RDS
|
|
6028
6062
|
# resp.db_instance_automated_backup.kms_key_id #=> String
|
6029
6063
|
# resp.db_instance_automated_backup.timezone #=> String
|
6030
6064
|
# resp.db_instance_automated_backup.iam_database_authentication_enabled #=> Boolean
|
6065
|
+
# resp.db_instance_automated_backup.backup_retention_period #=> Integer
|
6066
|
+
# resp.db_instance_automated_backup.db_instance_automated_backups_arn #=> String
|
6067
|
+
# resp.db_instance_automated_backup.db_instance_automated_backups_replications #=> Array
|
6068
|
+
# resp.db_instance_automated_backup.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
6031
6069
|
#
|
6032
6070
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstanceAutomatedBackup AWS API Documentation
|
6033
6071
|
#
|
@@ -6246,6 +6284,9 @@ module Aws::RDS
|
|
6246
6284
|
# resp.db_snapshot.processor_features[0].name #=> String
|
6247
6285
|
# resp.db_snapshot.processor_features[0].value #=> String
|
6248
6286
|
# resp.db_snapshot.dbi_resource_id #=> String
|
6287
|
+
# resp.db_snapshot.tag_list #=> Array
|
6288
|
+
# resp.db_snapshot.tag_list[0].key #=> String
|
6289
|
+
# resp.db_snapshot.tag_list[0].value #=> String
|
6249
6290
|
#
|
6250
6291
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
6251
6292
|
#
|
@@ -7394,6 +7435,9 @@ module Aws::RDS
|
|
7394
7435
|
# resp.db_cluster_snapshots[0].db_cluster_snapshot_arn #=> String
|
7395
7436
|
# resp.db_cluster_snapshots[0].source_db_cluster_snapshot_arn #=> String
|
7396
7437
|
# resp.db_cluster_snapshots[0].iam_database_authentication_enabled #=> Boolean
|
7438
|
+
# resp.db_cluster_snapshots[0].tag_list #=> Array
|
7439
|
+
# resp.db_cluster_snapshots[0].tag_list[0].key #=> String
|
7440
|
+
# resp.db_cluster_snapshots[0].tag_list[0].value #=> String
|
7397
7441
|
#
|
7398
7442
|
#
|
7399
7443
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -7581,6 +7625,9 @@ module Aws::RDS
|
|
7581
7625
|
# resp.db_clusters[0].domain_memberships[0].status #=> String
|
7582
7626
|
# resp.db_clusters[0].domain_memberships[0].fqdn #=> String
|
7583
7627
|
# resp.db_clusters[0].domain_memberships[0].iam_role_name #=> String
|
7628
|
+
# resp.db_clusters[0].tag_list #=> Array
|
7629
|
+
# resp.db_clusters[0].tag_list[0].key #=> String
|
7630
|
+
# resp.db_clusters[0].tag_list[0].value #=> String
|
7584
7631
|
# resp.db_clusters[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
7585
7632
|
# resp.db_clusters[0].global_write_forwarding_requested #=> Boolean
|
7586
7633
|
#
|
@@ -7803,6 +7850,11 @@ module Aws::RDS
|
|
7803
7850
|
# parameter is specified the response includes only records beyond the
|
7804
7851
|
# marker, up to `MaxRecords`.
|
7805
7852
|
#
|
7853
|
+
# @option params [String] :db_instance_automated_backups_arn
|
7854
|
+
# The Amazon Resource Name (ARN) of the replicated automated backups,
|
7855
|
+
# for example,
|
7856
|
+
# `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
7857
|
+
#
|
7806
7858
|
# @return [Types::DBInstanceAutomatedBackupMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7807
7859
|
#
|
7808
7860
|
# * {Types::DBInstanceAutomatedBackupMessage#marker #marker} => String
|
@@ -7823,6 +7875,7 @@ module Aws::RDS
|
|
7823
7875
|
# ],
|
7824
7876
|
# max_records: 1,
|
7825
7877
|
# marker: "String",
|
7878
|
+
# db_instance_automated_backups_arn: "String",
|
7826
7879
|
# })
|
7827
7880
|
#
|
7828
7881
|
# @example Response structure
|
@@ -7853,6 +7906,10 @@ module Aws::RDS
|
|
7853
7906
|
# resp.db_instance_automated_backups[0].kms_key_id #=> String
|
7854
7907
|
# resp.db_instance_automated_backups[0].timezone #=> String
|
7855
7908
|
# resp.db_instance_automated_backups[0].iam_database_authentication_enabled #=> Boolean
|
7909
|
+
# resp.db_instance_automated_backups[0].backup_retention_period #=> Integer
|
7910
|
+
# resp.db_instance_automated_backups[0].db_instance_automated_backups_arn #=> String
|
7911
|
+
# resp.db_instance_automated_backups[0].db_instance_automated_backups_replications #=> Array
|
7912
|
+
# resp.db_instance_automated_backups[0].db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
7856
7913
|
#
|
7857
7914
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBInstanceAutomatedBackups AWS API Documentation
|
7858
7915
|
#
|
@@ -8077,6 +8134,11 @@ module Aws::RDS
|
|
8077
8134
|
# resp.db_instances[0].listener_endpoint.port #=> Integer
|
8078
8135
|
# resp.db_instances[0].listener_endpoint.hosted_zone_id #=> String
|
8079
8136
|
# resp.db_instances[0].max_allocated_storage #=> Integer
|
8137
|
+
# resp.db_instances[0].tag_list #=> Array
|
8138
|
+
# resp.db_instances[0].tag_list[0].key #=> String
|
8139
|
+
# resp.db_instances[0].tag_list[0].value #=> String
|
8140
|
+
# resp.db_instances[0].db_instance_automated_backups_replications #=> Array
|
8141
|
+
# resp.db_instances[0].db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
8080
8142
|
#
|
8081
8143
|
#
|
8082
8144
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -8943,6 +9005,9 @@ module Aws::RDS
|
|
8943
9005
|
# resp.db_snapshots[0].processor_features[0].name #=> String
|
8944
9006
|
# resp.db_snapshots[0].processor_features[0].value #=> String
|
8945
9007
|
# resp.db_snapshots[0].dbi_resource_id #=> String
|
9008
|
+
# resp.db_snapshots[0].tag_list #=> Array
|
9009
|
+
# resp.db_snapshots[0].tag_list[0].key #=> String
|
9010
|
+
# resp.db_snapshots[0].tag_list[0].value #=> String
|
8946
9011
|
#
|
8947
9012
|
#
|
8948
9013
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -10661,6 +10726,7 @@ module Aws::RDS
|
|
10661
10726
|
# resp.source_regions[0].region_name #=> String
|
10662
10727
|
# resp.source_regions[0].endpoint #=> String
|
10663
10728
|
# resp.source_regions[0].status #=> String
|
10729
|
+
# resp.source_regions[0].supports_db_instance_automated_backups_replication #=> Boolean
|
10664
10730
|
#
|
10665
10731
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeSourceRegions AWS API Documentation
|
10666
10732
|
#
|
@@ -10955,6 +11021,9 @@ module Aws::RDS
|
|
10955
11021
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
10956
11022
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
10957
11023
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
11024
|
+
# resp.db_cluster.tag_list #=> Array
|
11025
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
11026
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
10958
11027
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
10959
11028
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
10960
11029
|
#
|
@@ -11001,12 +11070,12 @@ module Aws::RDS
|
|
11001
11070
|
#
|
11002
11071
|
# **Microsoft SQL Server**
|
11003
11072
|
#
|
11004
|
-
# See [
|
11005
|
-
# User Guide.*
|
11073
|
+
# See [ Microsoft SQL Server Versions on Amazon RDS][1] in the *Amazon
|
11074
|
+
# RDS User Guide.*
|
11006
11075
|
#
|
11007
11076
|
#
|
11008
11077
|
#
|
11009
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.
|
11078
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
11010
11079
|
#
|
11011
11080
|
# @option params [required, String] :engine_installation_media_path
|
11012
11081
|
# The path to the installation medium for the specified DB engine.
|
@@ -11733,6 +11802,9 @@ module Aws::RDS
|
|
11733
11802
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
11734
11803
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
11735
11804
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
11805
|
+
# resp.db_cluster.tag_list #=> Array
|
11806
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
11807
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
11736
11808
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
11737
11809
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
11738
11810
|
#
|
@@ -12291,7 +12363,7 @@ module Aws::RDS
|
|
12291
12363
|
# The version number of the database engine to upgrade to. Changing this
|
12292
12364
|
# parameter results in an outage and the change is applied during the
|
12293
12365
|
# next maintenance window unless the `ApplyImmediately` parameter is
|
12294
|
-
#
|
12366
|
+
# enabled for this request.
|
12295
12367
|
#
|
12296
12368
|
# For major version upgrades, if a nondefault DB parameter group is
|
12297
12369
|
# currently in use, a new DB parameter group in the DB parameter group
|
@@ -12565,8 +12637,10 @@ module Aws::RDS
|
|
12565
12637
|
# @option params [Boolean] :enable_iam_database_authentication
|
12566
12638
|
# A value that indicates whether to enable mapping of AWS Identity and
|
12567
12639
|
# Access Management (IAM) accounts to database accounts. By default,
|
12568
|
-
# mapping is disabled.
|
12569
|
-
#
|
12640
|
+
# mapping is disabled.
|
12641
|
+
#
|
12642
|
+
# This setting doesn't apply to Amazon Aurora. Mapping AWS IAM accounts
|
12643
|
+
# to database accounts is managed by the DB cluster.
|
12570
12644
|
#
|
12571
12645
|
# For more information about IAM database authentication, see [ IAM
|
12572
12646
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -12589,13 +12663,15 @@ module Aws::RDS
|
|
12589
12663
|
#
|
12590
12664
|
# @option params [String] :performance_insights_kms_key_id
|
12591
12665
|
# The AWS KMS key identifier for encryption of Performance Insights
|
12592
|
-
# data.
|
12593
|
-
#
|
12666
|
+
# data.
|
12667
|
+
#
|
12668
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
12669
|
+
# name for the AWS KMS customer master key (CMK).
|
12594
12670
|
#
|
12595
12671
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
|
12596
|
-
# Amazon RDS uses your default
|
12597
|
-
#
|
12598
|
-
#
|
12672
|
+
# Amazon RDS uses your default CMK. There is a default CMK for your AWS
|
12673
|
+
# account. Your AWS account has a different default CMK for each AWS
|
12674
|
+
# Region.
|
12599
12675
|
#
|
12600
12676
|
# @option params [Integer] :performance_insights_retention_period
|
12601
12677
|
# The amount of time, in days, to retain Performance Insights data.
|
@@ -12879,6 +12955,11 @@ module Aws::RDS
|
|
12879
12955
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
12880
12956
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
12881
12957
|
# resp.db_instance.max_allocated_storage #=> Integer
|
12958
|
+
# resp.db_instance.tag_list #=> Array
|
12959
|
+
# resp.db_instance.tag_list[0].key #=> String
|
12960
|
+
# resp.db_instance.tag_list[0].value #=> String
|
12961
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
12962
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
12882
12963
|
#
|
12883
12964
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
12884
12965
|
#
|
@@ -13253,6 +13334,9 @@ module Aws::RDS
|
|
13253
13334
|
# resp.db_snapshot.processor_features[0].name #=> String
|
13254
13335
|
# resp.db_snapshot.processor_features[0].value #=> String
|
13255
13336
|
# resp.db_snapshot.dbi_resource_id #=> String
|
13337
|
+
# resp.db_snapshot.tag_list #=> Array
|
13338
|
+
# resp.db_snapshot.tag_list[0].key #=> String
|
13339
|
+
# resp.db_snapshot.tag_list[0].value #=> String
|
13256
13340
|
#
|
13257
13341
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
13258
13342
|
#
|
@@ -13964,6 +14048,11 @@ module Aws::RDS
|
|
13964
14048
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
13965
14049
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
13966
14050
|
# resp.db_instance.max_allocated_storage #=> Integer
|
14051
|
+
# resp.db_instance.tag_list #=> Array
|
14052
|
+
# resp.db_instance.tag_list[0].key #=> String
|
14053
|
+
# resp.db_instance.tag_list[0].value #=> String
|
14054
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
14055
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
13967
14056
|
#
|
13968
14057
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
13969
14058
|
#
|
@@ -14079,6 +14168,9 @@ module Aws::RDS
|
|
14079
14168
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
14080
14169
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
14081
14170
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
14171
|
+
# resp.db_cluster.tag_list #=> Array
|
14172
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
14173
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
14082
14174
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
14083
14175
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
14084
14176
|
#
|
@@ -14358,6 +14450,11 @@ module Aws::RDS
|
|
14358
14450
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
14359
14451
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
14360
14452
|
# resp.db_instance.max_allocated_storage #=> Integer
|
14453
|
+
# resp.db_instance.tag_list #=> Array
|
14454
|
+
# resp.db_instance.tag_list[0].key #=> String
|
14455
|
+
# resp.db_instance.tag_list[0].value #=> String
|
14456
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
14457
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
14361
14458
|
#
|
14362
14459
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
14363
14460
|
#
|
@@ -14527,7 +14624,7 @@ module Aws::RDS
|
|
14527
14624
|
#
|
14528
14625
|
# @option params [required, String] :role_arn
|
14529
14626
|
# The Amazon Resource Name (ARN) of the IAM role to disassociate from
|
14530
|
-
# the DB instance, for example
|
14627
|
+
# the DB instance, for example,
|
14531
14628
|
# `arn:aws:iam::123456789012:role/AccessRole`.
|
14532
14629
|
#
|
14533
14630
|
# @option params [required, String] :feature_name
|
@@ -15076,17 +15173,14 @@ module Aws::RDS
|
|
15076
15173
|
# @option params [String] :kms_key_id
|
15077
15174
|
# The AWS KMS key identifier for an encrypted DB cluster.
|
15078
15175
|
#
|
15079
|
-
# The KMS key identifier is the
|
15080
|
-
#
|
15081
|
-
# account
|
15082
|
-
# cluster, then you can use the KMS key alias instead of the ARN for the
|
15083
|
-
# KM encryption key.
|
15176
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
15177
|
+
# name for the AWS KMS customer master key (CMK). To use a CMK in a
|
15178
|
+
# different AWS account, specify the key ARN or alias ARN.
|
15084
15179
|
#
|
15085
15180
|
# If the StorageEncrypted parameter is enabled, and you do not specify a
|
15086
15181
|
# value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
15087
|
-
# default
|
15088
|
-
#
|
15089
|
-
# key for each AWS Region.
|
15182
|
+
# default CMK. There is a default CMK for your AWS account. Your AWS
|
15183
|
+
# account has a different default CMK for each AWS Region.
|
15090
15184
|
#
|
15091
15185
|
# @option params [Boolean] :enable_iam_database_authentication
|
15092
15186
|
# A value that indicates whether to enable mapping of AWS Identity and
|
@@ -15304,6 +15398,9 @@ module Aws::RDS
|
|
15304
15398
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15305
15399
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15306
15400
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
15401
|
+
# resp.db_cluster.tag_list #=> Array
|
15402
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
15403
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
15307
15404
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15308
15405
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15309
15406
|
#
|
@@ -15448,18 +15545,17 @@ module Aws::RDS
|
|
15448
15545
|
# The AWS KMS key identifier to use when restoring an encrypted DB
|
15449
15546
|
# cluster from a DB snapshot or DB cluster snapshot.
|
15450
15547
|
#
|
15451
|
-
# The KMS key identifier is the
|
15452
|
-
#
|
15453
|
-
# account
|
15454
|
-
# cluster, then you can use the KMS key alias instead of the ARN for the
|
15455
|
-
# KMS encryption key.
|
15548
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
15549
|
+
# name for the AWS KMS customer master key (CMK). To use a CMK in a
|
15550
|
+
# different AWS account, specify the key ARN or alias ARN.
|
15456
15551
|
#
|
15457
|
-
#
|
15552
|
+
# When you don't specify a value for the `KmsKeyId` parameter, then the
|
15458
15553
|
# following occurs:
|
15459
15554
|
#
|
15460
15555
|
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier` is
|
15461
|
-
# encrypted, then the restored DB cluster is encrypted using the
|
15462
|
-
#
|
15556
|
+
# encrypted, then the restored DB cluster is encrypted using the AWS
|
15557
|
+
# KMS CMK that was used to encrypt the DB snapshot or DB cluster
|
15558
|
+
# snapshot.
|
15463
15559
|
#
|
15464
15560
|
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier`
|
15465
15561
|
# isn't encrypted, then the restored DB cluster isn't encrypted.
|
@@ -15507,6 +15603,12 @@ module Aws::RDS
|
|
15507
15603
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
15508
15604
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
15509
15605
|
#
|
15606
|
+
# For more information, see [ CreateDBCluster][1].
|
15607
|
+
#
|
15608
|
+
#
|
15609
|
+
#
|
15610
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
|
15611
|
+
#
|
15510
15612
|
# @option params [Types::ScalingConfiguration] :scaling_configuration
|
15511
15613
|
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
15512
15614
|
# of the DB cluster.
|
@@ -15690,6 +15792,9 @@ module Aws::RDS
|
|
15690
15792
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15691
15793
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15692
15794
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
15795
|
+
# resp.db_cluster.tag_list #=> Array
|
15796
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
15797
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
15693
15798
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15694
15799
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15695
15800
|
#
|
@@ -15827,23 +15932,21 @@ module Aws::RDS
|
|
15827
15932
|
# The AWS KMS key identifier to use when restoring an encrypted DB
|
15828
15933
|
# cluster from an encrypted DB cluster.
|
15829
15934
|
#
|
15830
|
-
# The KMS key identifier is the
|
15831
|
-
#
|
15832
|
-
# account
|
15833
|
-
# cluster, then you can use the KMS key alias instead of the ARN for the
|
15834
|
-
# KMS encryption key.
|
15935
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
15936
|
+
# name for the AWS KMS customer master key (CMK). To use a CMK in a
|
15937
|
+
# different AWS account, specify the key ARN or alias ARN.
|
15835
15938
|
#
|
15836
15939
|
# You can restore to a new DB cluster and encrypt the new DB cluster
|
15837
|
-
# with a KMS
|
15838
|
-
# source DB cluster. The new DB cluster is encrypted with
|
15839
|
-
# identified by the `KmsKeyId` parameter.
|
15940
|
+
# with a AWS KMS CMK that is different than the AWS KMS key used to
|
15941
|
+
# encrypt the source DB cluster. The new DB cluster is encrypted with
|
15942
|
+
# the AWS KMS CMK identified by the `KmsKeyId` parameter.
|
15840
15943
|
#
|
15841
15944
|
# If you don't specify a value for the `KmsKeyId` parameter, then the
|
15842
15945
|
# following occurs:
|
15843
15946
|
#
|
15844
15947
|
# * If the DB cluster is encrypted, then the restored DB cluster is
|
15845
|
-
# encrypted using the KMS
|
15846
|
-
# cluster.
|
15948
|
+
# encrypted using the AWS KMS CMK that was used to encrypt the source
|
15949
|
+
# DB cluster.
|
15847
15950
|
#
|
15848
15951
|
# * If the DB cluster isn't encrypted, then the restored DB cluster
|
15849
15952
|
# isn't encrypted.
|
@@ -16060,6 +16163,9 @@ module Aws::RDS
|
|
16060
16163
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
16061
16164
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
16062
16165
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
16166
|
+
# resp.db_cluster.tag_list #=> Array
|
16167
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
16168
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
16063
16169
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
16064
16170
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
16065
16171
|
#
|
@@ -16073,23 +16179,23 @@ module Aws::RDS
|
|
16073
16179
|
end
|
16074
16180
|
|
16075
16181
|
# Creates a new DB instance from a DB snapshot. The target database is
|
16076
|
-
# created from the source database restore point with
|
16077
|
-
# original configuration
|
16078
|
-
# DB parameter group. By default, the new DB instance is created as
|
16079
|
-
#
|
16080
|
-
# that has an option group
|
16081
|
-
# case, the instance becomes a
|
16082
|
-
#
|
16182
|
+
# created from the source database restore point with most of the
|
16183
|
+
# source's original configuration, including the default security group
|
16184
|
+
# and DB parameter group. By default, the new DB instance is created as
|
16185
|
+
# a Single-AZ deployment, except when the instance is a SQL Server
|
16186
|
+
# instance that has an option group associated with mirroring. In this
|
16187
|
+
# case, the instance becomes a Multi-AZ deployment, not a Single-AZ
|
16188
|
+
# deployment.
|
16083
16189
|
#
|
16084
|
-
# If
|
16190
|
+
# If you want to replace your original DB instance with the new,
|
16085
16191
|
# restored DB instance, then rename your original DB instance before you
|
16086
16192
|
# call the RestoreDBInstanceFromDBSnapshot action. RDS doesn't allow
|
16087
|
-
# two DB instances with the same name.
|
16193
|
+
# two DB instances with the same name. After you have renamed your
|
16088
16194
|
# original DB instance with a different identifier, then you can pass
|
16089
16195
|
# the original name of the DB instance as the DBInstanceIdentifier in
|
16090
16196
|
# the call to the RestoreDBInstanceFromDBSnapshot action. The result is
|
16091
|
-
# that you
|
16092
|
-
#
|
16197
|
+
# that you replace the original DB instance with the DB instance created
|
16198
|
+
# from the snapshot.
|
16093
16199
|
#
|
16094
16200
|
# If you are restoring from a shared manual DB snapshot, the
|
16095
16201
|
# `DBSnapshotIdentifier` must be the ARN of the shared DB snapshot.
|
@@ -16320,8 +16426,7 @@ module Aws::RDS
|
|
16320
16426
|
# @option params [Boolean] :enable_iam_database_authentication
|
16321
16427
|
# A value that indicates whether to enable mapping of AWS Identity and
|
16322
16428
|
# Access Management (IAM) accounts to database accounts. By default,
|
16323
|
-
# mapping is disabled.
|
16324
|
-
# see CreateDBInstance.
|
16429
|
+
# mapping is disabled.
|
16325
16430
|
#
|
16326
16431
|
# For more information about IAM database authentication, see [ IAM
|
16327
16432
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -16335,11 +16440,11 @@ module Aws::RDS
|
|
16335
16440
|
# The list of logs that the restored DB instance is to export to
|
16336
16441
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
16337
16442
|
# used. For more information, see [Publishing Database Logs to Amazon
|
16338
|
-
# CloudWatch Logs][1] in the *Amazon
|
16443
|
+
# CloudWatch Logs][1] in the *Amazon RDS User Guide*.
|
16339
16444
|
#
|
16340
16445
|
#
|
16341
16446
|
#
|
16342
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
16447
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
16343
16448
|
#
|
16344
16449
|
# @option params [Array<Types::ProcessorFeature>] :processor_features
|
16345
16450
|
# The number of CPU cores and the number of threads per core for the DB
|
@@ -16635,6 +16740,11 @@ module Aws::RDS
|
|
16635
16740
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
16636
16741
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
16637
16742
|
# resp.db_instance.max_allocated_storage #=> Integer
|
16743
|
+
# resp.db_instance.tag_list #=> Array
|
16744
|
+
# resp.db_instance.tag_list[0].key #=> String
|
16745
|
+
# resp.db_instance.tag_list[0].value #=> String
|
16746
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
16747
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
16638
16748
|
#
|
16639
16749
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
16640
16750
|
#
|
@@ -16883,17 +16993,14 @@ module Aws::RDS
|
|
16883
16993
|
# @option params [String] :kms_key_id
|
16884
16994
|
# The AWS KMS key identifier for an encrypted DB instance.
|
16885
16995
|
#
|
16886
|
-
# The KMS key identifier is the
|
16887
|
-
#
|
16888
|
-
# account
|
16889
|
-
# instance, then you can use the KMS key alias instead of the ARN for
|
16890
|
-
# the KM encryption key.
|
16996
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
16997
|
+
# name for the AWS KMS customer master key (CMK). To use a CMK in a
|
16998
|
+
# different AWS account, specify the key ARN or alias ARN.
|
16891
16999
|
#
|
16892
17000
|
# If the `StorageEncrypted` parameter is enabled, and you do not specify
|
16893
17001
|
# a value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
16894
|
-
# default
|
16895
|
-
#
|
16896
|
-
# key for each AWS Region.
|
17002
|
+
# default CMK. There is a default CMK for your AWS account. Your AWS
|
17003
|
+
# account has a different default CMK for each AWS Region.
|
16897
17004
|
#
|
16898
17005
|
# @option params [Boolean] :copy_tags_to_snapshot
|
16899
17006
|
# A value that indicates whether to copy all tags from the DB instance
|
@@ -16928,8 +17035,7 @@ module Aws::RDS
|
|
16928
17035
|
# @option params [Boolean] :enable_iam_database_authentication
|
16929
17036
|
# A value that indicates whether to enable mapping of AWS Identity and
|
16930
17037
|
# Access Management (IAM) accounts to database accounts. By default,
|
16931
|
-
# mapping is disabled.
|
16932
|
-
# see CreateDBInstance.
|
17038
|
+
# mapping is disabled.
|
16933
17039
|
#
|
16934
17040
|
# For more information about IAM database authentication, see [ IAM
|
16935
17041
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -16975,13 +17081,15 @@ module Aws::RDS
|
|
16975
17081
|
#
|
16976
17082
|
# @option params [String] :performance_insights_kms_key_id
|
16977
17083
|
# The AWS KMS key identifier for encryption of Performance Insights
|
16978
|
-
# data.
|
16979
|
-
#
|
17084
|
+
# data.
|
17085
|
+
#
|
17086
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
17087
|
+
# name for the AWS KMS customer master key (CMK).
|
16980
17088
|
#
|
16981
17089
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
|
16982
|
-
# Amazon RDS uses your default
|
16983
|
-
#
|
16984
|
-
#
|
17090
|
+
# Amazon RDS uses your default CMK. There is a default CMK for your AWS
|
17091
|
+
# account. Your AWS account has a different default CMK for each AWS
|
17092
|
+
# Region.
|
16985
17093
|
#
|
16986
17094
|
# @option params [Integer] :performance_insights_retention_period
|
16987
17095
|
# The amount of time, in days, to retain Performance Insights data.
|
@@ -17015,6 +17123,10 @@ module Aws::RDS
|
|
17015
17123
|
#
|
17016
17124
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
17017
17125
|
#
|
17126
|
+
# @option params [Integer] :max_allocated_storage
|
17127
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
17128
|
+
# storage of the DB instance.
|
17129
|
+
#
|
17018
17130
|
# @return [Types::RestoreDBInstanceFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17019
17131
|
#
|
17020
17132
|
# * {Types::RestoreDBInstanceFromS3Result#db_instance #db_instance} => Types::DBInstance
|
@@ -17075,6 +17187,7 @@ module Aws::RDS
|
|
17075
17187
|
# ],
|
17076
17188
|
# use_default_processor_features: false,
|
17077
17189
|
# deletion_protection: false,
|
17190
|
+
# max_allocated_storage: 1,
|
17078
17191
|
# })
|
17079
17192
|
#
|
17080
17193
|
# @example Response structure
|
@@ -17195,6 +17308,11 @@ module Aws::RDS
|
|
17195
17308
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
17196
17309
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
17197
17310
|
# resp.db_instance.max_allocated_storage #=> Integer
|
17311
|
+
# resp.db_instance.tag_list #=> Array
|
17312
|
+
# resp.db_instance.tag_list[0].key #=> String
|
17313
|
+
# resp.db_instance.tag_list[0].value #=> String
|
17314
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
17315
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
17198
17316
|
#
|
17199
17317
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
17200
17318
|
#
|
@@ -17453,8 +17571,7 @@ module Aws::RDS
|
|
17453
17571
|
# @option params [Boolean] :enable_iam_database_authentication
|
17454
17572
|
# A value that indicates whether to enable mapping of AWS Identity and
|
17455
17573
|
# Access Management (IAM) accounts to database accounts. By default,
|
17456
|
-
# mapping is disabled.
|
17457
|
-
# see CreateDBInstance.
|
17574
|
+
# mapping is disabled.
|
17458
17575
|
#
|
17459
17576
|
# For more information about IAM database authentication, see [ IAM
|
17460
17577
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -17511,6 +17628,15 @@ module Aws::RDS
|
|
17511
17628
|
# @option params [String] :source_dbi_resource_id
|
17512
17629
|
# The resource ID of the source DB instance from which to restore.
|
17513
17630
|
#
|
17631
|
+
# @option params [Integer] :max_allocated_storage
|
17632
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
17633
|
+
# storage of the DB instance.
|
17634
|
+
#
|
17635
|
+
# @option params [String] :source_db_instance_automated_backups_arn
|
17636
|
+
# The Amazon Resource Name (ARN) of the replicated automated backups
|
17637
|
+
# from which to restore, for example,
|
17638
|
+
# `arn:aws:rds:useast-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
17639
|
+
#
|
17514
17640
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17515
17641
|
#
|
17516
17642
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
@@ -17655,6 +17781,8 @@ module Aws::RDS
|
|
17655
17781
|
# db_parameter_group_name: "String",
|
17656
17782
|
# deletion_protection: false,
|
17657
17783
|
# source_dbi_resource_id: "String",
|
17784
|
+
# max_allocated_storage: 1,
|
17785
|
+
# source_db_instance_automated_backups_arn: "String",
|
17658
17786
|
# })
|
17659
17787
|
#
|
17660
17788
|
# @example Response structure
|
@@ -17775,6 +17903,11 @@ module Aws::RDS
|
|
17775
17903
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
17776
17904
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
17777
17905
|
# resp.db_instance.max_allocated_storage #=> Integer
|
17906
|
+
# resp.db_instance.tag_list #=> Array
|
17907
|
+
# resp.db_instance.tag_list[0].key #=> String
|
17908
|
+
# resp.db_instance.tag_list[0].value #=> String
|
17909
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
17910
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
17778
17911
|
#
|
17779
17912
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
17780
17913
|
#
|
@@ -17883,7 +18016,7 @@ module Aws::RDS
|
|
17883
18016
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/DBActivityStreams.html
|
17884
18017
|
#
|
17885
18018
|
# @option params [required, String] :resource_arn
|
17886
|
-
# The Amazon Resource Name (ARN) of the DB cluster, for example
|
18019
|
+
# The Amazon Resource Name (ARN) of the DB cluster, for example,
|
17887
18020
|
# `arn:aws:rds:us-east-1:12345667890:cluster:das-cluster`.
|
17888
18021
|
#
|
17889
18022
|
# @option params [required, String] :mode
|
@@ -17894,8 +18027,8 @@ module Aws::RDS
|
|
17894
18027
|
#
|
17895
18028
|
# @option params [required, String] :kms_key_id
|
17896
18029
|
# The AWS KMS key identifier for encrypting messages in the database
|
17897
|
-
# activity stream. The key identifier
|
17898
|
-
# or
|
18030
|
+
# activity stream. The AWS KMS key identifier is the key ARN, key ID,
|
18031
|
+
# alias ARN, or alias name for the AWS KMS customer master key (CMK).
|
17899
18032
|
#
|
17900
18033
|
# @option params [Boolean] :apply_immediately
|
17901
18034
|
# Specifies whether or not the database activity stream is to start as
|
@@ -18042,6 +18175,9 @@ module Aws::RDS
|
|
18042
18175
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
18043
18176
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
18044
18177
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
18178
|
+
# resp.db_cluster.tag_list #=> Array
|
18179
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
18180
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
18045
18181
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
18046
18182
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
18047
18183
|
#
|
@@ -18201,6 +18337,11 @@ module Aws::RDS
|
|
18201
18337
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
18202
18338
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
18203
18339
|
# resp.db_instance.max_allocated_storage #=> Integer
|
18340
|
+
# resp.db_instance.tag_list #=> Array
|
18341
|
+
# resp.db_instance.tag_list[0].key #=> String
|
18342
|
+
# resp.db_instance.tag_list[0].value #=> String
|
18343
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
18344
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
18204
18345
|
#
|
18205
18346
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
18206
18347
|
#
|
@@ -18211,6 +18352,95 @@ module Aws::RDS
|
|
18211
18352
|
req.send_request(options)
|
18212
18353
|
end
|
18213
18354
|
|
18355
|
+
# Enables replication of automated backups to a different AWS Region.
|
18356
|
+
#
|
18357
|
+
# For more information, see [ Replicating Automated Backups to Another
|
18358
|
+
# AWS Region][1] in the *Amazon RDS User Guide.*
|
18359
|
+
#
|
18360
|
+
#
|
18361
|
+
#
|
18362
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReplicateBackups.html
|
18363
|
+
#
|
18364
|
+
# @option params [required, String] :source_db_instance_arn
|
18365
|
+
# The Amazon Resource Name (ARN) of the source DB instance for the
|
18366
|
+
# replicated automated backups, for example,
|
18367
|
+
# `arn:aws:rds:us-west-2:123456789012:db:mydatabase`.
|
18368
|
+
#
|
18369
|
+
# @option params [Integer] :backup_retention_period
|
18370
|
+
# The retention period for the replicated automated backups.
|
18371
|
+
#
|
18372
|
+
# @option params [String] :kms_key_id
|
18373
|
+
# The AWS KMS key identifier for encryption of the replicated automated
|
18374
|
+
# backups. The KMS key ID is the Amazon Resource Name (ARN) for the KMS
|
18375
|
+
# encryption key in the destination AWS Region, for example,
|
18376
|
+
# `arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE`.
|
18377
|
+
#
|
18378
|
+
# @option params [String] :pre_signed_url
|
18379
|
+
# A URL that contains a Signature Version 4 signed request for the
|
18380
|
+
# StartDBInstanceAutomatedBackupsReplication action to be called in the
|
18381
|
+
# AWS Region of the source DB instance. The presigned URL must be a
|
18382
|
+
# valid request for the StartDBInstanceAutomatedBackupsReplication API
|
18383
|
+
# action that can be executed in the AWS Region that contains the source
|
18384
|
+
# DB instance.
|
18385
|
+
#
|
18386
|
+
# @option params [String] :source_region
|
18387
|
+
# The source region of the snapshot. This is only needed when the
|
18388
|
+
# shapshot is encrypted and in a different region.
|
18389
|
+
#
|
18390
|
+
# @return [Types::StartDBInstanceAutomatedBackupsReplicationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
18391
|
+
#
|
18392
|
+
# * {Types::StartDBInstanceAutomatedBackupsReplicationResult#db_instance_automated_backup #db_instance_automated_backup} => Types::DBInstanceAutomatedBackup
|
18393
|
+
#
|
18394
|
+
# @example Request syntax with placeholder values
|
18395
|
+
#
|
18396
|
+
# resp = client.start_db_instance_automated_backups_replication({
|
18397
|
+
# source_db_instance_arn: "String", # required
|
18398
|
+
# backup_retention_period: 1,
|
18399
|
+
# kms_key_id: "String",
|
18400
|
+
# pre_signed_url: "String",
|
18401
|
+
# source_region: "String",
|
18402
|
+
# })
|
18403
|
+
#
|
18404
|
+
# @example Response structure
|
18405
|
+
#
|
18406
|
+
# resp.db_instance_automated_backup.db_instance_arn #=> String
|
18407
|
+
# resp.db_instance_automated_backup.dbi_resource_id #=> String
|
18408
|
+
# resp.db_instance_automated_backup.region #=> String
|
18409
|
+
# resp.db_instance_automated_backup.db_instance_identifier #=> String
|
18410
|
+
# resp.db_instance_automated_backup.restore_window.earliest_time #=> Time
|
18411
|
+
# resp.db_instance_automated_backup.restore_window.latest_time #=> Time
|
18412
|
+
# resp.db_instance_automated_backup.allocated_storage #=> Integer
|
18413
|
+
# resp.db_instance_automated_backup.status #=> String
|
18414
|
+
# resp.db_instance_automated_backup.port #=> Integer
|
18415
|
+
# resp.db_instance_automated_backup.availability_zone #=> String
|
18416
|
+
# resp.db_instance_automated_backup.vpc_id #=> String
|
18417
|
+
# resp.db_instance_automated_backup.instance_create_time #=> Time
|
18418
|
+
# resp.db_instance_automated_backup.master_username #=> String
|
18419
|
+
# resp.db_instance_automated_backup.engine #=> String
|
18420
|
+
# resp.db_instance_automated_backup.engine_version #=> String
|
18421
|
+
# resp.db_instance_automated_backup.license_model #=> String
|
18422
|
+
# resp.db_instance_automated_backup.iops #=> Integer
|
18423
|
+
# resp.db_instance_automated_backup.option_group_name #=> String
|
18424
|
+
# resp.db_instance_automated_backup.tde_credential_arn #=> String
|
18425
|
+
# resp.db_instance_automated_backup.encrypted #=> Boolean
|
18426
|
+
# resp.db_instance_automated_backup.storage_type #=> String
|
18427
|
+
# resp.db_instance_automated_backup.kms_key_id #=> String
|
18428
|
+
# resp.db_instance_automated_backup.timezone #=> String
|
18429
|
+
# resp.db_instance_automated_backup.iam_database_authentication_enabled #=> Boolean
|
18430
|
+
# resp.db_instance_automated_backup.backup_retention_period #=> Integer
|
18431
|
+
# resp.db_instance_automated_backup.db_instance_automated_backups_arn #=> String
|
18432
|
+
# resp.db_instance_automated_backup.db_instance_automated_backups_replications #=> Array
|
18433
|
+
# resp.db_instance_automated_backup.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
18434
|
+
#
|
18435
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstanceAutomatedBackupsReplication AWS API Documentation
|
18436
|
+
#
|
18437
|
+
# @overload start_db_instance_automated_backups_replication(params = {})
|
18438
|
+
# @param [Hash] params ({})
|
18439
|
+
def start_db_instance_automated_backups_replication(params = {}, options = {})
|
18440
|
+
req = build_request(:start_db_instance_automated_backups_replication, params)
|
18441
|
+
req.send_request(options)
|
18442
|
+
end
|
18443
|
+
|
18214
18444
|
# Starts an export of a snapshot to Amazon S3. The provided IAM role
|
18215
18445
|
# must have access to the S3 bucket.
|
18216
18446
|
#
|
@@ -18230,11 +18460,11 @@ module Aws::RDS
|
|
18230
18460
|
# when exporting a snapshot.
|
18231
18461
|
#
|
18232
18462
|
# @option params [required, String] :kms_key_id
|
18233
|
-
# The ID of the AWS KMS key to use to encrypt the
|
18234
|
-
# Amazon S3. The KMS key
|
18235
|
-
# key
|
18236
|
-
# caller of this operation must be authorized to execute
|
18237
|
-
# operations. These can be set in the KMS key policy:
|
18463
|
+
# The ID of the AWS KMS customer master key (CMK) to use to encrypt the
|
18464
|
+
# snapshot exported to Amazon S3. The AWS KMS key identifier is the key
|
18465
|
+
# ARN, key ID, alias ARN, or alias name for the AWS KMS customer master
|
18466
|
+
# key (CMK). The caller of this operation must be authorized to execute
|
18467
|
+
# the following operations. These can be set in the AWS KMS key policy:
|
18238
18468
|
#
|
18239
18469
|
# * GrantOperation.Encrypt
|
18240
18470
|
#
|
@@ -18491,6 +18721,9 @@ module Aws::RDS
|
|
18491
18721
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
18492
18722
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
18493
18723
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
18724
|
+
# resp.db_cluster.tag_list #=> Array
|
18725
|
+
# resp.db_cluster.tag_list[0].key #=> String
|
18726
|
+
# resp.db_cluster.tag_list[0].value #=> String
|
18494
18727
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
18495
18728
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
18496
18729
|
#
|
@@ -18657,6 +18890,11 @@ module Aws::RDS
|
|
18657
18890
|
# resp.db_instance.listener_endpoint.port #=> Integer
|
18658
18891
|
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
18659
18892
|
# resp.db_instance.max_allocated_storage #=> Integer
|
18893
|
+
# resp.db_instance.tag_list #=> Array
|
18894
|
+
# resp.db_instance.tag_list[0].key #=> String
|
18895
|
+
# resp.db_instance.tag_list[0].value #=> String
|
18896
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
18897
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
18660
18898
|
#
|
18661
18899
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
18662
18900
|
#
|
@@ -18667,6 +18905,70 @@ module Aws::RDS
|
|
18667
18905
|
req.send_request(options)
|
18668
18906
|
end
|
18669
18907
|
|
18908
|
+
# Stops automated backup replication for a DB instance.
|
18909
|
+
#
|
18910
|
+
# For more information, see [ Replicating Automated Backups to Another
|
18911
|
+
# AWS Region][1] in the *Amazon RDS User Guide.*
|
18912
|
+
#
|
18913
|
+
#
|
18914
|
+
#
|
18915
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReplicateBackups.html
|
18916
|
+
#
|
18917
|
+
# @option params [required, String] :source_db_instance_arn
|
18918
|
+
# The Amazon Resource Name (ARN) of the source DB instance for which to
|
18919
|
+
# stop replicating automated backups, for example,
|
18920
|
+
# `arn:aws:rds:us-west-2:123456789012:db:mydatabase`.
|
18921
|
+
#
|
18922
|
+
# @return [Types::StopDBInstanceAutomatedBackupsReplicationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
18923
|
+
#
|
18924
|
+
# * {Types::StopDBInstanceAutomatedBackupsReplicationResult#db_instance_automated_backup #db_instance_automated_backup} => Types::DBInstanceAutomatedBackup
|
18925
|
+
#
|
18926
|
+
# @example Request syntax with placeholder values
|
18927
|
+
#
|
18928
|
+
# resp = client.stop_db_instance_automated_backups_replication({
|
18929
|
+
# source_db_instance_arn: "String", # required
|
18930
|
+
# })
|
18931
|
+
#
|
18932
|
+
# @example Response structure
|
18933
|
+
#
|
18934
|
+
# resp.db_instance_automated_backup.db_instance_arn #=> String
|
18935
|
+
# resp.db_instance_automated_backup.dbi_resource_id #=> String
|
18936
|
+
# resp.db_instance_automated_backup.region #=> String
|
18937
|
+
# resp.db_instance_automated_backup.db_instance_identifier #=> String
|
18938
|
+
# resp.db_instance_automated_backup.restore_window.earliest_time #=> Time
|
18939
|
+
# resp.db_instance_automated_backup.restore_window.latest_time #=> Time
|
18940
|
+
# resp.db_instance_automated_backup.allocated_storage #=> Integer
|
18941
|
+
# resp.db_instance_automated_backup.status #=> String
|
18942
|
+
# resp.db_instance_automated_backup.port #=> Integer
|
18943
|
+
# resp.db_instance_automated_backup.availability_zone #=> String
|
18944
|
+
# resp.db_instance_automated_backup.vpc_id #=> String
|
18945
|
+
# resp.db_instance_automated_backup.instance_create_time #=> Time
|
18946
|
+
# resp.db_instance_automated_backup.master_username #=> String
|
18947
|
+
# resp.db_instance_automated_backup.engine #=> String
|
18948
|
+
# resp.db_instance_automated_backup.engine_version #=> String
|
18949
|
+
# resp.db_instance_automated_backup.license_model #=> String
|
18950
|
+
# resp.db_instance_automated_backup.iops #=> Integer
|
18951
|
+
# resp.db_instance_automated_backup.option_group_name #=> String
|
18952
|
+
# resp.db_instance_automated_backup.tde_credential_arn #=> String
|
18953
|
+
# resp.db_instance_automated_backup.encrypted #=> Boolean
|
18954
|
+
# resp.db_instance_automated_backup.storage_type #=> String
|
18955
|
+
# resp.db_instance_automated_backup.kms_key_id #=> String
|
18956
|
+
# resp.db_instance_automated_backup.timezone #=> String
|
18957
|
+
# resp.db_instance_automated_backup.iam_database_authentication_enabled #=> Boolean
|
18958
|
+
# resp.db_instance_automated_backup.backup_retention_period #=> Integer
|
18959
|
+
# resp.db_instance_automated_backup.db_instance_automated_backups_arn #=> String
|
18960
|
+
# resp.db_instance_automated_backup.db_instance_automated_backups_replications #=> Array
|
18961
|
+
# resp.db_instance_automated_backup.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
18962
|
+
#
|
18963
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstanceAutomatedBackupsReplication AWS API Documentation
|
18964
|
+
#
|
18965
|
+
# @overload stop_db_instance_automated_backups_replication(params = {})
|
18966
|
+
# @param [Hash] params ({})
|
18967
|
+
def stop_db_instance_automated_backups_replication(params = {}, options = {})
|
18968
|
+
req = build_request(:stop_db_instance_automated_backups_replication, params)
|
18969
|
+
req.send_request(options)
|
18970
|
+
end
|
18971
|
+
|
18670
18972
|
# @!endgroup
|
18671
18973
|
|
18672
18974
|
# @param params ({})
|
@@ -18680,7 +18982,7 @@ module Aws::RDS
|
|
18680
18982
|
params: params,
|
18681
18983
|
config: config)
|
18682
18984
|
context[:gem_name] = 'aws-sdk-rds'
|
18683
|
-
context[:gem_version] = '1.
|
18985
|
+
context[:gem_version] = '1.107.0'
|
18684
18986
|
Seahorse::Client::Request.new(handlers, context)
|
18685
18987
|
end
|
18686
18988
|
|