aws-sdk-rds 1.105.0 → 1.110.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +638 -195
- data/lib/aws-sdk-rds/client_api.rb +80 -5
- data/lib/aws-sdk-rds/db_cluster.rb +38 -30
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +23 -22
- data/lib/aws-sdk-rds/db_instance.rb +175 -67
- data/lib/aws-sdk-rds/db_snapshot.rb +45 -17
- data/lib/aws-sdk-rds/plugins/cross_region_copying.rb +11 -12
- data/lib/aws-sdk-rds/resource.rb +61 -45
- data/lib/aws-sdk-rds/types.rb +646 -238
- 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: 95692588ef25f77efd969902e453a35014001f21f83f49456ef86584cc2f00a8
|
4
|
+
data.tar.gz: f32fbc4bc31ab6636ff042080724eced46415b8eed5ef8c5d545786396bd1fbb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5812bddc8f548a76b4e89b43c22bccd0d9d9626094e58669073e44f3c49361b6984eef45fc1fcef0d4c9eddcd5b5409bc46dd6fc797c5d55a90c7de8711d13db
|
7
|
+
data.tar.gz: 32957c7de01e4dbe93d05978f367e0ef89ac28df90da632b71ef5b4b6d7c159adb742ce2505faf4d5dfbbab512125904921ae984ab6356d42212bdf24006259f
|
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
|
#
|
@@ -1448,14 +1449,14 @@ module Aws::RDS
|
|
1448
1449
|
# Example: `my-db-snapshot`
|
1449
1450
|
#
|
1450
1451
|
# @option params [String] :kms_key_id
|
1451
|
-
# The AWS KMS key
|
1452
|
-
#
|
1453
|
-
#
|
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).
|
1454
1455
|
#
|
1455
1456
|
# If you copy an encrypted DB snapshot from your AWS account, you can
|
1456
|
-
# specify a value for this parameter to encrypt the copy with a new
|
1457
|
-
#
|
1458
|
-
#
|
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
|
1459
1460
|
# source DB snapshot.
|
1460
1461
|
#
|
1461
1462
|
# If you copy an encrypted DB snapshot that is shared from another AWS
|
@@ -1465,9 +1466,9 @@ module Aws::RDS
|
|
1465
1466
|
# the copy is encrypted.
|
1466
1467
|
#
|
1467
1468
|
# If you copy an encrypted snapshot to a different AWS Region, then you
|
1468
|
-
# must specify a KMS key for the destination AWS Region.
|
1469
|
-
#
|
1470
|
-
# 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.
|
1471
1472
|
#
|
1472
1473
|
# @option params [Array<Types::Tag>] :tags
|
1473
1474
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
@@ -1507,11 +1508,11 @@ module Aws::RDS
|
|
1507
1508
|
# the us-west-2 AWS Region. For this example, the `DestinationRegion`
|
1508
1509
|
# in the presigned URL must be set to the us-east-1 AWS Region.
|
1509
1510
|
#
|
1510
|
-
# * `KmsKeyId` - The AWS KMS key identifier for the
|
1511
|
-
# encrypt the copy of the DB snapshot in the
|
1512
|
-
# This is the same identifier for both the
|
1513
|
-
# that is called in the destination AWS
|
1514
|
-
# 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.
|
1515
1516
|
#
|
1516
1517
|
# * `SourceDBSnapshotIdentifier` - The DB snapshot identifier for the
|
1517
1518
|
# encrypted snapshot to be copied. This identifier must be in the
|
@@ -1546,13 +1547,19 @@ module Aws::RDS
|
|
1546
1547
|
# to another, and your DB instance uses a nondefault option group. If
|
1547
1548
|
# your source DB instance uses Transparent Data Encryption for Oracle or
|
1548
1549
|
# Microsoft SQL Server, you must specify this option when copying across
|
1549
|
-
# AWS Regions. For more information, see [Option
|
1550
|
-
#
|
1550
|
+
# AWS Regions. For more information, see [Option group
|
1551
|
+
# considerations][1] in the *Amazon RDS User Guide.*
|
1551
1552
|
#
|
1552
1553
|
#
|
1553
1554
|
#
|
1554
1555
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#USER_CopySnapshot.Options
|
1555
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
|
+
#
|
1556
1563
|
# @option params [String] :source_region
|
1557
1564
|
# The source region of the snapshot. This is only needed when the
|
1558
1565
|
# shapshot is encrypted and in a different region.
|
@@ -1592,6 +1599,7 @@ module Aws::RDS
|
|
1592
1599
|
# copy_tags: false,
|
1593
1600
|
# pre_signed_url: "String",
|
1594
1601
|
# option_group_name: "String",
|
1602
|
+
# target_custom_availability_zone: "String",
|
1595
1603
|
# source_region: "String",
|
1596
1604
|
# })
|
1597
1605
|
#
|
@@ -1759,8 +1767,8 @@ module Aws::RDS
|
|
1759
1767
|
# A custom AZ is an on-premises AZ that is integrated with a VMware
|
1760
1768
|
# vSphere cluster.
|
1761
1769
|
#
|
1762
|
-
# For more information about RDS on VMware, see the [
|
1763
|
-
#
|
1770
|
+
# For more information about RDS on VMware, see the [ RDS on VMware User
|
1771
|
+
# Guide.][1]
|
1764
1772
|
#
|
1765
1773
|
#
|
1766
1774
|
#
|
@@ -2030,30 +2038,27 @@ module Aws::RDS
|
|
2030
2038
|
# @option params [String] :kms_key_id
|
2031
2039
|
# The AWS KMS key identifier for an encrypted DB cluster.
|
2032
2040
|
#
|
2033
|
-
# The KMS key identifier is the
|
2034
|
-
#
|
2035
|
-
# account
|
2036
|
-
# cluster, then you can use the KMS key alias instead of the ARN for the
|
2037
|
-
# 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.
|
2038
2044
|
#
|
2039
|
-
#
|
2045
|
+
# When a CMK isn't specified in `KmsKeyId`\:
|
2040
2046
|
#
|
2041
2047
|
# * If `ReplicationSourceIdentifier` identifies an encrypted source,
|
2042
|
-
# then Amazon RDS will use the
|
2043
|
-
#
|
2048
|
+
# then Amazon RDS will use the CMK used to encrypt the source.
|
2049
|
+
# Otherwise, Amazon RDS will use your default CMK.
|
2044
2050
|
#
|
2045
2051
|
# * If the `StorageEncrypted` parameter is enabled and
|
2046
2052
|
# `ReplicationSourceIdentifier` isn't specified, then Amazon RDS will
|
2047
|
-
# use your default
|
2053
|
+
# use your default CMK.
|
2048
2054
|
#
|
2049
|
-
#
|
2050
|
-
#
|
2051
|
-
# Region.
|
2055
|
+
# There is a default CMK for your AWS account. Your AWS account has a
|
2056
|
+
# different default CMK for each AWS Region.
|
2052
2057
|
#
|
2053
2058
|
# If you create a read replica of an encrypted DB cluster in another AWS
|
2054
|
-
# Region, you must set `KmsKeyId` to a KMS key
|
2055
|
-
# destination AWS Region. This
|
2056
|
-
# 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.
|
2057
2062
|
#
|
2058
2063
|
# @option params [String] :pre_signed_url
|
2059
2064
|
# A URL that contains a Signature Version 4 signed request for the
|
@@ -2071,9 +2076,9 @@ module Aws::RDS
|
|
2071
2076
|
#
|
2072
2077
|
# * `KmsKeyId` - The AWS KMS key identifier for the key to use to
|
2073
2078
|
# encrypt the copy of the DB cluster in the destination AWS Region.
|
2074
|
-
# This should refer to the same KMS
|
2075
|
-
# action that is called in the destination AWS
|
2076
|
-
# 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.
|
2077
2082
|
#
|
2078
2083
|
# * `DestinationRegion` - The name of the AWS Region that Aurora read
|
2079
2084
|
# replica will be created in.
|
@@ -2413,6 +2418,14 @@ module Aws::RDS
|
|
2413
2418
|
# resp.db_cluster.tag_list[0].value #=> String
|
2414
2419
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
2415
2420
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
2421
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
2422
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
2423
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
2424
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
2425
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
2426
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
2427
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
2428
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
2416
2429
|
#
|
2417
2430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
|
2418
2431
|
#
|
@@ -2780,8 +2793,8 @@ module Aws::RDS
|
|
2780
2793
|
# **PostgreSQL**
|
2781
2794
|
#
|
2782
2795
|
# The name of the database to create when the DB instance is created. If
|
2783
|
-
# this parameter isn't specified,
|
2784
|
-
#
|
2796
|
+
# this parameter isn't specified, no database is created in the DB
|
2797
|
+
# instance.
|
2785
2798
|
#
|
2786
2799
|
# Constraints:
|
2787
2800
|
#
|
@@ -3101,8 +3114,8 @@ module Aws::RDS
|
|
3101
3114
|
# specify the identifier of the custom Availability Zone to create the
|
3102
3115
|
# DB instance in.
|
3103
3116
|
#
|
3104
|
-
# For more information about RDS on VMware, see the [
|
3105
|
-
#
|
3117
|
+
# For more information about RDS on VMware, see the [ RDS on VMware User
|
3118
|
+
# Guide.][2]
|
3106
3119
|
#
|
3107
3120
|
# </note>
|
3108
3121
|
#
|
@@ -3286,8 +3299,8 @@ module Aws::RDS
|
|
3286
3299
|
#
|
3287
3300
|
# **PostgreSQL**
|
3288
3301
|
#
|
3289
|
-
# See [
|
3290
|
-
# User Guide.*
|
3302
|
+
# See [Amazon RDS for PostgreSQL versions and extensions][5] in the
|
3303
|
+
# *Amazon RDS User Guide.*
|
3291
3304
|
#
|
3292
3305
|
#
|
3293
3306
|
#
|
@@ -3295,7 +3308,7 @@ module Aws::RDS
|
|
3295
3308
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
3296
3309
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
3297
3310
|
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
|
3298
|
-
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts
|
3311
|
+
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts
|
3299
3312
|
#
|
3300
3313
|
# @option params [Boolean] :auto_minor_version_upgrade
|
3301
3314
|
# A value that indicates whether minor engine upgrades are applied
|
@@ -3324,8 +3337,8 @@ module Aws::RDS
|
|
3324
3337
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
3325
3338
|
#
|
3326
3339
|
# @option params [String] :option_group_name
|
3327
|
-
#
|
3328
|
-
# option group.
|
3340
|
+
# A value that indicates that the DB instance should be associated with
|
3341
|
+
# the specified option group.
|
3329
3342
|
#
|
3330
3343
|
# Permanent options, such as the TDE option for Oracle Advanced Security
|
3331
3344
|
# TDE, can't be removed from an option group. Also, that option group
|
@@ -3414,22 +3427,19 @@ module Aws::RDS
|
|
3414
3427
|
# @option params [String] :kms_key_id
|
3415
3428
|
# The AWS KMS key identifier for an encrypted DB instance.
|
3416
3429
|
#
|
3417
|
-
# The KMS key identifier is the
|
3418
|
-
#
|
3419
|
-
# account
|
3420
|
-
# instance, then you can use the KMS key alias instead of the ARN for
|
3421
|
-
# the KM encryption key.
|
3430
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
3431
|
+
# name for the AWS KMS customer master key (CMK). To use a CMK in a
|
3432
|
+
# different AWS account, specify the key ARN or alias ARN.
|
3422
3433
|
#
|
3423
3434
|
# **Amazon Aurora**
|
3424
3435
|
#
|
3425
|
-
# Not applicable. The KMS key identifier is managed by the DB
|
3426
|
-
# For more information, see `CreateDBCluster`.
|
3436
|
+
# Not applicable. The AWS KMS key identifier is managed by the DB
|
3437
|
+
# cluster. For more information, see `CreateDBCluster`.
|
3427
3438
|
#
|
3428
3439
|
# If `StorageEncrypted` is enabled, and you do not specify a value for
|
3429
|
-
# the `KmsKeyId` parameter, then Amazon RDS
|
3430
|
-
#
|
3431
|
-
#
|
3432
|
-
# for each AWS Region.
|
3440
|
+
# the `KmsKeyId` parameter, then Amazon RDS uses your default CMK. There
|
3441
|
+
# is a default CMK for your AWS account. Your AWS account has a
|
3442
|
+
# different default CMK for each AWS Region.
|
3433
3443
|
#
|
3434
3444
|
# @option params [String] :domain
|
3435
3445
|
# The Active Directory directory ID to create the DB instance in.
|
@@ -3531,13 +3541,15 @@ module Aws::RDS
|
|
3531
3541
|
#
|
3532
3542
|
# @option params [String] :performance_insights_kms_key_id
|
3533
3543
|
# The AWS KMS key identifier for encryption of Performance Insights
|
3534
|
-
# data.
|
3535
|
-
#
|
3544
|
+
# data.
|
3545
|
+
#
|
3546
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
3547
|
+
# name for the AWS KMS customer master key (CMK).
|
3536
3548
|
#
|
3537
3549
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
|
3538
|
-
# Amazon RDS uses your default
|
3539
|
-
#
|
3540
|
-
#
|
3550
|
+
# Amazon RDS uses your default CMK. There is a default CMK for your AWS
|
3551
|
+
# account. Your AWS account has a different default CMK for each AWS
|
3552
|
+
# Region.
|
3541
3553
|
#
|
3542
3554
|
# @option params [Integer] :performance_insights_retention_period
|
3543
3555
|
# The amount of time, in days, to retain Performance Insights data.
|
@@ -3568,7 +3580,8 @@ module Aws::RDS
|
|
3568
3580
|
#
|
3569
3581
|
# **Oracle**
|
3570
3582
|
#
|
3571
|
-
# Possible values are `alert`, `audit`, `listener`,
|
3583
|
+
# Possible values are `alert`, `audit`, `listener`, `trace`, and
|
3584
|
+
# `oemagent`.
|
3572
3585
|
#
|
3573
3586
|
# **PostgreSQL**
|
3574
3587
|
#
|
@@ -3603,6 +3616,26 @@ module Aws::RDS
|
|
3603
3616
|
# The upper limit to which Amazon RDS can automatically scale the
|
3604
3617
|
# storage of the DB instance.
|
3605
3618
|
#
|
3619
|
+
# @option params [Boolean] :enable_customer_owned_ip
|
3620
|
+
# A value that indicates whether to enable a customer-owned IP address
|
3621
|
+
# (CoIP) for an RDS on Outposts DB instance.
|
3622
|
+
#
|
3623
|
+
# A *CoIP* provides local or external connectivity to resources in your
|
3624
|
+
# Outpost subnets through your on-premises network. For some use cases,
|
3625
|
+
# a CoIP can provide lower latency for connections to the DB instance
|
3626
|
+
# from outside of its virtual private cloud (VPC) on your local network.
|
3627
|
+
#
|
3628
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
3629
|
+
# RDS on AWS Outposts][1] in the *Amazon RDS User Guide*.
|
3630
|
+
#
|
3631
|
+
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
3632
|
+
# in the *AWS Outposts User Guide*.
|
3633
|
+
#
|
3634
|
+
#
|
3635
|
+
#
|
3636
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
3637
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
3638
|
+
#
|
3606
3639
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3607
3640
|
#
|
3608
3641
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -3687,6 +3720,7 @@ module Aws::RDS
|
|
3687
3720
|
# ],
|
3688
3721
|
# deletion_protection: false,
|
3689
3722
|
# max_allocated_storage: 1,
|
3723
|
+
# enable_customer_owned_ip: false,
|
3690
3724
|
# })
|
3691
3725
|
#
|
3692
3726
|
# @example Response structure
|
@@ -3745,6 +3779,7 @@ module Aws::RDS
|
|
3745
3779
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
3746
3780
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
3747
3781
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
3782
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
3748
3783
|
# resp.db_instance.latest_restorable_time #=> Time
|
3749
3784
|
# resp.db_instance.multi_az #=> Boolean
|
3750
3785
|
# resp.db_instance.engine_version #=> String
|
@@ -3810,6 +3845,9 @@ module Aws::RDS
|
|
3810
3845
|
# resp.db_instance.tag_list #=> Array
|
3811
3846
|
# resp.db_instance.tag_list[0].key #=> String
|
3812
3847
|
# resp.db_instance.tag_list[0].value #=> String
|
3848
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
3849
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
3850
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
3813
3851
|
#
|
3814
3852
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
3815
3853
|
#
|
@@ -4060,20 +4098,21 @@ module Aws::RDS
|
|
4060
4098
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole
|
4061
4099
|
#
|
4062
4100
|
# @option params [String] :kms_key_id
|
4063
|
-
# The AWS KMS key
|
4064
|
-
#
|
4065
|
-
#
|
4101
|
+
# The AWS KMS key identifier for an encrypted read replica.
|
4102
|
+
#
|
4103
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
4104
|
+
# name for the AWS KMS CMK.
|
4066
4105
|
#
|
4067
4106
|
# If you create an encrypted read replica in the same AWS Region as the
|
4068
|
-
# source DB instance, then
|
4069
|
-
#
|
4070
|
-
# source DB instance.
|
4107
|
+
# source DB instance, then do not specify a value for this parameter. A
|
4108
|
+
# read replica in the same Region is always encrypted with the same AWS
|
4109
|
+
# KMS CMK as the source DB instance.
|
4071
4110
|
#
|
4072
4111
|
# If you create an encrypted read replica in a different AWS Region,
|
4073
|
-
# then you must specify a KMS key for the destination AWS
|
4074
|
-
#
|
4075
|
-
# in, and you can't use
|
4076
|
-
#
|
4112
|
+
# then you must specify a AWS KMS key identifier for the destination AWS
|
4113
|
+
# Region. AWS KMS CMKs are specific to the AWS Region that they are
|
4114
|
+
# created in, and you can't use CMKs from one AWS Region in another AWS
|
4115
|
+
# Region.
|
4077
4116
|
#
|
4078
4117
|
# You can't create an encrypted read replica from an unencrypted DB
|
4079
4118
|
# instance.
|
@@ -4166,13 +4205,15 @@ module Aws::RDS
|
|
4166
4205
|
#
|
4167
4206
|
# @option params [String] :performance_insights_kms_key_id
|
4168
4207
|
# The AWS KMS key identifier for encryption of Performance Insights
|
4169
|
-
# data.
|
4170
|
-
#
|
4208
|
+
# data.
|
4209
|
+
#
|
4210
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
4211
|
+
# name for the AWS KMS customer master key (CMK).
|
4171
4212
|
#
|
4172
4213
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
|
4173
|
-
# Amazon RDS uses your default
|
4174
|
-
#
|
4175
|
-
#
|
4214
|
+
# Amazon RDS uses your default CMK. There is a default CMK for your AWS
|
4215
|
+
# account. Your AWS account has a different default CMK for each AWS
|
4216
|
+
# Region.
|
4176
4217
|
#
|
4177
4218
|
# @option params [Integer] :performance_insights_retention_period
|
4178
4219
|
# The amount of time, in days, to retain Performance Insights data.
|
@@ -4387,6 +4428,7 @@ module Aws::RDS
|
|
4387
4428
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
4388
4429
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
4389
4430
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
4431
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
4390
4432
|
# resp.db_instance.latest_restorable_time #=> Time
|
4391
4433
|
# resp.db_instance.multi_az #=> Boolean
|
4392
4434
|
# resp.db_instance.engine_version #=> String
|
@@ -4452,6 +4494,9 @@ module Aws::RDS
|
|
4452
4494
|
# resp.db_instance.tag_list #=> Array
|
4453
4495
|
# resp.db_instance.tag_list[0].key #=> String
|
4454
4496
|
# resp.db_instance.tag_list[0].value #=> String
|
4497
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
4498
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
4499
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
4455
4500
|
#
|
4456
4501
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
4457
4502
|
#
|
@@ -4783,7 +4828,7 @@ module Aws::RDS
|
|
4783
4828
|
end
|
4784
4829
|
|
4785
4830
|
# Creates a snapshot of a DB instance. The source DB instance must be in
|
4786
|
-
# the `available` or `storage-optimization`state.
|
4831
|
+
# the `available` or `storage-optimization` state.
|
4787
4832
|
#
|
4788
4833
|
# @option params [required, String] :db_snapshot_identifier
|
4789
4834
|
# The identifier for the DB snapshot.
|
@@ -5343,8 +5388,8 @@ module Aws::RDS
|
|
5343
5388
|
# A custom AZ is an on-premises AZ that is integrated with a VMware
|
5344
5389
|
# vSphere cluster.
|
5345
5390
|
#
|
5346
|
-
# For more information about RDS on VMware, see the [
|
5347
|
-
#
|
5391
|
+
# For more information about RDS on VMware, see the [ RDS on VMware User
|
5392
|
+
# Guide.][1]
|
5348
5393
|
#
|
5349
5394
|
#
|
5350
5395
|
#
|
@@ -5553,6 +5598,14 @@ module Aws::RDS
|
|
5553
5598
|
# resp.db_cluster.tag_list[0].value #=> String
|
5554
5599
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
5555
5600
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
5601
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
5602
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
5603
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
5604
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
5605
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
5606
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
5607
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
5608
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
5556
5609
|
#
|
5557
5610
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
5558
5611
|
#
|
@@ -5924,6 +5977,7 @@ module Aws::RDS
|
|
5924
5977
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
5925
5978
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
5926
5979
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
5980
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
5927
5981
|
# resp.db_instance.latest_restorable_time #=> Time
|
5928
5982
|
# resp.db_instance.multi_az #=> Boolean
|
5929
5983
|
# resp.db_instance.engine_version #=> String
|
@@ -5989,6 +6043,9 @@ module Aws::RDS
|
|
5989
6043
|
# resp.db_instance.tag_list #=> Array
|
5990
6044
|
# resp.db_instance.tag_list[0].key #=> String
|
5991
6045
|
# resp.db_instance.tag_list[0].value #=> String
|
6046
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
6047
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
6048
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
5992
6049
|
#
|
5993
6050
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
5994
6051
|
#
|
@@ -5999,13 +6056,19 @@ module Aws::RDS
|
|
5999
6056
|
req.send_request(options)
|
6000
6057
|
end
|
6001
6058
|
|
6002
|
-
# Deletes automated backups
|
6003
|
-
#
|
6059
|
+
# Deletes automated backups using the `DbiResourceId` value of the
|
6060
|
+
# source DB instance or the Amazon Resource Name (ARN) of the automated
|
6061
|
+
# backups.
|
6004
6062
|
#
|
6005
|
-
# @option params [
|
6063
|
+
# @option params [String] :dbi_resource_id
|
6006
6064
|
# The identifier for the source DB instance, which can't be changed and
|
6007
6065
|
# which is unique to an AWS Region.
|
6008
6066
|
#
|
6067
|
+
# @option params [String] :db_instance_automated_backups_arn
|
6068
|
+
# The Amazon Resource Name (ARN) of the automated backups to delete, for
|
6069
|
+
# example,
|
6070
|
+
# `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
6071
|
+
#
|
6009
6072
|
# @return [Types::DeleteDBInstanceAutomatedBackupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6010
6073
|
#
|
6011
6074
|
# * {Types::DeleteDBInstanceAutomatedBackupResult#db_instance_automated_backup #db_instance_automated_backup} => Types::DBInstanceAutomatedBackup
|
@@ -6013,7 +6076,8 @@ module Aws::RDS
|
|
6013
6076
|
# @example Request syntax with placeholder values
|
6014
6077
|
#
|
6015
6078
|
# resp = client.delete_db_instance_automated_backup({
|
6016
|
-
# dbi_resource_id: "String",
|
6079
|
+
# dbi_resource_id: "String",
|
6080
|
+
# db_instance_automated_backups_arn: "String",
|
6017
6081
|
# })
|
6018
6082
|
#
|
6019
6083
|
# @example Response structure
|
@@ -6042,6 +6106,10 @@ module Aws::RDS
|
|
6042
6106
|
# resp.db_instance_automated_backup.kms_key_id #=> String
|
6043
6107
|
# resp.db_instance_automated_backup.timezone #=> String
|
6044
6108
|
# resp.db_instance_automated_backup.iam_database_authentication_enabled #=> Boolean
|
6109
|
+
# resp.db_instance_automated_backup.backup_retention_period #=> Integer
|
6110
|
+
# resp.db_instance_automated_backup.db_instance_automated_backups_arn #=> String
|
6111
|
+
# resp.db_instance_automated_backup.db_instance_automated_backups_replications #=> Array
|
6112
|
+
# resp.db_instance_automated_backup.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
6045
6113
|
#
|
6046
6114
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstanceAutomatedBackup AWS API Documentation
|
6047
6115
|
#
|
@@ -6670,8 +6738,8 @@ module Aws::RDS
|
|
6670
6738
|
# A custom AZ is an on-premises AZ that is integrated with a VMware
|
6671
6739
|
# vSphere cluster.
|
6672
6740
|
#
|
6673
|
-
# For more information about RDS on VMware, see the [
|
6674
|
-
#
|
6741
|
+
# For more information about RDS on VMware, see the [ RDS on VMware User
|
6742
|
+
# Guide.][1]
|
6675
6743
|
#
|
6676
6744
|
#
|
6677
6745
|
#
|
@@ -7606,6 +7674,14 @@ module Aws::RDS
|
|
7606
7674
|
# resp.db_clusters[0].tag_list[0].value #=> String
|
7607
7675
|
# resp.db_clusters[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
7608
7676
|
# resp.db_clusters[0].global_write_forwarding_requested #=> Boolean
|
7677
|
+
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
7678
|
+
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
7679
|
+
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
7680
|
+
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
7681
|
+
# resp.db_clusters[0].pending_modified_values.db_cluster_identifier #=> String
|
7682
|
+
# resp.db_clusters[0].pending_modified_values.master_user_password #=> String
|
7683
|
+
# resp.db_clusters[0].pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
7684
|
+
# resp.db_clusters[0].pending_modified_values.engine_version #=> String
|
7609
7685
|
#
|
7610
7686
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusters AWS API Documentation
|
7611
7687
|
#
|
@@ -7797,20 +7873,19 @@ module Aws::RDS
|
|
7797
7873
|
#
|
7798
7874
|
# * `active` - automated backups for current instances
|
7799
7875
|
#
|
7800
|
-
# * `retained` - automated backups for deleted instances
|
7876
|
+
# * `retained` - automated backups for deleted instances and after
|
7877
|
+
# backup replication is stopped
|
7801
7878
|
#
|
7802
7879
|
# * `creating` - automated backups that are waiting for the first
|
7803
7880
|
# automated snapshot to be available
|
7804
7881
|
#
|
7805
7882
|
# * `db-instance-id` - Accepts DB instance identifiers and Amazon
|
7806
|
-
# Resource Names (ARNs)
|
7807
|
-
#
|
7808
|
-
# by these ARNs.
|
7883
|
+
# Resource Names (ARNs). The results list includes only information
|
7884
|
+
# about the DB instance automated backups identified by these ARNs.
|
7809
7885
|
#
|
7810
|
-
# * `dbi-resource-id` - Accepts DB
|
7811
|
-
#
|
7812
|
-
#
|
7813
|
-
# by these ARNs.
|
7886
|
+
# * `dbi-resource-id` - Accepts DB resource identifiers and Amazon
|
7887
|
+
# Resource Names (ARNs). The results list includes only information
|
7888
|
+
# about the DB instance resources identified by these ARNs.
|
7814
7889
|
#
|
7815
7890
|
# Returns all resources by default. The status for each resource is
|
7816
7891
|
# specified in the response.
|
@@ -7826,6 +7901,11 @@ module Aws::RDS
|
|
7826
7901
|
# parameter is specified the response includes only records beyond the
|
7827
7902
|
# marker, up to `MaxRecords`.
|
7828
7903
|
#
|
7904
|
+
# @option params [String] :db_instance_automated_backups_arn
|
7905
|
+
# The Amazon Resource Name (ARN) of the replicated automated backups,
|
7906
|
+
# for example,
|
7907
|
+
# `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
7908
|
+
#
|
7829
7909
|
# @return [Types::DBInstanceAutomatedBackupMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7830
7910
|
#
|
7831
7911
|
# * {Types::DBInstanceAutomatedBackupMessage#marker #marker} => String
|
@@ -7846,6 +7926,7 @@ module Aws::RDS
|
|
7846
7926
|
# ],
|
7847
7927
|
# max_records: 1,
|
7848
7928
|
# marker: "String",
|
7929
|
+
# db_instance_automated_backups_arn: "String",
|
7849
7930
|
# })
|
7850
7931
|
#
|
7851
7932
|
# @example Response structure
|
@@ -7876,6 +7957,10 @@ module Aws::RDS
|
|
7876
7957
|
# resp.db_instance_automated_backups[0].kms_key_id #=> String
|
7877
7958
|
# resp.db_instance_automated_backups[0].timezone #=> String
|
7878
7959
|
# resp.db_instance_automated_backups[0].iam_database_authentication_enabled #=> Boolean
|
7960
|
+
# resp.db_instance_automated_backups[0].backup_retention_period #=> Integer
|
7961
|
+
# resp.db_instance_automated_backups[0].db_instance_automated_backups_arn #=> String
|
7962
|
+
# resp.db_instance_automated_backups[0].db_instance_automated_backups_replications #=> Array
|
7963
|
+
# resp.db_instance_automated_backups[0].db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
7879
7964
|
#
|
7880
7965
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBInstanceAutomatedBackups AWS API Documentation
|
7881
7966
|
#
|
@@ -8038,6 +8123,7 @@ module Aws::RDS
|
|
8038
8123
|
# resp.db_instances[0].pending_modified_values.processor_features #=> Array
|
8039
8124
|
# resp.db_instances[0].pending_modified_values.processor_features[0].name #=> String
|
8040
8125
|
# resp.db_instances[0].pending_modified_values.processor_features[0].value #=> String
|
8126
|
+
# resp.db_instances[0].pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
8041
8127
|
# resp.db_instances[0].latest_restorable_time #=> Time
|
8042
8128
|
# resp.db_instances[0].multi_az #=> Boolean
|
8043
8129
|
# resp.db_instances[0].engine_version #=> String
|
@@ -8103,6 +8189,9 @@ module Aws::RDS
|
|
8103
8189
|
# resp.db_instances[0].tag_list #=> Array
|
8104
8190
|
# resp.db_instances[0].tag_list[0].key #=> String
|
8105
8191
|
# resp.db_instances[0].tag_list[0].value #=> String
|
8192
|
+
# resp.db_instances[0].db_instance_automated_backups_replications #=> Array
|
8193
|
+
# resp.db_instances[0].db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
8194
|
+
# resp.db_instances[0].customer_owned_ip_enabled #=> Boolean
|
8106
8195
|
#
|
8107
8196
|
#
|
8108
8197
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -10567,8 +10656,8 @@ module Aws::RDS
|
|
10567
10656
|
end
|
10568
10657
|
|
10569
10658
|
# Returns a list of the source AWS Regions where the current AWS Region
|
10570
|
-
# can create a read replica
|
10571
|
-
# supports pagination.
|
10659
|
+
# can create a read replica, copy a DB snapshot from, or replicate
|
10660
|
+
# automated backups from. This API action supports pagination.
|
10572
10661
|
#
|
10573
10662
|
# @option params [String] :region_name
|
10574
10663
|
# The source AWS Region name. For example, `us-east-1`.
|
@@ -10690,6 +10779,7 @@ module Aws::RDS
|
|
10690
10779
|
# resp.source_regions[0].region_name #=> String
|
10691
10780
|
# resp.source_regions[0].endpoint #=> String
|
10692
10781
|
# resp.source_regions[0].status #=> String
|
10782
|
+
# resp.source_regions[0].supports_db_instance_automated_backups_replication #=> Boolean
|
10693
10783
|
#
|
10694
10784
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeSourceRegions AWS API Documentation
|
10695
10785
|
#
|
@@ -10989,6 +11079,14 @@ module Aws::RDS
|
|
10989
11079
|
# resp.db_cluster.tag_list[0].value #=> String
|
10990
11080
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
10991
11081
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
11082
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
11083
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
11084
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
11085
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
11086
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
11087
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
11088
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
11089
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
10992
11090
|
#
|
10993
11091
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
10994
11092
|
#
|
@@ -11770,6 +11868,14 @@ module Aws::RDS
|
|
11770
11868
|
# resp.db_cluster.tag_list[0].value #=> String
|
11771
11869
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
11772
11870
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
11871
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
11872
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
11873
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
11874
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
11875
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
11876
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
11877
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
11878
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
11773
11879
|
#
|
11774
11880
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
11775
11881
|
#
|
@@ -12124,8 +12230,8 @@ module Aws::RDS
|
|
12124
12230
|
# The new DB subnet group for the DB instance. You can use this
|
12125
12231
|
# parameter to move your DB instance to a different VPC. If your DB
|
12126
12232
|
# instance isn't in a VPC, you can also use this parameter to move your
|
12127
|
-
# DB instance into a VPC. For more information, see [
|
12128
|
-
#
|
12233
|
+
# DB instance into a VPC. For more information, see [Working with a DB
|
12234
|
+
# instance in a VPC][1] in the *Amazon RDS User Guide.*
|
12129
12235
|
#
|
12130
12236
|
# Changing the subnet group causes an outage during the change. The
|
12131
12237
|
# change is applied during the next maintenance window, unless you
|
@@ -12138,7 +12244,7 @@ module Aws::RDS
|
|
12138
12244
|
#
|
12139
12245
|
#
|
12140
12246
|
#
|
12141
|
-
# [1]:
|
12247
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html#USER_VPC.Non-VPC2VPC
|
12142
12248
|
#
|
12143
12249
|
# @option params [Array<String>] :db_security_groups
|
12144
12250
|
# A list of DB security groups to authorize on this DB instance.
|
@@ -12333,8 +12439,10 @@ module Aws::RDS
|
|
12333
12439
|
# family for the new engine version must be specified. The new DB
|
12334
12440
|
# parameter group can be the default for that DB parameter group family.
|
12335
12441
|
#
|
12336
|
-
#
|
12337
|
-
#
|
12442
|
+
# If you specify only a major version, Amazon RDS will update the DB
|
12443
|
+
# instance to the default minor version if the current minor version is
|
12444
|
+
# lower. For information about valid engine versions, see
|
12445
|
+
# `CreateDBInstance`, or call `DescribeDBEngineVersions`.
|
12338
12446
|
#
|
12339
12447
|
# @option params [Boolean] :allow_major_version_upgrade
|
12340
12448
|
# A value that indicates whether major version upgrades are allowed.
|
@@ -12394,14 +12502,14 @@ module Aws::RDS
|
|
12394
12502
|
# Default: Uses existing setting
|
12395
12503
|
#
|
12396
12504
|
# @option params [String] :option_group_name
|
12397
|
-
#
|
12398
|
-
# option group. Changing this parameter doesn't result in an
|
12399
|
-
# except in the following case and the change is applied during
|
12400
|
-
# maintenance window unless the `ApplyImmediately` parameter is
|
12401
|
-
# for this request. If the parameter change results in an option
|
12402
|
-
# that enables OEM, this change can cause a brief (sub-second)
|
12403
|
-
# during which new connections are rejected but existing
|
12404
|
-
# not interrupted.
|
12505
|
+
# A value that indicates the DB instance should be associated with the
|
12506
|
+
# specified option group. Changing this parameter doesn't result in an
|
12507
|
+
# outage except in the following case and the change is applied during
|
12508
|
+
# the next maintenance window unless the `ApplyImmediately` parameter is
|
12509
|
+
# enabled for this request. If the parameter change results in an option
|
12510
|
+
# group that enables OEM, this change can cause a brief (sub-second)
|
12511
|
+
# period during which new connections are rejected but existing
|
12512
|
+
# connections are not interrupted.
|
12405
12513
|
#
|
12406
12514
|
# Permanent options, such as the TDE option for Oracle Advanced Security
|
12407
12515
|
# TDE, can't be removed from an option group, and that option group
|
@@ -12626,13 +12734,15 @@ module Aws::RDS
|
|
12626
12734
|
#
|
12627
12735
|
# @option params [String] :performance_insights_kms_key_id
|
12628
12736
|
# The AWS KMS key identifier for encryption of Performance Insights
|
12629
|
-
# data.
|
12630
|
-
#
|
12737
|
+
# data.
|
12738
|
+
#
|
12739
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
12740
|
+
# name for the AWS KMS customer master key (CMK).
|
12631
12741
|
#
|
12632
12742
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
|
12633
|
-
# Amazon RDS uses your default
|
12634
|
-
#
|
12635
|
-
#
|
12743
|
+
# Amazon RDS uses your default CMK. There is a default CMK for your AWS
|
12744
|
+
# account. Your AWS account has a different default CMK for each AWS
|
12745
|
+
# Region.
|
12636
12746
|
#
|
12637
12747
|
# @option params [Integer] :performance_insights_retention_period
|
12638
12748
|
# The amount of time, in days, to retain Performance Insights data.
|
@@ -12716,6 +12826,26 @@ module Aws::RDS
|
|
12716
12826
|
#
|
12717
12827
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
12718
12828
|
#
|
12829
|
+
# @option params [Boolean] :enable_customer_owned_ip
|
12830
|
+
# A value that indicates whether to enable a customer-owned IP address
|
12831
|
+
# (CoIP) for an RDS on Outposts DB instance.
|
12832
|
+
#
|
12833
|
+
# A *CoIP* provides local or external connectivity to resources in your
|
12834
|
+
# Outpost subnets through your on-premises network. For some use cases,
|
12835
|
+
# a CoIP can provide lower latency for connections to the DB instance
|
12836
|
+
# from outside of its virtual private cloud (VPC) on your local network.
|
12837
|
+
#
|
12838
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
12839
|
+
# RDS on AWS Outposts][1] in the *Amazon RDS User Guide*.
|
12840
|
+
#
|
12841
|
+
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
12842
|
+
# in the *AWS Outposts User Guide*.
|
12843
|
+
#
|
12844
|
+
#
|
12845
|
+
#
|
12846
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
12847
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
12848
|
+
#
|
12719
12849
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12720
12850
|
#
|
12721
12851
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -12796,6 +12926,7 @@ module Aws::RDS
|
|
12796
12926
|
# max_allocated_storage: 1,
|
12797
12927
|
# certificate_rotation_restart: false,
|
12798
12928
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
12929
|
+
# enable_customer_owned_ip: false,
|
12799
12930
|
# })
|
12800
12931
|
#
|
12801
12932
|
# @example Response structure
|
@@ -12854,6 +12985,7 @@ module Aws::RDS
|
|
12854
12985
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
12855
12986
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
12856
12987
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
12988
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
12857
12989
|
# resp.db_instance.latest_restorable_time #=> Time
|
12858
12990
|
# resp.db_instance.multi_az #=> Boolean
|
12859
12991
|
# resp.db_instance.engine_version #=> String
|
@@ -12919,6 +13051,9 @@ module Aws::RDS
|
|
12919
13051
|
# resp.db_instance.tag_list #=> Array
|
12920
13052
|
# resp.db_instance.tag_list[0].key #=> String
|
12921
13053
|
# resp.db_instance.tag_list[0].value #=> String
|
13054
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
13055
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
13056
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
12922
13057
|
#
|
12923
13058
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
12924
13059
|
#
|
@@ -13243,11 +13378,11 @@ module Aws::RDS
|
|
13243
13378
|
# You can specify this parameter when you upgrade an Oracle DB snapshot.
|
13244
13379
|
# The same option group considerations apply when upgrading a DB
|
13245
13380
|
# snapshot as when upgrading a DB instance. For more information, see
|
13246
|
-
# [Option
|
13381
|
+
# [Option group considerations][1] in the *Amazon RDS User Guide.*
|
13247
13382
|
#
|
13248
13383
|
#
|
13249
13384
|
#
|
13250
|
-
# [1]:
|
13385
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Oracle.html#USER_UpgradeDBInstance.Oracle.OGPG.OG
|
13251
13386
|
#
|
13252
13387
|
# @return [Types::ModifyDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13253
13388
|
#
|
@@ -13634,6 +13769,42 @@ module Aws::RDS
|
|
13634
13769
|
# enabled. The global database cluster can't be deleted when deletion
|
13635
13770
|
# protection is enabled.
|
13636
13771
|
#
|
13772
|
+
# @option params [String] :engine_version
|
13773
|
+
# The version number of the database engine to which you want to
|
13774
|
+
# upgrade. Changing this parameter results in an outage. The change is
|
13775
|
+
# applied during the next maintenance window unless `ApplyImmediately`
|
13776
|
+
# is enabled.
|
13777
|
+
#
|
13778
|
+
# To list all of the available engine versions for `aurora` (for MySQL
|
13779
|
+
# 5.6-compatible Aurora), use the following command:
|
13780
|
+
#
|
13781
|
+
# `` aws rds describe-db-engine-versions --engine aurora --query
|
13782
|
+
# '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
|
13783
|
+
#
|
13784
|
+
# To list all of the available engine versions for `aurora-mysql` (for
|
13785
|
+
# MySQL 5.7-compatible Aurora), use the following command:
|
13786
|
+
#
|
13787
|
+
# `` aws rds describe-db-engine-versions --engine aurora-mysql --query
|
13788
|
+
# '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
|
13789
|
+
#
|
13790
|
+
# To list all of the available engine versions for `aurora-postgresql`,
|
13791
|
+
# use the following command:
|
13792
|
+
#
|
13793
|
+
# `` aws rds describe-db-engine-versions --engine aurora-postgresql
|
13794
|
+
# --query '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
|
13795
|
+
#
|
13796
|
+
# @option params [Boolean] :allow_major_version_upgrade
|
13797
|
+
# A value that indicates whether major version upgrades are allowed.
|
13798
|
+
#
|
13799
|
+
# Constraints: You must allow major version upgrades when specifying a
|
13800
|
+
# value for the `EngineVersion` parameter that is a different major
|
13801
|
+
# version than the DB cluster's current version.
|
13802
|
+
#
|
13803
|
+
# If you upgrade the major version of a global database, the cluster and
|
13804
|
+
# DB instance parameter groups are set to the default parameter groups
|
13805
|
+
# for the new version. Apply any custom parameter groups after
|
13806
|
+
# completing the upgrade.
|
13807
|
+
#
|
13637
13808
|
# @return [Types::ModifyGlobalClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13638
13809
|
#
|
13639
13810
|
# * {Types::ModifyGlobalClusterResult#global_cluster #global_cluster} => Types::GlobalCluster
|
@@ -13644,6 +13815,8 @@ module Aws::RDS
|
|
13644
13815
|
# global_cluster_identifier: "String",
|
13645
13816
|
# new_global_cluster_identifier: "String",
|
13646
13817
|
# deletion_protection: false,
|
13818
|
+
# engine_version: "String",
|
13819
|
+
# allow_major_version_upgrade: false,
|
13647
13820
|
# })
|
13648
13821
|
#
|
13649
13822
|
# @example Response structure
|
@@ -13945,6 +14118,7 @@ module Aws::RDS
|
|
13945
14118
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
13946
14119
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
13947
14120
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
14121
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
13948
14122
|
# resp.db_instance.latest_restorable_time #=> Time
|
13949
14123
|
# resp.db_instance.multi_az #=> Boolean
|
13950
14124
|
# resp.db_instance.engine_version #=> String
|
@@ -14010,6 +14184,9 @@ module Aws::RDS
|
|
14010
14184
|
# resp.db_instance.tag_list #=> Array
|
14011
14185
|
# resp.db_instance.tag_list[0].key #=> String
|
14012
14186
|
# resp.db_instance.tag_list[0].value #=> String
|
14187
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
14188
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
14189
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
14013
14190
|
#
|
14014
14191
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
14015
14192
|
#
|
@@ -14130,6 +14307,14 @@ module Aws::RDS
|
|
14130
14307
|
# resp.db_cluster.tag_list[0].value #=> String
|
14131
14308
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
14132
14309
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
14310
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
14311
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
14312
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
14313
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
14314
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
14315
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
14316
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
14317
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
14133
14318
|
#
|
14134
14319
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
14135
14320
|
#
|
@@ -14345,6 +14530,7 @@ module Aws::RDS
|
|
14345
14530
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
14346
14531
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
14347
14532
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
14533
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
14348
14534
|
# resp.db_instance.latest_restorable_time #=> Time
|
14349
14535
|
# resp.db_instance.multi_az #=> Boolean
|
14350
14536
|
# resp.db_instance.engine_version #=> String
|
@@ -14410,6 +14596,9 @@ module Aws::RDS
|
|
14410
14596
|
# resp.db_instance.tag_list #=> Array
|
14411
14597
|
# resp.db_instance.tag_list[0].key #=> String
|
14412
14598
|
# resp.db_instance.tag_list[0].value #=> String
|
14599
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
14600
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
14601
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
14413
14602
|
#
|
14414
14603
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
14415
14604
|
#
|
@@ -14579,7 +14768,7 @@ module Aws::RDS
|
|
14579
14768
|
#
|
14580
14769
|
# @option params [required, String] :role_arn
|
14581
14770
|
# The Amazon Resource Name (ARN) of the IAM role to disassociate from
|
14582
|
-
# the DB instance, for example
|
14771
|
+
# the DB instance, for example,
|
14583
14772
|
# `arn:aws:iam::123456789012:role/AccessRole`.
|
14584
14773
|
#
|
14585
14774
|
# @option params [required, String] :feature_name
|
@@ -15128,17 +15317,14 @@ module Aws::RDS
|
|
15128
15317
|
# @option params [String] :kms_key_id
|
15129
15318
|
# The AWS KMS key identifier for an encrypted DB cluster.
|
15130
15319
|
#
|
15131
|
-
# The KMS key identifier is the
|
15132
|
-
#
|
15133
|
-
# account
|
15134
|
-
# cluster, then you can use the KMS key alias instead of the ARN for the
|
15135
|
-
# KM encryption key.
|
15320
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
15321
|
+
# name for the AWS KMS customer master key (CMK). To use a CMK in a
|
15322
|
+
# different AWS account, specify the key ARN or alias ARN.
|
15136
15323
|
#
|
15137
15324
|
# If the StorageEncrypted parameter is enabled, and you do not specify a
|
15138
15325
|
# value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
15139
|
-
# default
|
15140
|
-
#
|
15141
|
-
# key for each AWS Region.
|
15326
|
+
# default CMK. There is a default CMK for your AWS account. Your AWS
|
15327
|
+
# account has a different default CMK for each AWS Region.
|
15142
15328
|
#
|
15143
15329
|
# @option params [Boolean] :enable_iam_database_authentication
|
15144
15330
|
# A value that indicates whether to enable mapping of AWS Identity and
|
@@ -15361,6 +15547,14 @@ module Aws::RDS
|
|
15361
15547
|
# resp.db_cluster.tag_list[0].value #=> String
|
15362
15548
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15363
15549
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15550
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
15551
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
15552
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
15553
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
15554
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
15555
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
15556
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
15557
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
15364
15558
|
#
|
15365
15559
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
15366
15560
|
#
|
@@ -15503,18 +15697,17 @@ module Aws::RDS
|
|
15503
15697
|
# The AWS KMS key identifier to use when restoring an encrypted DB
|
15504
15698
|
# cluster from a DB snapshot or DB cluster snapshot.
|
15505
15699
|
#
|
15506
|
-
# The KMS key identifier is the
|
15507
|
-
#
|
15508
|
-
# account
|
15509
|
-
# cluster, then you can use the KMS key alias instead of the ARN for the
|
15510
|
-
# KMS encryption key.
|
15700
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
15701
|
+
# name for the AWS KMS customer master key (CMK). To use a CMK in a
|
15702
|
+
# different AWS account, specify the key ARN or alias ARN.
|
15511
15703
|
#
|
15512
|
-
#
|
15704
|
+
# When you don't specify a value for the `KmsKeyId` parameter, then the
|
15513
15705
|
# following occurs:
|
15514
15706
|
#
|
15515
15707
|
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier` is
|
15516
|
-
# encrypted, then the restored DB cluster is encrypted using the
|
15517
|
-
#
|
15708
|
+
# encrypted, then the restored DB cluster is encrypted using the AWS
|
15709
|
+
# KMS CMK that was used to encrypt the DB snapshot or DB cluster
|
15710
|
+
# snapshot.
|
15518
15711
|
#
|
15519
15712
|
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier`
|
15520
15713
|
# isn't encrypted, then the restored DB cluster isn't encrypted.
|
@@ -15756,6 +15949,14 @@ module Aws::RDS
|
|
15756
15949
|
# resp.db_cluster.tag_list[0].value #=> String
|
15757
15950
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15758
15951
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15952
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
15953
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
15954
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
15955
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
15956
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
15957
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
15958
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
15959
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
15759
15960
|
#
|
15760
15961
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
15761
15962
|
#
|
@@ -15891,23 +16092,21 @@ module Aws::RDS
|
|
15891
16092
|
# The AWS KMS key identifier to use when restoring an encrypted DB
|
15892
16093
|
# cluster from an encrypted DB cluster.
|
15893
16094
|
#
|
15894
|
-
# The KMS key identifier is the
|
15895
|
-
#
|
15896
|
-
# account
|
15897
|
-
# cluster, then you can use the KMS key alias instead of the ARN for the
|
15898
|
-
# KMS encryption key.
|
16095
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
16096
|
+
# name for the AWS KMS customer master key (CMK). To use a CMK in a
|
16097
|
+
# different AWS account, specify the key ARN or alias ARN.
|
15899
16098
|
#
|
15900
16099
|
# You can restore to a new DB cluster and encrypt the new DB cluster
|
15901
|
-
# with a KMS
|
15902
|
-
# source DB cluster. The new DB cluster is encrypted with
|
15903
|
-
# identified by the `KmsKeyId` parameter.
|
16100
|
+
# with a AWS KMS CMK that is different than the AWS KMS key used to
|
16101
|
+
# encrypt the source DB cluster. The new DB cluster is encrypted with
|
16102
|
+
# the AWS KMS CMK identified by the `KmsKeyId` parameter.
|
15904
16103
|
#
|
15905
16104
|
# If you don't specify a value for the `KmsKeyId` parameter, then the
|
15906
16105
|
# following occurs:
|
15907
16106
|
#
|
15908
16107
|
# * If the DB cluster is encrypted, then the restored DB cluster is
|
15909
|
-
# encrypted using the KMS
|
15910
|
-
# cluster.
|
16108
|
+
# encrypted using the AWS KMS CMK that was used to encrypt the source
|
16109
|
+
# DB cluster.
|
15911
16110
|
#
|
15912
16111
|
# * If the DB cluster isn't encrypted, then the restored DB cluster
|
15913
16112
|
# isn't encrypted.
|
@@ -16129,6 +16328,14 @@ module Aws::RDS
|
|
16129
16328
|
# resp.db_cluster.tag_list[0].value #=> String
|
16130
16329
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
16131
16330
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
16331
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
16332
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
16333
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
16334
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
16335
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
16336
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
16337
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
16338
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
16132
16339
|
#
|
16133
16340
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
16134
16341
|
#
|
@@ -16140,23 +16347,23 @@ module Aws::RDS
|
|
16140
16347
|
end
|
16141
16348
|
|
16142
16349
|
# Creates a new DB instance from a DB snapshot. The target database is
|
16143
|
-
# created from the source database restore point with
|
16144
|
-
# original configuration
|
16145
|
-
# DB parameter group. By default, the new DB instance is created as
|
16146
|
-
#
|
16147
|
-
# that has an option group
|
16148
|
-
# case, the instance becomes a
|
16149
|
-
#
|
16350
|
+
# created from the source database restore point with most of the
|
16351
|
+
# source's original configuration, including the default security group
|
16352
|
+
# and DB parameter group. By default, the new DB instance is created as
|
16353
|
+
# a Single-AZ deployment, except when the instance is a SQL Server
|
16354
|
+
# instance that has an option group associated with mirroring. In this
|
16355
|
+
# case, the instance becomes a Multi-AZ deployment, not a Single-AZ
|
16356
|
+
# deployment.
|
16150
16357
|
#
|
16151
|
-
# If
|
16358
|
+
# If you want to replace your original DB instance with the new,
|
16152
16359
|
# restored DB instance, then rename your original DB instance before you
|
16153
16360
|
# call the RestoreDBInstanceFromDBSnapshot action. RDS doesn't allow
|
16154
|
-
# two DB instances with the same name.
|
16361
|
+
# two DB instances with the same name. After you have renamed your
|
16155
16362
|
# original DB instance with a different identifier, then you can pass
|
16156
16363
|
# the original name of the DB instance as the DBInstanceIdentifier in
|
16157
16364
|
# the call to the RestoreDBInstanceFromDBSnapshot action. The result is
|
16158
|
-
# that you
|
16159
|
-
#
|
16365
|
+
# that you replace the original DB instance with the DB instance created
|
16366
|
+
# from the snapshot.
|
16160
16367
|
#
|
16161
16368
|
# If you are restoring from a shared manual DB snapshot, the
|
16162
16369
|
# `DBSnapshotIdentifier` must be the ARN of the shared DB snapshot.
|
@@ -16441,6 +16648,26 @@ module Aws::RDS
|
|
16441
16648
|
#
|
16442
16649
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
16443
16650
|
#
|
16651
|
+
# @option params [Boolean] :enable_customer_owned_ip
|
16652
|
+
# A value that indicates whether to enable a customer-owned IP address
|
16653
|
+
# (CoIP) for an RDS on Outposts DB instance.
|
16654
|
+
#
|
16655
|
+
# A *CoIP* provides local or external connectivity to resources in your
|
16656
|
+
# Outpost subnets through your on-premises network. For some use cases,
|
16657
|
+
# a CoIP can provide lower latency for connections to the DB instance
|
16658
|
+
# from outside of its virtual private cloud (VPC) on your local network.
|
16659
|
+
#
|
16660
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
16661
|
+
# RDS on AWS Outposts][1] in the *Amazon RDS User Guide*.
|
16662
|
+
#
|
16663
|
+
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
16664
|
+
# in the *AWS Outposts User Guide*.
|
16665
|
+
#
|
16666
|
+
#
|
16667
|
+
#
|
16668
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
16669
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
16670
|
+
#
|
16444
16671
|
# @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
16445
16672
|
#
|
16446
16673
|
# * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
|
@@ -16581,6 +16808,7 @@ module Aws::RDS
|
|
16581
16808
|
# use_default_processor_features: false,
|
16582
16809
|
# db_parameter_group_name: "String",
|
16583
16810
|
# deletion_protection: false,
|
16811
|
+
# enable_customer_owned_ip: false,
|
16584
16812
|
# })
|
16585
16813
|
#
|
16586
16814
|
# @example Response structure
|
@@ -16639,6 +16867,7 @@ module Aws::RDS
|
|
16639
16867
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
16640
16868
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
16641
16869
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
16870
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
16642
16871
|
# resp.db_instance.latest_restorable_time #=> Time
|
16643
16872
|
# resp.db_instance.multi_az #=> Boolean
|
16644
16873
|
# resp.db_instance.engine_version #=> String
|
@@ -16704,6 +16933,9 @@ module Aws::RDS
|
|
16704
16933
|
# resp.db_instance.tag_list #=> Array
|
16705
16934
|
# resp.db_instance.tag_list[0].key #=> String
|
16706
16935
|
# resp.db_instance.tag_list[0].value #=> String
|
16936
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
16937
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
16938
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
16707
16939
|
#
|
16708
16940
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
16709
16941
|
#
|
@@ -16952,17 +17184,14 @@ module Aws::RDS
|
|
16952
17184
|
# @option params [String] :kms_key_id
|
16953
17185
|
# The AWS KMS key identifier for an encrypted DB instance.
|
16954
17186
|
#
|
16955
|
-
# The KMS key identifier is the
|
16956
|
-
#
|
16957
|
-
# account
|
16958
|
-
# instance, then you can use the KMS key alias instead of the ARN for
|
16959
|
-
# the KM encryption key.
|
17187
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
17188
|
+
# name for the AWS KMS customer master key (CMK). To use a CMK in a
|
17189
|
+
# different AWS account, specify the key ARN or alias ARN.
|
16960
17190
|
#
|
16961
17191
|
# If the `StorageEncrypted` parameter is enabled, and you do not specify
|
16962
17192
|
# a value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
16963
|
-
# default
|
16964
|
-
#
|
16965
|
-
# key for each AWS Region.
|
17193
|
+
# default CMK. There is a default CMK for your AWS account. Your AWS
|
17194
|
+
# account has a different default CMK for each AWS Region.
|
16966
17195
|
#
|
16967
17196
|
# @option params [Boolean] :copy_tags_to_snapshot
|
16968
17197
|
# A value that indicates whether to copy all tags from the DB instance
|
@@ -17043,13 +17272,15 @@ module Aws::RDS
|
|
17043
17272
|
#
|
17044
17273
|
# @option params [String] :performance_insights_kms_key_id
|
17045
17274
|
# The AWS KMS key identifier for encryption of Performance Insights
|
17046
|
-
# data.
|
17047
|
-
#
|
17275
|
+
# data.
|
17276
|
+
#
|
17277
|
+
# The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias
|
17278
|
+
# name for the AWS KMS customer master key (CMK).
|
17048
17279
|
#
|
17049
17280
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
|
17050
|
-
# Amazon RDS uses your default
|
17051
|
-
#
|
17052
|
-
#
|
17281
|
+
# Amazon RDS uses your default CMK. There is a default CMK for your AWS
|
17282
|
+
# account. Your AWS account has a different default CMK for each AWS
|
17283
|
+
# Region.
|
17053
17284
|
#
|
17054
17285
|
# @option params [Integer] :performance_insights_retention_period
|
17055
17286
|
# The amount of time, in days, to retain Performance Insights data.
|
@@ -17206,6 +17437,7 @@ module Aws::RDS
|
|
17206
17437
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
17207
17438
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
17208
17439
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
17440
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
17209
17441
|
# resp.db_instance.latest_restorable_time #=> Time
|
17210
17442
|
# resp.db_instance.multi_az #=> Boolean
|
17211
17443
|
# resp.db_instance.engine_version #=> String
|
@@ -17271,6 +17503,9 @@ module Aws::RDS
|
|
17271
17503
|
# resp.db_instance.tag_list #=> Array
|
17272
17504
|
# resp.db_instance.tag_list[0].key #=> String
|
17273
17505
|
# resp.db_instance.tag_list[0].value #=> String
|
17506
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
17507
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
17508
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
17274
17509
|
#
|
17275
17510
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
17276
17511
|
#
|
@@ -17590,6 +17825,31 @@ module Aws::RDS
|
|
17590
17825
|
# The upper limit to which Amazon RDS can automatically scale the
|
17591
17826
|
# storage of the DB instance.
|
17592
17827
|
#
|
17828
|
+
# @option params [String] :source_db_instance_automated_backups_arn
|
17829
|
+
# The Amazon Resource Name (ARN) of the replicated automated backups
|
17830
|
+
# from which to restore, for example,
|
17831
|
+
# `arn:aws:rds:useast-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
17832
|
+
#
|
17833
|
+
# @option params [Boolean] :enable_customer_owned_ip
|
17834
|
+
# A value that indicates whether to enable a customer-owned IP address
|
17835
|
+
# (CoIP) for an RDS on Outposts DB instance.
|
17836
|
+
#
|
17837
|
+
# A *CoIP* provides local or external connectivity to resources in your
|
17838
|
+
# Outpost subnets through your on-premises network. For some use cases,
|
17839
|
+
# a CoIP can provide lower latency for connections to the DB instance
|
17840
|
+
# from outside of its virtual private cloud (VPC) on your local network.
|
17841
|
+
#
|
17842
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
17843
|
+
# RDS on AWS Outposts][1] in the *Amazon RDS User Guide*.
|
17844
|
+
#
|
17845
|
+
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
17846
|
+
# in the *AWS Outposts User Guide*.
|
17847
|
+
#
|
17848
|
+
#
|
17849
|
+
#
|
17850
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
17851
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
17852
|
+
#
|
17593
17853
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17594
17854
|
#
|
17595
17855
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
@@ -17735,6 +17995,8 @@ module Aws::RDS
|
|
17735
17995
|
# deletion_protection: false,
|
17736
17996
|
# source_dbi_resource_id: "String",
|
17737
17997
|
# max_allocated_storage: 1,
|
17998
|
+
# source_db_instance_automated_backups_arn: "String",
|
17999
|
+
# enable_customer_owned_ip: false,
|
17738
18000
|
# })
|
17739
18001
|
#
|
17740
18002
|
# @example Response structure
|
@@ -17793,6 +18055,7 @@ module Aws::RDS
|
|
17793
18055
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
17794
18056
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
17795
18057
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
18058
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
17796
18059
|
# resp.db_instance.latest_restorable_time #=> Time
|
17797
18060
|
# resp.db_instance.multi_az #=> Boolean
|
17798
18061
|
# resp.db_instance.engine_version #=> String
|
@@ -17858,6 +18121,9 @@ module Aws::RDS
|
|
17858
18121
|
# resp.db_instance.tag_list #=> Array
|
17859
18122
|
# resp.db_instance.tag_list[0].key #=> String
|
17860
18123
|
# resp.db_instance.tag_list[0].value #=> String
|
18124
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
18125
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
18126
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
17861
18127
|
#
|
17862
18128
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
17863
18129
|
#
|
@@ -17966,7 +18232,7 @@ module Aws::RDS
|
|
17966
18232
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/DBActivityStreams.html
|
17967
18233
|
#
|
17968
18234
|
# @option params [required, String] :resource_arn
|
17969
|
-
# The Amazon Resource Name (ARN) of the DB cluster, for example
|
18235
|
+
# The Amazon Resource Name (ARN) of the DB cluster, for example,
|
17970
18236
|
# `arn:aws:rds:us-east-1:12345667890:cluster:das-cluster`.
|
17971
18237
|
#
|
17972
18238
|
# @option params [required, String] :mode
|
@@ -17977,8 +18243,8 @@ module Aws::RDS
|
|
17977
18243
|
#
|
17978
18244
|
# @option params [required, String] :kms_key_id
|
17979
18245
|
# The AWS KMS key identifier for encrypting messages in the database
|
17980
|
-
# activity stream. The key identifier
|
17981
|
-
# or
|
18246
|
+
# activity stream. The AWS KMS key identifier is the key ARN, key ID,
|
18247
|
+
# alias ARN, or alias name for the AWS KMS customer master key (CMK).
|
17982
18248
|
#
|
17983
18249
|
# @option params [Boolean] :apply_immediately
|
17984
18250
|
# Specifies whether or not the database activity stream is to start as
|
@@ -18130,6 +18396,14 @@ module Aws::RDS
|
|
18130
18396
|
# resp.db_cluster.tag_list[0].value #=> String
|
18131
18397
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
18132
18398
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
18399
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
18400
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
18401
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
18402
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
18403
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
18404
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
18405
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
18406
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
18133
18407
|
#
|
18134
18408
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
|
18135
18409
|
#
|
@@ -18225,6 +18499,7 @@ module Aws::RDS
|
|
18225
18499
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
18226
18500
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
18227
18501
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
18502
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
18228
18503
|
# resp.db_instance.latest_restorable_time #=> Time
|
18229
18504
|
# resp.db_instance.multi_az #=> Boolean
|
18230
18505
|
# resp.db_instance.engine_version #=> String
|
@@ -18290,6 +18565,9 @@ module Aws::RDS
|
|
18290
18565
|
# resp.db_instance.tag_list #=> Array
|
18291
18566
|
# resp.db_instance.tag_list[0].key #=> String
|
18292
18567
|
# resp.db_instance.tag_list[0].value #=> String
|
18568
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
18569
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
18570
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
18293
18571
|
#
|
18294
18572
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
18295
18573
|
#
|
@@ -18300,6 +18578,95 @@ module Aws::RDS
|
|
18300
18578
|
req.send_request(options)
|
18301
18579
|
end
|
18302
18580
|
|
18581
|
+
# Enables replication of automated backups to a different AWS Region.
|
18582
|
+
#
|
18583
|
+
# For more information, see [ Replicating Automated Backups to Another
|
18584
|
+
# AWS Region][1] in the *Amazon RDS User Guide.*
|
18585
|
+
#
|
18586
|
+
#
|
18587
|
+
#
|
18588
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReplicateBackups.html
|
18589
|
+
#
|
18590
|
+
# @option params [required, String] :source_db_instance_arn
|
18591
|
+
# The Amazon Resource Name (ARN) of the source DB instance for the
|
18592
|
+
# replicated automated backups, for example,
|
18593
|
+
# `arn:aws:rds:us-west-2:123456789012:db:mydatabase`.
|
18594
|
+
#
|
18595
|
+
# @option params [Integer] :backup_retention_period
|
18596
|
+
# The retention period for the replicated automated backups.
|
18597
|
+
#
|
18598
|
+
# @option params [String] :kms_key_id
|
18599
|
+
# The AWS KMS key identifier for encryption of the replicated automated
|
18600
|
+
# backups. The KMS key ID is the Amazon Resource Name (ARN) for the KMS
|
18601
|
+
# encryption key in the destination AWS Region, for example,
|
18602
|
+
# `arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE`.
|
18603
|
+
#
|
18604
|
+
# @option params [String] :pre_signed_url
|
18605
|
+
# A URL that contains a Signature Version 4 signed request for the
|
18606
|
+
# StartDBInstanceAutomatedBackupsReplication action to be called in the
|
18607
|
+
# AWS Region of the source DB instance. The presigned URL must be a
|
18608
|
+
# valid request for the StartDBInstanceAutomatedBackupsReplication API
|
18609
|
+
# action that can be executed in the AWS Region that contains the source
|
18610
|
+
# DB instance.
|
18611
|
+
#
|
18612
|
+
# @option params [String] :source_region
|
18613
|
+
# The source region of the snapshot. This is only needed when the
|
18614
|
+
# shapshot is encrypted and in a different region.
|
18615
|
+
#
|
18616
|
+
# @return [Types::StartDBInstanceAutomatedBackupsReplicationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
18617
|
+
#
|
18618
|
+
# * {Types::StartDBInstanceAutomatedBackupsReplicationResult#db_instance_automated_backup #db_instance_automated_backup} => Types::DBInstanceAutomatedBackup
|
18619
|
+
#
|
18620
|
+
# @example Request syntax with placeholder values
|
18621
|
+
#
|
18622
|
+
# resp = client.start_db_instance_automated_backups_replication({
|
18623
|
+
# source_db_instance_arn: "String", # required
|
18624
|
+
# backup_retention_period: 1,
|
18625
|
+
# kms_key_id: "String",
|
18626
|
+
# pre_signed_url: "String",
|
18627
|
+
# source_region: "String",
|
18628
|
+
# })
|
18629
|
+
#
|
18630
|
+
# @example Response structure
|
18631
|
+
#
|
18632
|
+
# resp.db_instance_automated_backup.db_instance_arn #=> String
|
18633
|
+
# resp.db_instance_automated_backup.dbi_resource_id #=> String
|
18634
|
+
# resp.db_instance_automated_backup.region #=> String
|
18635
|
+
# resp.db_instance_automated_backup.db_instance_identifier #=> String
|
18636
|
+
# resp.db_instance_automated_backup.restore_window.earliest_time #=> Time
|
18637
|
+
# resp.db_instance_automated_backup.restore_window.latest_time #=> Time
|
18638
|
+
# resp.db_instance_automated_backup.allocated_storage #=> Integer
|
18639
|
+
# resp.db_instance_automated_backup.status #=> String
|
18640
|
+
# resp.db_instance_automated_backup.port #=> Integer
|
18641
|
+
# resp.db_instance_automated_backup.availability_zone #=> String
|
18642
|
+
# resp.db_instance_automated_backup.vpc_id #=> String
|
18643
|
+
# resp.db_instance_automated_backup.instance_create_time #=> Time
|
18644
|
+
# resp.db_instance_automated_backup.master_username #=> String
|
18645
|
+
# resp.db_instance_automated_backup.engine #=> String
|
18646
|
+
# resp.db_instance_automated_backup.engine_version #=> String
|
18647
|
+
# resp.db_instance_automated_backup.license_model #=> String
|
18648
|
+
# resp.db_instance_automated_backup.iops #=> Integer
|
18649
|
+
# resp.db_instance_automated_backup.option_group_name #=> String
|
18650
|
+
# resp.db_instance_automated_backup.tde_credential_arn #=> String
|
18651
|
+
# resp.db_instance_automated_backup.encrypted #=> Boolean
|
18652
|
+
# resp.db_instance_automated_backup.storage_type #=> String
|
18653
|
+
# resp.db_instance_automated_backup.kms_key_id #=> String
|
18654
|
+
# resp.db_instance_automated_backup.timezone #=> String
|
18655
|
+
# resp.db_instance_automated_backup.iam_database_authentication_enabled #=> Boolean
|
18656
|
+
# resp.db_instance_automated_backup.backup_retention_period #=> Integer
|
18657
|
+
# resp.db_instance_automated_backup.db_instance_automated_backups_arn #=> String
|
18658
|
+
# resp.db_instance_automated_backup.db_instance_automated_backups_replications #=> Array
|
18659
|
+
# resp.db_instance_automated_backup.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
18660
|
+
#
|
18661
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstanceAutomatedBackupsReplication AWS API Documentation
|
18662
|
+
#
|
18663
|
+
# @overload start_db_instance_automated_backups_replication(params = {})
|
18664
|
+
# @param [Hash] params ({})
|
18665
|
+
def start_db_instance_automated_backups_replication(params = {}, options = {})
|
18666
|
+
req = build_request(:start_db_instance_automated_backups_replication, params)
|
18667
|
+
req.send_request(options)
|
18668
|
+
end
|
18669
|
+
|
18303
18670
|
# Starts an export of a snapshot to Amazon S3. The provided IAM role
|
18304
18671
|
# must have access to the S3 bucket.
|
18305
18672
|
#
|
@@ -18319,11 +18686,11 @@ module Aws::RDS
|
|
18319
18686
|
# when exporting a snapshot.
|
18320
18687
|
#
|
18321
18688
|
# @option params [required, String] :kms_key_id
|
18322
|
-
# The ID of the AWS KMS key to use to encrypt the
|
18323
|
-
# Amazon S3. The KMS key
|
18324
|
-
# key
|
18325
|
-
# caller of this operation must be authorized to execute
|
18326
|
-
# operations. These can be set in the KMS key policy:
|
18689
|
+
# The ID of the AWS KMS customer master key (CMK) to use to encrypt the
|
18690
|
+
# snapshot exported to Amazon S3. The AWS KMS key identifier is the key
|
18691
|
+
# ARN, key ID, alias ARN, or alias name for the AWS KMS customer master
|
18692
|
+
# key (CMK). The caller of this operation must be authorized to execute
|
18693
|
+
# the following operations. These can be set in the AWS KMS key policy:
|
18327
18694
|
#
|
18328
18695
|
# * GrantOperation.Encrypt
|
18329
18696
|
#
|
@@ -18585,6 +18952,14 @@ module Aws::RDS
|
|
18585
18952
|
# resp.db_cluster.tag_list[0].value #=> String
|
18586
18953
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
18587
18954
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
18955
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
18956
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
18957
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
18958
|
+
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
18959
|
+
# resp.db_cluster.pending_modified_values.db_cluster_identifier #=> String
|
18960
|
+
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
18961
|
+
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
18962
|
+
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
18588
18963
|
#
|
18589
18964
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
|
18590
18965
|
#
|
@@ -18687,6 +19062,7 @@ module Aws::RDS
|
|
18687
19062
|
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
18688
19063
|
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
18689
19064
|
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
19065
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
18690
19066
|
# resp.db_instance.latest_restorable_time #=> Time
|
18691
19067
|
# resp.db_instance.multi_az #=> Boolean
|
18692
19068
|
# resp.db_instance.engine_version #=> String
|
@@ -18752,6 +19128,9 @@ module Aws::RDS
|
|
18752
19128
|
# resp.db_instance.tag_list #=> Array
|
18753
19129
|
# resp.db_instance.tag_list[0].key #=> String
|
18754
19130
|
# resp.db_instance.tag_list[0].value #=> String
|
19131
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
19132
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
19133
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
18755
19134
|
#
|
18756
19135
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
18757
19136
|
#
|
@@ -18762,6 +19141,70 @@ module Aws::RDS
|
|
18762
19141
|
req.send_request(options)
|
18763
19142
|
end
|
18764
19143
|
|
19144
|
+
# Stops automated backup replication for a DB instance.
|
19145
|
+
#
|
19146
|
+
# For more information, see [ Replicating Automated Backups to Another
|
19147
|
+
# AWS Region][1] in the *Amazon RDS User Guide.*
|
19148
|
+
#
|
19149
|
+
#
|
19150
|
+
#
|
19151
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReplicateBackups.html
|
19152
|
+
#
|
19153
|
+
# @option params [required, String] :source_db_instance_arn
|
19154
|
+
# The Amazon Resource Name (ARN) of the source DB instance for which to
|
19155
|
+
# stop replicating automated backups, for example,
|
19156
|
+
# `arn:aws:rds:us-west-2:123456789012:db:mydatabase`.
|
19157
|
+
#
|
19158
|
+
# @return [Types::StopDBInstanceAutomatedBackupsReplicationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
19159
|
+
#
|
19160
|
+
# * {Types::StopDBInstanceAutomatedBackupsReplicationResult#db_instance_automated_backup #db_instance_automated_backup} => Types::DBInstanceAutomatedBackup
|
19161
|
+
#
|
19162
|
+
# @example Request syntax with placeholder values
|
19163
|
+
#
|
19164
|
+
# resp = client.stop_db_instance_automated_backups_replication({
|
19165
|
+
# source_db_instance_arn: "String", # required
|
19166
|
+
# })
|
19167
|
+
#
|
19168
|
+
# @example Response structure
|
19169
|
+
#
|
19170
|
+
# resp.db_instance_automated_backup.db_instance_arn #=> String
|
19171
|
+
# resp.db_instance_automated_backup.dbi_resource_id #=> String
|
19172
|
+
# resp.db_instance_automated_backup.region #=> String
|
19173
|
+
# resp.db_instance_automated_backup.db_instance_identifier #=> String
|
19174
|
+
# resp.db_instance_automated_backup.restore_window.earliest_time #=> Time
|
19175
|
+
# resp.db_instance_automated_backup.restore_window.latest_time #=> Time
|
19176
|
+
# resp.db_instance_automated_backup.allocated_storage #=> Integer
|
19177
|
+
# resp.db_instance_automated_backup.status #=> String
|
19178
|
+
# resp.db_instance_automated_backup.port #=> Integer
|
19179
|
+
# resp.db_instance_automated_backup.availability_zone #=> String
|
19180
|
+
# resp.db_instance_automated_backup.vpc_id #=> String
|
19181
|
+
# resp.db_instance_automated_backup.instance_create_time #=> Time
|
19182
|
+
# resp.db_instance_automated_backup.master_username #=> String
|
19183
|
+
# resp.db_instance_automated_backup.engine #=> String
|
19184
|
+
# resp.db_instance_automated_backup.engine_version #=> String
|
19185
|
+
# resp.db_instance_automated_backup.license_model #=> String
|
19186
|
+
# resp.db_instance_automated_backup.iops #=> Integer
|
19187
|
+
# resp.db_instance_automated_backup.option_group_name #=> String
|
19188
|
+
# resp.db_instance_automated_backup.tde_credential_arn #=> String
|
19189
|
+
# resp.db_instance_automated_backup.encrypted #=> Boolean
|
19190
|
+
# resp.db_instance_automated_backup.storage_type #=> String
|
19191
|
+
# resp.db_instance_automated_backup.kms_key_id #=> String
|
19192
|
+
# resp.db_instance_automated_backup.timezone #=> String
|
19193
|
+
# resp.db_instance_automated_backup.iam_database_authentication_enabled #=> Boolean
|
19194
|
+
# resp.db_instance_automated_backup.backup_retention_period #=> Integer
|
19195
|
+
# resp.db_instance_automated_backup.db_instance_automated_backups_arn #=> String
|
19196
|
+
# resp.db_instance_automated_backup.db_instance_automated_backups_replications #=> Array
|
19197
|
+
# resp.db_instance_automated_backup.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
19198
|
+
#
|
19199
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstanceAutomatedBackupsReplication AWS API Documentation
|
19200
|
+
#
|
19201
|
+
# @overload stop_db_instance_automated_backups_replication(params = {})
|
19202
|
+
# @param [Hash] params ({})
|
19203
|
+
def stop_db_instance_automated_backups_replication(params = {}, options = {})
|
19204
|
+
req = build_request(:stop_db_instance_automated_backups_replication, params)
|
19205
|
+
req.send_request(options)
|
19206
|
+
end
|
19207
|
+
|
18765
19208
|
# @!endgroup
|
18766
19209
|
|
18767
19210
|
# @param params ({})
|
@@ -18775,7 +19218,7 @@ module Aws::RDS
|
|
18775
19218
|
params: params,
|
18776
19219
|
config: config)
|
18777
19220
|
context[:gem_name] = 'aws-sdk-rds'
|
18778
|
-
context[:gem_version] = '1.
|
19221
|
+
context[:gem_version] = '1.110.0'
|
18779
19222
|
Seahorse::Client::Request.new(handlers, context)
|
18780
19223
|
end
|
18781
19224
|
|