aws-sdk-rds 1.119.0 → 1.123.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +824 -634
- data/lib/aws-sdk-rds/client_api.rb +14 -0
- data/lib/aws-sdk-rds/db_cluster.rb +129 -93
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +67 -57
- data/lib/aws-sdk-rds/db_instance.rb +238 -172
- data/lib/aws-sdk-rds/db_parameter_group.rb +3 -3
- data/lib/aws-sdk-rds/db_security_group.rb +12 -10
- data/lib/aws-sdk-rds/db_snapshot.rb +95 -74
- data/lib/aws-sdk-rds/db_snapshot_attribute.rb +15 -13
- data/lib/aws-sdk-rds/event_subscription.rb +2 -2
- data/lib/aws-sdk-rds/option_group.rb +3 -3
- data/lib/aws-sdk-rds/reserved_db_instance.rb +2 -2
- data/lib/aws-sdk-rds/resource.rb +142 -114
- data/lib/aws-sdk-rds/types.rb +913 -711
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6897bc7eb3e522de6a70d3da14e538474486b92b44ac2a545991929a2e7f7658
|
4
|
+
data.tar.gz: 41de5baf83e64ec98f9b8559e0f63999f34513617523fcb67fb617edcf09ee1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 352fceb3bb4be6faa3b807bb5fb5413d7c28b4b0d7cfc946857cb7536baf8e0819c6f17d7cb74549712425211383165adaf1c380cd1932848b79f16397f2d28f
|
7
|
+
data.tar.gz: 9e65cbe0923d6a86b2100adfdd54898c918da58f0f302727b3934386865ad0efa81308567836f350760a433f42604c7595d9e38e1f902335705c02bcb2d5a934
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.123.0 (2021-07-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.122.0 (2021-07-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adds the OriginalSnapshotCreateTime field to the DBSnapshot response object. This field timestamps the underlying data of a snapshot and doesn't change when the snapshot is copied.
|
13
|
+
|
14
|
+
1.121.0 (2021-06-17)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release enables Database Activity Streams for RDS Oracle
|
18
|
+
|
19
|
+
1.120.0 (2021-06-16)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This release enables fast cloning in Aurora Serverless. You can now clone between Aurora Serverless clusters and Aurora Provisioned clusters.
|
23
|
+
|
4
24
|
1.119.0 (2021-06-04)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.123.0
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -331,8 +331,8 @@ module Aws::RDS
|
|
331
331
|
|
332
332
|
# Associates an Identity and Access Management (IAM) role from an Amazon
|
333
333
|
# Aurora DB cluster. For more information, see [Authorizing Amazon
|
334
|
-
# Aurora MySQL to Access Other
|
335
|
-
# *Amazon Aurora User Guide*.
|
334
|
+
# Aurora MySQL to Access Other Amazon Web Services Services on Your
|
335
|
+
# Behalf][1] in the *Amazon Aurora User Guide*.
|
336
336
|
#
|
337
337
|
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
338
338
|
#
|
@@ -374,8 +374,8 @@ module Aws::RDS
|
|
374
374
|
req.send_request(options)
|
375
375
|
end
|
376
376
|
|
377
|
-
# Associates an
|
378
|
-
# instance.
|
377
|
+
# Associates an Amazon Web Services Identity and Access Management (IAM)
|
378
|
+
# role with a DB instance.
|
379
379
|
#
|
380
380
|
# <note markdown="1"> To add a role to a DB instance, the status of the DB instance must be
|
381
381
|
# `available`.
|
@@ -646,10 +646,10 @@ module Aws::RDS
|
|
646
646
|
# EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either
|
647
647
|
# EC2SecurityGroupName or EC2SecurityGroupId for non-VPC).
|
648
648
|
#
|
649
|
-
# <note markdown="1"> You can't authorize ingress from an EC2 security group in one
|
650
|
-
# Region to an Amazon RDS DB instance in another. You
|
651
|
-
# ingress from a VPC security group in one VPC to an
|
652
|
-
# instance in another.
|
649
|
+
# <note markdown="1"> You can't authorize ingress from an EC2 security group in one Amazon
|
650
|
+
# Web Services Region to an Amazon RDS DB instance in another. You
|
651
|
+
# can't authorize ingress from a VPC security group in one VPC to an
|
652
|
+
# Amazon RDS DB instance in another.
|
653
653
|
#
|
654
654
|
# </note>
|
655
655
|
#
|
@@ -678,11 +678,12 @@ module Aws::RDS
|
|
678
678
|
# `EC2SecurityGroupId` must be provided.
|
679
679
|
#
|
680
680
|
# @option params [String] :ec2_security_group_owner_id
|
681
|
-
#
|
682
|
-
# the `EC2SecurityGroupName` parameter. The
|
683
|
-
# acceptable value. For VPC DB
|
684
|
-
# must be provided. Otherwise,
|
685
|
-
# `
|
681
|
+
# Amazon Web Services account number of the owner of the EC2 security
|
682
|
+
# group specified in the `EC2SecurityGroupName` parameter. The Amazon
|
683
|
+
# Web Services access key ID isn't an acceptable value. For VPC DB
|
684
|
+
# security groups, `EC2SecurityGroupId` must be provided. Otherwise,
|
685
|
+
# `EC2SecurityGroupOwnerId` and either `EC2SecurityGroupName` or
|
686
|
+
# `EC2SecurityGroupId` must be provided.
|
686
687
|
#
|
687
688
|
# @return [Types::AuthorizeDBSecurityGroupIngressResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
688
689
|
#
|
@@ -1002,75 +1003,79 @@ module Aws::RDS
|
|
1002
1003
|
# snapshot, `SourceDBClusterSnapshotIdentifier` must be the Amazon
|
1003
1004
|
# Resource Name (ARN) of the shared DB cluster snapshot.
|
1004
1005
|
#
|
1005
|
-
# You can copy an encrypted DB cluster snapshot from another
|
1006
|
-
# In that case, the
|
1007
|
-
# `CopyDBClusterSnapshot` action is the destination
|
1008
|
-
# encrypted DB cluster snapshot to be copied
|
1009
|
-
# cluster snapshot from another
|
1010
|
-
# following values:
|
1006
|
+
# You can copy an encrypted DB cluster snapshot from another Amazon Web
|
1007
|
+
# Services Region. In that case, the Amazon Web Services Region where
|
1008
|
+
# you call the `CopyDBClusterSnapshot` action is the destination Amazon
|
1009
|
+
# Web Services Region for the encrypted DB cluster snapshot to be copied
|
1010
|
+
# to. To copy an encrypted DB cluster snapshot from another Amazon Web
|
1011
|
+
# Services Region, you must provide the following values:
|
1011
1012
|
#
|
1012
|
-
# * `KmsKeyId` - The
|
1013
|
-
# for the key to use to encrypt the
|
1014
|
-
# the destination
|
1013
|
+
# * `KmsKeyId` - The Amazon Web Services Key Management System (Amazon
|
1014
|
+
# Web Services KMS) key identifier for the key to use to encrypt the
|
1015
|
+
# copy of the DB cluster snapshot in the destination Amazon Web
|
1016
|
+
# Services Region.
|
1015
1017
|
#
|
1016
1018
|
# * `PreSignedUrl` - A URL that contains a Signature Version 4 signed
|
1017
1019
|
# request for the `CopyDBClusterSnapshot` action to be called in the
|
1018
|
-
# source
|
1019
|
-
# pre-signed URL must be a valid request for the
|
1020
|
+
# source Amazon Web Services Region where the DB cluster snapshot is
|
1021
|
+
# copied from. The pre-signed URL must be a valid request for the
|
1020
1022
|
# `CopyDBClusterSnapshot` API action that can be executed in the
|
1021
|
-
# source
|
1022
|
-
# be copied.
|
1023
|
+
# source Amazon Web Services Region that contains the encrypted DB
|
1024
|
+
# cluster snapshot to be copied.
|
1023
1025
|
#
|
1024
1026
|
# The pre-signed URL request must contain the following parameter
|
1025
1027
|
# values:
|
1026
1028
|
#
|
1027
|
-
# * `KmsKeyId` - The
|
1028
|
-
# key (CMK) to use to encrypt the copy of the DB
|
1029
|
-
#
|
1030
|
-
#
|
1031
|
-
#
|
1032
|
-
# URL.
|
1029
|
+
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the
|
1030
|
+
# customer master key (CMK) to use to encrypt the copy of the DB
|
1031
|
+
# cluster snapshot in the destination Amazon Web Services Region.
|
1032
|
+
# This is the same identifier for both the `CopyDBClusterSnapshot`
|
1033
|
+
# action that is called in the destination Amazon Web Services
|
1034
|
+
# Region, and the action contained in the pre-signed URL.
|
1033
1035
|
#
|
1034
|
-
# * `DestinationRegion` - The name of the
|
1035
|
-
# cluster snapshot is to be created in.
|
1036
|
+
# * `DestinationRegion` - The name of the Amazon Web Services Region
|
1037
|
+
# that the DB cluster snapshot is to be created in.
|
1036
1038
|
#
|
1037
1039
|
# * `SourceDBClusterSnapshotIdentifier` - The DB cluster snapshot
|
1038
1040
|
# identifier for the encrypted DB cluster snapshot to be copied.
|
1039
1041
|
# This identifier must be in the Amazon Resource Name (ARN) format
|
1040
|
-
# for the source
|
1041
|
-
# encrypted DB cluster snapshot from the us-west-2
|
1042
|
-
# your `SourceDBClusterSnapshotIdentifier`
|
1043
|
-
# example:
|
1042
|
+
# for the source Amazon Web Services Region. For example, if you are
|
1043
|
+
# copying an encrypted DB cluster snapshot from the us-west-2 Amazon
|
1044
|
+
# Web Services Region, then your `SourceDBClusterSnapshotIdentifier`
|
1045
|
+
# looks like the following example:
|
1044
1046
|
# `arn:aws:rds:us-west-2:123456789012:cluster-snapshot:aurora-cluster1-snapshot-20161115`.
|
1045
1047
|
#
|
1046
1048
|
# To learn how to generate a Signature Version 4 signed request, see [
|
1047
|
-
# Authenticating Requests: Using Query Parameters (
|
1048
|
-
# Version 4)][1] and [ Signature Version 4 Signing
|
1049
|
+
# Authenticating Requests: Using Query Parameters (Amazon Web Services
|
1050
|
+
# Signature Version 4)][1] and [ Signature Version 4 Signing
|
1051
|
+
# Process][2].
|
1049
1052
|
#
|
1050
|
-
# <note markdown="1"> If you are using an
|
1051
|
-
# `SourceRegion` (or `--source-region` for the
|
1053
|
+
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
1054
|
+
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
1052
1055
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
1053
1056
|
# autogenerates a pre-signed URL that is a valid request for the
|
1054
|
-
# operation that can be executed in the source
|
1057
|
+
# operation that can be executed in the source Amazon Web Services
|
1058
|
+
# Region.
|
1055
1059
|
#
|
1056
1060
|
# </note>
|
1057
1061
|
#
|
1058
1062
|
# * `TargetDBClusterSnapshotIdentifier` - The identifier for the new
|
1059
|
-
# copy of the DB cluster snapshot in the destination
|
1063
|
+
# copy of the DB cluster snapshot in the destination Amazon Web
|
1064
|
+
# Services Region.
|
1060
1065
|
#
|
1061
1066
|
# * `SourceDBClusterSnapshotIdentifier` - The DB cluster snapshot
|
1062
1067
|
# identifier for the encrypted DB cluster snapshot to be copied. This
|
1063
|
-
# identifier must be in the ARN format for the source
|
1064
|
-
# is the same value as the
|
1065
|
-
# pre-signed URL.
|
1068
|
+
# identifier must be in the ARN format for the source Amazon Web
|
1069
|
+
# Services Region and is the same value as the
|
1070
|
+
# `SourceDBClusterSnapshotIdentifier` in the pre-signed URL.
|
1066
1071
|
#
|
1067
1072
|
# To cancel the copy operation once it is in progress, delete the target
|
1068
1073
|
# DB cluster snapshot identified by `TargetDBClusterSnapshotIdentifier`
|
1069
1074
|
# while that DB cluster snapshot is in "copying" status.
|
1070
1075
|
#
|
1071
1076
|
# For more information on copying encrypted DB cluster snapshots from
|
1072
|
-
# one
|
1073
|
-
# Aurora User Guide.*
|
1077
|
+
# one Amazon Web Services Region to another, see [ Copying a
|
1078
|
+
# Snapshot][3] in the *Amazon Aurora User Guide.*
|
1074
1079
|
#
|
1075
1080
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
1076
1081
|
# Aurora?][4] in the *Amazon Aurora User Guide.*
|
@@ -1090,20 +1095,20 @@ module Aws::RDS
|
|
1090
1095
|
# The identifier of the DB cluster snapshot to copy. This parameter
|
1091
1096
|
# isn't case-sensitive.
|
1092
1097
|
#
|
1093
|
-
# You can't copy an encrypted, shared DB cluster snapshot from one
|
1094
|
-
# Region to another.
|
1098
|
+
# You can't copy an encrypted, shared DB cluster snapshot from one
|
1099
|
+
# Amazon Web Services Region to another.
|
1095
1100
|
#
|
1096
1101
|
# Constraints:
|
1097
1102
|
#
|
1098
1103
|
# * Must specify a valid system snapshot in the "available" state.
|
1099
1104
|
#
|
1100
|
-
# * If the source snapshot is in the same
|
1101
|
-
# specify a valid DB snapshot identifier.
|
1105
|
+
# * If the source snapshot is in the same Amazon Web Services Region as
|
1106
|
+
# the copy, specify a valid DB snapshot identifier.
|
1102
1107
|
#
|
1103
|
-
# * If the source snapshot is in a different
|
1104
|
-
# specify a valid DB cluster snapshot ARN. For more
|
1105
|
-
# [ Copying Snapshots Across
|
1106
|
-
# User Guide.*
|
1108
|
+
# * If the source snapshot is in a different Amazon Web Services Region
|
1109
|
+
# than the copy, specify a valid DB cluster snapshot ARN. For more
|
1110
|
+
# information, go to [ Copying Snapshots Across Amazon Web Services
|
1111
|
+
# Regions][1] in the *Amazon Aurora User Guide.*
|
1107
1112
|
#
|
1108
1113
|
# Example: `my-cluster-snapshot1`
|
1109
1114
|
#
|
@@ -1126,70 +1131,78 @@ module Aws::RDS
|
|
1126
1131
|
# Example: `my-cluster-snapshot2`
|
1127
1132
|
#
|
1128
1133
|
# @option params [String] :kms_key_id
|
1129
|
-
# The
|
1130
|
-
#
|
1131
|
-
# name for the
|
1132
|
-
#
|
1133
|
-
#
|
1134
|
-
# you
|
1135
|
-
#
|
1136
|
-
# copy
|
1137
|
-
#
|
1134
|
+
# The Amazon Web Services KMS key identifier for an encrypted DB cluster
|
1135
|
+
# snapshot. The Amazon Web Services KMS key identifier is the key ARN,
|
1136
|
+
# key ID, alias ARN, or alias name for the Amazon Web Services KMS
|
1137
|
+
# customer master key (CMK).
|
1138
|
+
#
|
1139
|
+
# If you copy an encrypted DB cluster snapshot from your Amazon Web
|
1140
|
+
# Services account, you can specify a value for `KmsKeyId` to encrypt
|
1141
|
+
# the copy with a new Amazon Web Services KMS CMK. If you don't specify
|
1142
|
+
# a value for `KmsKeyId`, then the copy of the DB cluster snapshot is
|
1143
|
+
# encrypted with the same Amazon Web Services KMS key as the source DB
|
1144
|
+
# cluster snapshot.
|
1138
1145
|
#
|
1139
1146
|
# If you copy an encrypted DB cluster snapshot that is shared from
|
1140
|
-
# another
|
1147
|
+
# another Amazon Web Services account, then you must specify a value for
|
1148
|
+
# `KmsKeyId`.
|
1141
1149
|
#
|
1142
|
-
# To copy an encrypted DB cluster snapshot to another
|
1143
|
-
# must set `KmsKeyId` to the
|
1144
|
-
#
|
1145
|
-
#
|
1146
|
-
#
|
1147
|
-
#
|
1150
|
+
# To copy an encrypted DB cluster snapshot to another Amazon Web
|
1151
|
+
# Services Region, you must set `KmsKeyId` to the Amazon Web Services
|
1152
|
+
# KMS key identifier you want to use to encrypt the copy of the DB
|
1153
|
+
# cluster snapshot in the destination Amazon Web Services Region. Amazon
|
1154
|
+
# Web Services KMS CMKs are specific to the Amazon Web Services Region
|
1155
|
+
# that they are created in, and you can't use CMKs from one Amazon Web
|
1156
|
+
# Services Region in another Amazon Web Services Region.
|
1148
1157
|
#
|
1149
1158
|
# If you copy an unencrypted DB cluster snapshot and specify a value for
|
1150
1159
|
# the `KmsKeyId` parameter, an error is returned.
|
1151
1160
|
#
|
1152
1161
|
# @option params [String] :pre_signed_url
|
1153
1162
|
# The URL that contains a Signature Version 4 signed request for the
|
1154
|
-
# `CopyDBClusterSnapshot` API action in the
|
1155
|
-
# source DB cluster snapshot to copy. The
|
1156
|
-
# be used when copying an encrypted DB
|
1157
|
-
#
|
1158
|
-
#
|
1163
|
+
# `CopyDBClusterSnapshot` API action in the Amazon Web Services Region
|
1164
|
+
# that contains the source DB cluster snapshot to copy. The
|
1165
|
+
# `PreSignedUrl` parameter must be used when copying an encrypted DB
|
1166
|
+
# cluster snapshot from another Amazon Web Services Region. Don't
|
1167
|
+
# specify `PreSignedUrl` when you are copying an encrypted DB cluster
|
1168
|
+
# snapshot in the same Amazon Web Services Region.
|
1159
1169
|
#
|
1160
1170
|
# The pre-signed URL must be a valid request for the
|
1161
1171
|
# `CopyDBClusterSnapshot` API action that can be executed in the source
|
1162
|
-
#
|
1163
|
-
# copied. The pre-signed URL request must contain the
|
1164
|
-
# parameter values:
|
1172
|
+
# Amazon Web Services Region that contains the encrypted DB cluster
|
1173
|
+
# snapshot to be copied. The pre-signed URL request must contain the
|
1174
|
+
# following parameter values:
|
1165
1175
|
#
|
1166
|
-
# * `KmsKeyId` - The
|
1167
|
-
# (CMK) to use to encrypt the copy of the DB
|
1168
|
-
#
|
1169
|
-
#
|
1170
|
-
#
|
1176
|
+
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the
|
1177
|
+
# customer master key (CMK) to use to encrypt the copy of the DB
|
1178
|
+
# cluster snapshot in the destination Amazon Web Services Region. This
|
1179
|
+
# is the same identifier for both the `CopyDBClusterSnapshot` action
|
1180
|
+
# that is called in the destination Amazon Web Services Region, and
|
1181
|
+
# the action contained in the pre-signed URL.
|
1171
1182
|
#
|
1172
|
-
# * `DestinationRegion` - The name of the
|
1173
|
-
# snapshot is to be created in.
|
1183
|
+
# * `DestinationRegion` - The name of the Amazon Web Services Region
|
1184
|
+
# that the DB cluster snapshot is to be created in.
|
1174
1185
|
#
|
1175
1186
|
# * `SourceDBClusterSnapshotIdentifier` - The DB cluster snapshot
|
1176
1187
|
# identifier for the encrypted DB cluster snapshot to be copied. This
|
1177
1188
|
# identifier must be in the Amazon Resource Name (ARN) format for the
|
1178
|
-
# source
|
1179
|
-
# cluster snapshot from the us-west-2
|
1180
|
-
# `SourceDBClusterSnapshotIdentifier` looks
|
1181
|
-
# example:
|
1189
|
+
# source Amazon Web Services Region. For example, if you are copying
|
1190
|
+
# an encrypted DB cluster snapshot from the us-west-2 Amazon Web
|
1191
|
+
# Services Region, then your `SourceDBClusterSnapshotIdentifier` looks
|
1192
|
+
# like the following example:
|
1182
1193
|
# `arn:aws:rds:us-west-2:123456789012:cluster-snapshot:aurora-cluster1-snapshot-20161115`.
|
1183
1194
|
#
|
1184
1195
|
# To learn how to generate a Signature Version 4 signed request, see [
|
1185
|
-
# Authenticating Requests: Using Query Parameters (
|
1186
|
-
# 4)][1] and [ Signature Version 4 Signing
|
1196
|
+
# Authenticating Requests: Using Query Parameters (Amazon Web Services
|
1197
|
+
# Signature Version 4)][1] and [ Signature Version 4 Signing
|
1198
|
+
# Process][2].
|
1187
1199
|
#
|
1188
|
-
# <note markdown="1"> If you are using an
|
1189
|
-
# `SourceRegion` (or `--source-region` for the
|
1200
|
+
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
1201
|
+
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
1190
1202
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
1191
1203
|
# autogenerates a pre-signed URL that is a valid request for the
|
1192
|
-
# operation that can be executed in the source
|
1204
|
+
# operation that can be executed in the source Amazon Web Services
|
1205
|
+
# Region.
|
1193
1206
|
#
|
1194
1207
|
# </note>
|
1195
1208
|
#
|
@@ -1386,9 +1399,10 @@ module Aws::RDS
|
|
1386
1399
|
# Copies the specified DB snapshot. The source DB snapshot must be in
|
1387
1400
|
# the `available` state.
|
1388
1401
|
#
|
1389
|
-
# You can copy a snapshot from one
|
1390
|
-
# the
|
1391
|
-
#
|
1402
|
+
# You can copy a snapshot from one Amazon Web Services Region to
|
1403
|
+
# another. In that case, the Amazon Web Services Region where you call
|
1404
|
+
# the `CopyDBSnapshot` action is the destination Amazon Web Services
|
1405
|
+
# Region for the DB snapshot copy.
|
1392
1406
|
#
|
1393
1407
|
# For more information about copying snapshots, see [Copying a DB
|
1394
1408
|
# Snapshot][1] in the *Amazon RDS User Guide.*
|
@@ -1400,20 +1414,21 @@ module Aws::RDS
|
|
1400
1414
|
# @option params [required, String] :source_db_snapshot_identifier
|
1401
1415
|
# The identifier for the source DB snapshot.
|
1402
1416
|
#
|
1403
|
-
# If the source snapshot is in the same
|
1404
|
-
# a valid DB snapshot identifier. For example, you
|
1405
|
-
# `rds:mysql-instance1-snapshot-20130805`.
|
1417
|
+
# If the source snapshot is in the same Amazon Web Services Region as
|
1418
|
+
# the copy, specify a valid DB snapshot identifier. For example, you
|
1419
|
+
# might specify `rds:mysql-instance1-snapshot-20130805`.
|
1406
1420
|
#
|
1407
|
-
# If the source snapshot is in a different
|
1408
|
-
# specify a valid DB snapshot ARN. For example, you might
|
1421
|
+
# If the source snapshot is in a different Amazon Web Services Region
|
1422
|
+
# than the copy, specify a valid DB snapshot ARN. For example, you might
|
1423
|
+
# specify
|
1409
1424
|
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805`.
|
1410
1425
|
#
|
1411
1426
|
# If you are copying from a shared manual DB snapshot, this parameter
|
1412
1427
|
# must be the Amazon Resource Name (ARN) of the shared DB snapshot.
|
1413
1428
|
#
|
1414
1429
|
# If you are copying an encrypted snapshot this parameter must be in the
|
1415
|
-
# ARN format for the source
|
1416
|
-
# `SourceDBSnapshotIdentifier` in the `PreSignedUrl` parameter.
|
1430
|
+
# ARN format for the source Amazon Web Services Region, and must match
|
1431
|
+
# the `SourceDBSnapshotIdentifier` in the `PreSignedUrl` parameter.
|
1417
1432
|
#
|
1418
1433
|
# Constraints:
|
1419
1434
|
#
|
@@ -1442,26 +1457,31 @@ module Aws::RDS
|
|
1442
1457
|
# Example: `my-db-snapshot`
|
1443
1458
|
#
|
1444
1459
|
# @option params [String] :kms_key_id
|
1445
|
-
# The
|
1446
|
-
# key identifier is the key ARN,
|
1447
|
-
#
|
1448
|
-
#
|
1449
|
-
#
|
1450
|
-
#
|
1451
|
-
#
|
1452
|
-
# copy
|
1453
|
-
#
|
1460
|
+
# The Amazon Web Services KMS key identifier for an encrypted DB
|
1461
|
+
# snapshot. The Amazon Web Services KMS key identifier is the key ARN,
|
1462
|
+
# key ID, alias ARN, or alias name for the Amazon Web Services KMS
|
1463
|
+
# customer master key (CMK).
|
1464
|
+
#
|
1465
|
+
# If you copy an encrypted DB snapshot from your Amazon Web Services
|
1466
|
+
# account, you can specify a value for this parameter to encrypt the
|
1467
|
+
# copy with a new Amazon Web Services KMS CMK. If you don't specify a
|
1468
|
+
# value for this parameter, then the copy of the DB snapshot is
|
1469
|
+
# encrypted with the same Amazon Web Services KMS key as the source DB
|
1470
|
+
# snapshot.
|
1454
1471
|
#
|
1455
|
-
# If you copy an encrypted DB snapshot that is shared from another
|
1456
|
-
# account, then you must specify a value for this
|
1472
|
+
# If you copy an encrypted DB snapshot that is shared from another
|
1473
|
+
# Amazon Web Services account, then you must specify a value for this
|
1474
|
+
# parameter.
|
1457
1475
|
#
|
1458
1476
|
# If you specify this parameter when you copy an unencrypted snapshot,
|
1459
1477
|
# the copy is encrypted.
|
1460
1478
|
#
|
1461
|
-
# If you copy an encrypted snapshot to a different
|
1462
|
-
# must specify a
|
1463
|
-
#
|
1464
|
-
#
|
1479
|
+
# If you copy an encrypted snapshot to a different Amazon Web Services
|
1480
|
+
# Region, then you must specify a Amazon Web Services KMS key identifier
|
1481
|
+
# for the destination Amazon Web Services Region. Amazon Web Services
|
1482
|
+
# KMS CMKs are specific to the Amazon Web Services Region that they are
|
1483
|
+
# created in, and you can't use CMKs from one Amazon Web Services
|
1484
|
+
# Region in another Amazon Web Services Region.
|
1465
1485
|
#
|
1466
1486
|
# @option params [Array<Types::Tag>] :tags
|
1467
1487
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
@@ -1477,53 +1497,58 @@ module Aws::RDS
|
|
1477
1497
|
#
|
1478
1498
|
# @option params [String] :pre_signed_url
|
1479
1499
|
# The URL that contains a Signature Version 4 signed request for the
|
1480
|
-
# `CopyDBSnapshot` API action in the source
|
1481
|
-
# source DB snapshot to copy.
|
1500
|
+
# `CopyDBSnapshot` API action in the source Amazon Web Services Region
|
1501
|
+
# that contains the source DB snapshot to copy.
|
1482
1502
|
#
|
1483
1503
|
# You must specify this parameter when you copy an encrypted DB snapshot
|
1484
|
-
# from another
|
1485
|
-
# `PreSignedUrl` when you are copying an encrypted DB
|
1486
|
-
# same
|
1504
|
+
# from another Amazon Web Services Region by using the Amazon RDS API.
|
1505
|
+
# Don't specify `PreSignedUrl` when you are copying an encrypted DB
|
1506
|
+
# snapshot in the same Amazon Web Services Region.
|
1487
1507
|
#
|
1488
1508
|
# The presigned URL must be a valid request for the `CopyDBSnapshot` API
|
1489
|
-
# action that can be executed in the source
|
1490
|
-
# encrypted DB snapshot to be copied. The presigned
|
1491
|
-
# contain the following parameter values:
|
1509
|
+
# action that can be executed in the source Amazon Web Services Region
|
1510
|
+
# that contains the encrypted DB snapshot to be copied. The presigned
|
1511
|
+
# URL request must contain the following parameter values:
|
1492
1512
|
#
|
1493
|
-
# * `DestinationRegion` - The
|
1494
|
-
# is copied to. This
|
1495
|
-
# `CopyDBSnapshot` action is called that
|
1513
|
+
# * `DestinationRegion` - The Amazon Web Services Region that the
|
1514
|
+
# encrypted DB snapshot is copied to. This Amazon Web Services Region
|
1515
|
+
# is the same one where the `CopyDBSnapshot` action is called that
|
1516
|
+
# contains this presigned URL.
|
1496
1517
|
#
|
1497
1518
|
# For example, if you copy an encrypted DB snapshot from the us-west-2
|
1498
|
-
#
|
1499
|
-
# `CopyDBSnapshot` action in the us-east-1
|
1500
|
-
#
|
1501
|
-
# the us-west-2
|
1502
|
-
#
|
1503
|
-
#
|
1504
|
-
#
|
1505
|
-
#
|
1506
|
-
#
|
1507
|
-
#
|
1508
|
-
#
|
1519
|
+
# Amazon Web Services Region to the us-east-1 Amazon Web Services
|
1520
|
+
# Region, then you call the `CopyDBSnapshot` action in the us-east-1
|
1521
|
+
# Amazon Web Services Region and provide a presigned URL that contains
|
1522
|
+
# a call to the `CopyDBSnapshot` action in the us-west-2 Amazon Web
|
1523
|
+
# Services Region. For this example, the `DestinationRegion` in the
|
1524
|
+
# presigned URL must be set to the us-east-1 Amazon Web Services
|
1525
|
+
# Region.
|
1526
|
+
#
|
1527
|
+
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the
|
1528
|
+
# customer master key (CMK) to use to encrypt the copy of the DB
|
1529
|
+
# snapshot in the destination Amazon Web Services Region. This is the
|
1530
|
+
# same identifier for both the `CopyDBSnapshot` action that is called
|
1531
|
+
# in the destination Amazon Web Services Region, and the action
|
1532
|
+
# contained in the presigned URL.
|
1509
1533
|
#
|
1510
1534
|
# * `SourceDBSnapshotIdentifier` - The DB snapshot identifier for the
|
1511
1535
|
# encrypted snapshot to be copied. This identifier must be in the
|
1512
|
-
# Amazon Resource Name (ARN) format for the source
|
1513
|
-
# example, if you are copying an encrypted DB snapshot
|
1514
|
-
# us-west-2
|
1515
|
-
# like the following example:
|
1536
|
+
# Amazon Resource Name (ARN) format for the source Amazon Web Services
|
1537
|
+
# Region. For example, if you are copying an encrypted DB snapshot
|
1538
|
+
# from the us-west-2 Amazon Web Services Region, then your
|
1539
|
+
# `SourceDBSnapshotIdentifier` looks like the following example:
|
1516
1540
|
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20161115`.
|
1517
1541
|
#
|
1518
1542
|
# To learn how to generate a Signature Version 4 signed request, see
|
1519
|
-
# [Authenticating Requests: Using Query Parameters (
|
1520
|
-
# Version 4)][1] and [Signature Version 4 Signing Process][2].
|
1543
|
+
# [Authenticating Requests: Using Query Parameters (Amazon Web Services
|
1544
|
+
# Signature Version 4)][1] and [Signature Version 4 Signing Process][2].
|
1521
1545
|
#
|
1522
|
-
# <note markdown="1"> If you are using an
|
1523
|
-
# `SourceRegion` (or `--source-region` for the
|
1546
|
+
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
1547
|
+
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
1524
1548
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
1525
1549
|
# autogenerates a pre-signed URL that is a valid request for the
|
1526
|
-
# operation that can be executed in the source
|
1550
|
+
# operation that can be executed in the source Amazon Web Services
|
1551
|
+
# Region.
|
1527
1552
|
#
|
1528
1553
|
# </note>
|
1529
1554
|
#
|
@@ -1536,12 +1561,13 @@ module Aws::RDS
|
|
1536
1561
|
# The name of an option group to associate with the copy of the
|
1537
1562
|
# snapshot.
|
1538
1563
|
#
|
1539
|
-
# Specify this option if you are copying a snapshot from one
|
1540
|
-
# to another, and your DB instance uses a nondefault
|
1541
|
-
# your source DB instance uses Transparent Data
|
1542
|
-
# Microsoft SQL Server, you must specify this
|
1543
|
-
#
|
1544
|
-
# considerations][1] in the *Amazon RDS
|
1564
|
+
# Specify this option if you are copying a snapshot from one Amazon Web
|
1565
|
+
# Services Region to another, and your DB instance uses a nondefault
|
1566
|
+
# option group. If your source DB instance uses Transparent Data
|
1567
|
+
# Encryption for Oracle or Microsoft SQL Server, you must specify this
|
1568
|
+
# option when copying across Amazon Web Services Regions. For more
|
1569
|
+
# information, see [Option group considerations][1] in the *Amazon RDS
|
1570
|
+
# User Guide.*
|
1545
1571
|
#
|
1546
1572
|
#
|
1547
1573
|
#
|
@@ -1631,6 +1657,7 @@ module Aws::RDS
|
|
1631
1657
|
# resp.db_snapshot.tag_list #=> Array
|
1632
1658
|
# resp.db_snapshot.tag_list[0].key #=> String
|
1633
1659
|
# resp.db_snapshot.tag_list[0].value #=> String
|
1660
|
+
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
1634
1661
|
#
|
1635
1662
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
|
1636
1663
|
#
|
@@ -1824,9 +1851,9 @@ module Aws::RDS
|
|
1824
1851
|
#
|
1825
1852
|
# You can use the `ReplicationSourceIdentifier` parameter to create the
|
1826
1853
|
# DB cluster as a read replica of another DB cluster or Amazon RDS MySQL
|
1827
|
-
# DB instance. For cross-region replication where the DB
|
1828
|
-
# identified by `ReplicationSourceIdentifier` is encrypted, you
|
1829
|
-
# also specify the `PreSignedUrl` parameter.
|
1854
|
+
# or PostgreSQL DB instance. For cross-region replication where the DB
|
1855
|
+
# cluster identified by `ReplicationSourceIdentifier` is encrypted, you
|
1856
|
+
# must also specify the `PreSignedUrl` parameter.
|
1830
1857
|
#
|
1831
1858
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
1832
1859
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
@@ -1841,9 +1868,9 @@ module Aws::RDS
|
|
1841
1868
|
#
|
1842
1869
|
# @option params [Array<String>] :availability_zones
|
1843
1870
|
# A list of Availability Zones (AZs) where instances in the DB cluster
|
1844
|
-
# can be created. For information on
|
1845
|
-
# see [Choosing the Regions and Availability
|
1846
|
-
# Aurora User Guide*.
|
1871
|
+
# can be created. For information on Amazon Web Services Regions and
|
1872
|
+
# Availability Zones, see [Choosing the Regions and Availability
|
1873
|
+
# Zones][1] in the *Amazon Aurora User Guide*.
|
1847
1874
|
#
|
1848
1875
|
#
|
1849
1876
|
#
|
@@ -1981,8 +2008,9 @@ module Aws::RDS
|
|
1981
2008
|
# parameter.
|
1982
2009
|
#
|
1983
2010
|
# The default is a 30-minute window selected at random from an 8-hour
|
1984
|
-
# block of time for each
|
1985
|
-
# see [ Backup window][1] in the *Amazon Aurora User
|
2011
|
+
# block of time for each Amazon Web Services Region. To view the time
|
2012
|
+
# blocks available, see [ Backup window][1] in the *Amazon Aurora User
|
2013
|
+
# Guide.*
|
1986
2014
|
#
|
1987
2015
|
# Constraints:
|
1988
2016
|
#
|
@@ -2005,9 +2033,10 @@ module Aws::RDS
|
|
2005
2033
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
2006
2034
|
#
|
2007
2035
|
# The default is a 30-minute window selected at random from an 8-hour
|
2008
|
-
# block of time for each
|
2009
|
-
# week. To see the time blocks available, see [
|
2010
|
-
# DB Cluster Maintenance Window][1] in the
|
2036
|
+
# block of time for each Amazon Web Services Region, occurring on a
|
2037
|
+
# random day of the week. To see the time blocks available, see [
|
2038
|
+
# Adjusting the Preferred DB Cluster Maintenance Window][1] in the
|
2039
|
+
# *Amazon Aurora User Guide.*
|
2011
2040
|
#
|
2012
2041
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
2013
2042
|
#
|
@@ -2028,11 +2057,13 @@ module Aws::RDS
|
|
2028
2057
|
# A value that indicates whether the DB cluster is encrypted.
|
2029
2058
|
#
|
2030
2059
|
# @option params [String] :kms_key_id
|
2031
|
-
# The
|
2060
|
+
# The Amazon Web Services KMS key identifier for an encrypted DB
|
2061
|
+
# cluster.
|
2032
2062
|
#
|
2033
|
-
# The
|
2034
|
-
#
|
2035
|
-
#
|
2063
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
2064
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
2065
|
+
# master key (CMK). To use a CMK in a different Amazon Web Services
|
2066
|
+
# account, specify the key ARN or alias ARN.
|
2036
2067
|
#
|
2037
2068
|
# When a CMK isn't specified in `KmsKeyId`\:
|
2038
2069
|
#
|
@@ -2044,54 +2075,59 @@ module Aws::RDS
|
|
2044
2075
|
# `ReplicationSourceIdentifier` isn't specified, then Amazon RDS will
|
2045
2076
|
# use your default CMK.
|
2046
2077
|
#
|
2047
|
-
# There is a default CMK for your
|
2048
|
-
# different default CMK for each
|
2078
|
+
# There is a default CMK for your Amazon Web Services account. Your
|
2079
|
+
# Amazon Web Services account has a different default CMK for each
|
2080
|
+
# Amazon Web Services Region.
|
2049
2081
|
#
|
2050
|
-
# If you create a read replica of an encrypted DB cluster in another
|
2051
|
-
# Region, you must set `KmsKeyId` to a
|
2052
|
-
#
|
2053
|
-
# read replica in
|
2082
|
+
# If you create a read replica of an encrypted DB cluster in another
|
2083
|
+
# Amazon Web Services Region, you must set `KmsKeyId` to a Amazon Web
|
2084
|
+
# Services KMS key identifier that is valid in the destination Amazon
|
2085
|
+
# Web Services Region. This CMK is used to encrypt the read replica in
|
2086
|
+
# that Amazon Web Services Region.
|
2054
2087
|
#
|
2055
2088
|
# @option params [String] :pre_signed_url
|
2056
2089
|
# A URL that contains a Signature Version 4 signed request for the
|
2057
|
-
# `CreateDBCluster` action to be called in the source
|
2058
|
-
# the DB cluster is replicated from. You only need
|
2059
|
-
# `PreSignedUrl` when you are performing cross-region
|
2060
|
-
# an encrypted DB cluster.
|
2090
|
+
# `CreateDBCluster` action to be called in the source Amazon Web
|
2091
|
+
# Services Region where the DB cluster is replicated from. You only need
|
2092
|
+
# to specify `PreSignedUrl` when you are performing cross-region
|
2093
|
+
# replication from an encrypted DB cluster.
|
2061
2094
|
#
|
2062
2095
|
# The pre-signed URL must be a valid request for the `CreateDBCluster`
|
2063
|
-
# API action that can be executed in the source
|
2064
|
-
# the encrypted DB cluster to be copied.
|
2096
|
+
# API action that can be executed in the source Amazon Web Services
|
2097
|
+
# Region that contains the encrypted DB cluster to be copied.
|
2065
2098
|
#
|
2066
2099
|
# The pre-signed URL request must contain the following parameter
|
2067
2100
|
# values:
|
2068
2101
|
#
|
2069
|
-
# * `KmsKeyId` - The
|
2070
|
-
# encrypt the copy of the DB cluster in the destination
|
2071
|
-
# This should refer to the same
|
2072
|
-
# `CreateDBCluster` action that is
|
2073
|
-
#
|
2102
|
+
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the key
|
2103
|
+
# to use to encrypt the copy of the DB cluster in the destination
|
2104
|
+
# Amazon Web Services Region. This should refer to the same Amazon Web
|
2105
|
+
# Services KMS CMK for both the `CreateDBCluster` action that is
|
2106
|
+
# called in the destination Amazon Web Services Region, and the action
|
2107
|
+
# contained in the pre-signed URL.
|
2074
2108
|
#
|
2075
|
-
# * `DestinationRegion` - The name of the
|
2076
|
-
# replica will be created in.
|
2109
|
+
# * `DestinationRegion` - The name of the Amazon Web Services Region
|
2110
|
+
# that Aurora read replica will be created in.
|
2077
2111
|
#
|
2078
2112
|
# * `ReplicationSourceIdentifier` - The DB cluster identifier for the
|
2079
2113
|
# encrypted DB cluster to be copied. This identifier must be in the
|
2080
|
-
# Amazon Resource Name (ARN) format for the source
|
2081
|
-
# example, if you are copying an encrypted DB cluster from
|
2082
|
-
# us-west-2
|
2083
|
-
# look like Example:
|
2114
|
+
# Amazon Resource Name (ARN) format for the source Amazon Web Services
|
2115
|
+
# Region. For example, if you are copying an encrypted DB cluster from
|
2116
|
+
# the us-west-2 Amazon Web Services Region, then your
|
2117
|
+
# `ReplicationSourceIdentifier` would look like Example:
|
2084
2118
|
# `arn:aws:rds:us-west-2:123456789012:cluster:aurora-cluster1`.
|
2085
2119
|
#
|
2086
2120
|
# To learn how to generate a Signature Version 4 signed request, see [
|
2087
|
-
# Authenticating Requests: Using Query Parameters (
|
2088
|
-
# 4)][1] and [ Signature Version 4 Signing
|
2121
|
+
# Authenticating Requests: Using Query Parameters (Amazon Web Services
|
2122
|
+
# Signature Version 4)][1] and [ Signature Version 4 Signing
|
2123
|
+
# Process][2].
|
2089
2124
|
#
|
2090
|
-
# <note markdown="1"> If you are using an
|
2091
|
-
# `SourceRegion` (or `--source-region` for the
|
2125
|
+
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
2126
|
+
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
2092
2127
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
2093
2128
|
# autogenerates a pre-signed URL that is a valid request for the
|
2094
|
-
# operation that can be executed in the source
|
2129
|
+
# operation that can be executed in the source Amazon Web Services
|
2130
|
+
# Region.
|
2095
2131
|
#
|
2096
2132
|
# </note>
|
2097
2133
|
#
|
@@ -2101,9 +2137,9 @@ module Aws::RDS
|
|
2101
2137
|
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
2102
2138
|
#
|
2103
2139
|
# @option params [Boolean] :enable_iam_database_authentication
|
2104
|
-
# A value that indicates whether to enable mapping of
|
2105
|
-
# Access Management (IAM) accounts to database
|
2106
|
-
# mapping is disabled.
|
2140
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
2141
|
+
# Services Identity and Access Management (IAM) accounts to database
|
2142
|
+
# accounts. By default, mapping is disabled.
|
2107
2143
|
#
|
2108
2144
|
# For more information, see [ IAM Database Authentication][1] in the
|
2109
2145
|
# *Amazon Aurora User Guide.*
|
@@ -2982,10 +3018,10 @@ module Aws::RDS
|
|
2982
3018
|
#
|
2983
3019
|
# @option params [required, String] :db_instance_class
|
2984
3020
|
# The compute and memory capacity of the DB instance, for example,
|
2985
|
-
# `db.m4.large`. Not all DB instance classes are available in all
|
2986
|
-
# Regions, or for all database engines. For the full list
|
2987
|
-
# classes, and availability for your engine, see [DB
|
2988
|
-
# in the *Amazon RDS User Guide.*
|
3021
|
+
# `db.m4.large`. Not all DB instance classes are available in all Amazon
|
3022
|
+
# Web Services Regions, or for all database engines. For the full list
|
3023
|
+
# of DB instance classes, and availability for your engine, see [DB
|
3024
|
+
# Instance Class][1] in the *Amazon RDS User Guide.*
|
2989
3025
|
#
|
2990
3026
|
#
|
2991
3027
|
#
|
@@ -2994,7 +3030,8 @@ module Aws::RDS
|
|
2994
3030
|
# @option params [required, String] :engine
|
2995
3031
|
# The name of the database engine to be used for this instance.
|
2996
3032
|
#
|
2997
|
-
# Not every database engine is available for every
|
3033
|
+
# Not every database engine is available for every Amazon Web Services
|
3034
|
+
# Region.
|
2998
3035
|
#
|
2999
3036
|
# Valid Values:
|
3000
3037
|
#
|
@@ -3010,11 +3047,11 @@ module Aws::RDS
|
|
3010
3047
|
#
|
3011
3048
|
# * `oracle-ee`
|
3012
3049
|
#
|
3013
|
-
# * `oracle-
|
3050
|
+
# * `oracle-ee-cdb`
|
3014
3051
|
#
|
3015
|
-
# * `oracle-
|
3052
|
+
# * `oracle-se2`
|
3016
3053
|
#
|
3017
|
-
# * `oracle-
|
3054
|
+
# * `oracle-se2-cdb`
|
3018
3055
|
#
|
3019
3056
|
# * `postgres`
|
3020
3057
|
#
|
@@ -3140,17 +3177,18 @@ module Aws::RDS
|
|
3140
3177
|
#
|
3141
3178
|
# @option params [String] :availability_zone
|
3142
3179
|
# The Availability Zone (AZ) where the database will be created. For
|
3143
|
-
# information on
|
3144
|
-
# Availability Zones][1].
|
3180
|
+
# information on Amazon Web Services Regions and Availability Zones, see
|
3181
|
+
# [Regions and Availability Zones][1].
|
3145
3182
|
#
|
3146
3183
|
# Default: A random, system-chosen Availability Zone in the endpoint's
|
3147
|
-
#
|
3184
|
+
# Amazon Web Services Region.
|
3148
3185
|
#
|
3149
3186
|
# Example: `us-east-1d`
|
3150
3187
|
#
|
3151
3188
|
# Constraint: The `AvailabilityZone` parameter can't be specified if
|
3152
3189
|
# the DB instance is a Multi-AZ deployment. The specified Availability
|
3153
|
-
# Zone must be in the same
|
3190
|
+
# Zone must be in the same Amazon Web Services Region as the current
|
3191
|
+
# endpoint.
|
3154
3192
|
#
|
3155
3193
|
# <note markdown="1"> If you're creating a DB instance in an RDS on VMware environment,
|
3156
3194
|
# specify the identifier of the custom Availability Zone to create the
|
@@ -3179,8 +3217,8 @@ module Aws::RDS
|
|
3179
3217
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
3180
3218
|
#
|
3181
3219
|
# The default is a 30-minute window selected at random from an 8-hour
|
3182
|
-
# block of time for each
|
3183
|
-
# week.
|
3220
|
+
# block of time for each Amazon Web Services Region, occurring on a
|
3221
|
+
# random day of the week.
|
3184
3222
|
#
|
3185
3223
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
3186
3224
|
#
|
@@ -3225,8 +3263,8 @@ module Aws::RDS
|
|
3225
3263
|
# The daily time range during which automated backups are created if
|
3226
3264
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
3227
3265
|
# parameter. The default is a 30-minute window selected at random from
|
3228
|
-
# an 8-hour block of time for each
|
3229
|
-
# [Backup window][1] in the *Amazon RDS User Guide*.
|
3266
|
+
# an 8-hour block of time for each Amazon Web Services Region. For more
|
3267
|
+
# information, see [Backup window][1] in the *Amazon RDS User Guide*.
|
3230
3268
|
#
|
3231
3269
|
# **Amazon Aurora**
|
3232
3270
|
#
|
@@ -3308,7 +3346,8 @@ module Aws::RDS
|
|
3308
3346
|
#
|
3309
3347
|
# The following are the database engines and links to information about
|
3310
3348
|
# the major and minor versions that are available with Amazon RDS. Not
|
3311
|
-
# every database engine is available for every
|
3349
|
+
# every database engine is available for every Amazon Web Services
|
3350
|
+
# Region.
|
3312
3351
|
#
|
3313
3352
|
# **Amazon Aurora**
|
3314
3353
|
#
|
@@ -3462,21 +3501,24 @@ module Aws::RDS
|
|
3462
3501
|
# cluster.
|
3463
3502
|
#
|
3464
3503
|
# @option params [String] :kms_key_id
|
3465
|
-
# The
|
3504
|
+
# The Amazon Web Services KMS key identifier for an encrypted DB
|
3505
|
+
# instance.
|
3466
3506
|
#
|
3467
|
-
# The
|
3468
|
-
#
|
3469
|
-
#
|
3507
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
3508
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
3509
|
+
# master key (CMK). To use a CMK in a different Amazon Web Services
|
3510
|
+
# account, specify the key ARN or alias ARN.
|
3470
3511
|
#
|
3471
3512
|
# **Amazon Aurora**
|
3472
3513
|
#
|
3473
|
-
# Not applicable. The
|
3474
|
-
# cluster. For more information, see `CreateDBCluster`.
|
3514
|
+
# Not applicable. The Amazon Web Services KMS key identifier is managed
|
3515
|
+
# by the DB cluster. For more information, see `CreateDBCluster`.
|
3475
3516
|
#
|
3476
3517
|
# If `StorageEncrypted` is enabled, and you do not specify a value for
|
3477
3518
|
# the `KmsKeyId` parameter, then Amazon RDS uses your default CMK. There
|
3478
|
-
# is a default CMK for your
|
3479
|
-
# different default CMK for each
|
3519
|
+
# is a default CMK for your Amazon Web Services account. Your Amazon Web
|
3520
|
+
# Services account has a different default CMK for each Amazon Web
|
3521
|
+
# Services Region.
|
3480
3522
|
#
|
3481
3523
|
# @option params [String] :domain
|
3482
3524
|
# The Active Directory directory ID to create the DB instance in.
|
@@ -3551,12 +3593,13 @@ module Aws::RDS
|
|
3551
3593
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone
|
3552
3594
|
#
|
3553
3595
|
# @option params [Boolean] :enable_iam_database_authentication
|
3554
|
-
# A value that indicates whether to enable mapping of
|
3555
|
-
# Access Management (IAM) accounts to database
|
3556
|
-
# mapping is disabled.
|
3596
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
3597
|
+
# Services Identity and Access Management (IAM) accounts to database
|
3598
|
+
# accounts. By default, mapping is disabled.
|
3557
3599
|
#
|
3558
|
-
# This setting doesn't apply to Amazon Aurora. Mapping
|
3559
|
-
# to database accounts is managed by the DB
|
3600
|
+
# This setting doesn't apply to Amazon Aurora. Mapping Amazon Web
|
3601
|
+
# Services IAM accounts to database accounts is managed by the DB
|
3602
|
+
# cluster.
|
3560
3603
|
#
|
3561
3604
|
# For more information, see [ IAM Database Authentication for MySQL and
|
3562
3605
|
# PostgreSQL][1] in the *Amazon RDS User Guide.*
|
@@ -3577,16 +3620,17 @@ module Aws::RDS
|
|
3577
3620
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
3578
3621
|
#
|
3579
3622
|
# @option params [String] :performance_insights_kms_key_id
|
3580
|
-
# The
|
3581
|
-
# data.
|
3623
|
+
# The Amazon Web Services KMS key identifier for encryption of
|
3624
|
+
# Performance Insights data.
|
3582
3625
|
#
|
3583
|
-
# The
|
3584
|
-
# name for the
|
3626
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
3627
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
3628
|
+
# master key (CMK).
|
3585
3629
|
#
|
3586
3630
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
|
3587
|
-
# Amazon RDS uses your default CMK. There is a default CMK for your
|
3588
|
-
# account. Your
|
3589
|
-
# Region.
|
3631
|
+
# Amazon RDS uses your default CMK. There is a default CMK for your
|
3632
|
+
# Amazon Web Services account. Your Amazon Web Services account has a
|
3633
|
+
# different default CMK for each Amazon Web Services Region.
|
3590
3634
|
#
|
3591
3635
|
# @option params [Integer] :performance_insights_retention_period
|
3592
3636
|
# The amount of time, in days, to retain Performance Insights data.
|
@@ -3671,10 +3715,11 @@ module Aws::RDS
|
|
3671
3715
|
# from outside of its virtual private cloud (VPC) on your local network.
|
3672
3716
|
#
|
3673
3717
|
# For more information about RDS on Outposts, see [Working with Amazon
|
3674
|
-
# RDS on
|
3718
|
+
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
3719
|
+
# Guide*.
|
3675
3720
|
#
|
3676
3721
|
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
3677
|
-
# in the *
|
3722
|
+
# in the *Amazon Web Services Outposts User Guide*.
|
3678
3723
|
#
|
3679
3724
|
#
|
3680
3725
|
#
|
@@ -3894,6 +3939,11 @@ module Aws::RDS
|
|
3894
3939
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
3895
3940
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
3896
3941
|
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
3942
|
+
# resp.db_instance.activity_stream_status #=> String, one of "stopped", "starting", "started", "stopping"
|
3943
|
+
# resp.db_instance.activity_stream_kms_key_id #=> String
|
3944
|
+
# resp.db_instance.activity_stream_kinesis_stream_name #=> String
|
3945
|
+
# resp.db_instance.activity_stream_mode #=> String, one of "sync", "async"
|
3946
|
+
# resp.db_instance.activity_stream_engine_native_audit_fields_included #=> Boolean
|
3897
3947
|
#
|
3898
3948
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
3899
3949
|
#
|
@@ -3956,14 +4006,14 @@ module Aws::RDS
|
|
3956
4006
|
# * The specified DB instance must have automatic backups enabled, that
|
3957
4007
|
# is, its backup retention period must be greater than 0.
|
3958
4008
|
#
|
3959
|
-
# * If the source DB instance is in the same
|
3960
|
-
# replica, specify a valid DB instance identifier.
|
4009
|
+
# * If the source DB instance is in the same Amazon Web Services Region
|
4010
|
+
# as the read replica, specify a valid DB instance identifier.
|
3961
4011
|
#
|
3962
|
-
# * If the source DB instance is in a different
|
3963
|
-
# replica, specify a valid DB instance ARN. For
|
3964
|
-
# [Constructing an ARN for Amazon RDS][3] in the
|
3965
|
-
# Guide*. This doesn't apply to SQL Server, which
|
3966
|
-
# cross-region replicas.
|
4012
|
+
# * If the source DB instance is in a different Amazon Web Services
|
4013
|
+
# Region from the read replica, specify a valid DB instance ARN. For
|
4014
|
+
# more information, see [Constructing an ARN for Amazon RDS][3] in the
|
4015
|
+
# *Amazon RDS User Guide*. This doesn't apply to SQL Server, which
|
4016
|
+
# doesn't support cross-region replicas.
|
3967
4017
|
#
|
3968
4018
|
#
|
3969
4019
|
#
|
@@ -3973,10 +4023,10 @@ module Aws::RDS
|
|
3973
4023
|
#
|
3974
4024
|
# @option params [String] :db_instance_class
|
3975
4025
|
# The compute and memory capacity of the read replica, for example,
|
3976
|
-
# `db.m4.large`. Not all DB instance classes are available in all
|
3977
|
-
# Regions, or for all database engines. For the full list
|
3978
|
-
# classes, and availability for your engine, see [DB
|
3979
|
-
# in the *Amazon RDS User Guide.*
|
4026
|
+
# `db.m4.large`. Not all DB instance classes are available in all Amazon
|
4027
|
+
# Web Services Regions, or for all database engines. For the full list
|
4028
|
+
# of DB instance classes, and availability for your engine, see [DB
|
4029
|
+
# Instance Class][1] in the *Amazon RDS User Guide.*
|
3980
4030
|
#
|
3981
4031
|
# Default: Inherits from the source DB instance.
|
3982
4032
|
#
|
@@ -3988,7 +4038,7 @@ module Aws::RDS
|
|
3988
4038
|
# The Availability Zone (AZ) where the read replica will be created.
|
3989
4039
|
#
|
3990
4040
|
# Default: A random, system-chosen Availability Zone in the endpoint's
|
3991
|
-
#
|
4041
|
+
# Amazon Web Services Region.
|
3992
4042
|
#
|
3993
4043
|
# Example: `us-east-1d`
|
3994
4044
|
#
|
@@ -4081,15 +4131,15 @@ module Aws::RDS
|
|
4081
4131
|
# Constraints:
|
4082
4132
|
#
|
4083
4133
|
# * Can only be specified if the source DB instance identifier specifies
|
4084
|
-
# a DB instance in another
|
4134
|
+
# a DB instance in another Amazon Web Services Region.
|
4085
4135
|
#
|
4086
4136
|
# * If supplied, must match the name of an existing DBSubnetGroup.
|
4087
4137
|
#
|
4088
|
-
# * The specified DB subnet group must be in the same
|
4089
|
-
# which the operation is running.
|
4138
|
+
# * The specified DB subnet group must be in the same Amazon Web
|
4139
|
+
# Services Region in which the operation is running.
|
4090
4140
|
#
|
4091
|
-
# * All read replicas in one
|
4092
|
-
# source DB instance must either:>
|
4141
|
+
# * All read replicas in one Amazon Web Services Region that are created
|
4142
|
+
# from the same source DB instance must either:>
|
4093
4143
|
#
|
4094
4144
|
# * Specify DB subnet groups from the same VPC. All these read
|
4095
4145
|
# replicas are created in the same VPC.
|
@@ -4144,76 +4194,85 @@ module Aws::RDS
|
|
4144
4194
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole
|
4145
4195
|
#
|
4146
4196
|
# @option params [String] :kms_key_id
|
4147
|
-
# The
|
4197
|
+
# The Amazon Web Services KMS key identifier for an encrypted read
|
4198
|
+
# replica.
|
4148
4199
|
#
|
4149
|
-
# The
|
4150
|
-
# name for the
|
4200
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
4201
|
+
# alias ARN, or alias name for the Amazon Web Services KMS CMK.
|
4151
4202
|
#
|
4152
|
-
# If you create an encrypted read replica in the same
|
4153
|
-
# source DB instance, then do not specify a value
|
4154
|
-
# read replica in the same Region is always
|
4155
|
-
# KMS CMK as the source DB
|
4203
|
+
# If you create an encrypted read replica in the same Amazon Web
|
4204
|
+
# Services Region as the source DB instance, then do not specify a value
|
4205
|
+
# for this parameter. A read replica in the same Region is always
|
4206
|
+
# encrypted with the same Amazon Web Services KMS CMK as the source DB
|
4207
|
+
# instance.
|
4156
4208
|
#
|
4157
|
-
# If you create an encrypted read replica in a different
|
4158
|
-
# then you must specify a
|
4159
|
-
#
|
4160
|
-
#
|
4161
|
-
#
|
4209
|
+
# If you create an encrypted read replica in a different Amazon Web
|
4210
|
+
# Services Region, then you must specify a Amazon Web Services KMS key
|
4211
|
+
# identifier for the destination Amazon Web Services Region. Amazon Web
|
4212
|
+
# Services KMS CMKs are specific to the Amazon Web Services Region that
|
4213
|
+
# they are created in, and you can't use CMKs from one Amazon Web
|
4214
|
+
# Services Region in another Amazon Web Services Region.
|
4162
4215
|
#
|
4163
4216
|
# You can't create an encrypted read replica from an unencrypted DB
|
4164
4217
|
# instance.
|
4165
4218
|
#
|
4166
4219
|
# @option params [String] :pre_signed_url
|
4167
4220
|
# The URL that contains a Signature Version 4 signed request for the
|
4168
|
-
# `CreateDBInstanceReadReplica` API action in the source
|
4169
|
-
# contains the source DB instance.
|
4221
|
+
# `CreateDBInstanceReadReplica` API action in the source Amazon Web
|
4222
|
+
# Services Region that contains the source DB instance.
|
4170
4223
|
#
|
4171
4224
|
# You must specify this parameter when you create an encrypted read
|
4172
|
-
# replica from another
|
4173
|
-
# specify `PreSignedUrl` when you are creating an
|
4174
|
-
# in the same
|
4225
|
+
# replica from another Amazon Web Services Region by using the Amazon
|
4226
|
+
# RDS API. Don't specify `PreSignedUrl` when you are creating an
|
4227
|
+
# encrypted read replica in the same Amazon Web Services Region.
|
4175
4228
|
#
|
4176
4229
|
# The presigned URL must be a valid request for the
|
4177
4230
|
# `CreateDBInstanceReadReplica` API action that can be executed in the
|
4178
|
-
# source
|
4179
|
-
# presigned URL request must contain the following
|
4231
|
+
# source Amazon Web Services Region that contains the encrypted source
|
4232
|
+
# DB instance. The presigned URL request must contain the following
|
4233
|
+
# parameter values:
|
4180
4234
|
#
|
4181
|
-
# * `DestinationRegion` - The
|
4182
|
-
# is created in. This
|
4183
|
-
#
|
4184
|
-
# presigned URL.
|
4235
|
+
# * `DestinationRegion` - The Amazon Web Services Region that the
|
4236
|
+
# encrypted read replica is created in. This Amazon Web Services
|
4237
|
+
# Region is the same one where the `CreateDBInstanceReadReplica`
|
4238
|
+
# action is called that contains this presigned URL.
|
4185
4239
|
#
|
4186
4240
|
# For example, if you create an encrypted DB instance in the us-west-1
|
4187
|
-
#
|
4188
|
-
#
|
4189
|
-
# us-east-1
|
4190
|
-
#
|
4191
|
-
#
|
4192
|
-
#
|
4193
|
-
#
|
4194
|
-
#
|
4195
|
-
#
|
4196
|
-
#
|
4197
|
-
#
|
4198
|
-
#
|
4241
|
+
# Amazon Web Services Region, from a source DB instance in the
|
4242
|
+
# us-east-2 Amazon Web Services Region, then you call the
|
4243
|
+
# `CreateDBInstanceReadReplica` action in the us-east-1 Amazon Web
|
4244
|
+
# Services Region and provide a presigned URL that contains a call to
|
4245
|
+
# the `CreateDBInstanceReadReplica` action in the us-west-2 Amazon Web
|
4246
|
+
# Services Region. For this example, the `DestinationRegion` in the
|
4247
|
+
# presigned URL must be set to the us-east-1 Amazon Web Services
|
4248
|
+
# Region.
|
4249
|
+
#
|
4250
|
+
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the key
|
4251
|
+
# to use to encrypt the read replica in the destination Amazon Web
|
4252
|
+
# Services Region. This is the same identifier for both the
|
4253
|
+
# `CreateDBInstanceReadReplica` action that is called in the
|
4254
|
+
# destination Amazon Web Services Region, and the action contained in
|
4255
|
+
# the presigned URL.
|
4199
4256
|
#
|
4200
4257
|
# * `SourceDBInstanceIdentifier` - The DB instance identifier for the
|
4201
4258
|
# encrypted DB instance to be replicated. This identifier must be in
|
4202
|
-
# the Amazon Resource Name (ARN) format for the source
|
4203
|
-
# example, if you are creating an encrypted read
|
4204
|
-
# instance in the us-west-2
|
4205
|
-
# `SourceDBInstanceIdentifier` looks like the
|
4259
|
+
# the Amazon Resource Name (ARN) format for the source Amazon Web
|
4260
|
+
# Services Region. For example, if you are creating an encrypted read
|
4261
|
+
# replica from a DB instance in the us-west-2 Amazon Web Services
|
4262
|
+
# Region, then your `SourceDBInstanceIdentifier` looks like the
|
4263
|
+
# following example:
|
4206
4264
|
# `arn:aws:rds:us-west-2:123456789012:instance:mysql-instance1-20161115`.
|
4207
4265
|
#
|
4208
4266
|
# To learn how to generate a Signature Version 4 signed request, see
|
4209
|
-
# [Authenticating Requests: Using Query Parameters (
|
4210
|
-
# Version 4)][1] and [Signature Version 4 Signing Process][2].
|
4267
|
+
# [Authenticating Requests: Using Query Parameters (Amazon Web Services
|
4268
|
+
# Signature Version 4)][1] and [Signature Version 4 Signing Process][2].
|
4211
4269
|
#
|
4212
|
-
# <note markdown="1"> If you are using an
|
4213
|
-
# `SourceRegion` (or `--source-region` for the
|
4270
|
+
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
4271
|
+
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
4214
4272
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
4215
4273
|
# autogenerates a presigned URL that is a valid request for the
|
4216
|
-
# operation that can be executed in the source
|
4274
|
+
# operation that can be executed in the source Amazon Web Services
|
4275
|
+
# Region.
|
4217
4276
|
#
|
4218
4277
|
# `SourceRegion` isn't supported for SQL Server, because SQL Server on
|
4219
4278
|
# Amazon RDS doesn't support cross-region read replicas.
|
@@ -4226,9 +4285,9 @@ module Aws::RDS
|
|
4226
4285
|
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
4227
4286
|
#
|
4228
4287
|
# @option params [Boolean] :enable_iam_database_authentication
|
4229
|
-
# A value that indicates whether to enable mapping of
|
4230
|
-
# Access Management (IAM) accounts to database
|
4231
|
-
# mapping is disabled.
|
4288
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
4289
|
+
# Services Identity and Access Management (IAM) accounts to database
|
4290
|
+
# accounts. By default, mapping is disabled.
|
4232
4291
|
#
|
4233
4292
|
# For more information about IAM database authentication, see [ IAM
|
4234
4293
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -4250,16 +4309,17 @@ module Aws::RDS
|
|
4250
4309
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
4251
4310
|
#
|
4252
4311
|
# @option params [String] :performance_insights_kms_key_id
|
4253
|
-
# The
|
4254
|
-
# data.
|
4312
|
+
# The Amazon Web Services KMS key identifier for encryption of
|
4313
|
+
# Performance Insights data.
|
4255
4314
|
#
|
4256
|
-
# The
|
4257
|
-
# name for the
|
4315
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
4316
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
4317
|
+
# master key (CMK).
|
4258
4318
|
#
|
4259
4319
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
|
4260
|
-
# Amazon RDS uses your default CMK. There is a default CMK for your
|
4261
|
-
# account. Your
|
4262
|
-
# Region.
|
4320
|
+
# Amazon RDS uses your default CMK. There is a default CMK for your
|
4321
|
+
# Amazon Web Services account. Your Amazon Web Services account has a
|
4322
|
+
# different default CMK for each Amazon Web Services Region.
|
4263
4323
|
#
|
4264
4324
|
# @option params [Integer] :performance_insights_retention_period
|
4265
4325
|
# The amount of time, in days, to retain Performance Insights data.
|
@@ -4552,6 +4612,11 @@ module Aws::RDS
|
|
4552
4612
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
4553
4613
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
4554
4614
|
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
4615
|
+
# resp.db_instance.activity_stream_status #=> String, one of "stopped", "starting", "started", "stopping"
|
4616
|
+
# resp.db_instance.activity_stream_kms_key_id #=> String
|
4617
|
+
# resp.db_instance.activity_stream_kinesis_stream_name #=> String
|
4618
|
+
# resp.db_instance.activity_stream_mode #=> String, one of "sync", "async"
|
4619
|
+
# resp.db_instance.activity_stream_engine_native_audit_fields_included #=> Boolean
|
4555
4620
|
#
|
4556
4621
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
4557
4622
|
#
|
@@ -4641,11 +4706,11 @@ module Aws::RDS
|
|
4641
4706
|
#
|
4642
4707
|
# * `oracle-ee`
|
4643
4708
|
#
|
4644
|
-
# * `oracle-
|
4709
|
+
# * `oracle-ee-cdb`
|
4645
4710
|
#
|
4646
|
-
# * `oracle-
|
4711
|
+
# * `oracle-se2`
|
4647
4712
|
#
|
4648
|
-
# * `oracle-
|
4713
|
+
# * `oracle-se2-cdb`
|
4649
4714
|
#
|
4650
4715
|
# * `postgres`
|
4651
4716
|
#
|
@@ -4718,10 +4783,10 @@ module Aws::RDS
|
|
4718
4783
|
#
|
4719
4784
|
# @option params [required, String] :db_proxy_name
|
4720
4785
|
# The identifier for the proxy. This name must be unique for all proxies
|
4721
|
-
# owned by your
|
4722
|
-
# must begin with a letter and must
|
4723
|
-
# and hyphens; it can't end with a
|
4724
|
-
# hyphens.
|
4786
|
+
# owned by your Amazon Web Services account in the specified Amazon Web
|
4787
|
+
# Services Region. An identifier must begin with a letter and must
|
4788
|
+
# contain only ASCII letters, digits, and hyphens; it can't end with a
|
4789
|
+
# hyphen or contain two consecutive hyphens.
|
4725
4790
|
#
|
4726
4791
|
# @option params [required, String] :engine_family
|
4727
4792
|
# The kinds of databases that the proxy can connect to. This value
|
@@ -4734,7 +4799,7 @@ module Aws::RDS
|
|
4734
4799
|
#
|
4735
4800
|
# @option params [required, String] :role_arn
|
4736
4801
|
# The Amazon Resource Name (ARN) of the IAM role that the proxy uses to
|
4737
|
-
# access secrets in
|
4802
|
+
# access secrets in Amazon Web Services Secrets Manager.
|
4738
4803
|
#
|
4739
4804
|
# @option params [required, Array<String>] :vpc_subnet_ids
|
4740
4805
|
# One or more VPC subnet IDs to associate with the new proxy.
|
@@ -5103,6 +5168,7 @@ module Aws::RDS
|
|
5103
5168
|
# resp.db_snapshot.tag_list #=> Array
|
5104
5169
|
# resp.db_snapshot.tag_list[0].key #=> String
|
5105
5170
|
# resp.db_snapshot.tag_list[0].value #=> String
|
5171
|
+
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
5106
5172
|
#
|
5107
5173
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
5108
5174
|
#
|
@@ -5114,7 +5180,7 @@ module Aws::RDS
|
|
5114
5180
|
end
|
5115
5181
|
|
5116
5182
|
# Creates a new DB subnet group. DB subnet groups must contain at least
|
5117
|
-
# one subnet in at least two AZs in the
|
5183
|
+
# one subnet in at least two AZs in the Amazon Web Services Region.
|
5118
5184
|
#
|
5119
5185
|
# @option params [required, String] :db_subnet_group_name
|
5120
5186
|
# The name for the DB subnet group. This value is stored as a lowercase
|
@@ -5363,11 +5429,11 @@ module Aws::RDS
|
|
5363
5429
|
req.send_request(options)
|
5364
5430
|
end
|
5365
5431
|
|
5366
|
-
# Creates an Aurora global database spread across multiple
|
5367
|
-
# The global database contains a single primary
|
5368
|
-
# capability, and a read-only secondary cluster
|
5369
|
-
# the primary cluster through high-speed
|
5370
|
-
# Aurora storage subsystem.
|
5432
|
+
# Creates an Aurora global database spread across multiple Amazon Web
|
5433
|
+
# Services Regions. The global database contains a single primary
|
5434
|
+
# cluster with read-write capability, and a read-only secondary cluster
|
5435
|
+
# that receives data from the primary cluster through high-speed
|
5436
|
+
# replication performed by the Aurora storage subsystem.
|
5371
5437
|
#
|
5372
5438
|
# You can create a global database that is initially empty, and then add
|
5373
5439
|
# a primary cluster and a secondary cluster to it. Or you can specify an
|
@@ -5476,11 +5542,11 @@ module Aws::RDS
|
|
5476
5542
|
#
|
5477
5543
|
# * `oracle-ee`
|
5478
5544
|
#
|
5479
|
-
# * `oracle-
|
5545
|
+
# * `oracle-ee-cdb`
|
5480
5546
|
#
|
5481
|
-
# * `oracle-
|
5547
|
+
# * `oracle-se2`
|
5482
5548
|
#
|
5483
|
-
# * `oracle-
|
5549
|
+
# * `oracle-se2-cdb`
|
5484
5550
|
#
|
5485
5551
|
# * `postgres`
|
5486
5552
|
#
|
@@ -6246,6 +6312,11 @@ module Aws::RDS
|
|
6246
6312
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
6247
6313
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
6248
6314
|
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
6315
|
+
# resp.db_instance.activity_stream_status #=> String, one of "stopped", "starting", "started", "stopping"
|
6316
|
+
# resp.db_instance.activity_stream_kms_key_id #=> String
|
6317
|
+
# resp.db_instance.activity_stream_kinesis_stream_name #=> String
|
6318
|
+
# resp.db_instance.activity_stream_mode #=> String, one of "sync", "async"
|
6319
|
+
# resp.db_instance.activity_stream_engine_native_audit_fields_included #=> Boolean
|
6249
6320
|
#
|
6250
6321
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
6251
6322
|
#
|
@@ -6262,7 +6333,7 @@ module Aws::RDS
|
|
6262
6333
|
#
|
6263
6334
|
# @option params [String] :dbi_resource_id
|
6264
6335
|
# The identifier for the source DB instance, which can't be changed and
|
6265
|
-
# which is unique to an
|
6336
|
+
# which is unique to an Amazon Web Services Region.
|
6266
6337
|
#
|
6267
6338
|
# @option params [String] :db_instance_automated_backups_arn
|
6268
6339
|
# The Amazon Resource Name (ARN) of the automated backups to delete, for
|
@@ -6576,6 +6647,7 @@ module Aws::RDS
|
|
6576
6647
|
# resp.db_snapshot.tag_list #=> Array
|
6577
6648
|
# resp.db_snapshot.tag_list[0].key #=> String
|
6578
6649
|
# resp.db_snapshot.tag_list[0].value #=> String
|
6650
|
+
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
6579
6651
|
#
|
6580
6652
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
6581
6653
|
#
|
@@ -6891,8 +6963,8 @@ module Aws::RDS
|
|
6891
6963
|
req.send_request(options)
|
6892
6964
|
end
|
6893
6965
|
|
6894
|
-
# Lists the set of CA certificates provided by Amazon RDS for this
|
6895
|
-
# account.
|
6966
|
+
# Lists the set of CA certificates provided by Amazon RDS for this
|
6967
|
+
# Amazon Web Services account.
|
6896
6968
|
#
|
6897
6969
|
# @option params [String] :certificate_identifier
|
6898
6970
|
# The user-supplied certificate identifier. If this parameter is
|
@@ -7487,16 +7559,18 @@ module Aws::RDS
|
|
7487
7559
|
# Returns a list of DB cluster snapshot attribute names and values for a
|
7488
7560
|
# manual DB cluster snapshot.
|
7489
7561
|
#
|
7490
|
-
# When sharing snapshots with other
|
7562
|
+
# When sharing snapshots with other Amazon Web Services accounts,
|
7491
7563
|
# `DescribeDBClusterSnapshotAttributes` returns the `restore` attribute
|
7492
|
-
# and a list of IDs for the
|
7493
|
-
# restore the manual DB cluster snapshot. If `all`
|
7494
|
-
# list of values for the `restore` attribute, then
|
7495
|
-
# snapshot is public and can be copied or restored
|
7564
|
+
# and a list of IDs for the Amazon Web Services accounts that are
|
7565
|
+
# authorized to copy or restore the manual DB cluster snapshot. If `all`
|
7566
|
+
# is included in the list of values for the `restore` attribute, then
|
7567
|
+
# the manual DB cluster snapshot is public and can be copied or restored
|
7568
|
+
# by all Amazon Web Services accounts.
|
7496
7569
|
#
|
7497
|
-
# To add or remove access for an
|
7498
|
-
# DB cluster snapshot, or to make the manual DB cluster
|
7499
|
-
# or private, use the `ModifyDBClusterSnapshotAttribute`
|
7570
|
+
# To add or remove access for an Amazon Web Services account to copy or
|
7571
|
+
# restore a manual DB cluster snapshot, or to make the manual DB cluster
|
7572
|
+
# snapshot public or private, use the `ModifyDBClusterSnapshotAttribute`
|
7573
|
+
# API action.
|
7500
7574
|
#
|
7501
7575
|
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
7502
7576
|
#
|
@@ -7592,13 +7666,14 @@ module Aws::RDS
|
|
7592
7666
|
# of the following values:
|
7593
7667
|
#
|
7594
7668
|
# * `automated` - Return all DB cluster snapshots that have been
|
7595
|
-
# automatically taken by Amazon RDS for my
|
7669
|
+
# automatically taken by Amazon RDS for my Amazon Web Services
|
7670
|
+
# account.
|
7596
7671
|
#
|
7597
7672
|
# * `manual` - Return all DB cluster snapshots that have been taken by
|
7598
|
-
# my
|
7673
|
+
# my Amazon Web Services account.
|
7599
7674
|
#
|
7600
7675
|
# * `shared` - Return all manual DB cluster snapshots that have been
|
7601
|
-
# shared to my
|
7676
|
+
# shared to my Amazon Web Services account.
|
7602
7677
|
#
|
7603
7678
|
# * `public` - Return all DB cluster snapshots that have been marked as
|
7604
7679
|
# public.
|
@@ -7647,18 +7722,18 @@ module Aws::RDS
|
|
7647
7722
|
#
|
7648
7723
|
# @option params [Boolean] :include_shared
|
7649
7724
|
# A value that indicates whether to include shared manual DB cluster
|
7650
|
-
# snapshots from other
|
7651
|
-
# permission to copy or restore. By
|
7652
|
-
# included.
|
7725
|
+
# snapshots from other Amazon Web Services accounts that this Amazon Web
|
7726
|
+
# Services account has been given permission to copy or restore. By
|
7727
|
+
# default, these snapshots are not included.
|
7653
7728
|
#
|
7654
|
-
# You can give an
|
7655
|
-
# snapshot from another
|
7656
|
-
# `ModifyDBClusterSnapshotAttribute` API action.
|
7729
|
+
# You can give an Amazon Web Services account permission to restore a
|
7730
|
+
# manual DB cluster snapshot from another Amazon Web Services account by
|
7731
|
+
# the `ModifyDBClusterSnapshotAttribute` API action.
|
7657
7732
|
#
|
7658
7733
|
# @option params [Boolean] :include_public
|
7659
7734
|
# A value that indicates whether to include manual DB cluster snapshots
|
7660
|
-
# that are public and can be copied or restored by any
|
7661
|
-
# default, the public snapshots are not included.
|
7735
|
+
# that are public and can be copied or restored by any Amazon Web
|
7736
|
+
# Services account. By default, the public snapshots are not included.
|
7662
7737
|
#
|
7663
7738
|
# You can share a manual DB cluster snapshot as public by using the
|
7664
7739
|
# ModifyDBClusterSnapshotAttribute API action.
|
@@ -7778,11 +7853,20 @@ module Aws::RDS
|
|
7778
7853
|
#
|
7779
7854
|
# Supported filters:
|
7780
7855
|
#
|
7856
|
+
# * `clone-group-id` - Accepts clone group identifiers. The results list
|
7857
|
+
# will only include information about the DB clusters associated with
|
7858
|
+
# these clone groups.
|
7859
|
+
#
|
7781
7860
|
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
7782
7861
|
# Amazon Resource Names (ARNs). The results list will only include
|
7783
7862
|
# information about the DB clusters identified by these ARNs.
|
7784
7863
|
#
|
7785
|
-
#
|
7864
|
+
# * `domain` - Accepts Active Directory directory IDs. The results list
|
7865
|
+
# will only include information about the DB clusters associated with
|
7866
|
+
# these domains.
|
7867
|
+
#
|
7868
|
+
# * `engine` - Accepts engine names. The results list will only include
|
7869
|
+
# information about the DB clusters for these engines.
|
7786
7870
|
#
|
7787
7871
|
# @option params [Integer] :max_records
|
7788
7872
|
# The maximum number of records to include in the response. If more
|
@@ -7802,7 +7886,8 @@ module Aws::RDS
|
|
7802
7886
|
#
|
7803
7887
|
# @option params [Boolean] :include_shared
|
7804
7888
|
# Optional Boolean parameter that specifies whether the output includes
|
7805
|
-
# information about clusters shared from other
|
7889
|
+
# information about clusters shared from other Amazon Web Services
|
7890
|
+
# accounts.
|
7806
7891
|
#
|
7807
7892
|
# @return [Types::DBClusterMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7808
7893
|
#
|
@@ -7960,11 +8045,11 @@ module Aws::RDS
|
|
7960
8045
|
#
|
7961
8046
|
# * `oracle-ee`
|
7962
8047
|
#
|
7963
|
-
# * `oracle-
|
8048
|
+
# * `oracle-ee-cdb`
|
7964
8049
|
#
|
7965
|
-
# * `oracle-
|
8050
|
+
# * `oracle-se2`
|
7966
8051
|
#
|
7967
|
-
# * `oracle-
|
8052
|
+
# * `oracle-se2-cdb`
|
7968
8053
|
#
|
7969
8054
|
# * `postgres`
|
7970
8055
|
#
|
@@ -8476,6 +8561,11 @@ module Aws::RDS
|
|
8476
8561
|
# resp.db_instances[0].db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
8477
8562
|
# resp.db_instances[0].customer_owned_ip_enabled #=> Boolean
|
8478
8563
|
# resp.db_instances[0].aws_backup_recovery_point_arn #=> String
|
8564
|
+
# resp.db_instances[0].activity_stream_status #=> String, one of "stopped", "starting", "started", "stopping"
|
8565
|
+
# resp.db_instances[0].activity_stream_kms_key_id #=> String
|
8566
|
+
# resp.db_instances[0].activity_stream_kinesis_stream_name #=> String
|
8567
|
+
# resp.db_instances[0].activity_stream_mode #=> String, one of "sync", "async"
|
8568
|
+
# resp.db_instances[0].activity_stream_engine_native_audit_fields_included #=> Boolean
|
8479
8569
|
#
|
8480
8570
|
#
|
8481
8571
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -8778,8 +8868,8 @@ module Aws::RDS
|
|
8778
8868
|
#
|
8779
8869
|
# @option params [String] :db_proxy_name
|
8780
8870
|
# The name of the DB proxy. If you omit this parameter, the output
|
8781
|
-
# includes information about all DB proxies owned by your
|
8782
|
-
# ID.
|
8871
|
+
# includes information about all DB proxies owned by your Amazon Web
|
8872
|
+
# Services account ID.
|
8783
8873
|
#
|
8784
8874
|
# @option params [Array<Types::Filter>] :filters
|
8785
8875
|
# This parameter is not currently supported.
|
@@ -9174,16 +9264,17 @@ module Aws::RDS
|
|
9174
9264
|
# Returns a list of DB snapshot attribute names and values for a manual
|
9175
9265
|
# DB snapshot.
|
9176
9266
|
#
|
9177
|
-
# When sharing snapshots with other
|
9267
|
+
# When sharing snapshots with other Amazon Web Services accounts,
|
9178
9268
|
# `DescribeDBSnapshotAttributes` returns the `restore` attribute and a
|
9179
|
-
# list of IDs for the
|
9180
|
-
# restore the manual DB snapshot. If `all` is included in the
|
9181
|
-
# values for the `restore` attribute, then the manual DB
|
9182
|
-
# public and can be copied or restored by all
|
9269
|
+
# list of IDs for the Amazon Web Services accounts that are authorized
|
9270
|
+
# to copy or restore the manual DB snapshot. If `all` is included in the
|
9271
|
+
# list of values for the `restore` attribute, then the manual DB
|
9272
|
+
# snapshot is public and can be copied or restored by all Amazon Web
|
9273
|
+
# Services accounts.
|
9183
9274
|
#
|
9184
|
-
# To add or remove access for an
|
9185
|
-
# DB snapshot, or to make the manual DB snapshot public
|
9186
|
-
# the `ModifyDBSnapshotAttribute` API action.
|
9275
|
+
# To add or remove access for an Amazon Web Services account to copy or
|
9276
|
+
# restore a manual DB snapshot, or to make the manual DB snapshot public
|
9277
|
+
# or private, use the `ModifyDBSnapshotAttribute` API action.
|
9187
9278
|
#
|
9188
9279
|
# @option params [required, String] :db_snapshot_identifier
|
9189
9280
|
# The identifier for the DB snapshot to describe the attributes for.
|
@@ -9261,21 +9352,21 @@ module Aws::RDS
|
|
9261
9352
|
# following values:
|
9262
9353
|
#
|
9263
9354
|
# * `automated` - Return all DB snapshots that have been automatically
|
9264
|
-
# taken by Amazon RDS for my
|
9355
|
+
# taken by Amazon RDS for my Amazon Web Services account.
|
9265
9356
|
#
|
9266
|
-
# * `manual` - Return all DB snapshots that have been taken by my
|
9267
|
-
# account.
|
9357
|
+
# * `manual` - Return all DB snapshots that have been taken by my Amazon
|
9358
|
+
# Web Services account.
|
9268
9359
|
#
|
9269
9360
|
# * `shared` - Return all manual DB snapshots that have been shared to
|
9270
|
-
# my
|
9361
|
+
# my Amazon Web Services account.
|
9271
9362
|
#
|
9272
9363
|
# * `public` - Return all DB snapshots that have been marked as public.
|
9273
9364
|
#
|
9274
|
-
# * `awsbackup` - Return the DB snapshots managed by the
|
9275
|
-
# service.
|
9365
|
+
# * `awsbackup` - Return the DB snapshots managed by the Amazon Web
|
9366
|
+
# Services Backup service.
|
9276
9367
|
#
|
9277
|
-
# For information about
|
9278
|
-
# Guide.* ][1]
|
9368
|
+
# For information about Amazon Web Services Backup, see the [ *Amazon
|
9369
|
+
# Web Services Backup Developer Guide.* ][1]
|
9279
9370
|
#
|
9280
9371
|
# The `awsbackup` type does not apply to Aurora.
|
9281
9372
|
#
|
@@ -9330,18 +9421,18 @@ module Aws::RDS
|
|
9330
9421
|
#
|
9331
9422
|
# @option params [Boolean] :include_shared
|
9332
9423
|
# A value that indicates whether to include shared manual DB cluster
|
9333
|
-
# snapshots from other
|
9334
|
-
# permission to copy or restore. By
|
9335
|
-
# included.
|
9424
|
+
# snapshots from other Amazon Web Services accounts that this Amazon Web
|
9425
|
+
# Services account has been given permission to copy or restore. By
|
9426
|
+
# default, these snapshots are not included.
|
9336
9427
|
#
|
9337
|
-
# You can give an
|
9338
|
-
# from another
|
9339
|
-
# action.
|
9428
|
+
# You can give an Amazon Web Services account permission to restore a
|
9429
|
+
# manual DB snapshot from another Amazon Web Services account by using
|
9430
|
+
# the `ModifyDBSnapshotAttribute` API action.
|
9340
9431
|
#
|
9341
9432
|
# @option params [Boolean] :include_public
|
9342
9433
|
# A value that indicates whether to include manual DB cluster snapshots
|
9343
|
-
# that are public and can be copied or restored by any
|
9344
|
-
# default, the public snapshots are not included.
|
9434
|
+
# that are public and can be copied or restored by any Amazon Web
|
9435
|
+
# Services account. By default, the public snapshots are not included.
|
9345
9436
|
#
|
9346
9437
|
# You can share a manual DB snapshot as public by using the
|
9347
9438
|
# ModifyDBSnapshotAttribute API.
|
@@ -9428,6 +9519,7 @@ module Aws::RDS
|
|
9428
9519
|
# resp.db_snapshots[0].tag_list #=> Array
|
9429
9520
|
# resp.db_snapshots[0].tag_list[0].key #=> String
|
9430
9521
|
# resp.db_snapshots[0].tag_list[0].value #=> String
|
9522
|
+
# resp.db_snapshots[0].original_snapshot_create_time #=> Time
|
9431
9523
|
#
|
9432
9524
|
#
|
9433
9525
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -10148,15 +10240,7 @@ module Aws::RDS
|
|
10148
10240
|
# ^
|
10149
10241
|
#
|
10150
10242
|
# @option params [Array<Types::Filter>] :filters
|
10151
|
-
#
|
10152
|
-
#
|
10153
|
-
# Supported filters:
|
10154
|
-
#
|
10155
|
-
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
10156
|
-
# Amazon Resource Names (ARNs). The results list will only include
|
10157
|
-
# information about the DB clusters identified by these ARNs.
|
10158
|
-
#
|
10159
|
-
# ^
|
10243
|
+
# This parameter isn't currently supported.
|
10160
10244
|
#
|
10161
10245
|
# @option params [Integer] :max_records
|
10162
10246
|
# The maximum number of records to include in the response. If more
|
@@ -10317,11 +10401,11 @@ module Aws::RDS
|
|
10317
10401
|
#
|
10318
10402
|
# * `oracle-ee`
|
10319
10403
|
#
|
10320
|
-
# * `oracle-
|
10404
|
+
# * `oracle-ee-cdb`
|
10321
10405
|
#
|
10322
|
-
# * `oracle-
|
10406
|
+
# * `oracle-se2`
|
10323
10407
|
#
|
10324
|
-
# * `oracle-
|
10408
|
+
# * `oracle-se2-cdb`
|
10325
10409
|
#
|
10326
10410
|
# * `postgres`
|
10327
10411
|
#
|
@@ -10472,11 +10556,11 @@ module Aws::RDS
|
|
10472
10556
|
#
|
10473
10557
|
# * `oracle-ee`
|
10474
10558
|
#
|
10475
|
-
# * `oracle-
|
10559
|
+
# * `oracle-ee-cdb`
|
10476
10560
|
#
|
10477
|
-
# * `oracle-
|
10561
|
+
# * `oracle-se2`
|
10478
10562
|
#
|
10479
|
-
# * `oracle-
|
10563
|
+
# * `oracle-se2-cdb`
|
10480
10564
|
#
|
10481
10565
|
# * `postgres`
|
10482
10566
|
#
|
@@ -10594,11 +10678,11 @@ module Aws::RDS
|
|
10594
10678
|
#
|
10595
10679
|
# * `oracle-ee`
|
10596
10680
|
#
|
10597
|
-
# * `oracle-
|
10681
|
+
# * `oracle-ee-cdb`
|
10598
10682
|
#
|
10599
|
-
# * `oracle-
|
10683
|
+
# * `oracle-se2`
|
10600
10684
|
#
|
10601
|
-
# * `oracle-
|
10685
|
+
# * `oracle-se2-cdb`
|
10602
10686
|
#
|
10603
10687
|
# * `postgres`
|
10604
10688
|
#
|
@@ -10628,7 +10712,7 @@ module Aws::RDS
|
|
10628
10712
|
# group.
|
10629
10713
|
#
|
10630
10714
|
# Omit this parameter to show the available offerings in the specified
|
10631
|
-
#
|
10715
|
+
# Amazon Web Services Region.
|
10632
10716
|
#
|
10633
10717
|
# @option params [Boolean] :vpc
|
10634
10718
|
# A value that indicates whether to show only VPC or non-VPC offerings.
|
@@ -10730,6 +10814,8 @@ module Aws::RDS
|
|
10730
10814
|
# resp.orderable_db_instance_options[0].supports_storage_autoscaling #=> Boolean
|
10731
10815
|
# resp.orderable_db_instance_options[0].supports_kerberos_authentication #=> Boolean
|
10732
10816
|
# resp.orderable_db_instance_options[0].outpost_capable #=> Boolean
|
10817
|
+
# resp.orderable_db_instance_options[0].supported_activity_stream_modes #=> Array
|
10818
|
+
# resp.orderable_db_instance_options[0].supported_activity_stream_modes[0] #=> String
|
10733
10819
|
# resp.orderable_db_instance_options[0].supports_global_databases #=> Boolean
|
10734
10820
|
# resp.marker #=> String
|
10735
10821
|
#
|
@@ -10876,8 +10962,8 @@ module Aws::RDS
|
|
10876
10962
|
# The lease identifier filter value. Specify this parameter to show only
|
10877
10963
|
# the reservation that matches the specified lease ID.
|
10878
10964
|
#
|
10879
|
-
# <note markdown="1">
|
10880
|
-
# reserved DB instance.
|
10965
|
+
# <note markdown="1"> Amazon Web Services Support might request the lease ID for an issue
|
10966
|
+
# related to a reserved DB instance.
|
10881
10967
|
#
|
10882
10968
|
# </note>
|
10883
10969
|
#
|
@@ -11103,16 +11189,17 @@ module Aws::RDS
|
|
11103
11189
|
req.send_request(options)
|
11104
11190
|
end
|
11105
11191
|
|
11106
|
-
# Returns a list of the source
|
11107
|
-
# can create a read replica, copy a
|
11108
|
-
# automated backups from. This API action
|
11192
|
+
# Returns a list of the source Amazon Web Services Regions where the
|
11193
|
+
# current Amazon Web Services Region can create a read replica, copy a
|
11194
|
+
# DB snapshot from, or replicate automated backups from. This API action
|
11195
|
+
# supports pagination.
|
11109
11196
|
#
|
11110
11197
|
# @option params [String] :region_name
|
11111
|
-
# The source
|
11198
|
+
# The source Amazon Web Services Region name. For example, `us-east-1`.
|
11112
11199
|
#
|
11113
11200
|
# Constraints:
|
11114
11201
|
#
|
11115
|
-
# * Must specify a valid
|
11202
|
+
# * Must specify a valid Amazon Web Services Region name.
|
11116
11203
|
#
|
11117
11204
|
# ^
|
11118
11205
|
#
|
@@ -11589,7 +11676,7 @@ module Aws::RDS
|
|
11589
11676
|
# Identifier of the secondary Aurora DB cluster that you want to promote
|
11590
11677
|
# to primary for the Aurora global database (GlobalCluster.) Use the
|
11591
11678
|
# Amazon Resource Name (ARN) for the identifier so that Aurora can
|
11592
|
-
# locate the cluster in its
|
11679
|
+
# locate the cluster in its Amazon Web Services Region.
|
11593
11680
|
#
|
11594
11681
|
# @return [Types::FailoverGlobalClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11595
11682
|
#
|
@@ -11807,13 +11894,13 @@ module Aws::RDS
|
|
11807
11894
|
#
|
11808
11895
|
# * You already migrated your applications to support the latest
|
11809
11896
|
# certificate authority (CA) certificate, but the new CA certificate
|
11810
|
-
# is not yet the RDS default CA certificate for the specified
|
11811
|
-
# Region.
|
11897
|
+
# is not yet the RDS default CA certificate for the specified Amazon
|
11898
|
+
# Web Services Region.
|
11812
11899
|
#
|
11813
11900
|
# * RDS has already moved to a new default CA certificate for the
|
11814
|
-
# specified
|
11815
|
-
# the new CA certificate. In this case, you
|
11816
|
-
# additional time to finish your application changes.
|
11901
|
+
# specified Amazon Web Services Region, but you are still in the
|
11902
|
+
# process of supporting the new CA certificate. In this case, you
|
11903
|
+
# temporarily need additional time to finish your application changes.
|
11817
11904
|
#
|
11818
11905
|
# For more information about rotating your SSL/TLS certificate for RDS
|
11819
11906
|
# DB engines, see [ Rotating Your SSL/TLS Certificate][1] in the *Amazon
|
@@ -11832,7 +11919,7 @@ module Aws::RDS
|
|
11832
11919
|
# The new default certificate identifier to override the current one
|
11833
11920
|
# with.
|
11834
11921
|
#
|
11835
|
-
# To determine the valid values, use the `describe-certificates`
|
11922
|
+
# To determine the valid values, use the `describe-certificates` CLI
|
11836
11923
|
# command or the `DescribeCertificates` API operation.
|
11837
11924
|
#
|
11838
11925
|
# @option params [Boolean] :remove_customer_override
|
@@ -12083,8 +12170,9 @@ module Aws::RDS
|
|
12083
12170
|
# parameter.
|
12084
12171
|
#
|
12085
12172
|
# The default is a 30-minute window selected at random from an 8-hour
|
12086
|
-
# block of time for each
|
12087
|
-
# see [ Backup window][1] in the *Amazon Aurora User
|
12173
|
+
# block of time for each Amazon Web Services Region. To view the time
|
12174
|
+
# blocks available, see [ Backup window][1] in the *Amazon Aurora User
|
12175
|
+
# Guide.*
|
12088
12176
|
#
|
12089
12177
|
# Constraints:
|
12090
12178
|
#
|
@@ -12107,9 +12195,10 @@ module Aws::RDS
|
|
12107
12195
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
12108
12196
|
#
|
12109
12197
|
# The default is a 30-minute window selected at random from an 8-hour
|
12110
|
-
# block of time for each
|
12111
|
-
# week. To see the time blocks available, see [
|
12112
|
-
# DB Cluster Maintenance Window][1] in the
|
12198
|
+
# block of time for each Amazon Web Services Region, occurring on a
|
12199
|
+
# random day of the week. To see the time blocks available, see [
|
12200
|
+
# Adjusting the Preferred DB Cluster Maintenance Window][1] in the
|
12201
|
+
# *Amazon Aurora User Guide.*
|
12113
12202
|
#
|
12114
12203
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
12115
12204
|
#
|
@@ -12120,9 +12209,9 @@ module Aws::RDS
|
|
12120
12209
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
12121
12210
|
#
|
12122
12211
|
# @option params [Boolean] :enable_iam_database_authentication
|
12123
|
-
# A value that indicates whether to enable mapping of
|
12124
|
-
# Access Management (IAM) accounts to database
|
12125
|
-
# mapping is disabled.
|
12212
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
12213
|
+
# Services Identity and Access Management (IAM) accounts to database
|
12214
|
+
# accounts. By default, mapping is disabled.
|
12126
12215
|
#
|
12127
12216
|
# For more information, see [ IAM Database Authentication][1] in the
|
12128
12217
|
# *Amazon Aurora User Guide.*
|
@@ -12613,28 +12702,30 @@ module Aws::RDS
|
|
12613
12702
|
# Adds an attribute and values to, or removes an attribute and values
|
12614
12703
|
# from, a manual DB cluster snapshot.
|
12615
12704
|
#
|
12616
|
-
# To share a manual DB cluster snapshot with other
|
12617
|
-
# `restore` as the `AttributeName` and use the
|
12618
|
-
# to add a list of IDs of the
|
12619
|
-
#
|
12620
|
-
#
|
12621
|
-
# copied or restored by all
|
12705
|
+
# To share a manual DB cluster snapshot with other Amazon Web Services
|
12706
|
+
# accounts, specify `restore` as the `AttributeName` and use the
|
12707
|
+
# `ValuesToAdd` parameter to add a list of IDs of the Amazon Web
|
12708
|
+
# Services accounts that are authorized to restore the manual DB cluster
|
12709
|
+
# snapshot. Use the value `all` to make the manual DB cluster snapshot
|
12710
|
+
# public, which means that it can be copied or restored by all Amazon
|
12711
|
+
# Web Services accounts.
|
12622
12712
|
#
|
12623
12713
|
# <note markdown="1"> Don't add the `all` value for any manual DB cluster snapshots that
|
12624
|
-
# contain private information that you don't want available to all
|
12625
|
-
# accounts.
|
12714
|
+
# contain private information that you don't want available to all
|
12715
|
+
# Amazon Web Services accounts.
|
12626
12716
|
#
|
12627
12717
|
# </note>
|
12628
12718
|
#
|
12629
12719
|
# If a manual DB cluster snapshot is encrypted, it can be shared, but
|
12630
|
-
# only by specifying a list of authorized
|
12631
|
-
# `ValuesToAdd` parameter. You can't use `all` as a value
|
12632
|
-
# parameter in this case.
|
12720
|
+
# only by specifying a list of authorized Amazon Web Services account
|
12721
|
+
# IDs for the `ValuesToAdd` parameter. You can't use `all` as a value
|
12722
|
+
# for that parameter in this case.
|
12633
12723
|
#
|
12634
|
-
# To view which
|
12635
|
-
# cluster snapshot, or whether a manual DB cluster
|
12636
|
-
# private, use the
|
12637
|
-
#
|
12724
|
+
# To view which Amazon Web Services accounts have access to copy or
|
12725
|
+
# restore a manual DB cluster snapshot, or whether a manual DB cluster
|
12726
|
+
# snapshot is public or private, use the
|
12727
|
+
# DescribeDBClusterSnapshotAttributes API action. The accounts are
|
12728
|
+
# returned as values for the `restore` attribute.
|
12638
12729
|
#
|
12639
12730
|
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
12640
12731
|
#
|
@@ -12647,8 +12738,8 @@ module Aws::RDS
|
|
12647
12738
|
# @option params [required, String] :attribute_name
|
12648
12739
|
# The name of the DB cluster snapshot attribute to modify.
|
12649
12740
|
#
|
12650
|
-
# To manage authorization for other
|
12651
|
-
# manual DB cluster snapshot, set this value to `restore`.
|
12741
|
+
# To manage authorization for other Amazon Web Services accounts to copy
|
12742
|
+
# or restore a manual DB cluster snapshot, set this value to `restore`.
|
12652
12743
|
#
|
12653
12744
|
# <note markdown="1"> To view the list of attributes available to modify, use the
|
12654
12745
|
# DescribeDBClusterSnapshotAttributes API action.
|
@@ -12659,24 +12750,25 @@ module Aws::RDS
|
|
12659
12750
|
# A list of DB cluster snapshot attributes to add to the attribute
|
12660
12751
|
# specified by `AttributeName`.
|
12661
12752
|
#
|
12662
|
-
# To authorize other
|
12663
|
-
# snapshot, set this list to include one or more
|
12664
|
-
# `all` to make the manual DB
|
12665
|
-
#
|
12666
|
-
#
|
12667
|
-
# available to all
|
12753
|
+
# To authorize other Amazon Web Services accounts to copy or restore a
|
12754
|
+
# manual DB cluster snapshot, set this list to include one or more
|
12755
|
+
# Amazon Web Services account IDs, or `all` to make the manual DB
|
12756
|
+
# cluster snapshot restorable by any Amazon Web Services account. Do not
|
12757
|
+
# add the `all` value for any manual DB cluster snapshots that contain
|
12758
|
+
# private information that you don't want available to all Amazon Web
|
12759
|
+
# Services accounts.
|
12668
12760
|
#
|
12669
12761
|
# @option params [Array<String>] :values_to_remove
|
12670
12762
|
# A list of DB cluster snapshot attributes to remove from the attribute
|
12671
12763
|
# specified by `AttributeName`.
|
12672
12764
|
#
|
12673
|
-
# To remove authorization for other
|
12674
|
-
# manual DB cluster snapshot, set this list to include one
|
12675
|
-
# account identifiers, or `all` to remove
|
12676
|
-
#
|
12677
|
-
#
|
12678
|
-
#
|
12679
|
-
# snapshot.
|
12765
|
+
# To remove authorization for other Amazon Web Services accounts to copy
|
12766
|
+
# or restore a manual DB cluster snapshot, set this list to include one
|
12767
|
+
# or more Amazon Web Services account identifiers, or `all` to remove
|
12768
|
+
# authorization for any Amazon Web Services account to copy or restore
|
12769
|
+
# the DB cluster snapshot. If you specify `all`, an Amazon Web Services
|
12770
|
+
# account whose account ID is explicitly added to the `restore`
|
12771
|
+
# attribute can still copy or restore a manual DB cluster snapshot.
|
12680
12772
|
#
|
12681
12773
|
# @return [Types::ModifyDBClusterSnapshotAttributeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12682
12774
|
#
|
@@ -12762,10 +12854,10 @@ module Aws::RDS
|
|
12762
12854
|
#
|
12763
12855
|
# @option params [String] :db_instance_class
|
12764
12856
|
# The new compute and memory capacity of the DB instance, for example,
|
12765
|
-
# `db.m4.large`. Not all DB instance classes are available in all
|
12766
|
-
# Regions, or for all database engines. For the full list
|
12767
|
-
# classes, and availability for your engine, see [DB
|
12768
|
-
# in the *Amazon RDS User Guide.*
|
12857
|
+
# `db.m4.large`. Not all DB instance classes are available in all Amazon
|
12858
|
+
# Web Services Regions, or for all database engines. For the full list
|
12859
|
+
# of DB instance classes, and availability for your engine, see [DB
|
12860
|
+
# Instance Class][1] in the *Amazon RDS User Guide.*
|
12769
12861
|
#
|
12770
12862
|
# If you modify the DB instance class, an outage occurs during the
|
12771
12863
|
# change. The change is applied during the next maintenance window,
|
@@ -12941,8 +13033,8 @@ module Aws::RDS
|
|
12941
13033
|
# `BackupRetentionPeriod` parameter. Changing this parameter doesn't
|
12942
13034
|
# result in an outage and the change is asynchronously applied as soon
|
12943
13035
|
# as possible. The default is a 30-minute window selected at random from
|
12944
|
-
# an 8-hour block of time for each
|
12945
|
-
# [Backup window][1] in the *Amazon RDS User Guide.*
|
13036
|
+
# an 8-hour block of time for each Amazon Web Services Region. For more
|
13037
|
+
# information, see [Backup window][1] in the *Amazon RDS User Guide.*
|
12946
13038
|
#
|
12947
13039
|
# **Amazon Aurora**
|
12948
13040
|
#
|
@@ -13274,12 +13366,13 @@ module Aws::RDS
|
|
13274
13366
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.FaultTolerance
|
13275
13367
|
#
|
13276
13368
|
# @option params [Boolean] :enable_iam_database_authentication
|
13277
|
-
# A value that indicates whether to enable mapping of
|
13278
|
-
# Access Management (IAM) accounts to database
|
13279
|
-
# mapping is disabled.
|
13369
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
13370
|
+
# Services Identity and Access Management (IAM) accounts to database
|
13371
|
+
# accounts. By default, mapping is disabled.
|
13280
13372
|
#
|
13281
|
-
# This setting doesn't apply to Amazon Aurora. Mapping
|
13282
|
-
# to database accounts is managed by the DB
|
13373
|
+
# This setting doesn't apply to Amazon Aurora. Mapping Amazon Web
|
13374
|
+
# Services IAM accounts to database accounts is managed by the DB
|
13375
|
+
# cluster.
|
13283
13376
|
#
|
13284
13377
|
# For more information about IAM database authentication, see [ IAM
|
13285
13378
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -13301,16 +13394,17 @@ module Aws::RDS
|
|
13301
13394
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
13302
13395
|
#
|
13303
13396
|
# @option params [String] :performance_insights_kms_key_id
|
13304
|
-
# The
|
13305
|
-
# data.
|
13397
|
+
# The Amazon Web Services KMS key identifier for encryption of
|
13398
|
+
# Performance Insights data.
|
13306
13399
|
#
|
13307
|
-
# The
|
13308
|
-
# name for the
|
13400
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
13401
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
13402
|
+
# master key (CMK).
|
13309
13403
|
#
|
13310
13404
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
|
13311
|
-
# Amazon RDS uses your default CMK. There is a default CMK for your
|
13312
|
-
# account. Your
|
13313
|
-
# Region.
|
13405
|
+
# Amazon RDS uses your default CMK. There is a default CMK for your
|
13406
|
+
# Amazon Web Services account. Your Amazon Web Services account has a
|
13407
|
+
# different default CMK for each Amazon Web Services Region.
|
13314
13408
|
#
|
13315
13409
|
# @option params [Integer] :performance_insights_retention_period
|
13316
13410
|
# The amount of time, in days, to retain Performance Insights data.
|
@@ -13412,10 +13506,11 @@ module Aws::RDS
|
|
13412
13506
|
# from outside of its virtual private cloud (VPC) on your local network.
|
13413
13507
|
#
|
13414
13508
|
# For more information about RDS on Outposts, see [Working with Amazon
|
13415
|
-
# RDS on
|
13509
|
+
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
13510
|
+
# Guide*.
|
13416
13511
|
#
|
13417
13512
|
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
13418
|
-
# in the *
|
13513
|
+
# in the *Amazon Web Services Outposts User Guide*.
|
13419
13514
|
#
|
13420
13515
|
#
|
13421
13516
|
#
|
@@ -13423,7 +13518,8 @@ module Aws::RDS
|
|
13423
13518
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
13424
13519
|
#
|
13425
13520
|
# @option params [String] :aws_backup_recovery_point_arn
|
13426
|
-
# The Amazon Resource Name (ARN) of the recovery point in
|
13521
|
+
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
13522
|
+
# Services Backup.
|
13427
13523
|
#
|
13428
13524
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13429
13525
|
#
|
@@ -13635,6 +13731,11 @@ module Aws::RDS
|
|
13635
13731
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
13636
13732
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
13637
13733
|
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
13734
|
+
# resp.db_instance.activity_stream_status #=> String, one of "stopped", "starting", "started", "stopping"
|
13735
|
+
# resp.db_instance.activity_stream_kms_key_id #=> String
|
13736
|
+
# resp.db_instance.activity_stream_kinesis_stream_name #=> String
|
13737
|
+
# resp.db_instance.activity_stream_mode #=> String, one of "sync", "async"
|
13738
|
+
# resp.db_instance.activity_stream_engine_native_audit_fields_included #=> Boolean
|
13638
13739
|
#
|
13639
13740
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
13640
13741
|
#
|
@@ -13791,7 +13892,7 @@ module Aws::RDS
|
|
13791
13892
|
#
|
13792
13893
|
# @option params [String] :role_arn
|
13793
13894
|
# The Amazon Resource Name (ARN) of the IAM role that the proxy uses to
|
13794
|
-
# access secrets in
|
13895
|
+
# access secrets in Amazon Web Services Secrets Manager.
|
13795
13896
|
#
|
13796
13897
|
# @option params [Array<String>] :security_groups
|
13797
13898
|
# The new list of security groups for the `DBProxy`.
|
@@ -14069,6 +14170,7 @@ module Aws::RDS
|
|
14069
14170
|
# resp.db_snapshot.tag_list #=> Array
|
14070
14171
|
# resp.db_snapshot.tag_list[0].key #=> String
|
14071
14172
|
# resp.db_snapshot.tag_list[0].value #=> String
|
14173
|
+
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
14072
14174
|
#
|
14073
14175
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
14074
14176
|
#
|
@@ -14082,28 +14184,28 @@ module Aws::RDS
|
|
14082
14184
|
# Adds an attribute and values to, or removes an attribute and values
|
14083
14185
|
# from, a manual DB snapshot.
|
14084
14186
|
#
|
14085
|
-
# To share a manual DB snapshot with other
|
14086
|
-
# `restore` as the `AttributeName` and use the `ValuesToAdd`
|
14087
|
-
# to add a list of IDs of the
|
14088
|
-
# restore the manual DB snapshot. Uses the value
|
14089
|
-
# manual DB snapshot public, which means it can be
|
14090
|
-
# all
|
14187
|
+
# To share a manual DB snapshot with other Amazon Web Services accounts,
|
14188
|
+
# specify `restore` as the `AttributeName` and use the `ValuesToAdd`
|
14189
|
+
# parameter to add a list of IDs of the Amazon Web Services accounts
|
14190
|
+
# that are authorized to restore the manual DB snapshot. Uses the value
|
14191
|
+
# `all` to make the manual DB snapshot public, which means it can be
|
14192
|
+
# copied or restored by all Amazon Web Services accounts.
|
14091
14193
|
#
|
14092
14194
|
# <note markdown="1"> Don't add the `all` value for any manual DB snapshots that contain
|
14093
|
-
# private information that you don't want available to all
|
14094
|
-
# accounts.
|
14195
|
+
# private information that you don't want available to all Amazon Web
|
14196
|
+
# Services accounts.
|
14095
14197
|
#
|
14096
14198
|
# </note>
|
14097
14199
|
#
|
14098
14200
|
# If the manual DB snapshot is encrypted, it can be shared, but only by
|
14099
|
-
# specifying a list of authorized
|
14100
|
-
# parameter. You can't use `all` as a value for that
|
14101
|
-
# case.
|
14201
|
+
# specifying a list of authorized Amazon Web Services account IDs for
|
14202
|
+
# the `ValuesToAdd` parameter. You can't use `all` as a value for that
|
14203
|
+
# parameter in this case.
|
14102
14204
|
#
|
14103
|
-
# To view which
|
14104
|
-
# snapshot, or whether a manual DB snapshot public
|
14105
|
-
# DescribeDBSnapshotAttributes API action. The
|
14106
|
-
# values for the `restore` attribute.
|
14205
|
+
# To view which Amazon Web Services accounts have access to copy or
|
14206
|
+
# restore a manual DB snapshot, or whether a manual DB snapshot public
|
14207
|
+
# or private, use the DescribeDBSnapshotAttributes API action. The
|
14208
|
+
# accounts are returned as values for the `restore` attribute.
|
14107
14209
|
#
|
14108
14210
|
# @option params [required, String] :db_snapshot_identifier
|
14109
14211
|
# The identifier for the DB snapshot to modify the attributes for.
|
@@ -14111,8 +14213,8 @@ module Aws::RDS
|
|
14111
14213
|
# @option params [required, String] :attribute_name
|
14112
14214
|
# The name of the DB snapshot attribute to modify.
|
14113
14215
|
#
|
14114
|
-
# To manage authorization for other
|
14115
|
-
# manual DB snapshot, set this value to `restore`.
|
14216
|
+
# To manage authorization for other Amazon Web Services accounts to copy
|
14217
|
+
# or restore a manual DB snapshot, set this value to `restore`.
|
14116
14218
|
#
|
14117
14219
|
# <note markdown="1"> To view the list of attributes available to modify, use the
|
14118
14220
|
# DescribeDBSnapshotAttributes API action.
|
@@ -14123,20 +14225,22 @@ module Aws::RDS
|
|
14123
14225
|
# A list of DB snapshot attributes to add to the attribute specified by
|
14124
14226
|
# `AttributeName`.
|
14125
14227
|
#
|
14126
|
-
# To authorize other
|
14127
|
-
# set this list to include one or more
|
14128
|
-
#
|
14129
|
-
#
|
14130
|
-
#
|
14228
|
+
# To authorize other Amazon Web Services accounts to copy or restore a
|
14229
|
+
# manual snapshot, set this list to include one or more Amazon Web
|
14230
|
+
# Services account IDs, or `all` to make the manual DB snapshot
|
14231
|
+
# restorable by any Amazon Web Services account. Do not add the `all`
|
14232
|
+
# value for any manual DB snapshots that contain private information
|
14233
|
+
# that you don't want available to all Amazon Web Services accounts.
|
14131
14234
|
#
|
14132
14235
|
# @option params [Array<String>] :values_to_remove
|
14133
14236
|
# A list of DB snapshot attributes to remove from the attribute
|
14134
14237
|
# specified by `AttributeName`.
|
14135
14238
|
#
|
14136
|
-
# To remove authorization for other
|
14137
|
-
# manual snapshot, set this list to include one or more
|
14138
|
-
# identifiers, or `all` to remove
|
14139
|
-
#
|
14239
|
+
# To remove authorization for other Amazon Web Services accounts to copy
|
14240
|
+
# or restore a manual snapshot, set this list to include one or more
|
14241
|
+
# Amazon Web Services account identifiers, or `all` to remove
|
14242
|
+
# authorization for any Amazon Web Services account to copy or restore
|
14243
|
+
# the DB snapshot. If you specify `all`, an Amazon Web Services account
|
14140
14244
|
# whose account ID is explicitly added to the `restore` attribute can
|
14141
14245
|
# still copy or restore the manual DB snapshot.
|
14142
14246
|
#
|
@@ -14190,7 +14294,8 @@ module Aws::RDS
|
|
14190
14294
|
end
|
14191
14295
|
|
14192
14296
|
# Modifies an existing DB subnet group. DB subnet groups must contain at
|
14193
|
-
# least one subnet in at least two AZs in the
|
14297
|
+
# least one subnet in at least two AZs in the Amazon Web Services
|
14298
|
+
# Region.
|
14194
14299
|
#
|
14195
14300
|
# @option params [required, String] :db_subnet_group_name
|
14196
14301
|
# The name for the DB subnet group. This value is stored as a lowercase
|
@@ -14656,9 +14761,9 @@ module Aws::RDS
|
|
14656
14761
|
# parameter.
|
14657
14762
|
#
|
14658
14763
|
# The default is a 30-minute window selected at random from an 8-hour
|
14659
|
-
# block of time for each
|
14660
|
-
# see [ Adjusting the Preferred Maintenance Window][1]
|
14661
|
-
# RDS User Guide.*
|
14764
|
+
# block of time for each Amazon Web Services Region. To see the time
|
14765
|
+
# blocks available, see [ Adjusting the Preferred Maintenance Window][1]
|
14766
|
+
# in the *Amazon RDS User Guide.*
|
14662
14767
|
#
|
14663
14768
|
# Constraints:
|
14664
14769
|
#
|
@@ -14829,6 +14934,11 @@ module Aws::RDS
|
|
14829
14934
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
14830
14935
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
14831
14936
|
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
14937
|
+
# resp.db_instance.activity_stream_status #=> String, one of "stopped", "starting", "started", "stopping"
|
14938
|
+
# resp.db_instance.activity_stream_kms_key_id #=> String
|
14939
|
+
# resp.db_instance.activity_stream_kinesis_stream_name #=> String
|
14940
|
+
# resp.db_instance.activity_stream_mode #=> String, one of "sync", "async"
|
14941
|
+
# resp.db_instance.activity_stream_engine_native_audit_fields_included #=> Boolean
|
14832
14942
|
#
|
14833
14943
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
14834
14944
|
#
|
@@ -15242,6 +15352,11 @@ module Aws::RDS
|
|
15242
15352
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
15243
15353
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
15244
15354
|
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
15355
|
+
# resp.db_instance.activity_stream_status #=> String, one of "stopped", "starting", "started", "stopping"
|
15356
|
+
# resp.db_instance.activity_stream_kms_key_id #=> String
|
15357
|
+
# resp.db_instance.activity_stream_kinesis_stream_name #=> String
|
15358
|
+
# resp.db_instance.activity_stream_mode #=> String, one of "sync", "async"
|
15359
|
+
# resp.db_instance.activity_stream_engine_native_audit_fields_included #=> Boolean
|
15245
15360
|
#
|
15246
15361
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
15247
15362
|
#
|
@@ -15362,10 +15477,10 @@ module Aws::RDS
|
|
15362
15477
|
req.send_request(options)
|
15363
15478
|
end
|
15364
15479
|
|
15365
|
-
# Disassociates an
|
15366
|
-
# Amazon Aurora DB cluster. For more information, see
|
15367
|
-
# Amazon Aurora MySQL to Access Other
|
15368
|
-
# in the *Amazon Aurora User Guide*.
|
15480
|
+
# Disassociates an Amazon Web Services Identity and Access Management
|
15481
|
+
# (IAM) role from an Amazon Aurora DB cluster. For more information, see
|
15482
|
+
# [Authorizing Amazon Aurora MySQL to Access Other Amazon Web Services
|
15483
|
+
# Services on Your Behalf ][1] in the *Amazon Aurora User Guide*.
|
15369
15484
|
#
|
15370
15485
|
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
15371
15486
|
#
|
@@ -15407,8 +15522,8 @@ module Aws::RDS
|
|
15407
15522
|
req.send_request(options)
|
15408
15523
|
end
|
15409
15524
|
|
15410
|
-
# Disassociates an
|
15411
|
-
# DB instance.
|
15525
|
+
# Disassociates an Amazon Web Services Identity and Access Management
|
15526
|
+
# (IAM) role from a DB instance.
|
15412
15527
|
#
|
15413
15528
|
# @option params [required, String] :db_instance_identifier
|
15414
15529
|
# The name of the DB instance to disassociate the IAM role from.
|
@@ -15913,8 +16028,9 @@ module Aws::RDS
|
|
15913
16028
|
# parameter.
|
15914
16029
|
#
|
15915
16030
|
# The default is a 30-minute window selected at random from an 8-hour
|
15916
|
-
# block of time for each
|
15917
|
-
# see [ Backup window][1] in the *Amazon Aurora User
|
16031
|
+
# block of time for each Amazon Web Services Region. To view the time
|
16032
|
+
# blocks available, see [ Backup window][1] in the *Amazon Aurora User
|
16033
|
+
# Guide.*
|
15918
16034
|
#
|
15919
16035
|
# Constraints:
|
15920
16036
|
#
|
@@ -15937,9 +16053,10 @@ module Aws::RDS
|
|
15937
16053
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
15938
16054
|
#
|
15939
16055
|
# The default is a 30-minute window selected at random from an 8-hour
|
15940
|
-
# block of time for each
|
15941
|
-
# week. To see the time blocks available, see [
|
15942
|
-
# Maintenance Window][1] in the *Amazon Aurora
|
16056
|
+
# block of time for each Amazon Web Services Region, occurring on a
|
16057
|
+
# random day of the week. To see the time blocks available, see [
|
16058
|
+
# Adjusting the Preferred Maintenance Window][1] in the *Amazon Aurora
|
16059
|
+
# User Guide.*
|
15943
16060
|
#
|
15944
16061
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
15945
16062
|
#
|
@@ -15961,21 +16078,24 @@ module Aws::RDS
|
|
15961
16078
|
# A value that indicates whether the restored DB cluster is encrypted.
|
15962
16079
|
#
|
15963
16080
|
# @option params [String] :kms_key_id
|
15964
|
-
# The
|
16081
|
+
# The Amazon Web Services KMS key identifier for an encrypted DB
|
16082
|
+
# cluster.
|
15965
16083
|
#
|
15966
|
-
# The
|
15967
|
-
#
|
15968
|
-
#
|
16084
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
16085
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
16086
|
+
# master key (CMK). To use a CMK in a different Amazon Web Services
|
16087
|
+
# account, specify the key ARN or alias ARN.
|
15969
16088
|
#
|
15970
16089
|
# If the StorageEncrypted parameter is enabled, and you do not specify a
|
15971
16090
|
# value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
15972
|
-
# default CMK. There is a default CMK for your
|
15973
|
-
# account has a different default CMK
|
16091
|
+
# default CMK. There is a default CMK for your Amazon Web Services
|
16092
|
+
# account. Your Amazon Web Services account has a different default CMK
|
16093
|
+
# for each Amazon Web Services Region.
|
15974
16094
|
#
|
15975
16095
|
# @option params [Boolean] :enable_iam_database_authentication
|
15976
|
-
# A value that indicates whether to enable mapping of
|
15977
|
-
# Access Management (IAM) accounts to database
|
15978
|
-
# mapping is disabled.
|
16096
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
16097
|
+
# Services Identity and Access Management (IAM) accounts to database
|
16098
|
+
# accounts. By default, mapping is disabled.
|
15979
16099
|
#
|
15980
16100
|
# For more information, see [ IAM Database Authentication][1] in the
|
15981
16101
|
# *Amazon Aurora User Guide.*
|
@@ -16008,9 +16128,9 @@ module Aws::RDS
|
|
16008
16128
|
# by using all of the files in the Amazon S3 bucket.
|
16009
16129
|
#
|
16010
16130
|
# @option params [required, String] :s3_ingestion_role_arn
|
16011
|
-
# The Amazon Resource Name (ARN) of the
|
16012
|
-
# Management (IAM) role that authorizes Amazon RDS to access the
|
16013
|
-
# S3 bucket on your behalf.
|
16131
|
+
# The Amazon Resource Name (ARN) of the Amazon Web Services Identity and
|
16132
|
+
# Access Management (IAM) role that authorizes Amazon RDS to access the
|
16133
|
+
# Amazon S3 bucket on your behalf.
|
16014
16134
|
#
|
16015
16135
|
# @option params [Integer] :backtrack_window
|
16016
16136
|
# The target backtrack window, in seconds. To disable backtracking, set
|
@@ -16340,28 +16460,29 @@ module Aws::RDS
|
|
16340
16460
|
# The tags to be assigned to the restored DB cluster.
|
16341
16461
|
#
|
16342
16462
|
# @option params [String] :kms_key_id
|
16343
|
-
# The
|
16344
|
-
# cluster from a DB snapshot or DB cluster snapshot.
|
16463
|
+
# The Amazon Web Services KMS key identifier to use when restoring an
|
16464
|
+
# encrypted DB cluster from a DB snapshot or DB cluster snapshot.
|
16345
16465
|
#
|
16346
|
-
# The
|
16347
|
-
#
|
16348
|
-
#
|
16466
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
16467
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
16468
|
+
# master key (CMK). To use a CMK in a different Amazon Web Services
|
16469
|
+
# account, specify the key ARN or alias ARN.
|
16349
16470
|
#
|
16350
16471
|
# When you don't specify a value for the `KmsKeyId` parameter, then the
|
16351
16472
|
# following occurs:
|
16352
16473
|
#
|
16353
16474
|
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier` is
|
16354
|
-
# encrypted, then the restored DB cluster is encrypted using the
|
16355
|
-
# KMS CMK that was used to encrypt the DB snapshot
|
16356
|
-
# snapshot.
|
16475
|
+
# encrypted, then the restored DB cluster is encrypted using the
|
16476
|
+
# Amazon Web Services KMS CMK that was used to encrypt the DB snapshot
|
16477
|
+
# or DB cluster snapshot.
|
16357
16478
|
#
|
16358
16479
|
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier`
|
16359
16480
|
# isn't encrypted, then the restored DB cluster isn't encrypted.
|
16360
16481
|
#
|
16361
16482
|
# @option params [Boolean] :enable_iam_database_authentication
|
16362
|
-
# A value that indicates whether to enable mapping of
|
16363
|
-
# Access Management (IAM) accounts to database
|
16364
|
-
# mapping is disabled.
|
16483
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
16484
|
+
# Services Identity and Access Management (IAM) accounts to database
|
16485
|
+
# accounts. By default, mapping is disabled.
|
16365
16486
|
#
|
16366
16487
|
# For more information, see [ IAM Database Authentication][1] in the
|
16367
16488
|
# *Amazon Aurora User Guide.*
|
@@ -16735,24 +16856,26 @@ module Aws::RDS
|
|
16735
16856
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
16736
16857
|
#
|
16737
16858
|
# @option params [String] :kms_key_id
|
16738
|
-
# The
|
16739
|
-
# cluster from an encrypted DB cluster.
|
16859
|
+
# The Amazon Web Services KMS key identifier to use when restoring an
|
16860
|
+
# encrypted DB cluster from an encrypted DB cluster.
|
16740
16861
|
#
|
16741
|
-
# The
|
16742
|
-
#
|
16743
|
-
#
|
16862
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
16863
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
16864
|
+
# master key (CMK). To use a CMK in a different Amazon Web Services
|
16865
|
+
# account, specify the key ARN or alias ARN.
|
16744
16866
|
#
|
16745
16867
|
# You can restore to a new DB cluster and encrypt the new DB cluster
|
16746
|
-
# with a
|
16747
|
-
# encrypt the source DB cluster. The new DB
|
16748
|
-
# the
|
16868
|
+
# with a Amazon Web Services KMS CMK that is different than the Amazon
|
16869
|
+
# Web Services KMS key used to encrypt the source DB cluster. The new DB
|
16870
|
+
# cluster is encrypted with the Amazon Web Services KMS CMK identified
|
16871
|
+
# by the `KmsKeyId` parameter.
|
16749
16872
|
#
|
16750
16873
|
# If you don't specify a value for the `KmsKeyId` parameter, then the
|
16751
16874
|
# following occurs:
|
16752
16875
|
#
|
16753
16876
|
# * If the DB cluster is encrypted, then the restored DB cluster is
|
16754
|
-
# encrypted using the
|
16755
|
-
# DB cluster.
|
16877
|
+
# encrypted using the Amazon Web Services KMS CMK that was used to
|
16878
|
+
# encrypt the source DB cluster.
|
16756
16879
|
#
|
16757
16880
|
# * If the DB cluster isn't encrypted, then the restored DB cluster
|
16758
16881
|
# isn't encrypted.
|
@@ -16761,9 +16884,9 @@ module Aws::RDS
|
|
16761
16884
|
# then the restore request is rejected.
|
16762
16885
|
#
|
16763
16886
|
# @option params [Boolean] :enable_iam_database_authentication
|
16764
|
-
# A value that indicates whether to enable mapping of
|
16765
|
-
# Access Management (IAM) accounts to database
|
16766
|
-
# mapping is disabled.
|
16887
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
16888
|
+
# Services Identity and Access Management (IAM) accounts to database
|
16889
|
+
# accounts. By default, mapping is disabled.
|
16767
16890
|
#
|
16768
16891
|
# For more information, see [ IAM Database Authentication][1] in the
|
16769
16892
|
# *Amazon Aurora User Guide.*
|
@@ -16842,6 +16965,18 @@ module Aws::RDS
|
|
16842
16965
|
# Specify the name of the IAM role to be used when making API calls to
|
16843
16966
|
# the Directory Service.
|
16844
16967
|
#
|
16968
|
+
# @option params [Types::ScalingConfiguration] :scaling_configuration
|
16969
|
+
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
16970
|
+
# of the DB cluster.
|
16971
|
+
#
|
16972
|
+
# @option params [String] :engine_mode
|
16973
|
+
# The engine mode of the new cluster. Specify `provisioned` or
|
16974
|
+
# `serverless`, depending on the type of the cluster you are creating.
|
16975
|
+
# You can create an Aurora Serverless clone from a provisioned cluster,
|
16976
|
+
# or a provisioned clone from an Aurora Serverless cluster. To create a
|
16977
|
+
# clone that is an Aurora Serverless cluster, the original cluster must
|
16978
|
+
# be an Aurora Serverless cluster or an encrypted provisioned cluster.
|
16979
|
+
#
|
16845
16980
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
16846
16981
|
#
|
16847
16982
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -16890,6 +17025,14 @@ module Aws::RDS
|
|
16890
17025
|
# copy_tags_to_snapshot: false,
|
16891
17026
|
# domain: "String",
|
16892
17027
|
# domain_iam_role_name: "String",
|
17028
|
+
# scaling_configuration: {
|
17029
|
+
# min_capacity: 1,
|
17030
|
+
# max_capacity: 1,
|
17031
|
+
# auto_pause: false,
|
17032
|
+
# seconds_until_auto_pause: 1,
|
17033
|
+
# timeout_action: "String",
|
17034
|
+
# },
|
17035
|
+
# engine_mode: "String",
|
16893
17036
|
# })
|
16894
17037
|
#
|
16895
17038
|
# @example Response structure
|
@@ -17046,9 +17189,9 @@ module Aws::RDS
|
|
17046
17189
|
# @option params [String] :db_instance_class
|
17047
17190
|
# The compute and memory capacity of the Amazon RDS DB instance, for
|
17048
17191
|
# example, `db.m4.large`. Not all DB instance classes are available in
|
17049
|
-
# all
|
17050
|
-
# instance classes, and availability for your engine,
|
17051
|
-
# Class][1] in the *Amazon RDS User Guide.*
|
17192
|
+
# all Amazon Web Services Regions, or for all database engines. For the
|
17193
|
+
# full list of DB instance classes, and availability for your engine,
|
17194
|
+
# see [DB Instance Class][1] in the *Amazon RDS User Guide.*
|
17052
17195
|
#
|
17053
17196
|
# Default: The same DBInstanceClass as the original DB instance.
|
17054
17197
|
#
|
@@ -17140,11 +17283,11 @@ module Aws::RDS
|
|
17140
17283
|
#
|
17141
17284
|
# * `oracle-ee`
|
17142
17285
|
#
|
17143
|
-
# * `oracle-
|
17286
|
+
# * `oracle-ee-cdb`
|
17144
17287
|
#
|
17145
|
-
# * `oracle-
|
17288
|
+
# * `oracle-se2`
|
17146
17289
|
#
|
17147
|
-
# * `oracle-
|
17290
|
+
# * `oracle-se2-cdb`
|
17148
17291
|
#
|
17149
17292
|
# * `postgres`
|
17150
17293
|
#
|
@@ -17238,9 +17381,9 @@ module Aws::RDS
|
|
17238
17381
|
# the Directory Service.
|
17239
17382
|
#
|
17240
17383
|
# @option params [Boolean] :enable_iam_database_authentication
|
17241
|
-
# A value that indicates whether to enable mapping of
|
17242
|
-
# Access Management (IAM) accounts to database
|
17243
|
-
# mapping is disabled.
|
17384
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
17385
|
+
# Services Identity and Access Management (IAM) accounts to database
|
17386
|
+
# accounts. By default, mapping is disabled.
|
17244
17387
|
#
|
17245
17388
|
# For more information about IAM database authentication, see [ IAM
|
17246
17389
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -17304,10 +17447,11 @@ module Aws::RDS
|
|
17304
17447
|
# from outside of its virtual private cloud (VPC) on your local network.
|
17305
17448
|
#
|
17306
17449
|
# For more information about RDS on Outposts, see [Working with Amazon
|
17307
|
-
# RDS on
|
17450
|
+
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
17451
|
+
# Guide*.
|
17308
17452
|
#
|
17309
17453
|
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
17310
|
-
# in the *
|
17454
|
+
# in the *Amazon Web Services Outposts User Guide*.
|
17311
17455
|
#
|
17312
17456
|
#
|
17313
17457
|
#
|
@@ -17583,6 +17727,11 @@ module Aws::RDS
|
|
17583
17727
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
17584
17728
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
17585
17729
|
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
17730
|
+
# resp.db_instance.activity_stream_status #=> String, one of "stopped", "starting", "started", "stopping"
|
17731
|
+
# resp.db_instance.activity_stream_kms_key_id #=> String
|
17732
|
+
# resp.db_instance.activity_stream_kinesis_stream_name #=> String
|
17733
|
+
# resp.db_instance.activity_stream_mode #=> String, one of "sync", "async"
|
17734
|
+
# resp.db_instance.activity_stream_engine_native_audit_fields_included #=> Boolean
|
17586
17735
|
#
|
17587
17736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
17588
17737
|
#
|
@@ -17634,10 +17783,10 @@ module Aws::RDS
|
|
17634
17783
|
#
|
17635
17784
|
# @option params [required, String] :db_instance_class
|
17636
17785
|
# The compute and memory capacity of the DB instance, for example,
|
17637
|
-
# `db.m4.large`. Not all DB instance classes are available in all
|
17638
|
-
# Regions, or for all database engines. For the full list
|
17639
|
-
# classes, and availability for your engine, see [DB
|
17640
|
-
# in the *Amazon RDS User Guide.*
|
17786
|
+
# `db.m4.large`. Not all DB instance classes are available in all Amazon
|
17787
|
+
# Web Services Regions, or for all database engines. For the full list
|
17788
|
+
# of DB instance classes, and availability for your engine, see [DB
|
17789
|
+
# Instance Class][1] in the *Amazon RDS User Guide.*
|
17641
17790
|
#
|
17642
17791
|
# Importing from Amazon S3 isn't supported on the db.t2.micro DB
|
17643
17792
|
# instance class.
|
@@ -17678,17 +17827,19 @@ module Aws::RDS
|
|
17678
17827
|
#
|
17679
17828
|
# @option params [String] :availability_zone
|
17680
17829
|
# The Availability Zone that the DB instance is created in. For
|
17681
|
-
# information about
|
17682
|
-
# Availability Zones][1] in the *Amazon RDS User
|
17830
|
+
# information about Amazon Web Services Regions and Availability Zones,
|
17831
|
+
# see [Regions and Availability Zones][1] in the *Amazon RDS User
|
17832
|
+
# Guide.*
|
17683
17833
|
#
|
17684
17834
|
# Default: A random, system-chosen Availability Zone in the endpoint's
|
17685
|
-
#
|
17835
|
+
# Amazon Web Services Region.
|
17686
17836
|
#
|
17687
17837
|
# Example: `us-east-1d`
|
17688
17838
|
#
|
17689
17839
|
# Constraint: The `AvailabilityZone` parameter can't be specified if
|
17690
17840
|
# the DB instance is a Multi-AZ deployment. The specified Availability
|
17691
|
-
# Zone must be in the same
|
17841
|
+
# Zone must be in the same Amazon Web Services Region as the current
|
17842
|
+
# endpoint.
|
17692
17843
|
#
|
17693
17844
|
#
|
17694
17845
|
#
|
@@ -17829,16 +17980,19 @@ module Aws::RDS
|
|
17829
17980
|
# not.
|
17830
17981
|
#
|
17831
17982
|
# @option params [String] :kms_key_id
|
17832
|
-
# The
|
17983
|
+
# The Amazon Web Services KMS key identifier for an encrypted DB
|
17984
|
+
# instance.
|
17833
17985
|
#
|
17834
|
-
# The
|
17835
|
-
#
|
17836
|
-
#
|
17986
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
17987
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
17988
|
+
# master key (CMK). To use a CMK in a different Amazon Web Services
|
17989
|
+
# account, specify the key ARN or alias ARN.
|
17837
17990
|
#
|
17838
17991
|
# If the `StorageEncrypted` parameter is enabled, and you do not specify
|
17839
17992
|
# a value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
17840
|
-
# default CMK. There is a default CMK for your
|
17841
|
-
# account has a different default CMK
|
17993
|
+
# default CMK. There is a default CMK for your Amazon Web Services
|
17994
|
+
# account. Your Amazon Web Services account has a different default CMK
|
17995
|
+
# for each Amazon Web Services Region.
|
17842
17996
|
#
|
17843
17997
|
# @option params [Boolean] :copy_tags_to_snapshot
|
17844
17998
|
# A value that indicates whether to copy all tags from the DB instance
|
@@ -17871,9 +18025,9 @@ module Aws::RDS
|
|
17871
18025
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
17872
18026
|
#
|
17873
18027
|
# @option params [Boolean] :enable_iam_database_authentication
|
17874
|
-
# A value that indicates whether to enable mapping of
|
17875
|
-
# Access Management (IAM) accounts to database
|
17876
|
-
# mapping is disabled.
|
18028
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
18029
|
+
# Services Identity and Access Management (IAM) accounts to database
|
18030
|
+
# accounts. By default, mapping is disabled.
|
17877
18031
|
#
|
17878
18032
|
# For more information about IAM database authentication, see [ IAM
|
17879
18033
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -17903,8 +18057,8 @@ module Aws::RDS
|
|
17903
18057
|
# The prefix of your Amazon S3 bucket.
|
17904
18058
|
#
|
17905
18059
|
# @option params [required, String] :s3_ingestion_role_arn
|
17906
|
-
# An
|
17907
|
-
# to access your Amazon S3 bucket.
|
18060
|
+
# An Amazon Web Services Identity and Access Management (IAM) role to
|
18061
|
+
# allow Amazon RDS to access your Amazon S3 bucket.
|
17908
18062
|
#
|
17909
18063
|
# @option params [Boolean] :enable_performance_insights
|
17910
18064
|
# A value that indicates whether to enable Performance Insights for the
|
@@ -17918,16 +18072,17 @@ module Aws::RDS
|
|
17918
18072
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
17919
18073
|
#
|
17920
18074
|
# @option params [String] :performance_insights_kms_key_id
|
17921
|
-
# The
|
17922
|
-
# data.
|
18075
|
+
# The Amazon Web Services KMS key identifier for encryption of
|
18076
|
+
# Performance Insights data.
|
17923
18077
|
#
|
17924
|
-
# The
|
17925
|
-
# name for the
|
18078
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
18079
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
18080
|
+
# master key (CMK).
|
17926
18081
|
#
|
17927
18082
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
|
17928
|
-
# Amazon RDS uses your default CMK. There is a default CMK for your
|
17929
|
-
# account. Your
|
17930
|
-
# Region.
|
18083
|
+
# Amazon RDS uses your default CMK. There is a default CMK for your
|
18084
|
+
# Amazon Web Services account. Your Amazon Web Services account has a
|
18085
|
+
# different default CMK for each Amazon Web Services Region.
|
17931
18086
|
#
|
17932
18087
|
# @option params [Integer] :performance_insights_retention_period
|
17933
18088
|
# The amount of time, in days, to retain Performance Insights data.
|
@@ -18162,6 +18317,11 @@ module Aws::RDS
|
|
18162
18317
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
18163
18318
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
18164
18319
|
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
18320
|
+
# resp.db_instance.activity_stream_status #=> String, one of "stopped", "starting", "started", "stopping"
|
18321
|
+
# resp.db_instance.activity_stream_kms_key_id #=> String
|
18322
|
+
# resp.db_instance.activity_stream_kinesis_stream_name #=> String
|
18323
|
+
# resp.db_instance.activity_stream_mode #=> String, one of "sync", "async"
|
18324
|
+
# resp.db_instance.activity_stream_engine_native_audit_fields_included #=> Boolean
|
18165
18325
|
#
|
18166
18326
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
18167
18327
|
#
|
@@ -18237,9 +18397,9 @@ module Aws::RDS
|
|
18237
18397
|
# @option params [String] :db_instance_class
|
18238
18398
|
# The compute and memory capacity of the Amazon RDS DB instance, for
|
18239
18399
|
# example, `db.m4.large`. Not all DB instance classes are available in
|
18240
|
-
# all
|
18241
|
-
# instance classes, and availability for your engine,
|
18242
|
-
# Class][1] in the *Amazon RDS User Guide.*
|
18400
|
+
# all Amazon Web Services Regions, or for all database engines. For the
|
18401
|
+
# full list of DB instance classes, and availability for your engine,
|
18402
|
+
# see [DB Instance Class][1] in the *Amazon RDS User Guide.*
|
18243
18403
|
#
|
18244
18404
|
# Default: The same DBInstanceClass as the original DB instance.
|
18245
18405
|
#
|
@@ -18328,11 +18488,11 @@ module Aws::RDS
|
|
18328
18488
|
#
|
18329
18489
|
# * `oracle-ee`
|
18330
18490
|
#
|
18331
|
-
# * `oracle-
|
18491
|
+
# * `oracle-ee-cdb`
|
18332
18492
|
#
|
18333
|
-
# * `oracle-
|
18493
|
+
# * `oracle-se2`
|
18334
18494
|
#
|
18335
|
-
# * `oracle-
|
18495
|
+
# * `oracle-se2-cdb`
|
18336
18496
|
#
|
18337
18497
|
# * `postgres`
|
18338
18498
|
#
|
@@ -18418,9 +18578,9 @@ module Aws::RDS
|
|
18418
18578
|
# the Directory Service.
|
18419
18579
|
#
|
18420
18580
|
# @option params [Boolean] :enable_iam_database_authentication
|
18421
|
-
# A value that indicates whether to enable mapping of
|
18422
|
-
# Access Management (IAM) accounts to database
|
18423
|
-
# mapping is disabled.
|
18581
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
18582
|
+
# Services Identity and Access Management (IAM) accounts to database
|
18583
|
+
# accounts. By default, mapping is disabled.
|
18424
18584
|
#
|
18425
18585
|
# For more information about IAM database authentication, see [ IAM
|
18426
18586
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -18504,10 +18664,11 @@ module Aws::RDS
|
|
18504
18664
|
# from outside of its virtual private cloud (VPC) on your local network.
|
18505
18665
|
#
|
18506
18666
|
# For more information about RDS on Outposts, see [Working with Amazon
|
18507
|
-
# RDS on
|
18667
|
+
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
18668
|
+
# Guide*.
|
18508
18669
|
#
|
18509
18670
|
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
18510
|
-
# in the *
|
18671
|
+
# in the *Amazon Web Services Outposts User Guide*.
|
18511
18672
|
#
|
18512
18673
|
#
|
18513
18674
|
#
|
@@ -18789,6 +18950,11 @@ module Aws::RDS
|
|
18789
18950
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
18790
18951
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
18791
18952
|
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
18953
|
+
# resp.db_instance.activity_stream_status #=> String, one of "stopped", "starting", "started", "stopping"
|
18954
|
+
# resp.db_instance.activity_stream_kms_key_id #=> String
|
18955
|
+
# resp.db_instance.activity_stream_kinesis_stream_name #=> String
|
18956
|
+
# resp.db_instance.activity_stream_mode #=> String, one of "sync", "async"
|
18957
|
+
# resp.db_instance.activity_stream_engine_native_audit_fields_included #=> Boolean
|
18792
18958
|
#
|
18793
18959
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
18794
18960
|
#
|
@@ -18826,10 +18992,10 @@ module Aws::RDS
|
|
18826
18992
|
# `EC2SecurityGroupId` must be provided.
|
18827
18993
|
#
|
18828
18994
|
# @option params [String] :ec2_security_group_owner_id
|
18829
|
-
# The
|
18830
|
-
# specified in the `EC2SecurityGroupName` parameter. The
|
18831
|
-
# ID isn't an acceptable value. For VPC
|
18832
|
-
# `EC2SecurityGroupId` must be provided. Otherwise,
|
18995
|
+
# The Amazon Web Services account number of the owner of the EC2
|
18996
|
+
# security group specified in the `EC2SecurityGroupName` parameter. The
|
18997
|
+
# Amazon Web Services access key ID isn't an acceptable value. For VPC
|
18998
|
+
# DB security groups, `EC2SecurityGroupId` must be provided. Otherwise,
|
18833
18999
|
# EC2SecurityGroupOwnerId and either `EC2SecurityGroupName` or
|
18834
19000
|
# `EC2SecurityGroupId` must be provided.
|
18835
19001
|
#
|
@@ -18907,15 +19073,21 @@ module Aws::RDS
|
|
18907
19073
|
# asynchronously.
|
18908
19074
|
#
|
18909
19075
|
# @option params [required, String] :kms_key_id
|
18910
|
-
# The
|
18911
|
-
# activity stream. The
|
18912
|
-
# alias ARN, or alias name for the
|
19076
|
+
# The Amazon Web Services KMS key identifier for encrypting messages in
|
19077
|
+
# the database activity stream. The Amazon Web Services KMS key
|
19078
|
+
# identifier is the key ARN, key ID, alias ARN, or alias name for the
|
19079
|
+
# Amazon Web Services KMS customer master key (CMK).
|
18913
19080
|
#
|
18914
19081
|
# @option params [Boolean] :apply_immediately
|
18915
19082
|
# Specifies whether or not the database activity stream is to start as
|
18916
19083
|
# soon as possible, regardless of the maintenance window for the
|
18917
19084
|
# database.
|
18918
19085
|
#
|
19086
|
+
# @option params [Boolean] :engine_native_audit_fields_included
|
19087
|
+
# Specifies whether the database activity stream includes engine-native
|
19088
|
+
# audit fields. This option only applies to an Oracle DB instance. By
|
19089
|
+
# default, no engine-native audit fields are included.
|
19090
|
+
#
|
18919
19091
|
# @return [Types::StartActivityStreamResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
18920
19092
|
#
|
18921
19093
|
# * {Types::StartActivityStreamResponse#kms_key_id #kms_key_id} => String
|
@@ -18923,6 +19095,7 @@ module Aws::RDS
|
|
18923
19095
|
# * {Types::StartActivityStreamResponse#status #status} => String
|
18924
19096
|
# * {Types::StartActivityStreamResponse#mode #mode} => String
|
18925
19097
|
# * {Types::StartActivityStreamResponse#apply_immediately #apply_immediately} => Boolean
|
19098
|
+
# * {Types::StartActivityStreamResponse#engine_native_audit_fields_included #engine_native_audit_fields_included} => Boolean
|
18926
19099
|
#
|
18927
19100
|
# @example Request syntax with placeholder values
|
18928
19101
|
#
|
@@ -18931,6 +19104,7 @@ module Aws::RDS
|
|
18931
19104
|
# mode: "sync", # required, accepts sync, async
|
18932
19105
|
# kms_key_id: "String", # required
|
18933
19106
|
# apply_immediately: false,
|
19107
|
+
# engine_native_audit_fields_included: false,
|
18934
19108
|
# })
|
18935
19109
|
#
|
18936
19110
|
# @example Response structure
|
@@ -18940,6 +19114,7 @@ module Aws::RDS
|
|
18940
19114
|
# resp.status #=> String, one of "stopped", "starting", "started", "stopping"
|
18941
19115
|
# resp.mode #=> String, one of "sync", "async"
|
18942
19116
|
# resp.apply_immediately #=> Boolean
|
19117
|
+
# resp.engine_native_audit_fields_included #=> Boolean
|
18943
19118
|
#
|
18944
19119
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartActivityStream AWS API Documentation
|
18945
19120
|
#
|
@@ -18950,9 +19125,9 @@ module Aws::RDS
|
|
18950
19125
|
req.send_request(options)
|
18951
19126
|
end
|
18952
19127
|
|
18953
|
-
# Starts an Amazon Aurora DB cluster that was stopped using the
|
18954
|
-
# console, the stop-db-cluster
|
18955
|
-
# action.
|
19128
|
+
# Starts an Amazon Aurora DB cluster that was stopped using the Amazon
|
19129
|
+
# Web Services console, the stop-db-cluster CLI command, or the
|
19130
|
+
# StopDBCluster action.
|
18956
19131
|
#
|
18957
19132
|
# For more information, see [ Stopping and Starting an Aurora
|
18958
19133
|
# Cluster][1] in the *Amazon Aurora User Guide.*
|
@@ -19079,9 +19254,9 @@ module Aws::RDS
|
|
19079
19254
|
req.send_request(options)
|
19080
19255
|
end
|
19081
19256
|
|
19082
|
-
# Starts an Amazon RDS DB instance that was stopped using the
|
19083
|
-
# console, the stop-db-instance
|
19084
|
-
# action.
|
19257
|
+
# Starts an Amazon RDS DB instance that was stopped using the Amazon Web
|
19258
|
+
# Services console, the stop-db-instance CLI command, or the
|
19259
|
+
# StopDBInstance action.
|
19085
19260
|
#
|
19086
19261
|
# For more information, see [ Starting an Amazon RDS DB instance That
|
19087
19262
|
# Was Previously Stopped][1] in the *Amazon RDS User Guide.*
|
@@ -19234,6 +19409,11 @@ module Aws::RDS
|
|
19234
19409
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
19235
19410
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
19236
19411
|
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
19412
|
+
# resp.db_instance.activity_stream_status #=> String, one of "stopped", "starting", "started", "stopping"
|
19413
|
+
# resp.db_instance.activity_stream_kms_key_id #=> String
|
19414
|
+
# resp.db_instance.activity_stream_kinesis_stream_name #=> String
|
19415
|
+
# resp.db_instance.activity_stream_mode #=> String, one of "sync", "async"
|
19416
|
+
# resp.db_instance.activity_stream_engine_native_audit_fields_included #=> Boolean
|
19237
19417
|
#
|
19238
19418
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
19239
19419
|
#
|
@@ -19244,10 +19424,11 @@ module Aws::RDS
|
|
19244
19424
|
req.send_request(options)
|
19245
19425
|
end
|
19246
19426
|
|
19247
|
-
# Enables replication of automated backups to a different
|
19427
|
+
# Enables replication of automated backups to a different Amazon Web
|
19428
|
+
# Services Region.
|
19248
19429
|
#
|
19249
19430
|
# For more information, see [ Replicating Automated Backups to Another
|
19250
|
-
#
|
19431
|
+
# Amazon Web Services Region][1] in the *Amazon RDS User Guide.*
|
19251
19432
|
#
|
19252
19433
|
#
|
19253
19434
|
#
|
@@ -19262,18 +19443,20 @@ module Aws::RDS
|
|
19262
19443
|
# The retention period for the replicated automated backups.
|
19263
19444
|
#
|
19264
19445
|
# @option params [String] :kms_key_id
|
19265
|
-
# The
|
19266
|
-
# backups. The KMS key ID is the Amazon Resource
|
19267
|
-
# encryption key in the destination
|
19446
|
+
# The Amazon Web Services KMS key identifier for encryption of the
|
19447
|
+
# replicated automated backups. The KMS key ID is the Amazon Resource
|
19448
|
+
# Name (ARN) for the KMS encryption key in the destination Amazon Web
|
19449
|
+
# Services Region, for example,
|
19268
19450
|
# `arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE`.
|
19269
19451
|
#
|
19270
19452
|
# @option params [String] :pre_signed_url
|
19271
19453
|
# A URL that contains a Signature Version 4 signed request for the
|
19272
19454
|
# StartDBInstanceAutomatedBackupsReplication action to be called in the
|
19273
|
-
#
|
19274
|
-
# valid request for the
|
19275
|
-
# action that can be
|
19276
|
-
# DB
|
19455
|
+
# Amazon Web Services Region of the source DB instance. The presigned
|
19456
|
+
# URL must be a valid request for the
|
19457
|
+
# StartDBInstanceAutomatedBackupsReplication API action that can be
|
19458
|
+
# executed in the Amazon Web Services Region that contains the source DB
|
19459
|
+
# instance.
|
19277
19460
|
#
|
19278
19461
|
# @option params [String] :source_region
|
19279
19462
|
# The source region of the snapshot. This is only needed when the
|
@@ -19352,11 +19535,13 @@ module Aws::RDS
|
|
19352
19535
|
# when exporting a snapshot.
|
19353
19536
|
#
|
19354
19537
|
# @option params [required, String] :kms_key_id
|
19355
|
-
# The ID of the
|
19356
|
-
# snapshot exported to Amazon S3. The
|
19357
|
-
# ARN, key ID, alias ARN, or alias name
|
19358
|
-
#
|
19359
|
-
#
|
19538
|
+
# The ID of the Amazon Web Services KMS customer master key (CMK) to use
|
19539
|
+
# to encrypt the snapshot exported to Amazon S3. The Amazon Web Services
|
19540
|
+
# KMS key identifier is the key ARN, key ID, alias ARN, or alias name
|
19541
|
+
# for the Amazon Web Services KMS customer master key (CMK). The caller
|
19542
|
+
# of this operation must be authorized to execute the following
|
19543
|
+
# operations. These can be set in the Amazon Web Services KMS key
|
19544
|
+
# policy:
|
19360
19545
|
#
|
19361
19546
|
# * GrantOperation.Encrypt
|
19362
19547
|
#
|
@@ -19457,8 +19642,8 @@ module Aws::RDS
|
|
19457
19642
|
req.send_request(options)
|
19458
19643
|
end
|
19459
19644
|
|
19460
|
-
# Stops a database activity stream that was started using the
|
19461
|
-
# console, the `start-activity-stream`
|
19645
|
+
# Stops a database activity stream that was started using the Amazon Web
|
19646
|
+
# Services console, the `start-activity-stream` CLI command, or the
|
19462
19647
|
# `StartActivityStream` action.
|
19463
19648
|
#
|
19464
19649
|
# For more information, see [Database Activity Streams][1] in the
|
@@ -19798,6 +19983,11 @@ module Aws::RDS
|
|
19798
19983
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
19799
19984
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
19800
19985
|
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
19986
|
+
# resp.db_instance.activity_stream_status #=> String, one of "stopped", "starting", "started", "stopping"
|
19987
|
+
# resp.db_instance.activity_stream_kms_key_id #=> String
|
19988
|
+
# resp.db_instance.activity_stream_kinesis_stream_name #=> String
|
19989
|
+
# resp.db_instance.activity_stream_mode #=> String, one of "sync", "async"
|
19990
|
+
# resp.db_instance.activity_stream_engine_native_audit_fields_included #=> Boolean
|
19801
19991
|
#
|
19802
19992
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
19803
19993
|
#
|
@@ -19811,7 +20001,7 @@ module Aws::RDS
|
|
19811
20001
|
# Stops automated backup replication for a DB instance.
|
19812
20002
|
#
|
19813
20003
|
# For more information, see [ Replicating Automated Backups to Another
|
19814
|
-
#
|
20004
|
+
# Amazon Web Services Region][1] in the *Amazon RDS User Guide.*
|
19815
20005
|
#
|
19816
20006
|
#
|
19817
20007
|
#
|
@@ -19885,7 +20075,7 @@ module Aws::RDS
|
|
19885
20075
|
params: params,
|
19886
20076
|
config: config)
|
19887
20077
|
context[:gem_name] = 'aws-sdk-rds'
|
19888
|
-
context[:gem_version] = '1.
|
20078
|
+
context[:gem_version] = '1.123.0'
|
19889
20079
|
Seahorse::Client::Request.new(handlers, context)
|
19890
20080
|
end
|
19891
20081
|
|