aws-sdk-rds 1.118.0 → 1.122.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 +916 -654
- 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_parameter_group.rb +41 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +67 -57
- data/lib/aws-sdk-rds/db_instance.rb +241 -175
- data/lib/aws-sdk-rds/db_parameter_group.rb +54 -11
- 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 +203 -114
- data/lib/aws-sdk-rds/types.rb +1008 -722
- metadata +3 -4
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -26,7 +26,7 @@ module Aws::RDS
|
|
26
26
|
include Aws::Structure
|
27
27
|
end
|
28
28
|
|
29
|
-
# Describes a quota for an
|
29
|
+
# Describes a quota for an Amazon Web Services account.
|
30
30
|
#
|
31
31
|
# The following are account quotas:
|
32
32
|
#
|
@@ -49,11 +49,11 @@ module Aws::RDS
|
|
49
49
|
# value is the count of nondefault DB cluster parameter groups in the
|
50
50
|
# account.
|
51
51
|
#
|
52
|
-
# * `DBClusterRoles` - The number of associated
|
53
|
-
# Management (IAM) roles per DB cluster. The used
|
54
|
-
# number of associated IAM roles for a DB cluster
|
55
|
-
# Other DB clusters in the account might have a lower
|
56
|
-
# associated IAM roles.
|
52
|
+
# * `DBClusterRoles` - The number of associated Amazon Web Services
|
53
|
+
# Identity and Access Management (IAM) roles per DB cluster. The used
|
54
|
+
# value is the highest number of associated IAM roles for a DB cluster
|
55
|
+
# in the account. Other DB clusters in the account might have a lower
|
56
|
+
# number of associated IAM roles.
|
57
57
|
#
|
58
58
|
# * `DBClusters` - The number of DB clusters per account. The used value
|
59
59
|
# is the count of DB clusters in the account.
|
@@ -121,7 +121,8 @@ module Aws::RDS
|
|
121
121
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_Limits.html
|
122
122
|
#
|
123
123
|
# @!attribute [rw] account_quota_name
|
124
|
-
# The name of the Amazon RDS quota for this
|
124
|
+
# The name of the Amazon RDS quota for this Amazon Web Services
|
125
|
+
# account.
|
125
126
|
# @return [String]
|
126
127
|
#
|
127
128
|
# @!attribute [rw] used
|
@@ -428,10 +429,10 @@ module Aws::RDS
|
|
428
429
|
# @return [String]
|
429
430
|
#
|
430
431
|
# @!attribute [rw] ec2_security_group_owner_id
|
431
|
-
#
|
432
|
-
# in the `EC2SecurityGroupName` parameter. The
|
433
|
-
# isn't an acceptable value. For VPC DB
|
434
|
-
# `EC2SecurityGroupId` must be provided. Otherwise,
|
432
|
+
# Amazon Web Services account number of the owner of the EC2 security
|
433
|
+
# group specified in the `EC2SecurityGroupName` parameter. The Amazon
|
434
|
+
# Web Services access key ID isn't an acceptable value. For VPC DB
|
435
|
+
# security groups, `EC2SecurityGroupId` must be provided. Otherwise,
|
435
436
|
# `EC2SecurityGroupOwnerId` and either `EC2SecurityGroupName` or
|
436
437
|
# `EC2SecurityGroupId` must be provided.
|
437
438
|
# @return [String]
|
@@ -612,7 +613,7 @@ module Aws::RDS
|
|
612
613
|
include Aws::Structure
|
613
614
|
end
|
614
615
|
|
615
|
-
# A CA certificate for an
|
616
|
+
# A CA certificate for an Amazon Web Services account.
|
616
617
|
#
|
617
618
|
# @!attribute [rw] certificate_identifier
|
618
619
|
# The unique key that identifies a certificate.
|
@@ -665,7 +666,8 @@ module Aws::RDS
|
|
665
666
|
# Data returned by the **DescribeCertificates** action.
|
666
667
|
#
|
667
668
|
# @!attribute [rw] certificates
|
668
|
-
# The list of `Certificate` objects for the
|
669
|
+
# The list of `Certificate` objects for the Amazon Web Services
|
670
|
+
# account.
|
669
671
|
# @return [Array<Types::Certificate>]
|
670
672
|
#
|
671
673
|
# @!attribute [rw] marker
|
@@ -774,8 +776,9 @@ module Aws::RDS
|
|
774
776
|
# @return [String]
|
775
777
|
#
|
776
778
|
# @!attribute [rw] iam_database_authentication_enabled
|
777
|
-
# A value that indicates whether mapping of
|
778
|
-
# Management (IAM) accounts to database accounts
|
779
|
+
# A value that indicates whether mapping of Amazon Web Services
|
780
|
+
# Identity and Access Management (IAM) accounts to database accounts
|
781
|
+
# is enabled.
|
779
782
|
# @return [Boolean]
|
780
783
|
#
|
781
784
|
# @!attribute [rw] engine_version
|
@@ -1045,19 +1048,19 @@ module Aws::RDS
|
|
1045
1048
|
# isn't case-sensitive.
|
1046
1049
|
#
|
1047
1050
|
# You can't copy an encrypted, shared DB cluster snapshot from one
|
1048
|
-
#
|
1051
|
+
# Amazon Web Services Region to another.
|
1049
1052
|
#
|
1050
1053
|
# Constraints:
|
1051
1054
|
#
|
1052
1055
|
# * Must specify a valid system snapshot in the "available" state.
|
1053
1056
|
#
|
1054
|
-
# * If the source snapshot is in the same
|
1055
|
-
# specify a valid DB snapshot identifier.
|
1057
|
+
# * If the source snapshot is in the same Amazon Web Services Region
|
1058
|
+
# as the copy, specify a valid DB snapshot identifier.
|
1056
1059
|
#
|
1057
|
-
# * If the source snapshot is in a different
|
1058
|
-
# specify a valid DB cluster snapshot ARN. For
|
1059
|
-
# to [ Copying Snapshots Across
|
1060
|
-
# Aurora User Guide.*
|
1060
|
+
# * If the source snapshot is in a different Amazon Web Services
|
1061
|
+
# Region than the copy, specify a valid DB cluster snapshot ARN. For
|
1062
|
+
# more information, go to [ Copying Snapshots Across Amazon Web
|
1063
|
+
# Services Regions][1] in the *Amazon Aurora User Guide.*
|
1061
1064
|
#
|
1062
1065
|
# Example: `my-cluster-snapshot1`
|
1063
1066
|
#
|
@@ -1082,25 +1085,29 @@ module Aws::RDS
|
|
1082
1085
|
# @return [String]
|
1083
1086
|
#
|
1084
1087
|
# @!attribute [rw] kms_key_id
|
1085
|
-
# The
|
1086
|
-
#
|
1087
|
-
#
|
1088
|
-
#
|
1089
|
-
#
|
1090
|
-
# you
|
1091
|
-
#
|
1092
|
-
# the copy
|
1093
|
-
#
|
1088
|
+
# The Amazon Web Services KMS key identifier for an encrypted DB
|
1089
|
+
# cluster snapshot. The Amazon Web Services KMS key identifier is the
|
1090
|
+
# key ARN, key ID, alias ARN, or alias name for the Amazon Web
|
1091
|
+
# Services KMS customer master key (CMK).
|
1092
|
+
#
|
1093
|
+
# If you copy an encrypted DB cluster snapshot from your Amazon Web
|
1094
|
+
# Services account, you can specify a value for `KmsKeyId` to encrypt
|
1095
|
+
# the copy with a new Amazon Web Services KMS CMK. If you don't
|
1096
|
+
# specify a value for `KmsKeyId`, then the copy of the DB cluster
|
1097
|
+
# snapshot is encrypted with the same Amazon Web Services KMS key as
|
1098
|
+
# the source DB cluster snapshot.
|
1094
1099
|
#
|
1095
1100
|
# If you copy an encrypted DB cluster snapshot that is shared from
|
1096
|
-
# another
|
1101
|
+
# another Amazon Web Services account, then you must specify a value
|
1102
|
+
# for `KmsKeyId`.
|
1097
1103
|
#
|
1098
|
-
# To copy an encrypted DB cluster snapshot to another
|
1099
|
-
# must set `KmsKeyId` to the
|
1100
|
-
#
|
1101
|
-
#
|
1102
|
-
#
|
1103
|
-
#
|
1104
|
+
# To copy an encrypted DB cluster snapshot to another Amazon Web
|
1105
|
+
# Services Region, you must set `KmsKeyId` to the Amazon Web Services
|
1106
|
+
# KMS key identifier you want to use to encrypt the copy of the DB
|
1107
|
+
# cluster snapshot in the destination Amazon Web Services Region.
|
1108
|
+
# Amazon Web Services KMS CMKs are specific to the Amazon Web Services
|
1109
|
+
# Region that they are created in, and you can't use CMKs from one
|
1110
|
+
# Amazon Web Services Region in another Amazon Web Services Region.
|
1104
1111
|
#
|
1105
1112
|
# If you copy an unencrypted DB cluster snapshot and specify a value
|
1106
1113
|
# for the `KmsKeyId` parameter, an error is returned.
|
@@ -1108,46 +1115,49 @@ module Aws::RDS
|
|
1108
1115
|
#
|
1109
1116
|
# @!attribute [rw] pre_signed_url
|
1110
1117
|
# The URL that contains a Signature Version 4 signed request for the
|
1111
|
-
# `CopyDBClusterSnapshot` API action in the
|
1112
|
-
# the source DB cluster snapshot to copy. The
|
1113
|
-
# must be used when copying an encrypted DB
|
1114
|
-
# another
|
1115
|
-
# copying an encrypted DB cluster
|
1118
|
+
# `CopyDBClusterSnapshot` API action in the Amazon Web Services Region
|
1119
|
+
# that contains the source DB cluster snapshot to copy. The
|
1120
|
+
# `PreSignedUrl` parameter must be used when copying an encrypted DB
|
1121
|
+
# cluster snapshot from another Amazon Web Services Region. Don't
|
1122
|
+
# specify `PreSignedUrl` when you are copying an encrypted DB cluster
|
1123
|
+
# snapshot in the same Amazon Web Services Region.
|
1116
1124
|
#
|
1117
1125
|
# The pre-signed URL must be a valid request for the
|
1118
1126
|
# `CopyDBClusterSnapshot` API action that can be executed in the
|
1119
|
-
# source
|
1120
|
-
# be copied. The pre-signed URL request must
|
1121
|
-
# parameter values:
|
1122
|
-
#
|
1123
|
-
# * `KmsKeyId` - The
|
1124
|
-
# key (CMK) to use to encrypt the copy of the DB
|
1125
|
-
#
|
1126
|
-
#
|
1127
|
-
#
|
1128
|
-
# URL.
|
1127
|
+
# source Amazon Web Services Region that contains the encrypted DB
|
1128
|
+
# cluster snapshot to be copied. The pre-signed URL request must
|
1129
|
+
# contain the following parameter values:
|
1130
|
+
#
|
1131
|
+
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the
|
1132
|
+
# customer master key (CMK) to use to encrypt the copy of the DB
|
1133
|
+
# cluster snapshot in the destination Amazon Web Services Region.
|
1134
|
+
# This is the same identifier for both the `CopyDBClusterSnapshot`
|
1135
|
+
# action that is called in the destination Amazon Web Services
|
1136
|
+
# Region, and the action contained in the pre-signed URL.
|
1129
1137
|
#
|
1130
|
-
# * `DestinationRegion` - The name of the
|
1131
|
-
# cluster snapshot is to be created in.
|
1138
|
+
# * `DestinationRegion` - The name of the Amazon Web Services Region
|
1139
|
+
# that the DB cluster snapshot is to be created in.
|
1132
1140
|
#
|
1133
1141
|
# * `SourceDBClusterSnapshotIdentifier` - The DB cluster snapshot
|
1134
1142
|
# identifier for the encrypted DB cluster snapshot to be copied.
|
1135
1143
|
# This identifier must be in the Amazon Resource Name (ARN) format
|
1136
|
-
# for the source
|
1137
|
-
# encrypted DB cluster snapshot from the us-west-2
|
1138
|
-
# your `SourceDBClusterSnapshotIdentifier`
|
1139
|
-
# example:
|
1144
|
+
# for the source Amazon Web Services Region. For example, if you are
|
1145
|
+
# copying an encrypted DB cluster snapshot from the us-west-2 Amazon
|
1146
|
+
# Web Services Region, then your `SourceDBClusterSnapshotIdentifier`
|
1147
|
+
# looks like the following example:
|
1140
1148
|
# `arn:aws:rds:us-west-2:123456789012:cluster-snapshot:aurora-cluster1-snapshot-20161115`.
|
1141
1149
|
#
|
1142
1150
|
# To learn how to generate a Signature Version 4 signed request, see [
|
1143
|
-
# Authenticating Requests: Using Query Parameters (
|
1144
|
-
# Version 4)][1] and [ Signature Version 4 Signing
|
1151
|
+
# Authenticating Requests: Using Query Parameters (Amazon Web Services
|
1152
|
+
# Signature Version 4)][1] and [ Signature Version 4 Signing
|
1153
|
+
# Process][2].
|
1145
1154
|
#
|
1146
|
-
# <note markdown="1"> If you are using an
|
1147
|
-
# `SourceRegion` (or `--source-region` for the
|
1155
|
+
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
1156
|
+
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
1148
1157
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
1149
1158
|
# autogenerates a pre-signed URL that is a valid request for the
|
1150
|
-
# operation that can be executed in the source
|
1159
|
+
# operation that can be executed in the source Amazon Web Services
|
1160
|
+
# Region.
|
1151
1161
|
#
|
1152
1162
|
# </note>
|
1153
1163
|
#
|
@@ -1315,20 +1325,22 @@ module Aws::RDS
|
|
1315
1325
|
# @!attribute [rw] source_db_snapshot_identifier
|
1316
1326
|
# The identifier for the source DB snapshot.
|
1317
1327
|
#
|
1318
|
-
# If the source snapshot is in the same
|
1319
|
-
# specify a valid DB snapshot identifier. For example, you
|
1320
|
-
# specify `rds:mysql-instance1-snapshot-20130805`.
|
1328
|
+
# If the source snapshot is in the same Amazon Web Services Region as
|
1329
|
+
# the copy, specify a valid DB snapshot identifier. For example, you
|
1330
|
+
# might specify `rds:mysql-instance1-snapshot-20130805`.
|
1321
1331
|
#
|
1322
|
-
# If the source snapshot is in a different
|
1323
|
-
# specify a valid DB snapshot ARN. For example, you
|
1332
|
+
# If the source snapshot is in a different Amazon Web Services Region
|
1333
|
+
# than the copy, specify a valid DB snapshot ARN. For example, you
|
1334
|
+
# might specify
|
1324
1335
|
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805`.
|
1325
1336
|
#
|
1326
1337
|
# If you are copying from a shared manual DB snapshot, this parameter
|
1327
1338
|
# must be the Amazon Resource Name (ARN) of the shared DB snapshot.
|
1328
1339
|
#
|
1329
1340
|
# If you are copying an encrypted snapshot this parameter must be in
|
1330
|
-
# the ARN format for the source
|
1331
|
-
# `SourceDBSnapshotIdentifier` in the `PreSignedUrl`
|
1341
|
+
# the ARN format for the source Amazon Web Services Region, and must
|
1342
|
+
# match the `SourceDBSnapshotIdentifier` in the `PreSignedUrl`
|
1343
|
+
# parameter.
|
1332
1344
|
#
|
1333
1345
|
# Constraints:
|
1334
1346
|
#
|
@@ -1359,27 +1371,31 @@ module Aws::RDS
|
|
1359
1371
|
# @return [String]
|
1360
1372
|
#
|
1361
1373
|
# @!attribute [rw] kms_key_id
|
1362
|
-
# The
|
1363
|
-
# key identifier is the key ARN,
|
1364
|
-
#
|
1365
|
-
#
|
1366
|
-
#
|
1367
|
-
#
|
1368
|
-
#
|
1369
|
-
#
|
1370
|
-
#
|
1374
|
+
# The Amazon Web Services KMS key identifier for an encrypted DB
|
1375
|
+
# snapshot. The Amazon Web Services KMS key identifier is the key ARN,
|
1376
|
+
# key ID, alias ARN, or alias name for the Amazon Web Services KMS
|
1377
|
+
# customer master key (CMK).
|
1378
|
+
#
|
1379
|
+
# If you copy an encrypted DB snapshot from your Amazon Web Services
|
1380
|
+
# account, you can specify a value for this parameter to encrypt the
|
1381
|
+
# copy with a new Amazon Web Services KMS CMK. If you don't specify a
|
1382
|
+
# value for this parameter, then the copy of the DB snapshot is
|
1383
|
+
# encrypted with the same Amazon Web Services KMS key as the source DB
|
1384
|
+
# snapshot.
|
1371
1385
|
#
|
1372
|
-
# If you copy an encrypted DB snapshot that is shared from another
|
1373
|
-
# account, then you must specify a value for this
|
1386
|
+
# If you copy an encrypted DB snapshot that is shared from another
|
1387
|
+
# Amazon Web Services account, then you must specify a value for this
|
1388
|
+
# parameter.
|
1374
1389
|
#
|
1375
1390
|
# If you specify this parameter when you copy an unencrypted snapshot,
|
1376
1391
|
# the copy is encrypted.
|
1377
1392
|
#
|
1378
|
-
# If you copy an encrypted snapshot to a different
|
1379
|
-
# you must specify a
|
1380
|
-
#
|
1381
|
-
#
|
1382
|
-
#
|
1393
|
+
# If you copy an encrypted snapshot to a different Amazon Web Services
|
1394
|
+
# Region, then you must specify a Amazon Web Services KMS key
|
1395
|
+
# identifier for the destination Amazon Web Services Region. Amazon
|
1396
|
+
# Web Services KMS CMKs are specific to the Amazon Web Services Region
|
1397
|
+
# that they are created in, and you can't use CMKs from one Amazon
|
1398
|
+
# Web Services Region in another Amazon Web Services Region.
|
1383
1399
|
# @return [String]
|
1384
1400
|
#
|
1385
1401
|
# @!attribute [rw] tags
|
@@ -1398,55 +1414,59 @@ module Aws::RDS
|
|
1398
1414
|
#
|
1399
1415
|
# @!attribute [rw] pre_signed_url
|
1400
1416
|
# The URL that contains a Signature Version 4 signed request for the
|
1401
|
-
# `CopyDBSnapshot` API action in the source
|
1402
|
-
# the source DB snapshot to copy.
|
1417
|
+
# `CopyDBSnapshot` API action in the source Amazon Web Services Region
|
1418
|
+
# that contains the source DB snapshot to copy.
|
1403
1419
|
#
|
1404
1420
|
# You must specify this parameter when you copy an encrypted DB
|
1405
|
-
# snapshot from another
|
1406
|
-
# specify `PreSignedUrl` when you are copying an
|
1407
|
-
# in the same
|
1421
|
+
# snapshot from another Amazon Web Services Region by using the Amazon
|
1422
|
+
# RDS API. Don't specify `PreSignedUrl` when you are copying an
|
1423
|
+
# encrypted DB snapshot in the same Amazon Web Services Region.
|
1408
1424
|
#
|
1409
1425
|
# The presigned URL must be a valid request for the `CopyDBSnapshot`
|
1410
|
-
# API action that can be executed in the source
|
1411
|
-
# contains the encrypted DB snapshot to be copied. The
|
1412
|
-
# request must contain the following parameter values:
|
1426
|
+
# API action that can be executed in the source Amazon Web Services
|
1427
|
+
# Region that contains the encrypted DB snapshot to be copied. The
|
1428
|
+
# presigned URL request must contain the following parameter values:
|
1413
1429
|
#
|
1414
|
-
# * `DestinationRegion` - The
|
1415
|
-
# snapshot is copied to. This
|
1416
|
-
# `CopyDBSnapshot` action is called
|
1417
|
-
# URL.
|
1430
|
+
# * `DestinationRegion` - The Amazon Web Services Region that the
|
1431
|
+
# encrypted DB snapshot is copied to. This Amazon Web Services
|
1432
|
+
# Region is the same one where the `CopyDBSnapshot` action is called
|
1433
|
+
# that contains this presigned URL.
|
1418
1434
|
#
|
1419
1435
|
# For example, if you copy an encrypted DB snapshot from the
|
1420
|
-
# us-west-2
|
1421
|
-
# the `CopyDBSnapshot` action in the
|
1422
|
-
#
|
1423
|
-
# `CopyDBSnapshot` action in the
|
1424
|
-
#
|
1425
|
-
#
|
1426
|
-
#
|
1427
|
-
#
|
1428
|
-
#
|
1429
|
-
#
|
1430
|
-
#
|
1431
|
-
#
|
1436
|
+
# us-west-2 Amazon Web Services Region to the us-east-1 Amazon Web
|
1437
|
+
# Services Region, then you call the `CopyDBSnapshot` action in the
|
1438
|
+
# us-east-1 Amazon Web Services Region and provide a presigned URL
|
1439
|
+
# that contains a call to the `CopyDBSnapshot` action in the
|
1440
|
+
# us-west-2 Amazon Web Services Region. For this example, the
|
1441
|
+
# `DestinationRegion` in the presigned URL must be set to the
|
1442
|
+
# us-east-1 Amazon Web Services Region.
|
1443
|
+
#
|
1444
|
+
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the
|
1445
|
+
# customer master key (CMK) to use to encrypt the copy of the DB
|
1446
|
+
# snapshot in the destination Amazon Web Services Region. This is
|
1447
|
+
# the same identifier for both the `CopyDBSnapshot` action that is
|
1448
|
+
# called in the destination Amazon Web Services Region, and the
|
1449
|
+
# action contained in the presigned URL.
|
1432
1450
|
#
|
1433
1451
|
# * `SourceDBSnapshotIdentifier` - The DB snapshot identifier for the
|
1434
1452
|
# encrypted snapshot to be copied. This identifier must be in the
|
1435
|
-
# Amazon Resource Name (ARN) format for the source
|
1436
|
-
# example, if you are copying an encrypted DB
|
1437
|
-
# us-west-2
|
1438
|
-
# like the following example:
|
1453
|
+
# Amazon Resource Name (ARN) format for the source Amazon Web
|
1454
|
+
# Services Region. For example, if you are copying an encrypted DB
|
1455
|
+
# snapshot from the us-west-2 Amazon Web Services Region, then your
|
1456
|
+
# `SourceDBSnapshotIdentifier` looks like the following example:
|
1439
1457
|
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20161115`.
|
1440
1458
|
#
|
1441
1459
|
# To learn how to generate a Signature Version 4 signed request, see
|
1442
|
-
# [Authenticating Requests: Using Query Parameters (
|
1443
|
-
# Version 4)][1] and [Signature Version 4 Signing
|
1460
|
+
# [Authenticating Requests: Using Query Parameters (Amazon Web
|
1461
|
+
# Services Signature Version 4)][1] and [Signature Version 4 Signing
|
1462
|
+
# Process][2].
|
1444
1463
|
#
|
1445
|
-
# <note markdown="1"> If you are using an
|
1446
|
-
# `SourceRegion` (or `--source-region` for the
|
1464
|
+
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
1465
|
+
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
1447
1466
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
1448
1467
|
# autogenerates a pre-signed URL that is a valid request for the
|
1449
|
-
# operation that can be executed in the source
|
1468
|
+
# operation that can be executed in the source Amazon Web Services
|
1469
|
+
# Region.
|
1450
1470
|
#
|
1451
1471
|
# </note>
|
1452
1472
|
#
|
@@ -1460,12 +1480,13 @@ module Aws::RDS
|
|
1460
1480
|
# The name of an option group to associate with the copy of the
|
1461
1481
|
# snapshot.
|
1462
1482
|
#
|
1463
|
-
# Specify this option if you are copying a snapshot from one
|
1464
|
-
# Region to another, and your DB instance uses a
|
1465
|
-
# group. If your source DB instance uses Transparent
|
1466
|
-
# for Oracle or Microsoft SQL Server, you must specify
|
1467
|
-
# when copying across
|
1468
|
-
# group considerations][1] in the
|
1483
|
+
# Specify this option if you are copying a snapshot from one Amazon
|
1484
|
+
# Web Services Region to another, and your DB instance uses a
|
1485
|
+
# nondefault option group. If your source DB instance uses Transparent
|
1486
|
+
# Data Encryption for Oracle or Microsoft SQL Server, you must specify
|
1487
|
+
# this option when copying across Amazon Web Services Regions. For
|
1488
|
+
# more information, see [Option group considerations][1] in the
|
1489
|
+
# *Amazon RDS User Guide.*
|
1469
1490
|
#
|
1470
1491
|
#
|
1471
1492
|
#
|
@@ -1768,9 +1789,9 @@ module Aws::RDS
|
|
1768
1789
|
#
|
1769
1790
|
# @!attribute [rw] availability_zones
|
1770
1791
|
# A list of Availability Zones (AZs) where instances in the DB cluster
|
1771
|
-
# can be created. For information on
|
1772
|
-
# Zones, see [Choosing the Regions and Availability
|
1773
|
-
# *Amazon Aurora User Guide*.
|
1792
|
+
# can be created. For information on Amazon Web Services Regions and
|
1793
|
+
# Availability Zones, see [Choosing the Regions and Availability
|
1794
|
+
# Zones][1] in the *Amazon Aurora User Guide*.
|
1774
1795
|
#
|
1775
1796
|
#
|
1776
1797
|
#
|
@@ -1922,8 +1943,8 @@ module Aws::RDS
|
|
1922
1943
|
# parameter.
|
1923
1944
|
#
|
1924
1945
|
# The default is a 30-minute window selected at random from an 8-hour
|
1925
|
-
# block of time for each
|
1926
|
-
# available, see [ Backup window][1] in the *Amazon Aurora User
|
1946
|
+
# block of time for each Amazon Web Services Region. To view the time
|
1947
|
+
# blocks available, see [ Backup window][1] in the *Amazon Aurora User
|
1927
1948
|
# Guide.*
|
1928
1949
|
#
|
1929
1950
|
# Constraints:
|
@@ -1948,10 +1969,10 @@ module Aws::RDS
|
|
1948
1969
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
1949
1970
|
#
|
1950
1971
|
# The default is a 30-minute window selected at random from an 8-hour
|
1951
|
-
# block of time for each
|
1952
|
-
# week. To see the time blocks available, see [
|
1953
|
-
# Preferred DB Cluster Maintenance Window][1] in the
|
1954
|
-
# User Guide.*
|
1972
|
+
# block of time for each Amazon Web Services Region, occurring on a
|
1973
|
+
# random day of the week. To see the time blocks available, see [
|
1974
|
+
# Adjusting the Preferred DB Cluster Maintenance Window][1] in the
|
1975
|
+
# *Amazon Aurora User Guide.*
|
1955
1976
|
#
|
1956
1977
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
1957
1978
|
#
|
@@ -1976,11 +1997,13 @@ module Aws::RDS
|
|
1976
1997
|
# @return [Boolean]
|
1977
1998
|
#
|
1978
1999
|
# @!attribute [rw] kms_key_id
|
1979
|
-
# The
|
2000
|
+
# The Amazon Web Services KMS key identifier for an encrypted DB
|
2001
|
+
# cluster.
|
1980
2002
|
#
|
1981
|
-
# The
|
1982
|
-
# alias name for the
|
1983
|
-
#
|
2003
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
2004
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
2005
|
+
# master key (CMK). To use a CMK in a different Amazon Web Services
|
2006
|
+
# account, specify the key ARN or alias ARN.
|
1984
2007
|
#
|
1985
2008
|
# When a CMK isn't specified in `KmsKeyId`\:
|
1986
2009
|
#
|
@@ -1992,55 +2015,60 @@ module Aws::RDS
|
|
1992
2015
|
# `ReplicationSourceIdentifier` isn't specified, then Amazon RDS
|
1993
2016
|
# will use your default CMK.
|
1994
2017
|
#
|
1995
|
-
# There is a default CMK for your
|
1996
|
-
# different default CMK for each
|
2018
|
+
# There is a default CMK for your Amazon Web Services account. Your
|
2019
|
+
# Amazon Web Services account has a different default CMK for each
|
2020
|
+
# Amazon Web Services Region.
|
1997
2021
|
#
|
1998
2022
|
# If you create a read replica of an encrypted DB cluster in another
|
1999
|
-
#
|
2000
|
-
# is valid in the destination
|
2001
|
-
# the read replica in
|
2023
|
+
# Amazon Web Services Region, you must set `KmsKeyId` to a Amazon Web
|
2024
|
+
# Services KMS key identifier that is valid in the destination Amazon
|
2025
|
+
# Web Services Region. This CMK is used to encrypt the read replica in
|
2026
|
+
# that Amazon Web Services Region.
|
2002
2027
|
# @return [String]
|
2003
2028
|
#
|
2004
2029
|
# @!attribute [rw] pre_signed_url
|
2005
2030
|
# A URL that contains a Signature Version 4 signed request for the
|
2006
|
-
# `CreateDBCluster` action to be called in the source
|
2007
|
-
# the DB cluster is replicated from. You only
|
2008
|
-
# `PreSignedUrl` when you are performing cross-region
|
2009
|
-
# an encrypted DB cluster.
|
2031
|
+
# `CreateDBCluster` action to be called in the source Amazon Web
|
2032
|
+
# Services Region where the DB cluster is replicated from. You only
|
2033
|
+
# need to specify `PreSignedUrl` when you are performing cross-region
|
2034
|
+
# replication from an encrypted DB cluster.
|
2010
2035
|
#
|
2011
2036
|
# The pre-signed URL must be a valid request for the `CreateDBCluster`
|
2012
|
-
# API action that can be executed in the source
|
2013
|
-
# contains the encrypted DB cluster to be copied.
|
2037
|
+
# API action that can be executed in the source Amazon Web Services
|
2038
|
+
# Region that contains the encrypted DB cluster to be copied.
|
2014
2039
|
#
|
2015
2040
|
# The pre-signed URL request must contain the following parameter
|
2016
2041
|
# values:
|
2017
2042
|
#
|
2018
|
-
# * `KmsKeyId` - The
|
2019
|
-
# encrypt the copy of the DB cluster in the
|
2020
|
-
#
|
2021
|
-
#
|
2043
|
+
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the
|
2044
|
+
# key to use to encrypt the copy of the DB cluster in the
|
2045
|
+
# destination Amazon Web Services Region. This should refer to the
|
2046
|
+
# same Amazon Web Services KMS CMK for both the `CreateDBCluster`
|
2047
|
+
# action that is called in the destination Amazon Web Services
|
2022
2048
|
# Region, and the action contained in the pre-signed URL.
|
2023
2049
|
#
|
2024
|
-
# * `DestinationRegion` - The name of the
|
2025
|
-
# replica will be created in.
|
2050
|
+
# * `DestinationRegion` - The name of the Amazon Web Services Region
|
2051
|
+
# that Aurora read replica will be created in.
|
2026
2052
|
#
|
2027
2053
|
# * `ReplicationSourceIdentifier` - The DB cluster identifier for the
|
2028
2054
|
# encrypted DB cluster to be copied. This identifier must be in the
|
2029
|
-
# Amazon Resource Name (ARN) format for the source
|
2030
|
-
# example, if you are copying an encrypted DB
|
2031
|
-
# us-west-2
|
2032
|
-
# would look like Example:
|
2055
|
+
# Amazon Resource Name (ARN) format for the source Amazon Web
|
2056
|
+
# Services Region. For example, if you are copying an encrypted DB
|
2057
|
+
# cluster from the us-west-2 Amazon Web Services Region, then your
|
2058
|
+
# `ReplicationSourceIdentifier` would look like Example:
|
2033
2059
|
# `arn:aws:rds:us-west-2:123456789012:cluster:aurora-cluster1`.
|
2034
2060
|
#
|
2035
2061
|
# To learn how to generate a Signature Version 4 signed request, see [
|
2036
|
-
# Authenticating Requests: Using Query Parameters (
|
2037
|
-
# Version 4)][1] and [ Signature Version 4 Signing
|
2062
|
+
# Authenticating Requests: Using Query Parameters (Amazon Web Services
|
2063
|
+
# Signature Version 4)][1] and [ Signature Version 4 Signing
|
2064
|
+
# Process][2].
|
2038
2065
|
#
|
2039
|
-
# <note markdown="1"> If you are using an
|
2040
|
-
# `SourceRegion` (or `--source-region` for the
|
2066
|
+
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
2067
|
+
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
2041
2068
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
2042
2069
|
# autogenerates a pre-signed URL that is a valid request for the
|
2043
|
-
# operation that can be executed in the source
|
2070
|
+
# operation that can be executed in the source Amazon Web Services
|
2071
|
+
# Region.
|
2044
2072
|
#
|
2045
2073
|
# </note>
|
2046
2074
|
#
|
@@ -2051,9 +2079,9 @@ module Aws::RDS
|
|
2051
2079
|
# @return [String]
|
2052
2080
|
#
|
2053
2081
|
# @!attribute [rw] enable_iam_database_authentication
|
2054
|
-
# A value that indicates whether to enable mapping of
|
2055
|
-
# Access Management (IAM) accounts to database
|
2056
|
-
# mapping is disabled.
|
2082
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
2083
|
+
# Services Identity and Access Management (IAM) accounts to database
|
2084
|
+
# accounts. By default, mapping is disabled.
|
2057
2085
|
#
|
2058
2086
|
# For more information, see [ IAM Database Authentication][1] in the
|
2059
2087
|
# *Amazon Aurora User Guide.*
|
@@ -2301,6 +2329,31 @@ module Aws::RDS
|
|
2301
2329
|
# **Aurora PostgreSQL**
|
2302
2330
|
#
|
2303
2331
|
# Example: `aurora-postgresql9.6`
|
2332
|
+
#
|
2333
|
+
# To list all of the available parameter group families for a DB
|
2334
|
+
# engine, use the following command:
|
2335
|
+
#
|
2336
|
+
# `aws rds describe-db-engine-versions --query
|
2337
|
+
# "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`
|
2338
|
+
#
|
2339
|
+
# For example, to list all of the available parameter group families
|
2340
|
+
# for the Aurora PostgreSQL DB engine, use the following command:
|
2341
|
+
#
|
2342
|
+
# `aws rds describe-db-engine-versions --query
|
2343
|
+
# "DBEngineVersions[].DBParameterGroupFamily" --engine
|
2344
|
+
# aurora-postgresql`
|
2345
|
+
#
|
2346
|
+
# <note markdown="1"> The output contains duplicates.
|
2347
|
+
#
|
2348
|
+
# </note>
|
2349
|
+
#
|
2350
|
+
# The following are the valid DB engine values:
|
2351
|
+
#
|
2352
|
+
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
2353
|
+
#
|
2354
|
+
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
2355
|
+
#
|
2356
|
+
# * `aurora-postgresql`
|
2304
2357
|
# @return [String]
|
2305
2358
|
#
|
2306
2359
|
# @!attribute [rw] description
|
@@ -2692,10 +2745,10 @@ module Aws::RDS
|
|
2692
2745
|
#
|
2693
2746
|
# @!attribute [rw] db_instance_class
|
2694
2747
|
# The compute and memory capacity of the DB instance, for example,
|
2695
|
-
# `db.m4.large`. Not all DB instance classes are available in all
|
2696
|
-
# Regions, or for all database engines. For the
|
2697
|
-
# instance classes, and availability for your engine,
|
2698
|
-
# Class][1] in the *Amazon RDS User Guide.*
|
2748
|
+
# `db.m4.large`. Not all DB instance classes are available in all
|
2749
|
+
# Amazon Web Services Regions, or for all database engines. For the
|
2750
|
+
# full list of DB instance classes, and availability for your engine,
|
2751
|
+
# see [DB Instance Class][1] in the *Amazon RDS User Guide.*
|
2699
2752
|
#
|
2700
2753
|
#
|
2701
2754
|
#
|
@@ -2705,7 +2758,8 @@ module Aws::RDS
|
|
2705
2758
|
# @!attribute [rw] engine
|
2706
2759
|
# The name of the database engine to be used for this instance.
|
2707
2760
|
#
|
2708
|
-
# Not every database engine is available for every
|
2761
|
+
# Not every database engine is available for every Amazon Web Services
|
2762
|
+
# Region.
|
2709
2763
|
#
|
2710
2764
|
# Valid Values:
|
2711
2765
|
#
|
@@ -2721,11 +2775,11 @@ module Aws::RDS
|
|
2721
2775
|
#
|
2722
2776
|
# * `oracle-ee`
|
2723
2777
|
#
|
2724
|
-
# * `oracle-
|
2778
|
+
# * `oracle-ee-cdb`
|
2725
2779
|
#
|
2726
|
-
# * `oracle-
|
2780
|
+
# * `oracle-se2`
|
2727
2781
|
#
|
2728
|
-
# * `oracle-
|
2782
|
+
# * `oracle-se2-cdb`
|
2729
2783
|
#
|
2730
2784
|
# * `postgres`
|
2731
2785
|
#
|
@@ -2856,17 +2910,18 @@ module Aws::RDS
|
|
2856
2910
|
#
|
2857
2911
|
# @!attribute [rw] availability_zone
|
2858
2912
|
# The Availability Zone (AZ) where the database will be created. For
|
2859
|
-
# information on
|
2860
|
-
# Availability Zones][1].
|
2913
|
+
# information on Amazon Web Services Regions and Availability Zones,
|
2914
|
+
# see [Regions and Availability Zones][1].
|
2861
2915
|
#
|
2862
2916
|
# Default: A random, system-chosen Availability Zone in the
|
2863
|
-
# endpoint's
|
2917
|
+
# endpoint's Amazon Web Services Region.
|
2864
2918
|
#
|
2865
2919
|
# Example: `us-east-1d`
|
2866
2920
|
#
|
2867
2921
|
# Constraint: The `AvailabilityZone` parameter can't be specified if
|
2868
2922
|
# the DB instance is a Multi-AZ deployment. The specified Availability
|
2869
|
-
# Zone must be in the same
|
2923
|
+
# Zone must be in the same Amazon Web Services Region as the current
|
2924
|
+
# endpoint.
|
2870
2925
|
#
|
2871
2926
|
# <note markdown="1"> If you're creating a DB instance in an RDS on VMware environment,
|
2872
2927
|
# specify the identifier of the custom Availability Zone to create the
|
@@ -2897,8 +2952,8 @@ module Aws::RDS
|
|
2897
2952
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
2898
2953
|
#
|
2899
2954
|
# The default is a 30-minute window selected at random from an 8-hour
|
2900
|
-
# block of time for each
|
2901
|
-
# week.
|
2955
|
+
# block of time for each Amazon Web Services Region, occurring on a
|
2956
|
+
# random day of the week.
|
2902
2957
|
#
|
2903
2958
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
2904
2959
|
#
|
@@ -2946,8 +3001,9 @@ module Aws::RDS
|
|
2946
3001
|
# The daily time range during which automated backups are created if
|
2947
3002
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
2948
3003
|
# parameter. The default is a 30-minute window selected at random from
|
2949
|
-
# an 8-hour block of time for each
|
2950
|
-
# see [Backup window][1] in the *Amazon RDS User
|
3004
|
+
# an 8-hour block of time for each Amazon Web Services Region. For
|
3005
|
+
# more information, see [Backup window][1] in the *Amazon RDS User
|
3006
|
+
# Guide*.
|
2951
3007
|
#
|
2952
3008
|
# **Amazon Aurora**
|
2953
3009
|
#
|
@@ -3032,7 +3088,8 @@ module Aws::RDS
|
|
3032
3088
|
#
|
3033
3089
|
# The following are the database engines and links to information
|
3034
3090
|
# about the major and minor versions that are available with Amazon
|
3035
|
-
# RDS. Not every database engine is available for every
|
3091
|
+
# RDS. Not every database engine is available for every Amazon Web
|
3092
|
+
# Services Region.
|
3036
3093
|
#
|
3037
3094
|
# **Amazon Aurora**
|
3038
3095
|
#
|
@@ -3202,21 +3259,25 @@ module Aws::RDS
|
|
3202
3259
|
# @return [Boolean]
|
3203
3260
|
#
|
3204
3261
|
# @!attribute [rw] kms_key_id
|
3205
|
-
# The
|
3262
|
+
# The Amazon Web Services KMS key identifier for an encrypted DB
|
3263
|
+
# instance.
|
3206
3264
|
#
|
3207
|
-
# The
|
3208
|
-
# alias name for the
|
3209
|
-
#
|
3265
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
3266
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
3267
|
+
# master key (CMK). To use a CMK in a different Amazon Web Services
|
3268
|
+
# account, specify the key ARN or alias ARN.
|
3210
3269
|
#
|
3211
3270
|
# **Amazon Aurora**
|
3212
3271
|
#
|
3213
|
-
# Not applicable. The
|
3214
|
-
# cluster. For more information, see
|
3272
|
+
# Not applicable. The Amazon Web Services KMS key identifier is
|
3273
|
+
# managed by the DB cluster. For more information, see
|
3274
|
+
# `CreateDBCluster`.
|
3215
3275
|
#
|
3216
3276
|
# If `StorageEncrypted` is enabled, and you do not specify a value for
|
3217
3277
|
# the `KmsKeyId` parameter, then Amazon RDS uses your default CMK.
|
3218
|
-
# There is a default CMK for your
|
3219
|
-
# different default CMK for each
|
3278
|
+
# There is a default CMK for your Amazon Web Services account. Your
|
3279
|
+
# Amazon Web Services account has a different default CMK for each
|
3280
|
+
# Amazon Web Services Region.
|
3220
3281
|
# @return [String]
|
3221
3282
|
#
|
3222
3283
|
# @!attribute [rw] domain
|
@@ -3299,12 +3360,13 @@ module Aws::RDS
|
|
3299
3360
|
# @return [String]
|
3300
3361
|
#
|
3301
3362
|
# @!attribute [rw] enable_iam_database_authentication
|
3302
|
-
# A value that indicates whether to enable mapping of
|
3303
|
-
# Access Management (IAM) accounts to database
|
3304
|
-
# mapping is disabled.
|
3363
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
3364
|
+
# Services Identity and Access Management (IAM) accounts to database
|
3365
|
+
# accounts. By default, mapping is disabled.
|
3305
3366
|
#
|
3306
|
-
# This setting doesn't apply to Amazon Aurora. Mapping
|
3307
|
-
# accounts to database accounts is managed by the DB
|
3367
|
+
# This setting doesn't apply to Amazon Aurora. Mapping Amazon Web
|
3368
|
+
# Services IAM accounts to database accounts is managed by the DB
|
3369
|
+
# cluster.
|
3308
3370
|
#
|
3309
3371
|
# For more information, see [ IAM Database Authentication for MySQL
|
3310
3372
|
# and PostgreSQL][1] in the *Amazon RDS User Guide.*
|
@@ -3327,16 +3389,17 @@ module Aws::RDS
|
|
3327
3389
|
# @return [Boolean]
|
3328
3390
|
#
|
3329
3391
|
# @!attribute [rw] performance_insights_kms_key_id
|
3330
|
-
# The
|
3331
|
-
# data.
|
3392
|
+
# The Amazon Web Services KMS key identifier for encryption of
|
3393
|
+
# Performance Insights data.
|
3332
3394
|
#
|
3333
|
-
# The
|
3334
|
-
# alias name for the
|
3395
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
3396
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
3397
|
+
# master key (CMK).
|
3335
3398
|
#
|
3336
3399
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`,
|
3337
3400
|
# then Amazon RDS uses your default CMK. There is a default CMK for
|
3338
|
-
# your
|
3339
|
-
# each
|
3401
|
+
# your Amazon Web Services account. Your Amazon Web Services account
|
3402
|
+
# has a different default CMK for each Amazon Web Services Region.
|
3340
3403
|
# @return [String]
|
3341
3404
|
#
|
3342
3405
|
# @!attribute [rw] performance_insights_retention_period
|
@@ -3429,10 +3492,11 @@ module Aws::RDS
|
|
3429
3492
|
# local network.
|
3430
3493
|
#
|
3431
3494
|
# For more information about RDS on Outposts, see [Working with Amazon
|
3432
|
-
# RDS on
|
3495
|
+
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
3496
|
+
# Guide*.
|
3433
3497
|
#
|
3434
3498
|
# For more information about CoIPs, see [Customer-owned IP
|
3435
|
-
# addresses][2] in the *
|
3499
|
+
# addresses][2] in the *Amazon Web Services Outposts User Guide*.
|
3436
3500
|
#
|
3437
3501
|
#
|
3438
3502
|
#
|
@@ -3577,14 +3641,15 @@ module Aws::RDS
|
|
3577
3641
|
# * The specified DB instance must have automatic backups enabled,
|
3578
3642
|
# that is, its backup retention period must be greater than 0.
|
3579
3643
|
#
|
3580
|
-
# * If the source DB instance is in the same
|
3581
|
-
# replica, specify a valid DB instance
|
3644
|
+
# * If the source DB instance is in the same Amazon Web Services
|
3645
|
+
# Region as the read replica, specify a valid DB instance
|
3646
|
+
# identifier.
|
3582
3647
|
#
|
3583
|
-
# * If the source DB instance is in a different
|
3584
|
-
# read replica, specify a valid DB instance ARN. For
|
3585
|
-
# information, see [Constructing an ARN for Amazon RDS][3] in
|
3586
|
-
# *Amazon RDS User Guide*. This doesn't apply to SQL Server,
|
3587
|
-
# doesn't support cross-region replicas.
|
3648
|
+
# * If the source DB instance is in a different Amazon Web Services
|
3649
|
+
# Region from the read replica, specify a valid DB instance ARN. For
|
3650
|
+
# more information, see [Constructing an ARN for Amazon RDS][3] in
|
3651
|
+
# the *Amazon RDS User Guide*. This doesn't apply to SQL Server,
|
3652
|
+
# which doesn't support cross-region replicas.
|
3588
3653
|
#
|
3589
3654
|
#
|
3590
3655
|
#
|
@@ -3595,10 +3660,10 @@ module Aws::RDS
|
|
3595
3660
|
#
|
3596
3661
|
# @!attribute [rw] db_instance_class
|
3597
3662
|
# The compute and memory capacity of the read replica, for example,
|
3598
|
-
# `db.m4.large`. Not all DB instance classes are available in all
|
3599
|
-
# Regions, or for all database engines. For the
|
3600
|
-
# instance classes, and availability for your engine,
|
3601
|
-
# Class][1] in the *Amazon RDS User Guide.*
|
3663
|
+
# `db.m4.large`. Not all DB instance classes are available in all
|
3664
|
+
# Amazon Web Services Regions, or for all database engines. For the
|
3665
|
+
# full list of DB instance classes, and availability for your engine,
|
3666
|
+
# see [DB Instance Class][1] in the *Amazon RDS User Guide.*
|
3602
3667
|
#
|
3603
3668
|
# Default: Inherits from the source DB instance.
|
3604
3669
|
#
|
@@ -3611,7 +3676,7 @@ module Aws::RDS
|
|
3611
3676
|
# The Availability Zone (AZ) where the read replica will be created.
|
3612
3677
|
#
|
3613
3678
|
# Default: A random, system-chosen Availability Zone in the
|
3614
|
-
# endpoint's
|
3679
|
+
# endpoint's Amazon Web Services Region.
|
3615
3680
|
#
|
3616
3681
|
# Example: `us-east-1d`
|
3617
3682
|
# @return [String]
|
@@ -3715,15 +3780,15 @@ module Aws::RDS
|
|
3715
3780
|
# Constraints:
|
3716
3781
|
#
|
3717
3782
|
# * Can only be specified if the source DB instance identifier
|
3718
|
-
# specifies a DB instance in another
|
3783
|
+
# specifies a DB instance in another Amazon Web Services Region.
|
3719
3784
|
#
|
3720
3785
|
# * If supplied, must match the name of an existing DBSubnetGroup.
|
3721
3786
|
#
|
3722
|
-
# * The specified DB subnet group must be in the same
|
3723
|
-
# which the operation is running.
|
3787
|
+
# * The specified DB subnet group must be in the same Amazon Web
|
3788
|
+
# Services Region in which the operation is running.
|
3724
3789
|
#
|
3725
|
-
# * All read replicas in one
|
3726
|
-
# source DB instance must either:>
|
3790
|
+
# * All read replicas in one Amazon Web Services Region that are
|
3791
|
+
# created from the same source DB instance must either:>
|
3727
3792
|
#
|
3728
3793
|
# * Specify DB subnet groups from the same VPC. All these read
|
3729
3794
|
# replicas are created in the same VPC.
|
@@ -3786,21 +3851,24 @@ module Aws::RDS
|
|
3786
3851
|
# @return [String]
|
3787
3852
|
#
|
3788
3853
|
# @!attribute [rw] kms_key_id
|
3789
|
-
# The
|
3854
|
+
# The Amazon Web Services KMS key identifier for an encrypted read
|
3855
|
+
# replica.
|
3790
3856
|
#
|
3791
|
-
# The
|
3792
|
-
# alias name for the
|
3857
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
3858
|
+
# alias ARN, or alias name for the Amazon Web Services KMS CMK.
|
3793
3859
|
#
|
3794
|
-
# If you create an encrypted read replica in the same
|
3795
|
-
# the source DB instance, then do not specify a
|
3796
|
-
# parameter. A read replica in the same Region is
|
3797
|
-
# with the same
|
3860
|
+
# If you create an encrypted read replica in the same Amazon Web
|
3861
|
+
# Services Region as the source DB instance, then do not specify a
|
3862
|
+
# value for this parameter. A read replica in the same Region is
|
3863
|
+
# always encrypted with the same Amazon Web Services KMS CMK as the
|
3864
|
+
# source DB instance.
|
3798
3865
|
#
|
3799
|
-
# If you create an encrypted read replica in a different
|
3800
|
-
# then you must specify a
|
3801
|
-
#
|
3802
|
-
#
|
3803
|
-
#
|
3866
|
+
# If you create an encrypted read replica in a different Amazon Web
|
3867
|
+
# Services Region, then you must specify a Amazon Web Services KMS key
|
3868
|
+
# identifier for the destination Amazon Web Services Region. Amazon
|
3869
|
+
# Web Services KMS CMKs are specific to the Amazon Web Services Region
|
3870
|
+
# that they are created in, and you can't use CMKs from one Amazon
|
3871
|
+
# Web Services Region in another Amazon Web Services Region.
|
3804
3872
|
#
|
3805
3873
|
# You can't create an encrypted read replica from an unencrypted DB
|
3806
3874
|
# instance.
|
@@ -3808,56 +3876,62 @@ module Aws::RDS
|
|
3808
3876
|
#
|
3809
3877
|
# @!attribute [rw] pre_signed_url
|
3810
3878
|
# The URL that contains a Signature Version 4 signed request for the
|
3811
|
-
# `CreateDBInstanceReadReplica` API action in the source
|
3812
|
-
# that contains the source DB instance.
|
3879
|
+
# `CreateDBInstanceReadReplica` API action in the source Amazon Web
|
3880
|
+
# Services Region that contains the source DB instance.
|
3813
3881
|
#
|
3814
3882
|
# You must specify this parameter when you create an encrypted read
|
3815
|
-
# replica from another
|
3816
|
-
# specify `PreSignedUrl` when you are creating an
|
3817
|
-
# replica in the same
|
3883
|
+
# replica from another Amazon Web Services Region by using the Amazon
|
3884
|
+
# RDS API. Don't specify `PreSignedUrl` when you are creating an
|
3885
|
+
# encrypted read replica in the same Amazon Web Services Region.
|
3818
3886
|
#
|
3819
3887
|
# The presigned URL must be a valid request for the
|
3820
3888
|
# `CreateDBInstanceReadReplica` API action that can be executed in the
|
3821
|
-
# source
|
3822
|
-
# The presigned URL request must contain the following
|
3823
|
-
# values:
|
3889
|
+
# source Amazon Web Services Region that contains the encrypted source
|
3890
|
+
# DB instance. The presigned URL request must contain the following
|
3891
|
+
# parameter values:
|
3824
3892
|
#
|
3825
|
-
# * `DestinationRegion` - The
|
3826
|
-
# replica is created in. This
|
3827
|
-
#
|
3828
|
-
# presigned URL.
|
3893
|
+
# * `DestinationRegion` - The Amazon Web Services Region that the
|
3894
|
+
# encrypted read replica is created in. This Amazon Web Services
|
3895
|
+
# Region is the same one where the `CreateDBInstanceReadReplica`
|
3896
|
+
# action is called that contains this presigned URL.
|
3829
3897
|
#
|
3830
3898
|
# For example, if you create an encrypted DB instance in the
|
3831
|
-
# us-west-1
|
3832
|
-
#
|
3833
|
-
# in the us-east-1
|
3834
|
-
#
|
3835
|
-
#
|
3836
|
-
#
|
3837
|
-
#
|
3838
|
-
#
|
3839
|
-
#
|
3840
|
-
#
|
3841
|
-
#
|
3842
|
-
#
|
3899
|
+
# us-west-1 Amazon Web Services Region, from a source DB instance in
|
3900
|
+
# the us-east-2 Amazon Web Services Region, then you call the
|
3901
|
+
# `CreateDBInstanceReadReplica` action in the us-east-1 Amazon Web
|
3902
|
+
# Services Region and provide a presigned URL that contains a call
|
3903
|
+
# to the `CreateDBInstanceReadReplica` action in the us-west-2
|
3904
|
+
# Amazon Web Services Region. For this example, the
|
3905
|
+
# `DestinationRegion` in the presigned URL must be set to the
|
3906
|
+
# us-east-1 Amazon Web Services Region.
|
3907
|
+
#
|
3908
|
+
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the
|
3909
|
+
# key to use to encrypt the read replica in the destination Amazon
|
3910
|
+
# Web Services Region. This is the same identifier for both the
|
3911
|
+
# `CreateDBInstanceReadReplica` action that is called in the
|
3912
|
+
# destination Amazon Web Services Region, and the action contained
|
3913
|
+
# in the presigned URL.
|
3843
3914
|
#
|
3844
3915
|
# * `SourceDBInstanceIdentifier` - The DB instance identifier for the
|
3845
3916
|
# encrypted DB instance to be replicated. This identifier must be in
|
3846
|
-
# the Amazon Resource Name (ARN) format for the source
|
3847
|
-
# For example, if you are creating an encrypted
|
3848
|
-
# DB instance in the us-west-2
|
3849
|
-
# `SourceDBInstanceIdentifier` looks like
|
3917
|
+
# the Amazon Resource Name (ARN) format for the source Amazon Web
|
3918
|
+
# Services Region. For example, if you are creating an encrypted
|
3919
|
+
# read replica from a DB instance in the us-west-2 Amazon Web
|
3920
|
+
# Services Region, then your `SourceDBInstanceIdentifier` looks like
|
3921
|
+
# the following example:
|
3850
3922
|
# `arn:aws:rds:us-west-2:123456789012:instance:mysql-instance1-20161115`.
|
3851
3923
|
#
|
3852
3924
|
# To learn how to generate a Signature Version 4 signed request, see
|
3853
|
-
# [Authenticating Requests: Using Query Parameters (
|
3854
|
-
# Version 4)][1] and [Signature Version 4 Signing
|
3925
|
+
# [Authenticating Requests: Using Query Parameters (Amazon Web
|
3926
|
+
# Services Signature Version 4)][1] and [Signature Version 4 Signing
|
3927
|
+
# Process][2].
|
3855
3928
|
#
|
3856
|
-
# <note markdown="1"> If you are using an
|
3857
|
-
# `SourceRegion` (or `--source-region` for the
|
3929
|
+
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
3930
|
+
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
3858
3931
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
3859
3932
|
# autogenerates a presigned URL that is a valid request for the
|
3860
|
-
# operation that can be executed in the source
|
3933
|
+
# operation that can be executed in the source Amazon Web Services
|
3934
|
+
# Region.
|
3861
3935
|
#
|
3862
3936
|
# `SourceRegion` isn't supported for SQL Server, because SQL Server
|
3863
3937
|
# on Amazon RDS doesn't support cross-region read replicas.
|
@@ -3871,9 +3945,9 @@ module Aws::RDS
|
|
3871
3945
|
# @return [String]
|
3872
3946
|
#
|
3873
3947
|
# @!attribute [rw] enable_iam_database_authentication
|
3874
|
-
# A value that indicates whether to enable mapping of
|
3875
|
-
# Access Management (IAM) accounts to database
|
3876
|
-
# mapping is disabled.
|
3948
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
3949
|
+
# Services Identity and Access Management (IAM) accounts to database
|
3950
|
+
# accounts. By default, mapping is disabled.
|
3877
3951
|
#
|
3878
3952
|
# For more information about IAM database authentication, see [ IAM
|
3879
3953
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -3897,16 +3971,17 @@ module Aws::RDS
|
|
3897
3971
|
# @return [Boolean]
|
3898
3972
|
#
|
3899
3973
|
# @!attribute [rw] performance_insights_kms_key_id
|
3900
|
-
# The
|
3901
|
-
# data.
|
3974
|
+
# The Amazon Web Services KMS key identifier for encryption of
|
3975
|
+
# Performance Insights data.
|
3902
3976
|
#
|
3903
|
-
# The
|
3904
|
-
# alias name for the
|
3977
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
3978
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
3979
|
+
# master key (CMK).
|
3905
3980
|
#
|
3906
3981
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`,
|
3907
3982
|
# then Amazon RDS uses your default CMK. There is a default CMK for
|
3908
|
-
# your
|
3909
|
-
# each
|
3983
|
+
# your Amazon Web Services account. Your Amazon Web Services account
|
3984
|
+
# has a different default CMK for each Amazon Web Services Region.
|
3910
3985
|
# @return [String]
|
3911
3986
|
#
|
3912
3987
|
# @!attribute [rw] performance_insights_retention_period
|
@@ -4113,15 +4188,51 @@ module Aws::RDS
|
|
4113
4188
|
# be applied only to a DB instance running a database engine and
|
4114
4189
|
# engine version compatible with that DB parameter group family.
|
4115
4190
|
#
|
4116
|
-
# To list all of the available parameter group families
|
4117
|
-
# following command:
|
4191
|
+
# To list all of the available parameter group families for a DB
|
4192
|
+
# engine, use the following command:
|
4118
4193
|
#
|
4119
4194
|
# `aws rds describe-db-engine-versions --query
|
4120
|
-
# "DBEngineVersions[].DBParameterGroupFamily"
|
4195
|
+
# "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`
|
4196
|
+
#
|
4197
|
+
# For example, to list all of the available parameter group families
|
4198
|
+
# for the MySQL DB engine, use the following command:
|
4199
|
+
#
|
4200
|
+
# `aws rds describe-db-engine-versions --query
|
4201
|
+
# "DBEngineVersions[].DBParameterGroupFamily" --engine mysql`
|
4121
4202
|
#
|
4122
4203
|
# <note markdown="1"> The output contains duplicates.
|
4123
4204
|
#
|
4124
4205
|
# </note>
|
4206
|
+
#
|
4207
|
+
# The following are the valid DB engine values:
|
4208
|
+
#
|
4209
|
+
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
4210
|
+
#
|
4211
|
+
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
4212
|
+
#
|
4213
|
+
# * `aurora-postgresql`
|
4214
|
+
#
|
4215
|
+
# * `mariadb`
|
4216
|
+
#
|
4217
|
+
# * `mysql`
|
4218
|
+
#
|
4219
|
+
# * `oracle-ee`
|
4220
|
+
#
|
4221
|
+
# * `oracle-ee-cdb`
|
4222
|
+
#
|
4223
|
+
# * `oracle-se2`
|
4224
|
+
#
|
4225
|
+
# * `oracle-se2-cdb`
|
4226
|
+
#
|
4227
|
+
# * `postgres`
|
4228
|
+
#
|
4229
|
+
# * `sqlserver-ee`
|
4230
|
+
#
|
4231
|
+
# * `sqlserver-se`
|
4232
|
+
#
|
4233
|
+
# * `sqlserver-ex`
|
4234
|
+
#
|
4235
|
+
# * `sqlserver-web`
|
4125
4236
|
# @return [String]
|
4126
4237
|
#
|
4127
4238
|
# @!attribute [rw] description
|
@@ -4270,10 +4381,10 @@ module Aws::RDS
|
|
4270
4381
|
#
|
4271
4382
|
# @!attribute [rw] db_proxy_name
|
4272
4383
|
# The identifier for the proxy. This name must be unique for all
|
4273
|
-
# proxies owned by your
|
4274
|
-
# identifier must begin with a letter
|
4275
|
-
# letters, digits, and hyphens; it can't
|
4276
|
-
# two consecutive hyphens.
|
4384
|
+
# proxies owned by your Amazon Web Services account in the specified
|
4385
|
+
# Amazon Web Services Region. An identifier must begin with a letter
|
4386
|
+
# and must contain only ASCII letters, digits, and hyphens; it can't
|
4387
|
+
# end with a hyphen or contain two consecutive hyphens.
|
4277
4388
|
# @return [String]
|
4278
4389
|
#
|
4279
4390
|
# @!attribute [rw] engine_family
|
@@ -4289,7 +4400,7 @@ module Aws::RDS
|
|
4289
4400
|
#
|
4290
4401
|
# @!attribute [rw] role_arn
|
4291
4402
|
# The Amazon Resource Name (ARN) of the IAM role that the proxy uses
|
4292
|
-
# to access secrets in
|
4403
|
+
# to access secrets in Amazon Web Services Secrets Manager.
|
4293
4404
|
# @return [String]
|
4294
4405
|
#
|
4295
4406
|
# @!attribute [rw] vpc_subnet_ids
|
@@ -4797,11 +4908,11 @@ module Aws::RDS
|
|
4797
4908
|
#
|
4798
4909
|
# * `oracle-ee`
|
4799
4910
|
#
|
4800
|
-
# * `oracle-
|
4911
|
+
# * `oracle-ee-cdb`
|
4801
4912
|
#
|
4802
|
-
# * `oracle-
|
4913
|
+
# * `oracle-se2`
|
4803
4914
|
#
|
4804
|
-
# * `oracle-
|
4915
|
+
# * `oracle-se2-cdb`
|
4805
4916
|
#
|
4806
4917
|
# * `postgres`
|
4807
4918
|
#
|
@@ -4877,7 +4988,7 @@ module Aws::RDS
|
|
4877
4988
|
#
|
4878
4989
|
# @!attribute [rw] vpn_details
|
4879
4990
|
# Information about the virtual private network (VPN) between the
|
4880
|
-
# VMware vSphere cluster and the
|
4991
|
+
# VMware vSphere cluster and the Amazon Web Services website.
|
4881
4992
|
# @return [Types::VpnDetails]
|
4882
4993
|
#
|
4883
4994
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CustomAvailabilityZone AWS API Documentation
|
@@ -4906,7 +5017,8 @@ module Aws::RDS
|
|
4906
5017
|
# @return [String]
|
4907
5018
|
#
|
4908
5019
|
# @!attribute [rw] custom_availability_zones
|
4909
|
-
# The list of CustomAvailabilityZone objects for the
|
5020
|
+
# The list of CustomAvailabilityZone objects for the Amazon Web
|
5021
|
+
# Services account.
|
4910
5022
|
# @return [Array<Types::CustomAvailabilityZone>]
|
4911
5023
|
#
|
4912
5024
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CustomAvailabilityZoneMessage AWS API Documentation
|
@@ -5090,17 +5202,19 @@ module Aws::RDS
|
|
5090
5202
|
# @return [Boolean]
|
5091
5203
|
#
|
5092
5204
|
# @!attribute [rw] kms_key_id
|
5093
|
-
# If `StorageEncrypted` is enabled, the
|
5094
|
-
# encrypted DB cluster.
|
5205
|
+
# If `StorageEncrypted` is enabled, the Amazon Web Services KMS key
|
5206
|
+
# identifier for the encrypted DB cluster.
|
5095
5207
|
#
|
5096
|
-
# The
|
5097
|
-
# alias name for the
|
5208
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
5209
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
5210
|
+
# master key (CMK).
|
5098
5211
|
# @return [String]
|
5099
5212
|
#
|
5100
5213
|
# @!attribute [rw] db_cluster_resource_id
|
5101
|
-
# The
|
5102
|
-
# identifier is found in
|
5103
|
-
#
|
5214
|
+
# The Amazon Web Services Region-unique, immutable identifier for the
|
5215
|
+
# DB cluster. This identifier is found in Amazon Web Services
|
5216
|
+
# CloudTrail log entries whenever the Amazon Web Services KMS CMK for
|
5217
|
+
# the DB cluster is accessed.
|
5104
5218
|
# @return [String]
|
5105
5219
|
#
|
5106
5220
|
# @!attribute [rw] db_cluster_arn
|
@@ -5108,15 +5222,16 @@ module Aws::RDS
|
|
5108
5222
|
# @return [String]
|
5109
5223
|
#
|
5110
5224
|
# @!attribute [rw] associated_roles
|
5111
|
-
# Provides a list of the
|
5112
|
-
# roles that are associated with the DB cluster. IAM
|
5113
|
-
# associated with a DB cluster grant permission for the
|
5114
|
-
# access other
|
5225
|
+
# Provides a list of the Amazon Web Services Identity and Access
|
5226
|
+
# Management (IAM) roles that are associated with the DB cluster. IAM
|
5227
|
+
# roles that are associated with a DB cluster grant permission for the
|
5228
|
+
# DB cluster to access other Amazon Web Services on your behalf.
|
5115
5229
|
# @return [Array<Types::DBClusterRole>]
|
5116
5230
|
#
|
5117
5231
|
# @!attribute [rw] iam_database_authentication_enabled
|
5118
|
-
# A value that indicates whether the mapping of
|
5119
|
-
# Access Management (IAM) accounts to database accounts
|
5232
|
+
# A value that indicates whether the mapping of Amazon Web Services
|
5233
|
+
# Identity and Access Management (IAM) accounts to database accounts
|
5234
|
+
# is enabled.
|
5120
5235
|
# @return [Boolean]
|
5121
5236
|
#
|
5122
5237
|
# @!attribute [rw] clone_group_id
|
@@ -5224,11 +5339,12 @@ module Aws::RDS
|
|
5224
5339
|
# @return [String]
|
5225
5340
|
#
|
5226
5341
|
# @!attribute [rw] activity_stream_kms_key_id
|
5227
|
-
# The
|
5228
|
-
# database activity stream.
|
5342
|
+
# The Amazon Web Services KMS key identifier used for encrypting
|
5343
|
+
# messages in the database activity stream.
|
5229
5344
|
#
|
5230
|
-
# The
|
5231
|
-
# alias name for the
|
5345
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
5346
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
5347
|
+
# master key (CMK).
|
5232
5348
|
# @return [String]
|
5233
5349
|
#
|
5234
5350
|
# @!attribute [rw] activity_stream_kinesis_stream_name
|
@@ -5243,7 +5359,7 @@ module Aws::RDS
|
|
5243
5359
|
#
|
5244
5360
|
# @!attribute [rw] cross_account_clone
|
5245
5361
|
# Specifies whether the DB cluster is a clone of a DB cluster owned by
|
5246
|
-
# a different
|
5362
|
+
# a different Amazon Web Services account.
|
5247
5363
|
# @return [Boolean]
|
5248
5364
|
#
|
5249
5365
|
# @!attribute [rw] domain_memberships
|
@@ -5790,8 +5906,8 @@ module Aws::RDS
|
|
5790
5906
|
#
|
5791
5907
|
class DBClusterQuotaExceededFault < Aws::EmptyStructure; end
|
5792
5908
|
|
5793
|
-
# Describes an
|
5794
|
-
# associated with a DB cluster.
|
5909
|
+
# Describes an Amazon Web Services Identity and Access Management (IAM)
|
5910
|
+
# role that is associated with a DB cluster.
|
5795
5911
|
#
|
5796
5912
|
# @!attribute [rw] role_arn
|
5797
5913
|
# The Amazon Resource Name (ARN) of the IAM role that is associated
|
@@ -5803,20 +5919,20 @@ module Aws::RDS
|
|
5803
5919
|
# cluster. The Status property returns one of the following values:
|
5804
5920
|
#
|
5805
5921
|
# * `ACTIVE` - the IAM role ARN is associated with the DB cluster and
|
5806
|
-
# can be used to access other
|
5922
|
+
# can be used to access other Amazon Web Services on your behalf.
|
5807
5923
|
#
|
5808
5924
|
# * `PENDING` - the IAM role ARN is being associated with the DB
|
5809
5925
|
# cluster.
|
5810
5926
|
#
|
5811
5927
|
# * `INVALID` - the IAM role ARN is associated with the DB cluster,
|
5812
5928
|
# but the DB cluster is unable to assume the IAM role in order to
|
5813
|
-
# access other
|
5929
|
+
# access other Amazon Web Services on your behalf.
|
5814
5930
|
# @return [String]
|
5815
5931
|
#
|
5816
5932
|
# @!attribute [rw] feature_name
|
5817
|
-
# The name of the feature associated with the
|
5818
|
-
# Management (IAM) role. For the list of supported
|
5819
|
-
# DBEngineVersion.
|
5933
|
+
# The name of the feature associated with the Amazon Web Services
|
5934
|
+
# Identity and Access Management (IAM) role. For the list of supported
|
5935
|
+
# feature names, see DBEngineVersion.
|
5820
5936
|
# @return [String]
|
5821
5937
|
#
|
5822
5938
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterRole AWS API Documentation
|
@@ -5933,11 +6049,12 @@ module Aws::RDS
|
|
5933
6049
|
# @return [Boolean]
|
5934
6050
|
#
|
5935
6051
|
# @!attribute [rw] kms_key_id
|
5936
|
-
# If `StorageEncrypted` is true, the
|
5937
|
-
# encrypted DB cluster snapshot.
|
6052
|
+
# If `StorageEncrypted` is true, the Amazon Web Services KMS key
|
6053
|
+
# identifier for the encrypted DB cluster snapshot.
|
5938
6054
|
#
|
5939
|
-
# The
|
5940
|
-
# alias name for the
|
6055
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
6056
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
6057
|
+
# master key (CMK).
|
5941
6058
|
# @return [String]
|
5942
6059
|
#
|
5943
6060
|
# @!attribute [rw] db_cluster_snapshot_arn
|
@@ -5951,8 +6068,9 @@ module Aws::RDS
|
|
5951
6068
|
# @return [String]
|
5952
6069
|
#
|
5953
6070
|
# @!attribute [rw] iam_database_authentication_enabled
|
5954
|
-
# True if mapping of
|
5955
|
-
# to database accounts is enabled, and
|
6071
|
+
# True if mapping of Amazon Web Services Identity and Access
|
6072
|
+
# Management (IAM) accounts to database accounts is enabled, and
|
6073
|
+
# otherwise false.
|
5956
6074
|
# @return [Boolean]
|
5957
6075
|
#
|
5958
6076
|
# @!attribute [rw] tag_list
|
@@ -6002,16 +6120,17 @@ module Aws::RDS
|
|
6002
6120
|
# Contains the name and values of a manual DB cluster snapshot
|
6003
6121
|
# attribute.
|
6004
6122
|
#
|
6005
|
-
# Manual DB cluster snapshot attributes are used to authorize other
|
6006
|
-
# accounts to restore a manual DB cluster snapshot.
|
6007
|
-
# information, see the `ModifyDBClusterSnapshotAttribute` API
|
6123
|
+
# Manual DB cluster snapshot attributes are used to authorize other
|
6124
|
+
# Amazon Web Services accounts to restore a manual DB cluster snapshot.
|
6125
|
+
# For more information, see the `ModifyDBClusterSnapshotAttribute` API
|
6126
|
+
# action.
|
6008
6127
|
#
|
6009
6128
|
# @!attribute [rw] attribute_name
|
6010
6129
|
# The name of the manual DB cluster snapshot attribute.
|
6011
6130
|
#
|
6012
|
-
# The attribute named `restore` refers to the list of
|
6013
|
-
# that have permission to copy or restore the manual
|
6014
|
-
# snapshot. For more information, see the
|
6131
|
+
# The attribute named `restore` refers to the list of Amazon Web
|
6132
|
+
# Services accounts that have permission to copy or restore the manual
|
6133
|
+
# DB cluster snapshot. For more information, see the
|
6015
6134
|
# `ModifyDBClusterSnapshotAttribute` API action.
|
6016
6135
|
# @return [String]
|
6017
6136
|
#
|
@@ -6019,10 +6138,11 @@ module Aws::RDS
|
|
6019
6138
|
# The value(s) for the manual DB cluster snapshot attribute.
|
6020
6139
|
#
|
6021
6140
|
# If the `AttributeName` field is set to `restore`, then this element
|
6022
|
-
# returns a list of IDs of the
|
6023
|
-
# copy or restore the manual DB cluster snapshot. If a
|
6024
|
-
# is in the list, then the manual DB cluster snapshot
|
6025
|
-
# available for any
|
6141
|
+
# returns a list of IDs of the Amazon Web Services accounts that are
|
6142
|
+
# authorized to copy or restore the manual DB cluster snapshot. If a
|
6143
|
+
# value of `all` is in the list, then the manual DB cluster snapshot
|
6144
|
+
# is public and available for any Amazon Web Services account to copy
|
6145
|
+
# or restore.
|
6026
6146
|
# @return [Array<String>]
|
6027
6147
|
#
|
6028
6148
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterSnapshotAttribute AWS API Documentation
|
@@ -6037,9 +6157,10 @@ module Aws::RDS
|
|
6037
6157
|
# Contains the results of a successful call to the
|
6038
6158
|
# `DescribeDBClusterSnapshotAttributes` API action.
|
6039
6159
|
#
|
6040
|
-
# Manual DB cluster snapshot attributes are used to authorize other
|
6041
|
-
# accounts to copy or restore a manual DB cluster
|
6042
|
-
# information, see the
|
6160
|
+
# Manual DB cluster snapshot attributes are used to authorize other
|
6161
|
+
# Amazon Web Services accounts to copy or restore a manual DB cluster
|
6162
|
+
# snapshot. For more information, see the
|
6163
|
+
# `ModifyDBClusterSnapshotAttribute` API action.
|
6043
6164
|
#
|
6044
6165
|
# @!attribute [rw] db_cluster_snapshot_identifier
|
6045
6166
|
# The identifier of the manual DB cluster snapshot that the attributes
|
@@ -6252,12 +6373,12 @@ module Aws::RDS
|
|
6252
6373
|
# @!attribute [rw] db_instance_status
|
6253
6374
|
# Specifies the current state of this database.
|
6254
6375
|
#
|
6255
|
-
# For information about DB instance statuses, see [DB
|
6256
|
-
#
|
6376
|
+
# For information about DB instance statuses, see [Viewing DB instance
|
6377
|
+
# status][1] in the *Amazon RDS User Guide.*
|
6257
6378
|
#
|
6258
6379
|
#
|
6259
6380
|
#
|
6260
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.DBInstance.Status
|
6381
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/accessing-monitoring.html#Overview.DBInstance.Status
|
6261
6382
|
# @return [String]
|
6262
6383
|
#
|
6263
6384
|
# @!attribute [rw] master_username
|
@@ -6474,17 +6595,19 @@ module Aws::RDS
|
|
6474
6595
|
# @return [Boolean]
|
6475
6596
|
#
|
6476
6597
|
# @!attribute [rw] kms_key_id
|
6477
|
-
# If `StorageEncrypted` is true, the
|
6478
|
-
# encrypted DB instance.
|
6598
|
+
# If `StorageEncrypted` is true, the Amazon Web Services KMS key
|
6599
|
+
# identifier for the encrypted DB instance.
|
6479
6600
|
#
|
6480
|
-
# The
|
6481
|
-
# alias name for the
|
6601
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
6602
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
6603
|
+
# master key (CMK).
|
6482
6604
|
# @return [String]
|
6483
6605
|
#
|
6484
6606
|
# @!attribute [rw] dbi_resource_id
|
6485
|
-
# The
|
6486
|
-
# This identifier is found in
|
6487
|
-
#
|
6607
|
+
# The Amazon Web Services Region-unique, immutable identifier for the
|
6608
|
+
# DB instance. This identifier is found in Amazon Web Services
|
6609
|
+
# CloudTrail log entries whenever the Amazon Web Services KMS customer
|
6610
|
+
# master key (CMK) for the DB instance is accessed.
|
6488
6611
|
# @return [String]
|
6489
6612
|
#
|
6490
6613
|
# @!attribute [rw] ca_certificate_identifier
|
@@ -6545,8 +6668,9 @@ module Aws::RDS
|
|
6545
6668
|
# @return [String]
|
6546
6669
|
#
|
6547
6670
|
# @!attribute [rw] iam_database_authentication_enabled
|
6548
|
-
# True if mapping of
|
6549
|
-
# to database accounts is enabled, and
|
6671
|
+
# True if mapping of Amazon Web Services Identity and Access
|
6672
|
+
# Management (IAM) accounts to database accounts is enabled, and
|
6673
|
+
# otherwise false.
|
6550
6674
|
#
|
6551
6675
|
# IAM database authentication can be enabled for the following
|
6552
6676
|
# database engines
|
@@ -6565,11 +6689,12 @@ module Aws::RDS
|
|
6565
6689
|
# @return [Boolean]
|
6566
6690
|
#
|
6567
6691
|
# @!attribute [rw] performance_insights_kms_key_id
|
6568
|
-
# The
|
6569
|
-
# data.
|
6692
|
+
# The Amazon Web Services KMS key identifier for encryption of
|
6693
|
+
# Performance Insights data.
|
6570
6694
|
#
|
6571
|
-
# The
|
6572
|
-
# alias name for the
|
6695
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
6696
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
6697
|
+
# master key (CMK).
|
6573
6698
|
# @return [String]
|
6574
6699
|
#
|
6575
6700
|
# @!attribute [rw] performance_insights_retention_period
|
@@ -6606,8 +6731,8 @@ module Aws::RDS
|
|
6606
6731
|
# @return [Boolean]
|
6607
6732
|
#
|
6608
6733
|
# @!attribute [rw] associated_roles
|
6609
|
-
# The
|
6610
|
-
# the DB instance.
|
6734
|
+
# The Amazon Web Services Identity and Access Management (IAM) roles
|
6735
|
+
# associated with the DB instance.
|
6611
6736
|
# @return [Array<Types::DBInstanceRole>]
|
6612
6737
|
#
|
6613
6738
|
# @!attribute [rw] listener_endpoint
|
@@ -6644,10 +6769,11 @@ module Aws::RDS
|
|
6644
6769
|
# local network.
|
6645
6770
|
#
|
6646
6771
|
# For more information about RDS on Outposts, see [Working with Amazon
|
6647
|
-
# RDS on
|
6772
|
+
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
6773
|
+
# Guide*.
|
6648
6774
|
#
|
6649
6775
|
# For more information about CoIPs, see [Customer-owned IP
|
6650
|
-
# addresses][2] in the *
|
6776
|
+
# addresses][2] in the *Amazon Web Services Outposts User Guide*.
|
6651
6777
|
#
|
6652
6778
|
#
|
6653
6779
|
#
|
@@ -6656,9 +6782,37 @@ module Aws::RDS
|
|
6656
6782
|
# @return [Boolean]
|
6657
6783
|
#
|
6658
6784
|
# @!attribute [rw] aws_backup_recovery_point_arn
|
6659
|
-
# The Amazon Resource Name (ARN) of the recovery point in
|
6785
|
+
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
6786
|
+
# Services Backup.
|
6660
6787
|
# @return [String]
|
6661
6788
|
#
|
6789
|
+
# @!attribute [rw] activity_stream_status
|
6790
|
+
# The status of the database activity stream.
|
6791
|
+
# @return [String]
|
6792
|
+
#
|
6793
|
+
# @!attribute [rw] activity_stream_kms_key_id
|
6794
|
+
# The Amazon Web Services KMS key identifier used for encrypting
|
6795
|
+
# messages in the database activity stream. The Amazon Web Services
|
6796
|
+
# KMS key identifier is the key ARN, key ID, alias ARN, or alias name
|
6797
|
+
# for the Amazon Web Services KMS customer master key (CMK).
|
6798
|
+
# @return [String]
|
6799
|
+
#
|
6800
|
+
# @!attribute [rw] activity_stream_kinesis_stream_name
|
6801
|
+
# The name of the Amazon Kinesis data stream used for the database
|
6802
|
+
# activity stream.
|
6803
|
+
# @return [String]
|
6804
|
+
#
|
6805
|
+
# @!attribute [rw] activity_stream_mode
|
6806
|
+
# The mode of the database activity stream. Database events such as a
|
6807
|
+
# change or access generate an activity stream event. RDS for Oracle
|
6808
|
+
# always handles these events asynchronously.
|
6809
|
+
# @return [String]
|
6810
|
+
#
|
6811
|
+
# @!attribute [rw] activity_stream_engine_native_audit_fields_included
|
6812
|
+
# Indicates whether engine-native audit fields are included in the
|
6813
|
+
# database activity stream.
|
6814
|
+
# @return [Boolean]
|
6815
|
+
#
|
6662
6816
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
6663
6817
|
#
|
6664
6818
|
class DBInstance < Struct.new(
|
@@ -6725,7 +6879,12 @@ module Aws::RDS
|
|
6725
6879
|
:tag_list,
|
6726
6880
|
:db_instance_automated_backups_replications,
|
6727
6881
|
:customer_owned_ip_enabled,
|
6728
|
-
:aws_backup_recovery_point_arn
|
6882
|
+
:aws_backup_recovery_point_arn,
|
6883
|
+
:activity_stream_status,
|
6884
|
+
:activity_stream_kms_key_id,
|
6885
|
+
:activity_stream_kinesis_stream_name,
|
6886
|
+
:activity_stream_mode,
|
6887
|
+
:activity_stream_engine_native_audit_fields_included)
|
6729
6888
|
SENSITIVE = []
|
6730
6889
|
include Aws::Structure
|
6731
6890
|
end
|
@@ -6746,11 +6905,11 @@ module Aws::RDS
|
|
6746
6905
|
#
|
6747
6906
|
# @!attribute [rw] dbi_resource_id
|
6748
6907
|
# The identifier for the source DB instance, which can't be changed
|
6749
|
-
# and which is unique to an
|
6908
|
+
# and which is unique to an Amazon Web Services Region.
|
6750
6909
|
# @return [String]
|
6751
6910
|
#
|
6752
6911
|
# @!attribute [rw] region
|
6753
|
-
# The
|
6912
|
+
# The Amazon Web Services Region associated with the automated backup.
|
6754
6913
|
# @return [String]
|
6755
6914
|
#
|
6756
6915
|
# @!attribute [rw] db_instance_identifier
|
@@ -6787,8 +6946,8 @@ module Aws::RDS
|
|
6787
6946
|
#
|
6788
6947
|
# @!attribute [rw] availability_zone
|
6789
6948
|
# The Availability Zone that the automated backup was created in. For
|
6790
|
-
# information on
|
6791
|
-
# Availability Zones][1].
|
6949
|
+
# information on Amazon Web Services Regions and Availability Zones,
|
6950
|
+
# see [Regions and Availability Zones][1].
|
6792
6951
|
#
|
6793
6952
|
#
|
6794
6953
|
#
|
@@ -6842,10 +7001,11 @@ module Aws::RDS
|
|
6842
7001
|
# @return [String]
|
6843
7002
|
#
|
6844
7003
|
# @!attribute [rw] kms_key_id
|
6845
|
-
# The
|
7004
|
+
# The Amazon Web Services KMS key ID for an automated backup.
|
6846
7005
|
#
|
6847
|
-
# The
|
6848
|
-
# alias name for the
|
7006
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
7007
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
7008
|
+
# master key (CMK).
|
6849
7009
|
# @return [String]
|
6850
7010
|
#
|
6851
7011
|
# @!attribute [rw] timezone
|
@@ -6855,8 +7015,9 @@ module Aws::RDS
|
|
6855
7015
|
# @return [String]
|
6856
7016
|
#
|
6857
7017
|
# @!attribute [rw] iam_database_authentication_enabled
|
6858
|
-
# True if mapping of
|
6859
|
-
# to database accounts is enabled, and
|
7018
|
+
# True if mapping of Amazon Web Services Identity and Access
|
7019
|
+
# Management (IAM) accounts to database accounts is enabled, and
|
7020
|
+
# otherwise false.
|
6860
7021
|
# @return [Boolean]
|
6861
7022
|
#
|
6862
7023
|
# @!attribute [rw] backup_retention_period
|
@@ -6868,8 +7029,8 @@ module Aws::RDS
|
|
6868
7029
|
# @return [String]
|
6869
7030
|
#
|
6870
7031
|
# @!attribute [rw] db_instance_automated_backups_replications
|
6871
|
-
# The list of replications to different
|
6872
|
-
# the automated backup.
|
7032
|
+
# The list of replications to different Amazon Web Services Regions
|
7033
|
+
# associated with the automated backup.
|
6873
7034
|
# @return [Array<Types::DBInstanceAutomatedBackupsReplication>]
|
6874
7035
|
#
|
6875
7036
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstanceAutomatedBackup AWS API Documentation
|
@@ -6941,9 +7102,9 @@ module Aws::RDS
|
|
6941
7102
|
#
|
6942
7103
|
class DBInstanceAutomatedBackupQuotaExceededFault < Aws::EmptyStructure; end
|
6943
7104
|
|
6944
|
-
# Automated backups of a DB instance replicated to another
|
6945
|
-
# They consist of system backups, transaction logs, and
|
6946
|
-
# instance properties.
|
7105
|
+
# Automated backups of a DB instance replicated to another Amazon Web
|
7106
|
+
# Services Region. They consist of system backups, transaction logs, and
|
7107
|
+
# database instance properties.
|
6947
7108
|
#
|
6948
7109
|
# @!attribute [rw] db_instance_automated_backups_arn
|
6949
7110
|
# The Amazon Resource Name (ARN) of the replicated automated backups.
|
@@ -6985,8 +7146,8 @@ module Aws::RDS
|
|
6985
7146
|
#
|
6986
7147
|
class DBInstanceNotFoundFault < Aws::EmptyStructure; end
|
6987
7148
|
|
6988
|
-
# Describes an
|
6989
|
-
# associated with a DB instance.
|
7149
|
+
# Describes an Amazon Web Services Identity and Access Management (IAM)
|
7150
|
+
# role that is associated with a DB instance.
|
6990
7151
|
#
|
6991
7152
|
# @!attribute [rw] role_arn
|
6992
7153
|
# The Amazon Resource Name (ARN) of the IAM role that is associated
|
@@ -6994,9 +7155,9 @@ module Aws::RDS
|
|
6994
7155
|
# @return [String]
|
6995
7156
|
#
|
6996
7157
|
# @!attribute [rw] feature_name
|
6997
|
-
# The name of the feature associated with the
|
6998
|
-
# Management (IAM) role. For the list of supported
|
6999
|
-
# `DBEngineVersion`.
|
7158
|
+
# The name of the feature associated with the Amazon Web Services
|
7159
|
+
# Identity and Access Management (IAM) role. For the list of supported
|
7160
|
+
# feature names, see `DBEngineVersion`.
|
7000
7161
|
# @return [String]
|
7001
7162
|
#
|
7002
7163
|
# @!attribute [rw] status
|
@@ -7004,14 +7165,15 @@ module Aws::RDS
|
|
7004
7165
|
# instance. The Status property returns one of the following values:
|
7005
7166
|
#
|
7006
7167
|
# * `ACTIVE` - the IAM role ARN is associated with the DB instance and
|
7007
|
-
# can be used to access other
|
7168
|
+
# can be used to access other Amazon Web Services services on your
|
7169
|
+
# behalf.
|
7008
7170
|
#
|
7009
7171
|
# * `PENDING` - the IAM role ARN is being associated with the DB
|
7010
7172
|
# instance.
|
7011
7173
|
#
|
7012
7174
|
# * `INVALID` - the IAM role ARN is associated with the DB instance,
|
7013
7175
|
# but the DB instance is unable to assume the IAM role in order to
|
7014
|
-
# access other
|
7176
|
+
# access other Amazon Web Services services on your behalf.
|
7015
7177
|
# @return [String]
|
7016
7178
|
#
|
7017
7179
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstanceRole AWS API Documentation
|
@@ -7038,8 +7200,9 @@ module Aws::RDS
|
|
7038
7200
|
#
|
7039
7201
|
class DBInstanceRoleNotFoundFault < Aws::EmptyStructure; end
|
7040
7202
|
|
7041
|
-
# You can't associate any more
|
7042
|
-
# roles with the DB instance because the quota has been
|
7203
|
+
# You can't associate any more Amazon Web Services Identity and Access
|
7204
|
+
# Management (IAM) roles with the DB instance because the quota has been
|
7205
|
+
# reached.
|
7043
7206
|
#
|
7044
7207
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstanceRoleQuotaExceededFault AWS API Documentation
|
7045
7208
|
#
|
@@ -7237,7 +7400,8 @@ module Aws::RDS
|
|
7237
7400
|
#
|
7238
7401
|
# @!attribute [rw] db_proxy_name
|
7239
7402
|
# The identifier for the proxy. This name must be unique for all
|
7240
|
-
# proxies owned by your
|
7403
|
+
# proxies owned by your Amazon Web Services account in the specified
|
7404
|
+
# Amazon Web Services Region.
|
7241
7405
|
# @return [String]
|
7242
7406
|
#
|
7243
7407
|
# @!attribute [rw] db_proxy_arn
|
@@ -7342,7 +7506,8 @@ module Aws::RDS
|
|
7342
7506
|
end
|
7343
7507
|
|
7344
7508
|
# The specified proxy name must be unique for all proxies owned by your
|
7345
|
-
#
|
7509
|
+
# Amazon Web Services account in the specified Amazon Web Services
|
7510
|
+
# Region.
|
7346
7511
|
#
|
7347
7512
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyAlreadyExistsFault AWS API Documentation
|
7348
7513
|
#
|
@@ -7433,7 +7598,8 @@ module Aws::RDS
|
|
7433
7598
|
end
|
7434
7599
|
|
7435
7600
|
# The specified DB proxy endpoint name must be unique for all DB proxy
|
7436
|
-
# endpoints owned by your
|
7601
|
+
# endpoints owned by your Amazon Web Services account in the specified
|
7602
|
+
# Amazon Web Services Region.
|
7437
7603
|
#
|
7438
7604
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyEndpointAlreadyExistsFault AWS API Documentation
|
7439
7605
|
#
|
@@ -7452,14 +7618,15 @@ module Aws::RDS
|
|
7452
7618
|
class DBProxyEndpointQuotaExceededFault < Aws::EmptyStructure; end
|
7453
7619
|
|
7454
7620
|
# The specified proxy name doesn't correspond to a proxy owned by your
|
7455
|
-
#
|
7621
|
+
# Amazon Web Services account in the specified Amazon Web Services
|
7622
|
+
# Region.
|
7456
7623
|
#
|
7457
7624
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyNotFoundFault AWS API Documentation
|
7458
7625
|
#
|
7459
7626
|
class DBProxyNotFoundFault < Aws::EmptyStructure; end
|
7460
7627
|
|
7461
|
-
# Your
|
7462
|
-
# specified
|
7628
|
+
# Your Amazon Web Services account already has the maximum number of
|
7629
|
+
# proxies in the specified Amazon Web Services Region.
|
7463
7630
|
#
|
7464
7631
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyQuotaExceededFault AWS API Documentation
|
7465
7632
|
#
|
@@ -7547,8 +7714,8 @@ module Aws::RDS
|
|
7547
7714
|
#
|
7548
7715
|
# @!attribute [rw] target_group_name
|
7549
7716
|
# The identifier for the target group. This name must be unique for
|
7550
|
-
# all target groups owned by your
|
7551
|
-
# Region.
|
7717
|
+
# all target groups owned by your Amazon Web Services account in the
|
7718
|
+
# specified Amazon Web Services Region.
|
7552
7719
|
# @return [String]
|
7553
7720
|
#
|
7554
7721
|
# @!attribute [rw] target_group_arn
|
@@ -7598,14 +7765,16 @@ module Aws::RDS
|
|
7598
7765
|
end
|
7599
7766
|
|
7600
7767
|
# The specified target group isn't available for a proxy owned by your
|
7601
|
-
#
|
7768
|
+
# Amazon Web Services account in the specified Amazon Web Services
|
7769
|
+
# Region.
|
7602
7770
|
#
|
7603
7771
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyTargetGroupNotFoundFault AWS API Documentation
|
7604
7772
|
#
|
7605
7773
|
class DBProxyTargetGroupNotFoundFault < Aws::EmptyStructure; end
|
7606
7774
|
|
7607
7775
|
# The specified RDS DB instance or Aurora DB cluster isn't available
|
7608
|
-
# for a proxy owned by your
|
7776
|
+
# for a proxy owned by your Amazon Web Services account in the specified
|
7777
|
+
# Amazon Web Services Region.
|
7609
7778
|
#
|
7610
7779
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyTargetNotFoundFault AWS API Documentation
|
7611
7780
|
#
|
@@ -7617,7 +7786,8 @@ module Aws::RDS
|
|
7617
7786
|
# `DescribeDBSecurityGroups` action.
|
7618
7787
|
#
|
7619
7788
|
# @!attribute [rw] owner_id
|
7620
|
-
# Provides the
|
7789
|
+
# Provides the Amazon Web Services ID of the owner of a specific DB
|
7790
|
+
# security group.
|
7621
7791
|
# @return [String]
|
7622
7792
|
#
|
7623
7793
|
# @!attribute [rw] db_security_group_name
|
@@ -7749,7 +7919,7 @@ module Aws::RDS
|
|
7749
7919
|
#
|
7750
7920
|
# @!attribute [rw] snapshot_create_time
|
7751
7921
|
# Specifies when the snapshot was taken in Coordinated Universal Time
|
7752
|
-
# (UTC).
|
7922
|
+
# (UTC). Changes for the copy when the snapshot is copied.
|
7753
7923
|
# @return [Time]
|
7754
7924
|
#
|
7755
7925
|
# @!attribute [rw] engine
|
@@ -7813,13 +7983,14 @@ module Aws::RDS
|
|
7813
7983
|
# @return [Integer]
|
7814
7984
|
#
|
7815
7985
|
# @!attribute [rw] source_region
|
7816
|
-
# The
|
7986
|
+
# The Amazon Web Services Region that the DB snapshot was created in
|
7987
|
+
# or copied from.
|
7817
7988
|
# @return [String]
|
7818
7989
|
#
|
7819
7990
|
# @!attribute [rw] source_db_snapshot_identifier
|
7820
7991
|
# The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was
|
7821
|
-
# copied from. It only has value in case of cross-
|
7822
|
-
# cross-
|
7992
|
+
# copied from. It only has a value in the case of a cross-account or
|
7993
|
+
# cross-Region copy.
|
7823
7994
|
# @return [String]
|
7824
7995
|
#
|
7825
7996
|
# @!attribute [rw] storage_type
|
@@ -7836,11 +8007,12 @@ module Aws::RDS
|
|
7836
8007
|
# @return [Boolean]
|
7837
8008
|
#
|
7838
8009
|
# @!attribute [rw] kms_key_id
|
7839
|
-
# If `Encrypted` is true, the
|
7840
|
-
# DB snapshot.
|
8010
|
+
# If `Encrypted` is true, the Amazon Web Services KMS key identifier
|
8011
|
+
# for the encrypted DB snapshot.
|
7841
8012
|
#
|
7842
|
-
# The
|
7843
|
-
# alias name for the
|
8013
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
8014
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
8015
|
+
# master key (CMK).
|
7844
8016
|
# @return [String]
|
7845
8017
|
#
|
7846
8018
|
# @!attribute [rw] db_snapshot_arn
|
@@ -7855,8 +8027,9 @@ module Aws::RDS
|
|
7855
8027
|
# @return [String]
|
7856
8028
|
#
|
7857
8029
|
# @!attribute [rw] iam_database_authentication_enabled
|
7858
|
-
# True if mapping of
|
7859
|
-
# to database accounts is enabled, and
|
8030
|
+
# True if mapping of Amazon Web Services Identity and Access
|
8031
|
+
# Management (IAM) accounts to database accounts is enabled, and
|
8032
|
+
# otherwise false.
|
7860
8033
|
# @return [Boolean]
|
7861
8034
|
#
|
7862
8035
|
# @!attribute [rw] processor_features
|
@@ -7867,7 +8040,7 @@ module Aws::RDS
|
|
7867
8040
|
#
|
7868
8041
|
# @!attribute [rw] dbi_resource_id
|
7869
8042
|
# The identifier for the source DB instance, which can't be changed
|
7870
|
-
# and which is unique to an
|
8043
|
+
# and which is unique to an Amazon Web Services Region.
|
7871
8044
|
# @return [String]
|
7872
8045
|
#
|
7873
8046
|
# @!attribute [rw] tag_list
|
@@ -7879,6 +8052,11 @@ module Aws::RDS
|
|
7879
8052
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
7880
8053
|
# @return [Array<Types::Tag>]
|
7881
8054
|
#
|
8055
|
+
# @!attribute [rw] original_snapshot_create_time
|
8056
|
+
# Specifies the time of the CreateDBSnapshot operation in Coordinated
|
8057
|
+
# Universal Time (UTC). Doesn't change when the snapshot is copied.
|
8058
|
+
# @return [Time]
|
8059
|
+
#
|
7882
8060
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
|
7883
8061
|
#
|
7884
8062
|
class DBSnapshot < Struct.new(
|
@@ -7910,7 +8088,8 @@ module Aws::RDS
|
|
7910
8088
|
:iam_database_authentication_enabled,
|
7911
8089
|
:processor_features,
|
7912
8090
|
:dbi_resource_id,
|
7913
|
-
:tag_list
|
8091
|
+
:tag_list,
|
8092
|
+
:original_snapshot_create_time)
|
7914
8093
|
SENSITIVE = []
|
7915
8094
|
include Aws::Structure
|
7916
8095
|
end
|
@@ -7923,27 +8102,27 @@ module Aws::RDS
|
|
7923
8102
|
|
7924
8103
|
# Contains the name and values of a manual DB snapshot attribute
|
7925
8104
|
#
|
7926
|
-
# Manual DB snapshot attributes are used to authorize other
|
7927
|
-
# to restore a manual DB snapshot. For more
|
7928
|
-
# `ModifyDBSnapshotAttribute` API.
|
8105
|
+
# Manual DB snapshot attributes are used to authorize other Amazon Web
|
8106
|
+
# Services accounts to restore a manual DB snapshot. For more
|
8107
|
+
# information, see the `ModifyDBSnapshotAttribute` API.
|
7929
8108
|
#
|
7930
8109
|
# @!attribute [rw] attribute_name
|
7931
8110
|
# The name of the manual DB snapshot attribute.
|
7932
8111
|
#
|
7933
|
-
# The attribute named `restore` refers to the list of
|
7934
|
-
# that have permission to copy or restore the manual
|
7935
|
-
# snapshot. For more information, see the
|
7936
|
-
# API action.
|
8112
|
+
# The attribute named `restore` refers to the list of Amazon Web
|
8113
|
+
# Services accounts that have permission to copy or restore the manual
|
8114
|
+
# DB cluster snapshot. For more information, see the
|
8115
|
+
# `ModifyDBSnapshotAttribute` API action.
|
7937
8116
|
# @return [String]
|
7938
8117
|
#
|
7939
8118
|
# @!attribute [rw] attribute_values
|
7940
8119
|
# The value or values for the manual DB snapshot attribute.
|
7941
8120
|
#
|
7942
8121
|
# If the `AttributeName` field is set to `restore`, then this element
|
7943
|
-
# returns a list of IDs of the
|
7944
|
-
# copy or restore the manual DB snapshot. If a value of
|
7945
|
-
# the list, then the manual DB snapshot is public and
|
7946
|
-
# any
|
8122
|
+
# returns a list of IDs of the Amazon Web Services accounts that are
|
8123
|
+
# authorized to copy or restore the manual DB snapshot. If a value of
|
8124
|
+
# `all` is in the list, then the manual DB snapshot is public and
|
8125
|
+
# available for any Amazon Web Services account to copy or restore.
|
7947
8126
|
# @return [Array<String>]
|
7948
8127
|
#
|
7949
8128
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshotAttribute AWS API Documentation
|
@@ -7958,9 +8137,9 @@ module Aws::RDS
|
|
7958
8137
|
# Contains the results of a successful call to the
|
7959
8138
|
# `DescribeDBSnapshotAttributes` API action.
|
7960
8139
|
#
|
7961
|
-
# Manual DB snapshot attributes are used to authorize other
|
7962
|
-
# to copy or restore a manual DB snapshot. For more
|
7963
|
-
# `ModifyDBSnapshotAttribute` API action.
|
8140
|
+
# Manual DB snapshot attributes are used to authorize other Amazon Web
|
8141
|
+
# Services accounts to copy or restore a manual DB snapshot. For more
|
8142
|
+
# information, see the `ModifyDBSnapshotAttribute` API action.
|
7964
8143
|
#
|
7965
8144
|
# @!attribute [rw] db_snapshot_identifier
|
7966
8145
|
# The identifier of the manual DB snapshot that the attributes apply
|
@@ -8332,7 +8511,7 @@ module Aws::RDS
|
|
8332
8511
|
#
|
8333
8512
|
# @!attribute [rw] dbi_resource_id
|
8334
8513
|
# The identifier for the source DB instance, which can't be changed
|
8335
|
-
# and which is unique to an
|
8514
|
+
# and which is unique to an Amazon Web Services Region.
|
8336
8515
|
# @return [String]
|
8337
8516
|
#
|
8338
8517
|
# @!attribute [rw] db_instance_automated_backups_arn
|
@@ -9242,9 +9421,9 @@ module Aws::RDS
|
|
9242
9421
|
# `DescribeDBClusterSnapshotAttributes` API action.
|
9243
9422
|
#
|
9244
9423
|
# Manual DB cluster snapshot attributes are used to authorize other
|
9245
|
-
#
|
9246
|
-
# more information, see the
|
9247
|
-
# action.
|
9424
|
+
# Amazon Web Services accounts to copy or restore a manual DB cluster
|
9425
|
+
# snapshot. For more information, see the
|
9426
|
+
# `ModifyDBClusterSnapshotAttribute` API action.
|
9248
9427
|
# @return [Types::DBClusterSnapshotAttributesResult]
|
9249
9428
|
#
|
9250
9429
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterSnapshotAttributesResult AWS API Documentation
|
@@ -9307,13 +9486,14 @@ module Aws::RDS
|
|
9307
9486
|
# of the following values:
|
9308
9487
|
#
|
9309
9488
|
# * `automated` - Return all DB cluster snapshots that have been
|
9310
|
-
# automatically taken by Amazon RDS for my
|
9489
|
+
# automatically taken by Amazon RDS for my Amazon Web Services
|
9490
|
+
# account.
|
9311
9491
|
#
|
9312
9492
|
# * `manual` - Return all DB cluster snapshots that have been taken by
|
9313
|
-
# my
|
9493
|
+
# my Amazon Web Services account.
|
9314
9494
|
#
|
9315
9495
|
# * `shared` - Return all manual DB cluster snapshots that have been
|
9316
|
-
# shared to my
|
9496
|
+
# shared to my Amazon Web Services account.
|
9317
9497
|
#
|
9318
9498
|
# * `public` - Return all DB cluster snapshots that have been marked
|
9319
9499
|
# as public.
|
@@ -9369,19 +9549,20 @@ module Aws::RDS
|
|
9369
9549
|
#
|
9370
9550
|
# @!attribute [rw] include_shared
|
9371
9551
|
# A value that indicates whether to include shared manual DB cluster
|
9372
|
-
# snapshots from other
|
9373
|
-
# given permission to copy or restore.
|
9374
|
-
# not included.
|
9552
|
+
# snapshots from other Amazon Web Services accounts that this Amazon
|
9553
|
+
# Web Services account has been given permission to copy or restore.
|
9554
|
+
# By default, these snapshots are not included.
|
9375
9555
|
#
|
9376
|
-
# You can give an
|
9377
|
-
# cluster snapshot from another
|
9378
|
-
# `ModifyDBClusterSnapshotAttribute` API action.
|
9556
|
+
# You can give an Amazon Web Services account permission to restore a
|
9557
|
+
# manual DB cluster snapshot from another Amazon Web Services account
|
9558
|
+
# by the `ModifyDBClusterSnapshotAttribute` API action.
|
9379
9559
|
# @return [Boolean]
|
9380
9560
|
#
|
9381
9561
|
# @!attribute [rw] include_public
|
9382
9562
|
# A value that indicates whether to include manual DB cluster
|
9383
|
-
# snapshots that are public and can be copied or restored by any
|
9384
|
-
# account. By default, the public snapshots are
|
9563
|
+
# snapshots that are public and can be copied or restored by any
|
9564
|
+
# Amazon Web Services account. By default, the public snapshots are
|
9565
|
+
# not included.
|
9385
9566
|
#
|
9386
9567
|
# You can share a manual DB cluster snapshot as public by using the
|
9387
9568
|
# ModifyDBClusterSnapshotAttribute API action.
|
@@ -9435,11 +9616,20 @@ module Aws::RDS
|
|
9435
9616
|
#
|
9436
9617
|
# Supported filters:
|
9437
9618
|
#
|
9619
|
+
# * `clone-group-id` - Accepts clone group identifiers. The results
|
9620
|
+
# list will only include information about the DB clusters
|
9621
|
+
# associated with these clone groups.
|
9622
|
+
#
|
9438
9623
|
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
9439
9624
|
# Amazon Resource Names (ARNs). The results list will only include
|
9440
9625
|
# information about the DB clusters identified by these ARNs.
|
9441
9626
|
#
|
9442
|
-
#
|
9627
|
+
# * `domain` - Accepts Active Directory directory IDs. The results
|
9628
|
+
# list will only include information about the DB clusters
|
9629
|
+
# associated with these domains.
|
9630
|
+
#
|
9631
|
+
# * `engine` - Accepts engine names. The results list will only
|
9632
|
+
# include information about the DB clusters for these engines.
|
9443
9633
|
# @return [Array<Types::Filter>]
|
9444
9634
|
#
|
9445
9635
|
# @!attribute [rw] max_records
|
@@ -9462,7 +9652,8 @@ module Aws::RDS
|
|
9462
9652
|
#
|
9463
9653
|
# @!attribute [rw] include_shared
|
9464
9654
|
# Optional Boolean parameter that specifies whether the output
|
9465
|
-
# includes information about clusters shared from other
|
9655
|
+
# includes information about clusters shared from other Amazon Web
|
9656
|
+
# Services accounts.
|
9466
9657
|
# @return [Boolean]
|
9467
9658
|
#
|
9468
9659
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClustersMessage AWS API Documentation
|
@@ -9515,11 +9706,11 @@ module Aws::RDS
|
|
9515
9706
|
#
|
9516
9707
|
# * `oracle-ee`
|
9517
9708
|
#
|
9518
|
-
# * `oracle-
|
9709
|
+
# * `oracle-ee-cdb`
|
9519
9710
|
#
|
9520
|
-
# * `oracle-
|
9711
|
+
# * `oracle-se2`
|
9521
9712
|
#
|
9522
|
-
# * `oracle-
|
9713
|
+
# * `oracle-se2-cdb`
|
9523
9714
|
#
|
9524
9715
|
# * `postgres`
|
9525
9716
|
#
|
@@ -10052,8 +10243,8 @@ module Aws::RDS
|
|
10052
10243
|
#
|
10053
10244
|
# @!attribute [rw] db_proxy_name
|
10054
10245
|
# The name of the DB proxy. If you omit this parameter, the output
|
10055
|
-
# includes information about all DB proxies owned by your
|
10056
|
-
# ID.
|
10246
|
+
# includes information about all DB proxies owned by your Amazon Web
|
10247
|
+
# Services account ID.
|
10057
10248
|
# @return [String]
|
10058
10249
|
#
|
10059
10250
|
# @!attribute [rw] filters
|
@@ -10417,8 +10608,8 @@ module Aws::RDS
|
|
10417
10608
|
# Contains the results of a successful call to the
|
10418
10609
|
# `DescribeDBSnapshotAttributes` API action.
|
10419
10610
|
#
|
10420
|
-
# Manual DB snapshot attributes are used to authorize other
|
10421
|
-
# accounts to copy or restore a manual DB snapshot. For more
|
10611
|
+
# Manual DB snapshot attributes are used to authorize other Amazon Web
|
10612
|
+
# Services accounts to copy or restore a manual DB snapshot. For more
|
10422
10613
|
# information, see the `ModifyDBSnapshotAttribute` API action.
|
10423
10614
|
# @return [Types::DBSnapshotAttributesResult]
|
10424
10615
|
#
|
@@ -10480,22 +10671,22 @@ module Aws::RDS
|
|
10480
10671
|
# following values:
|
10481
10672
|
#
|
10482
10673
|
# * `automated` - Return all DB snapshots that have been automatically
|
10483
|
-
# taken by Amazon RDS for my
|
10674
|
+
# taken by Amazon RDS for my Amazon Web Services account.
|
10484
10675
|
#
|
10485
|
-
# * `manual` - Return all DB snapshots that have been taken by my
|
10486
|
-
# account.
|
10676
|
+
# * `manual` - Return all DB snapshots that have been taken by my
|
10677
|
+
# Amazon Web Services account.
|
10487
10678
|
#
|
10488
10679
|
# * `shared` - Return all manual DB snapshots that have been shared to
|
10489
|
-
# my
|
10680
|
+
# my Amazon Web Services account.
|
10490
10681
|
#
|
10491
10682
|
# * `public` - Return all DB snapshots that have been marked as
|
10492
10683
|
# public.
|
10493
10684
|
#
|
10494
|
-
# * `awsbackup` - Return the DB snapshots managed by the
|
10495
|
-
# service.
|
10685
|
+
# * `awsbackup` - Return the DB snapshots managed by the Amazon Web
|
10686
|
+
# Services Backup service.
|
10496
10687
|
#
|
10497
|
-
# For information about
|
10498
|
-
# Guide.* ][1]
|
10688
|
+
# For information about Amazon Web Services Backup, see the [
|
10689
|
+
# *Amazon Web Services Backup Developer Guide.* ][1]
|
10499
10690
|
#
|
10500
10691
|
# The `awsbackup` type does not apply to Aurora.
|
10501
10692
|
#
|
@@ -10554,19 +10745,20 @@ module Aws::RDS
|
|
10554
10745
|
#
|
10555
10746
|
# @!attribute [rw] include_shared
|
10556
10747
|
# A value that indicates whether to include shared manual DB cluster
|
10557
|
-
# snapshots from other
|
10558
|
-
# given permission to copy or restore.
|
10559
|
-
# not included.
|
10748
|
+
# snapshots from other Amazon Web Services accounts that this Amazon
|
10749
|
+
# Web Services account has been given permission to copy or restore.
|
10750
|
+
# By default, these snapshots are not included.
|
10560
10751
|
#
|
10561
|
-
# You can give an
|
10562
|
-
# snapshot from another
|
10563
|
-
# `ModifyDBSnapshotAttribute` API action.
|
10752
|
+
# You can give an Amazon Web Services account permission to restore a
|
10753
|
+
# manual DB snapshot from another Amazon Web Services account by using
|
10754
|
+
# the `ModifyDBSnapshotAttribute` API action.
|
10564
10755
|
# @return [Boolean]
|
10565
10756
|
#
|
10566
10757
|
# @!attribute [rw] include_public
|
10567
10758
|
# A value that indicates whether to include manual DB cluster
|
10568
|
-
# snapshots that are public and can be copied or restored by any
|
10569
|
-
# account. By default, the public snapshots are
|
10759
|
+
# snapshots that are public and can be copied or restored by any
|
10760
|
+
# Amazon Web Services account. By default, the public snapshots are
|
10761
|
+
# not included.
|
10570
10762
|
#
|
10571
10763
|
# You can share a manual DB snapshot as public by using the
|
10572
10764
|
# ModifyDBSnapshotAttribute API.
|
@@ -11092,15 +11284,7 @@ module Aws::RDS
|
|
11092
11284
|
# @return [String]
|
11093
11285
|
#
|
11094
11286
|
# @!attribute [rw] filters
|
11095
|
-
#
|
11096
|
-
#
|
11097
|
-
# Supported filters:
|
11098
|
-
#
|
11099
|
-
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
11100
|
-
# Amazon Resource Names (ARNs). The results list will only include
|
11101
|
-
# information about the DB clusters identified by these ARNs.
|
11102
|
-
#
|
11103
|
-
# ^
|
11287
|
+
# This parameter isn't currently supported.
|
11104
11288
|
# @return [Array<Types::Filter>]
|
11105
11289
|
#
|
11106
11290
|
# @!attribute [rw] max_records
|
@@ -11219,11 +11403,11 @@ module Aws::RDS
|
|
11219
11403
|
#
|
11220
11404
|
# * `oracle-ee`
|
11221
11405
|
#
|
11222
|
-
# * `oracle-
|
11406
|
+
# * `oracle-ee-cdb`
|
11223
11407
|
#
|
11224
|
-
# * `oracle-
|
11408
|
+
# * `oracle-se2`
|
11225
11409
|
#
|
11226
|
-
# * `oracle-
|
11410
|
+
# * `oracle-se2-cdb`
|
11227
11411
|
#
|
11228
11412
|
# * `postgres`
|
11229
11413
|
#
|
@@ -11330,11 +11514,11 @@ module Aws::RDS
|
|
11330
11514
|
#
|
11331
11515
|
# * `oracle-ee`
|
11332
11516
|
#
|
11333
|
-
# * `oracle-
|
11517
|
+
# * `oracle-ee-cdb`
|
11334
11518
|
#
|
11335
|
-
# * `oracle-
|
11519
|
+
# * `oracle-se2`
|
11336
11520
|
#
|
11337
|
-
# * `oracle-
|
11521
|
+
# * `oracle-se2-cdb`
|
11338
11522
|
#
|
11339
11523
|
# * `postgres`
|
11340
11524
|
#
|
@@ -11403,11 +11587,11 @@ module Aws::RDS
|
|
11403
11587
|
#
|
11404
11588
|
# * `oracle-ee`
|
11405
11589
|
#
|
11406
|
-
# * `oracle-
|
11590
|
+
# * `oracle-ee-cdb`
|
11407
11591
|
#
|
11408
|
-
# * `oracle-
|
11592
|
+
# * `oracle-se2`
|
11409
11593
|
#
|
11410
|
-
# * `oracle-
|
11594
|
+
# * `oracle-se2-cdb`
|
11411
11595
|
#
|
11412
11596
|
# * `postgres`
|
11413
11597
|
#
|
@@ -11442,7 +11626,7 @@ module Aws::RDS
|
|
11442
11626
|
# in the group.
|
11443
11627
|
#
|
11444
11628
|
# Omit this parameter to show the available offerings in the specified
|
11445
|
-
#
|
11629
|
+
# Amazon Web Services Region.
|
11446
11630
|
# @return [String]
|
11447
11631
|
#
|
11448
11632
|
# @!attribute [rw] vpc
|
@@ -11619,8 +11803,8 @@ module Aws::RDS
|
|
11619
11803
|
# The lease identifier filter value. Specify this parameter to show
|
11620
11804
|
# only the reservation that matches the specified lease ID.
|
11621
11805
|
#
|
11622
|
-
# <note markdown="1">
|
11623
|
-
# reserved DB instance.
|
11806
|
+
# <note markdown="1"> Amazon Web Services Support might request the lease ID for an issue
|
11807
|
+
# related to a reserved DB instance.
|
11624
11808
|
#
|
11625
11809
|
# </note>
|
11626
11810
|
# @return [String]
|
@@ -11780,11 +11964,12 @@ module Aws::RDS
|
|
11780
11964
|
# }
|
11781
11965
|
#
|
11782
11966
|
# @!attribute [rw] region_name
|
11783
|
-
# The source
|
11967
|
+
# The source Amazon Web Services Region name. For example,
|
11968
|
+
# `us-east-1`.
|
11784
11969
|
#
|
11785
11970
|
# Constraints:
|
11786
11971
|
#
|
11787
|
-
# * Must specify a valid
|
11972
|
+
# * Must specify a valid Amazon Web Services Region name.
|
11788
11973
|
#
|
11789
11974
|
# ^
|
11790
11975
|
# @return [String]
|
@@ -12032,8 +12217,8 @@ module Aws::RDS
|
|
12032
12217
|
# @return [String]
|
12033
12218
|
#
|
12034
12219
|
# @!attribute [rw] ec2_security_group_owner_id
|
12035
|
-
# Specifies the
|
12036
|
-
# specified in the `EC2SecurityGroupName` field.
|
12220
|
+
# Specifies the Amazon Web Services ID of the owner of the EC2
|
12221
|
+
# security group specified in the `EC2SecurityGroupName` field.
|
12037
12222
|
# @return [String]
|
12038
12223
|
#
|
12039
12224
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/EC2SecurityGroup AWS API Documentation
|
@@ -12190,8 +12375,8 @@ module Aws::RDS
|
|
12190
12375
|
# `DescribeEventSubscriptions` action.
|
12191
12376
|
#
|
12192
12377
|
# @!attribute [rw] customer_aws_id
|
12193
|
-
# The
|
12194
|
-
# subscription.
|
12378
|
+
# The Amazon Web Services customer account associated with the RDS
|
12379
|
+
# event notification subscription.
|
12195
12380
|
# @return [String]
|
12196
12381
|
#
|
12197
12382
|
# @!attribute [rw] cust_subscription_id
|
@@ -12370,11 +12555,12 @@ module Aws::RDS
|
|
12370
12555
|
# @return [String]
|
12371
12556
|
#
|
12372
12557
|
# @!attribute [rw] kms_key_id
|
12373
|
-
# The key identifier of the
|
12374
|
-
# used to encrypt the snapshot when it's exported
|
12375
|
-
#
|
12376
|
-
# name. The IAM role used for the
|
12377
|
-
#
|
12558
|
+
# The key identifier of the Amazon Web Services KMS customer master
|
12559
|
+
# key (CMK) that is used to encrypt the snapshot when it's exported
|
12560
|
+
# to Amazon S3. The Amazon Web Services KMS CMK identifier is its key
|
12561
|
+
# ARN, key ID, alias ARN, or alias name. The IAM role used for the
|
12562
|
+
# snapshot export must have encryption and decryption permissions to
|
12563
|
+
# use this Amazon Web Services KMS CMK.
|
12378
12564
|
# @return [String]
|
12379
12565
|
#
|
12380
12566
|
# @!attribute [rw] status
|
@@ -12527,7 +12713,7 @@ module Aws::RDS
|
|
12527
12713
|
# Identifier of the secondary Aurora DB cluster that you want to
|
12528
12714
|
# promote to primary for the Aurora global database (GlobalCluster.)
|
12529
12715
|
# Use the Amazon Resource Name (ARN) for the identifier so that Aurora
|
12530
|
-
# can locate the cluster in its
|
12716
|
+
# can locate the cluster in its Amazon Web Services Region.
|
12531
12717
|
# @return [String]
|
12532
12718
|
#
|
12533
12719
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverGlobalClusterMessage AWS API Documentation
|
@@ -12653,10 +12839,10 @@ module Aws::RDS
|
|
12653
12839
|
# @return [String]
|
12654
12840
|
#
|
12655
12841
|
# @!attribute [rw] global_cluster_resource_id
|
12656
|
-
# The
|
12657
|
-
# cluster. This identifier is found in
|
12658
|
-
#
|
12659
|
-
# accessed.
|
12842
|
+
# The Amazon Web Services Region-unique, immutable identifier for the
|
12843
|
+
# global database cluster. This identifier is found in Amazon Web
|
12844
|
+
# Services CloudTrail log entries whenever the Amazon Web Services KMS
|
12845
|
+
# customer master key (CMK) for the DB cluster is accessed.
|
12660
12846
|
# @return [String]
|
12661
12847
|
#
|
12662
12848
|
# @!attribute [rw] global_cluster_arn
|
@@ -12989,7 +13175,8 @@ module Aws::RDS
|
|
12989
13175
|
# @return [String]
|
12990
13176
|
#
|
12991
13177
|
# @!attribute [rw] installation_media
|
12992
|
-
# The list of InstallationMedia objects for the
|
13178
|
+
# The list of InstallationMedia objects for the Amazon Web Services
|
13179
|
+
# account.
|
12993
13180
|
# @return [Array<Types::InstallationMedia>]
|
12994
13181
|
#
|
12995
13182
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InstallationMediaMessage AWS API Documentation
|
@@ -13207,7 +13394,7 @@ module Aws::RDS
|
|
13207
13394
|
#
|
13208
13395
|
class InvalidVPCNetworkStateFault < Aws::EmptyStructure; end
|
13209
13396
|
|
13210
|
-
# An error occurred accessing an
|
13397
|
+
# An error occurred accessing an Amazon Web Services KMS key.
|
13211
13398
|
#
|
13212
13399
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/KMSKeyNotAccessibleFault AWS API Documentation
|
13213
13400
|
#
|
@@ -13282,8 +13469,8 @@ module Aws::RDS
|
|
13282
13469
|
# The new default certificate identifier to override the current one
|
13283
13470
|
# with.
|
13284
13471
|
#
|
13285
|
-
# To determine the valid values, use the `describe-certificates`
|
13286
|
-
#
|
13472
|
+
# To determine the valid values, use the `describe-certificates` CLI
|
13473
|
+
# command or the `DescribeCertificates` API operation.
|
13287
13474
|
# @return [String]
|
13288
13475
|
#
|
13289
13476
|
# @!attribute [rw] remove_customer_override
|
@@ -13302,7 +13489,7 @@ module Aws::RDS
|
|
13302
13489
|
end
|
13303
13490
|
|
13304
13491
|
# @!attribute [rw] certificate
|
13305
|
-
# A CA certificate for an
|
13492
|
+
# A CA certificate for an Amazon Web Services account.
|
13306
13493
|
# @return [Types::Certificate]
|
13307
13494
|
#
|
13308
13495
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCertificatesResult AWS API Documentation
|
@@ -13563,8 +13750,8 @@ module Aws::RDS
|
|
13563
13750
|
# parameter.
|
13564
13751
|
#
|
13565
13752
|
# The default is a 30-minute window selected at random from an 8-hour
|
13566
|
-
# block of time for each
|
13567
|
-
# available, see [ Backup window][1] in the *Amazon Aurora User
|
13753
|
+
# block of time for each Amazon Web Services Region. To view the time
|
13754
|
+
# blocks available, see [ Backup window][1] in the *Amazon Aurora User
|
13568
13755
|
# Guide.*
|
13569
13756
|
#
|
13570
13757
|
# Constraints:
|
@@ -13589,10 +13776,10 @@ module Aws::RDS
|
|
13589
13776
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
13590
13777
|
#
|
13591
13778
|
# The default is a 30-minute window selected at random from an 8-hour
|
13592
|
-
# block of time for each
|
13593
|
-
# week. To see the time blocks available, see [
|
13594
|
-
# Preferred DB Cluster Maintenance Window][1] in the
|
13595
|
-
# User Guide.*
|
13779
|
+
# block of time for each Amazon Web Services Region, occurring on a
|
13780
|
+
# random day of the week. To see the time blocks available, see [
|
13781
|
+
# Adjusting the Preferred DB Cluster Maintenance Window][1] in the
|
13782
|
+
# *Amazon Aurora User Guide.*
|
13596
13783
|
#
|
13597
13784
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
13598
13785
|
#
|
@@ -13604,9 +13791,9 @@ module Aws::RDS
|
|
13604
13791
|
# @return [String]
|
13605
13792
|
#
|
13606
13793
|
# @!attribute [rw] enable_iam_database_authentication
|
13607
|
-
# A value that indicates whether to enable mapping of
|
13608
|
-
# Access Management (IAM) accounts to database
|
13609
|
-
# mapping is disabled.
|
13794
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
13795
|
+
# Services Identity and Access Management (IAM) accounts to database
|
13796
|
+
# accounts. By default, mapping is disabled.
|
13610
13797
|
#
|
13611
13798
|
# For more information, see [ IAM Database Authentication][1] in the
|
13612
13799
|
# *Amazon Aurora User Guide.*
|
@@ -13822,6 +14009,22 @@ module Aws::RDS
|
|
13822
14009
|
#
|
13823
14010
|
# @!attribute [rw] parameters
|
13824
14011
|
# A list of parameters in the DB cluster parameter group to modify.
|
14012
|
+
#
|
14013
|
+
# Valid Values (for the application method): `immediate |
|
14014
|
+
# pending-reboot`
|
14015
|
+
#
|
14016
|
+
# <note markdown="1"> You can use the `immediate` value with dynamic parameters only. You
|
14017
|
+
# can use the `pending-reboot` value for both dynamic and static
|
14018
|
+
# parameters.
|
14019
|
+
#
|
14020
|
+
# When the application method is `immediate`, changes to dynamic
|
14021
|
+
# parameters are applied immediately to the DB clusters associated
|
14022
|
+
# with the parameter group. When the application method is
|
14023
|
+
# `pending-reboot`, changes to dynamic and static parameters are
|
14024
|
+
# applied after a reboot without failover to the DB clusters
|
14025
|
+
# associated with the parameter group.
|
14026
|
+
#
|
14027
|
+
# </note>
|
13825
14028
|
# @return [Array<Types::Parameter>]
|
13826
14029
|
#
|
13827
14030
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterParameterGroupMessage AWS API Documentation
|
@@ -13866,8 +14069,9 @@ module Aws::RDS
|
|
13866
14069
|
# @!attribute [rw] attribute_name
|
13867
14070
|
# The name of the DB cluster snapshot attribute to modify.
|
13868
14071
|
#
|
13869
|
-
# To manage authorization for other
|
13870
|
-
# manual DB cluster snapshot, set this value to
|
14072
|
+
# To manage authorization for other Amazon Web Services accounts to
|
14073
|
+
# copy or restore a manual DB cluster snapshot, set this value to
|
14074
|
+
# `restore`.
|
13871
14075
|
#
|
13872
14076
|
# <note markdown="1"> To view the list of attributes available to modify, use the
|
13873
14077
|
# DescribeDBClusterSnapshotAttributes API action.
|
@@ -13879,25 +14083,27 @@ module Aws::RDS
|
|
13879
14083
|
# A list of DB cluster snapshot attributes to add to the attribute
|
13880
14084
|
# specified by `AttributeName`.
|
13881
14085
|
#
|
13882
|
-
# To authorize other
|
13883
|
-
# cluster snapshot, set this list to include one or more
|
13884
|
-
# IDs, or `all` to make the manual DB
|
13885
|
-
#
|
13886
|
-
#
|
13887
|
-
# want available to all
|
14086
|
+
# To authorize other Amazon Web Services accounts to copy or restore a
|
14087
|
+
# manual DB cluster snapshot, set this list to include one or more
|
14088
|
+
# Amazon Web Services account IDs, or `all` to make the manual DB
|
14089
|
+
# cluster snapshot restorable by any Amazon Web Services account. Do
|
14090
|
+
# not add the `all` value for any manual DB cluster snapshots that
|
14091
|
+
# contain private information that you don't want available to all
|
14092
|
+
# Amazon Web Services accounts.
|
13888
14093
|
# @return [Array<String>]
|
13889
14094
|
#
|
13890
14095
|
# @!attribute [rw] values_to_remove
|
13891
14096
|
# A list of DB cluster snapshot attributes to remove from the
|
13892
14097
|
# attribute specified by `AttributeName`.
|
13893
14098
|
#
|
13894
|
-
# To remove authorization for other
|
13895
|
-
# manual DB cluster snapshot, set this list to
|
13896
|
-
#
|
13897
|
-
#
|
13898
|
-
#
|
13899
|
-
#
|
13900
|
-
#
|
14099
|
+
# To remove authorization for other Amazon Web Services accounts to
|
14100
|
+
# copy or restore a manual DB cluster snapshot, set this list to
|
14101
|
+
# include one or more Amazon Web Services account identifiers, or
|
14102
|
+
# `all` to remove authorization for any Amazon Web Services account to
|
14103
|
+
# copy or restore the DB cluster snapshot. If you specify `all`, an
|
14104
|
+
# Amazon Web Services account whose account ID is explicitly added to
|
14105
|
+
# the `restore` attribute can still copy or restore a manual DB
|
14106
|
+
# cluster snapshot.
|
13901
14107
|
# @return [Array<String>]
|
13902
14108
|
#
|
13903
14109
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterSnapshotAttributeMessage AWS API Documentation
|
@@ -13916,9 +14122,9 @@ module Aws::RDS
|
|
13916
14122
|
# `DescribeDBClusterSnapshotAttributes` API action.
|
13917
14123
|
#
|
13918
14124
|
# Manual DB cluster snapshot attributes are used to authorize other
|
13919
|
-
#
|
13920
|
-
# more information, see the
|
13921
|
-
# action.
|
14125
|
+
# Amazon Web Services accounts to copy or restore a manual DB cluster
|
14126
|
+
# snapshot. For more information, see the
|
14127
|
+
# `ModifyDBClusterSnapshotAttribute` API action.
|
13922
14128
|
# @return [Types::DBClusterSnapshotAttributesResult]
|
13923
14129
|
#
|
13924
14130
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterSnapshotAttributeResult AWS API Documentation
|
@@ -14014,10 +14220,10 @@ module Aws::RDS
|
|
14014
14220
|
#
|
14015
14221
|
# @!attribute [rw] db_instance_class
|
14016
14222
|
# The new compute and memory capacity of the DB instance, for example,
|
14017
|
-
# `db.m4.large`. Not all DB instance classes are available in all
|
14018
|
-
# Regions, or for all database engines. For the
|
14019
|
-
# instance classes, and availability for your engine,
|
14020
|
-
# Class][1] in the *Amazon RDS User Guide.*
|
14223
|
+
# `db.m4.large`. Not all DB instance classes are available in all
|
14224
|
+
# Amazon Web Services Regions, or for all database engines. For the
|
14225
|
+
# full list of DB instance classes, and availability for your engine,
|
14226
|
+
# see [DB Instance Class][1] in the *Amazon RDS User Guide.*
|
14021
14227
|
#
|
14022
14228
|
# If you modify the DB instance class, an outage occurs during the
|
14023
14229
|
# change. The change is applied during the next maintenance window,
|
@@ -14203,8 +14409,9 @@ module Aws::RDS
|
|
14203
14409
|
# `BackupRetentionPeriod` parameter. Changing this parameter doesn't
|
14204
14410
|
# result in an outage and the change is asynchronously applied as soon
|
14205
14411
|
# as possible. The default is a 30-minute window selected at random
|
14206
|
-
# from an 8-hour block of time for each
|
14207
|
-
# information, see [Backup window][1] in the *Amazon RDS User
|
14412
|
+
# from an 8-hour block of time for each Amazon Web Services Region.
|
14413
|
+
# For more information, see [Backup window][1] in the *Amazon RDS User
|
14414
|
+
# Guide.*
|
14208
14415
|
#
|
14209
14416
|
# **Amazon Aurora**
|
14210
14417
|
#
|
@@ -14564,12 +14771,13 @@ module Aws::RDS
|
|
14564
14771
|
# @return [Integer]
|
14565
14772
|
#
|
14566
14773
|
# @!attribute [rw] enable_iam_database_authentication
|
14567
|
-
# A value that indicates whether to enable mapping of
|
14568
|
-
# Access Management (IAM) accounts to database
|
14569
|
-
# mapping is disabled.
|
14774
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
14775
|
+
# Services Identity and Access Management (IAM) accounts to database
|
14776
|
+
# accounts. By default, mapping is disabled.
|
14570
14777
|
#
|
14571
|
-
# This setting doesn't apply to Amazon Aurora. Mapping
|
14572
|
-
# accounts to database accounts is managed by the DB
|
14778
|
+
# This setting doesn't apply to Amazon Aurora. Mapping Amazon Web
|
14779
|
+
# Services IAM accounts to database accounts is managed by the DB
|
14780
|
+
# cluster.
|
14573
14781
|
#
|
14574
14782
|
# For more information about IAM database authentication, see [ IAM
|
14575
14783
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -14593,16 +14801,17 @@ module Aws::RDS
|
|
14593
14801
|
# @return [Boolean]
|
14594
14802
|
#
|
14595
14803
|
# @!attribute [rw] performance_insights_kms_key_id
|
14596
|
-
# The
|
14597
|
-
# data.
|
14804
|
+
# The Amazon Web Services KMS key identifier for encryption of
|
14805
|
+
# Performance Insights data.
|
14598
14806
|
#
|
14599
|
-
# The
|
14600
|
-
# alias name for the
|
14807
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
14808
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
14809
|
+
# master key (CMK).
|
14601
14810
|
#
|
14602
14811
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`,
|
14603
14812
|
# then Amazon RDS uses your default CMK. There is a default CMK for
|
14604
|
-
# your
|
14605
|
-
# each
|
14813
|
+
# your Amazon Web Services account. Your Amazon Web Services account
|
14814
|
+
# has a different default CMK for each Amazon Web Services Region.
|
14606
14815
|
# @return [String]
|
14607
14816
|
#
|
14608
14817
|
# @!attribute [rw] performance_insights_retention_period
|
@@ -14714,10 +14923,11 @@ module Aws::RDS
|
|
14714
14923
|
# local network.
|
14715
14924
|
#
|
14716
14925
|
# For more information about RDS on Outposts, see [Working with Amazon
|
14717
|
-
# RDS on
|
14926
|
+
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
14927
|
+
# Guide*.
|
14718
14928
|
#
|
14719
14929
|
# For more information about CoIPs, see [Customer-owned IP
|
14720
|
-
# addresses][2] in the *
|
14930
|
+
# addresses][2] in the *Amazon Web Services Outposts User Guide*.
|
14721
14931
|
#
|
14722
14932
|
#
|
14723
14933
|
#
|
@@ -14726,7 +14936,8 @@ module Aws::RDS
|
|
14726
14936
|
# @return [Boolean]
|
14727
14937
|
#
|
14728
14938
|
# @!attribute [rw] aws_backup_recovery_point_arn
|
14729
|
-
# The Amazon Resource Name (ARN) of the recovery point in
|
14939
|
+
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
14940
|
+
# Services Backup.
|
14730
14941
|
# @return [String]
|
14731
14942
|
#
|
14732
14943
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
@@ -14830,18 +15041,25 @@ module Aws::RDS
|
|
14830
15041
|
# @return [String]
|
14831
15042
|
#
|
14832
15043
|
# @!attribute [rw] parameters
|
14833
|
-
# An array of parameter names, values, and the
|
14834
|
-
# parameter update. At least one parameter name, value, and
|
14835
|
-
# method must be supplied; later arguments are
|
14836
|
-
# 20 parameters can be modified in a single
|
15044
|
+
# An array of parameter names, values, and the application methods for
|
15045
|
+
# the parameter update. At least one parameter name, value, and
|
15046
|
+
# application method method must be supplied; later arguments are
|
15047
|
+
# optional. A maximum of 20 parameters can be modified in a single
|
15048
|
+
# request.
|
14837
15049
|
#
|
14838
15050
|
# Valid Values (for the application method): `immediate |
|
14839
15051
|
# pending-reboot`
|
14840
15052
|
#
|
14841
|
-
# <note markdown="1"> You can use the immediate value with dynamic parameters only. You
|
14842
|
-
# can use the pending-reboot value for both dynamic and static
|
14843
|
-
# parameters
|
14844
|
-
#
|
15053
|
+
# <note markdown="1"> You can use the `immediate` value with dynamic parameters only. You
|
15054
|
+
# can use the `pending-reboot` value for both dynamic and static
|
15055
|
+
# parameters.
|
15056
|
+
#
|
15057
|
+
# When the application method is `immediate`, changes to dynamic
|
15058
|
+
# parameters are applied immediately to the DB instances associated
|
15059
|
+
# with the parameter group. When the application method is
|
15060
|
+
# `pending-reboot`, changes to dynamic and static parameters are
|
15061
|
+
# applied after a reboot without failover to the DB instances
|
15062
|
+
# associated with the parameter group.
|
14845
15063
|
#
|
14846
15064
|
# </note>
|
14847
15065
|
# @return [Array<Types::Parameter>]
|
@@ -14968,7 +15186,7 @@ module Aws::RDS
|
|
14968
15186
|
#
|
14969
15187
|
# @!attribute [rw] role_arn
|
14970
15188
|
# The Amazon Resource Name (ARN) of the IAM role that the proxy uses
|
14971
|
-
# to access secrets in
|
15189
|
+
# to access secrets in Amazon Web Services Secrets Manager.
|
14972
15190
|
# @return [String]
|
14973
15191
|
#
|
14974
15192
|
# @!attribute [rw] security_groups
|
@@ -15078,8 +15296,8 @@ module Aws::RDS
|
|
15078
15296
|
# @!attribute [rw] attribute_name
|
15079
15297
|
# The name of the DB snapshot attribute to modify.
|
15080
15298
|
#
|
15081
|
-
# To manage authorization for other
|
15082
|
-
# manual DB snapshot, set this value to `restore`.
|
15299
|
+
# To manage authorization for other Amazon Web Services accounts to
|
15300
|
+
# copy or restore a manual DB snapshot, set this value to `restore`.
|
15083
15301
|
#
|
15084
15302
|
# <note markdown="1"> To view the list of attributes available to modify, use the
|
15085
15303
|
# DescribeDBSnapshotAttributes API action.
|
@@ -15091,22 +15309,23 @@ module Aws::RDS
|
|
15091
15309
|
# A list of DB snapshot attributes to add to the attribute specified
|
15092
15310
|
# by `AttributeName`.
|
15093
15311
|
#
|
15094
|
-
# To authorize other
|
15095
|
-
# snapshot, set this list to include one or more
|
15096
|
-
# `all` to make the manual DB snapshot
|
15097
|
-
# Do not add the `all`
|
15098
|
-
#
|
15099
|
-
# accounts.
|
15312
|
+
# To authorize other Amazon Web Services accounts to copy or restore a
|
15313
|
+
# manual snapshot, set this list to include one or more Amazon Web
|
15314
|
+
# Services account IDs, or `all` to make the manual DB snapshot
|
15315
|
+
# restorable by any Amazon Web Services account. Do not add the `all`
|
15316
|
+
# value for any manual DB snapshots that contain private information
|
15317
|
+
# that you don't want available to all Amazon Web Services accounts.
|
15100
15318
|
# @return [Array<String>]
|
15101
15319
|
#
|
15102
15320
|
# @!attribute [rw] values_to_remove
|
15103
15321
|
# A list of DB snapshot attributes to remove from the attribute
|
15104
15322
|
# specified by `AttributeName`.
|
15105
15323
|
#
|
15106
|
-
# To remove authorization for other
|
15107
|
-
# manual snapshot, set this list to include one or
|
15108
|
-
# identifiers, or `all` to remove
|
15109
|
-
#
|
15324
|
+
# To remove authorization for other Amazon Web Services accounts to
|
15325
|
+
# copy or restore a manual snapshot, set this list to include one or
|
15326
|
+
# more Amazon Web Services account identifiers, or `all` to remove
|
15327
|
+
# authorization for any Amazon Web Services account to copy or restore
|
15328
|
+
# the DB snapshot. If you specify `all`, an Amazon Web Services
|
15110
15329
|
# account whose account ID is explicitly added to the `restore`
|
15111
15330
|
# attribute can still copy or restore the manual DB snapshot.
|
15112
15331
|
# @return [Array<String>]
|
@@ -15126,8 +15345,8 @@ module Aws::RDS
|
|
15126
15345
|
# Contains the results of a successful call to the
|
15127
15346
|
# `DescribeDBSnapshotAttributes` API action.
|
15128
15347
|
#
|
15129
|
-
# Manual DB snapshot attributes are used to authorize other
|
15130
|
-
# accounts to copy or restore a manual DB snapshot. For more
|
15348
|
+
# Manual DB snapshot attributes are used to authorize other Amazon Web
|
15349
|
+
# Services accounts to copy or restore a manual DB snapshot. For more
|
15131
15350
|
# information, see the `ModifyDBSnapshotAttribute` API action.
|
15132
15351
|
# @return [Types::DBSnapshotAttributesResult]
|
15133
15352
|
#
|
@@ -15916,7 +16135,8 @@ module Aws::RDS
|
|
15916
16135
|
include Aws::Structure
|
15917
16136
|
end
|
15918
16137
|
|
15919
|
-
# The quota of 20 option groups was exceeded for this
|
16138
|
+
# The quota of 20 option groups was exceeded for this Amazon Web
|
16139
|
+
# Services account.
|
15920
16140
|
#
|
15921
16141
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OptionGroupQuotaExceededFault AWS API Documentation
|
15922
16142
|
#
|
@@ -16151,14 +16371,21 @@ module Aws::RDS
|
|
16151
16371
|
# @!attribute [rw] outpost_capable
|
16152
16372
|
# Whether a DB instance supports RDS on Outposts.
|
16153
16373
|
#
|
16154
|
-
# For more information about RDS on Outposts, see [Amazon RDS on
|
16155
|
-
# Outposts][1] in the *Amazon RDS User Guide.*
|
16374
|
+
# For more information about RDS on Outposts, see [Amazon RDS on
|
16375
|
+
# Amazon Web Services Outposts][1] in the *Amazon RDS User Guide.*
|
16156
16376
|
#
|
16157
16377
|
#
|
16158
16378
|
#
|
16159
16379
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
16160
16380
|
# @return [Boolean]
|
16161
16381
|
#
|
16382
|
+
# @!attribute [rw] supported_activity_stream_modes
|
16383
|
+
# The list of supported modes for Database Activity Streams. Aurora
|
16384
|
+
# PostgreSQL returns the value `[sync, async]`. Aurora MySQL and RDS
|
16385
|
+
# for Oracle return `[async]` only. If Database Activity Streams
|
16386
|
+
# isn't supported, the return value is an empty list.
|
16387
|
+
# @return [Array<String>]
|
16388
|
+
#
|
16162
16389
|
# @!attribute [rw] supports_global_databases
|
16163
16390
|
# A value that indicates whether you can use Aurora global databases
|
16164
16391
|
# with a specific combination of other DB engine attributes.
|
@@ -16193,6 +16420,7 @@ module Aws::RDS
|
|
16193
16420
|
:supports_storage_autoscaling,
|
16194
16421
|
:supports_kerberos_authentication,
|
16195
16422
|
:outpost_capable,
|
16423
|
+
:supported_activity_stream_modes,
|
16196
16424
|
:supports_global_databases)
|
16197
16425
|
SENSITIVE = []
|
16198
16426
|
include Aws::Structure
|
@@ -16224,8 +16452,8 @@ module Aws::RDS
|
|
16224
16452
|
|
16225
16453
|
# A data type that represents an Outpost.
|
16226
16454
|
#
|
16227
|
-
# For more information about RDS on Outposts, see [Amazon RDS on
|
16228
|
-
# Outposts][1] in the *Amazon RDS User Guide.*
|
16455
|
+
# For more information about RDS on Outposts, see [Amazon RDS on Amazon
|
16456
|
+
# Web Services Outposts][1] in the *Amazon RDS User Guide.*
|
16229
16457
|
#
|
16230
16458
|
#
|
16231
16459
|
#
|
@@ -16505,8 +16733,8 @@ module Aws::RDS
|
|
16505
16733
|
# @return [Array<Types::ProcessorFeature>]
|
16506
16734
|
#
|
16507
16735
|
# @!attribute [rw] iam_database_authentication_enabled
|
16508
|
-
# Whether mapping of
|
16509
|
-
# to database accounts is enabled.
|
16736
|
+
# Whether mapping of Amazon Web Services Identity and Access
|
16737
|
+
# Management (IAM) accounts to database accounts is enabled.
|
16510
16738
|
# @return [Boolean]
|
16511
16739
|
#
|
16512
16740
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PendingModifiedValues AWS API Documentation
|
@@ -16701,9 +16929,9 @@ module Aws::RDS
|
|
16701
16929
|
# parameter.
|
16702
16930
|
#
|
16703
16931
|
# The default is a 30-minute window selected at random from an 8-hour
|
16704
|
-
# block of time for each
|
16705
|
-
# see [ Adjusting the Preferred Maintenance
|
16706
|
-
# RDS User Guide.*
|
16932
|
+
# block of time for each Amazon Web Services Region. To see the time
|
16933
|
+
# blocks available, see [ Adjusting the Preferred Maintenance
|
16934
|
+
# Window][1] in the *Amazon RDS User Guide.*
|
16707
16935
|
#
|
16708
16936
|
# Constraints:
|
16709
16937
|
#
|
@@ -17219,8 +17447,8 @@ module Aws::RDS
|
|
17219
17447
|
# The unique identifier for the lease associated with the reserved DB
|
17220
17448
|
# instance.
|
17221
17449
|
#
|
17222
|
-
# <note markdown="1">
|
17223
|
-
# reserved DB instance.
|
17450
|
+
# <note markdown="1"> Amazon Web Services Support might request the lease ID for an issue
|
17451
|
+
# related to a reserved DB instance.
|
17224
17452
|
#
|
17225
17453
|
# </note>
|
17226
17454
|
# @return [String]
|
@@ -17720,8 +17948,8 @@ module Aws::RDS
|
|
17720
17948
|
# parameter.
|
17721
17949
|
#
|
17722
17950
|
# The default is a 30-minute window selected at random from an 8-hour
|
17723
|
-
# block of time for each
|
17724
|
-
# available, see [ Backup window][1] in the *Amazon Aurora User
|
17951
|
+
# block of time for each Amazon Web Services Region. To view the time
|
17952
|
+
# blocks available, see [ Backup window][1] in the *Amazon Aurora User
|
17725
17953
|
# Guide.*
|
17726
17954
|
#
|
17727
17955
|
# Constraints:
|
@@ -17746,9 +17974,10 @@ module Aws::RDS
|
|
17746
17974
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
17747
17975
|
#
|
17748
17976
|
# The default is a 30-minute window selected at random from an 8-hour
|
17749
|
-
# block of time for each
|
17750
|
-
# week. To see the time blocks available, see [
|
17751
|
-
# Preferred Maintenance Window][1] in the *Amazon Aurora
|
17977
|
+
# block of time for each Amazon Web Services Region, occurring on a
|
17978
|
+
# random day of the week. To see the time blocks available, see [
|
17979
|
+
# Adjusting the Preferred Maintenance Window][1] in the *Amazon Aurora
|
17980
|
+
# User Guide.*
|
17752
17981
|
#
|
17753
17982
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
17754
17983
|
#
|
@@ -17773,22 +18002,25 @@ module Aws::RDS
|
|
17773
18002
|
# @return [Boolean]
|
17774
18003
|
#
|
17775
18004
|
# @!attribute [rw] kms_key_id
|
17776
|
-
# The
|
18005
|
+
# The Amazon Web Services KMS key identifier for an encrypted DB
|
18006
|
+
# cluster.
|
17777
18007
|
#
|
17778
|
-
# The
|
17779
|
-
# alias name for the
|
17780
|
-
#
|
18008
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
18009
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
18010
|
+
# master key (CMK). To use a CMK in a different Amazon Web Services
|
18011
|
+
# account, specify the key ARN or alias ARN.
|
17781
18012
|
#
|
17782
18013
|
# If the StorageEncrypted parameter is enabled, and you do not specify
|
17783
18014
|
# a value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
17784
|
-
# default CMK. There is a default CMK for your
|
17785
|
-
# account
|
18015
|
+
# default CMK. There is a default CMK for your Amazon Web Services
|
18016
|
+
# account. Your Amazon Web Services account has a different default
|
18017
|
+
# CMK for each Amazon Web Services Region.
|
17786
18018
|
# @return [String]
|
17787
18019
|
#
|
17788
18020
|
# @!attribute [rw] enable_iam_database_authentication
|
17789
|
-
# A value that indicates whether to enable mapping of
|
17790
|
-
# Access Management (IAM) accounts to database
|
17791
|
-
# mapping is disabled.
|
18021
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
18022
|
+
# Services Identity and Access Management (IAM) accounts to database
|
18023
|
+
# accounts. By default, mapping is disabled.
|
17792
18024
|
#
|
17793
18025
|
# For more information, see [ IAM Database Authentication][1] in the
|
17794
18026
|
# *Amazon Aurora User Guide.*
|
@@ -17826,9 +18058,9 @@ module Aws::RDS
|
|
17826
18058
|
# @return [String]
|
17827
18059
|
#
|
17828
18060
|
# @!attribute [rw] s3_ingestion_role_arn
|
17829
|
-
# The Amazon Resource Name (ARN) of the
|
17830
|
-
# Management (IAM) role that authorizes Amazon RDS to
|
17831
|
-
# Amazon S3 bucket on your behalf.
|
18061
|
+
# The Amazon Resource Name (ARN) of the Amazon Web Services Identity
|
18062
|
+
# and Access Management (IAM) role that authorizes Amazon RDS to
|
18063
|
+
# access the Amazon S3 bucket on your behalf.
|
17832
18064
|
# @return [String]
|
17833
18065
|
#
|
17834
18066
|
# @!attribute [rw] backtrack_window
|
@@ -18097,29 +18329,30 @@ module Aws::RDS
|
|
18097
18329
|
# @return [Array<Types::Tag>]
|
18098
18330
|
#
|
18099
18331
|
# @!attribute [rw] kms_key_id
|
18100
|
-
# The
|
18101
|
-
# cluster from a DB snapshot or DB cluster snapshot.
|
18332
|
+
# The Amazon Web Services KMS key identifier to use when restoring an
|
18333
|
+
# encrypted DB cluster from a DB snapshot or DB cluster snapshot.
|
18102
18334
|
#
|
18103
|
-
# The
|
18104
|
-
# alias name for the
|
18105
|
-
#
|
18335
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
18336
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
18337
|
+
# master key (CMK). To use a CMK in a different Amazon Web Services
|
18338
|
+
# account, specify the key ARN or alias ARN.
|
18106
18339
|
#
|
18107
18340
|
# When you don't specify a value for the `KmsKeyId` parameter, then
|
18108
18341
|
# the following occurs:
|
18109
18342
|
#
|
18110
18343
|
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier`
|
18111
18344
|
# is encrypted, then the restored DB cluster is encrypted using the
|
18112
|
-
#
|
18113
|
-
# snapshot.
|
18345
|
+
# Amazon Web Services KMS CMK that was used to encrypt the DB
|
18346
|
+
# snapshot or DB cluster snapshot.
|
18114
18347
|
#
|
18115
18348
|
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier`
|
18116
18349
|
# isn't encrypted, then the restored DB cluster isn't encrypted.
|
18117
18350
|
# @return [String]
|
18118
18351
|
#
|
18119
18352
|
# @!attribute [rw] enable_iam_database_authentication
|
18120
|
-
# A value that indicates whether to enable mapping of
|
18121
|
-
# Access Management (IAM) accounts to database
|
18122
|
-
# mapping is disabled.
|
18353
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
18354
|
+
# Services Identity and Access Management (IAM) accounts to database
|
18355
|
+
# accounts. By default, mapping is disabled.
|
18123
18356
|
#
|
18124
18357
|
# For more information, see [ IAM Database Authentication][1] in the
|
18125
18358
|
# *Amazon Aurora User Guide.*
|
@@ -18294,6 +18527,14 @@ module Aws::RDS
|
|
18294
18527
|
# copy_tags_to_snapshot: false,
|
18295
18528
|
# domain: "String",
|
18296
18529
|
# domain_iam_role_name: "String",
|
18530
|
+
# scaling_configuration: {
|
18531
|
+
# min_capacity: 1,
|
18532
|
+
# max_capacity: 1,
|
18533
|
+
# auto_pause: false,
|
18534
|
+
# seconds_until_auto_pause: 1,
|
18535
|
+
# timeout_action: "String",
|
18536
|
+
# },
|
18537
|
+
# engine_mode: "String",
|
18297
18538
|
# }
|
18298
18539
|
#
|
18299
18540
|
# @!attribute [rw] db_cluster_identifier
|
@@ -18401,24 +18642,26 @@ module Aws::RDS
|
|
18401
18642
|
# @return [Array<Types::Tag>]
|
18402
18643
|
#
|
18403
18644
|
# @!attribute [rw] kms_key_id
|
18404
|
-
# The
|
18405
|
-
# cluster from an encrypted DB cluster.
|
18645
|
+
# The Amazon Web Services KMS key identifier to use when restoring an
|
18646
|
+
# encrypted DB cluster from an encrypted DB cluster.
|
18406
18647
|
#
|
18407
|
-
# The
|
18408
|
-
# alias name for the
|
18409
|
-
#
|
18648
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
18649
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
18650
|
+
# master key (CMK). To use a CMK in a different Amazon Web Services
|
18651
|
+
# account, specify the key ARN or alias ARN.
|
18410
18652
|
#
|
18411
18653
|
# You can restore to a new DB cluster and encrypt the new DB cluster
|
18412
|
-
# with a
|
18413
|
-
# encrypt the source DB cluster. The new
|
18414
|
-
#
|
18654
|
+
# with a Amazon Web Services KMS CMK that is different than the Amazon
|
18655
|
+
# Web Services KMS key used to encrypt the source DB cluster. The new
|
18656
|
+
# DB cluster is encrypted with the Amazon Web Services KMS CMK
|
18657
|
+
# identified by the `KmsKeyId` parameter.
|
18415
18658
|
#
|
18416
18659
|
# If you don't specify a value for the `KmsKeyId` parameter, then the
|
18417
18660
|
# following occurs:
|
18418
18661
|
#
|
18419
18662
|
# * If the DB cluster is encrypted, then the restored DB cluster is
|
18420
|
-
# encrypted using the
|
18421
|
-
# source DB cluster.
|
18663
|
+
# encrypted using the Amazon Web Services KMS CMK that was used to
|
18664
|
+
# encrypt the source DB cluster.
|
18422
18665
|
#
|
18423
18666
|
# * If the DB cluster isn't encrypted, then the restored DB cluster
|
18424
18667
|
# isn't encrypted.
|
@@ -18428,9 +18671,9 @@ module Aws::RDS
|
|
18428
18671
|
# @return [String]
|
18429
18672
|
#
|
18430
18673
|
# @!attribute [rw] enable_iam_database_authentication
|
18431
|
-
# A value that indicates whether to enable mapping of
|
18432
|
-
# Access Management (IAM) accounts to database
|
18433
|
-
# mapping is disabled.
|
18674
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
18675
|
+
# Services Identity and Access Management (IAM) accounts to database
|
18676
|
+
# accounts. By default, mapping is disabled.
|
18434
18677
|
#
|
18435
18678
|
# For more information, see [ IAM Database Authentication][1] in the
|
18436
18679
|
# *Amazon Aurora User Guide.*
|
@@ -18517,6 +18760,21 @@ module Aws::RDS
|
|
18517
18760
|
# the Directory Service.
|
18518
18761
|
# @return [String]
|
18519
18762
|
#
|
18763
|
+
# @!attribute [rw] scaling_configuration
|
18764
|
+
# For DB clusters in `serverless` DB engine mode, the scaling
|
18765
|
+
# properties of the DB cluster.
|
18766
|
+
# @return [Types::ScalingConfiguration]
|
18767
|
+
#
|
18768
|
+
# @!attribute [rw] engine_mode
|
18769
|
+
# The engine mode of the new cluster. Specify `provisioned` or
|
18770
|
+
# `serverless`, depending on the type of the cluster you are creating.
|
18771
|
+
# You can create an Aurora Serverless clone from a provisioned
|
18772
|
+
# cluster, or a provisioned clone from an Aurora Serverless cluster.
|
18773
|
+
# To create a clone that is an Aurora Serverless cluster, the original
|
18774
|
+
# cluster must be an Aurora Serverless cluster or an encrypted
|
18775
|
+
# provisioned cluster.
|
18776
|
+
# @return [String]
|
18777
|
+
#
|
18520
18778
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
18521
18779
|
#
|
18522
18780
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
@@ -18538,7 +18796,9 @@ module Aws::RDS
|
|
18538
18796
|
:deletion_protection,
|
18539
18797
|
:copy_tags_to_snapshot,
|
18540
18798
|
:domain,
|
18541
|
-
:domain_iam_role_name
|
18799
|
+
:domain_iam_role_name,
|
18800
|
+
:scaling_configuration,
|
18801
|
+
:engine_mode)
|
18542
18802
|
SENSITIVE = []
|
18543
18803
|
include Aws::Structure
|
18544
18804
|
end
|
@@ -18632,9 +18892,9 @@ module Aws::RDS
|
|
18632
18892
|
# @!attribute [rw] db_instance_class
|
18633
18893
|
# The compute and memory capacity of the Amazon RDS DB instance, for
|
18634
18894
|
# example, `db.m4.large`. Not all DB instance classes are available in
|
18635
|
-
# all
|
18636
|
-
# DB instance classes, and availability for your
|
18637
|
-
# Instance Class][1] in the *Amazon RDS User Guide.*
|
18895
|
+
# all Amazon Web Services Regions, or for all database engines. For
|
18896
|
+
# the full list of DB instance classes, and availability for your
|
18897
|
+
# engine, see [DB Instance Class][1] in the *Amazon RDS User Guide.*
|
18638
18898
|
#
|
18639
18899
|
# Default: The same DBInstanceClass as the original DB instance.
|
18640
18900
|
#
|
@@ -18736,11 +18996,11 @@ module Aws::RDS
|
|
18736
18996
|
#
|
18737
18997
|
# * `oracle-ee`
|
18738
18998
|
#
|
18739
|
-
# * `oracle-
|
18999
|
+
# * `oracle-ee-cdb`
|
18740
19000
|
#
|
18741
|
-
# * `oracle-
|
19001
|
+
# * `oracle-se2`
|
18742
19002
|
#
|
18743
|
-
# * `oracle-
|
19003
|
+
# * `oracle-se2-cdb`
|
18744
19004
|
#
|
18745
19005
|
# * `postgres`
|
18746
19006
|
#
|
@@ -18847,9 +19107,9 @@ module Aws::RDS
|
|
18847
19107
|
# @return [String]
|
18848
19108
|
#
|
18849
19109
|
# @!attribute [rw] enable_iam_database_authentication
|
18850
|
-
# A value that indicates whether to enable mapping of
|
18851
|
-
# Access Management (IAM) accounts to database
|
18852
|
-
# mapping is disabled.
|
19110
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
19111
|
+
# Services Identity and Access Management (IAM) accounts to database
|
19112
|
+
# accounts. By default, mapping is disabled.
|
18853
19113
|
#
|
18854
19114
|
# For more information about IAM database authentication, see [ IAM
|
18855
19115
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -18921,10 +19181,11 @@ module Aws::RDS
|
|
18921
19181
|
# local network.
|
18922
19182
|
#
|
18923
19183
|
# For more information about RDS on Outposts, see [Working with Amazon
|
18924
|
-
# RDS on
|
19184
|
+
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
19185
|
+
# Guide*.
|
18925
19186
|
#
|
18926
19187
|
# For more information about CoIPs, see [Customer-owned IP
|
18927
|
-
# addresses][2] in the *
|
19188
|
+
# addresses][2] in the *Amazon Web Services Outposts User Guide*.
|
18928
19189
|
#
|
18929
19190
|
#
|
18930
19191
|
#
|
@@ -19077,10 +19338,10 @@ module Aws::RDS
|
|
19077
19338
|
#
|
19078
19339
|
# @!attribute [rw] db_instance_class
|
19079
19340
|
# The compute and memory capacity of the DB instance, for example,
|
19080
|
-
# `db.m4.large`. Not all DB instance classes are available in all
|
19081
|
-
# Regions, or for all database engines. For the
|
19082
|
-
# instance classes, and availability for your engine,
|
19083
|
-
# Class][1] in the *Amazon RDS User Guide.*
|
19341
|
+
# `db.m4.large`. Not all DB instance classes are available in all
|
19342
|
+
# Amazon Web Services Regions, or for all database engines. For the
|
19343
|
+
# full list of DB instance classes, and availability for your engine,
|
19344
|
+
# see [DB Instance Class][1] in the *Amazon RDS User Guide.*
|
19084
19345
|
#
|
19085
19346
|
# Importing from Amazon S3 isn't supported on the db.t2.micro DB
|
19086
19347
|
# instance class.
|
@@ -19127,17 +19388,19 @@ module Aws::RDS
|
|
19127
19388
|
#
|
19128
19389
|
# @!attribute [rw] availability_zone
|
19129
19390
|
# The Availability Zone that the DB instance is created in. For
|
19130
|
-
# information about
|
19131
|
-
# and Availability Zones][1] in the *Amazon RDS
|
19391
|
+
# information about Amazon Web Services Regions and Availability
|
19392
|
+
# Zones, see [Regions and Availability Zones][1] in the *Amazon RDS
|
19393
|
+
# User Guide.*
|
19132
19394
|
#
|
19133
19395
|
# Default: A random, system-chosen Availability Zone in the
|
19134
|
-
# endpoint's
|
19396
|
+
# endpoint's Amazon Web Services Region.
|
19135
19397
|
#
|
19136
19398
|
# Example: `us-east-1d`
|
19137
19399
|
#
|
19138
19400
|
# Constraint: The `AvailabilityZone` parameter can't be specified if
|
19139
19401
|
# the DB instance is a Multi-AZ deployment. The specified Availability
|
19140
|
-
# Zone must be in the same
|
19402
|
+
# Zone must be in the same Amazon Web Services Region as the current
|
19403
|
+
# endpoint.
|
19141
19404
|
#
|
19142
19405
|
#
|
19143
19406
|
#
|
@@ -19299,16 +19562,19 @@ module Aws::RDS
|
|
19299
19562
|
# @return [Boolean]
|
19300
19563
|
#
|
19301
19564
|
# @!attribute [rw] kms_key_id
|
19302
|
-
# The
|
19565
|
+
# The Amazon Web Services KMS key identifier for an encrypted DB
|
19566
|
+
# instance.
|
19303
19567
|
#
|
19304
|
-
# The
|
19305
|
-
# alias name for the
|
19306
|
-
#
|
19568
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
19569
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
19570
|
+
# master key (CMK). To use a CMK in a different Amazon Web Services
|
19571
|
+
# account, specify the key ARN or alias ARN.
|
19307
19572
|
#
|
19308
19573
|
# If the `StorageEncrypted` parameter is enabled, and you do not
|
19309
19574
|
# specify a value for the `KmsKeyId` parameter, then Amazon RDS will
|
19310
|
-
# use your default CMK. There is a default CMK for your
|
19311
|
-
# Your
|
19575
|
+
# use your default CMK. There is a default CMK for your Amazon Web
|
19576
|
+
# Services account. Your Amazon Web Services account has a different
|
19577
|
+
# default CMK for each Amazon Web Services Region.
|
19312
19578
|
# @return [String]
|
19313
19579
|
#
|
19314
19580
|
# @!attribute [rw] copy_tags_to_snapshot
|
@@ -19345,9 +19611,9 @@ module Aws::RDS
|
|
19345
19611
|
# @return [String]
|
19346
19612
|
#
|
19347
19613
|
# @!attribute [rw] enable_iam_database_authentication
|
19348
|
-
# A value that indicates whether to enable mapping of
|
19349
|
-
# Access Management (IAM) accounts to database
|
19350
|
-
# mapping is disabled.
|
19614
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
19615
|
+
# Services Identity and Access Management (IAM) accounts to database
|
19616
|
+
# accounts. By default, mapping is disabled.
|
19351
19617
|
#
|
19352
19618
|
# For more information about IAM database authentication, see [ IAM
|
19353
19619
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -19382,8 +19648,8 @@ module Aws::RDS
|
|
19382
19648
|
# @return [String]
|
19383
19649
|
#
|
19384
19650
|
# @!attribute [rw] s3_ingestion_role_arn
|
19385
|
-
# An
|
19386
|
-
# to access your Amazon S3 bucket.
|
19651
|
+
# An Amazon Web Services Identity and Access Management (IAM) role to
|
19652
|
+
# allow Amazon RDS to access your Amazon S3 bucket.
|
19387
19653
|
# @return [String]
|
19388
19654
|
#
|
19389
19655
|
# @!attribute [rw] enable_performance_insights
|
@@ -19399,16 +19665,17 @@ module Aws::RDS
|
|
19399
19665
|
# @return [Boolean]
|
19400
19666
|
#
|
19401
19667
|
# @!attribute [rw] performance_insights_kms_key_id
|
19402
|
-
# The
|
19403
|
-
# data.
|
19668
|
+
# The Amazon Web Services KMS key identifier for encryption of
|
19669
|
+
# Performance Insights data.
|
19404
19670
|
#
|
19405
|
-
# The
|
19406
|
-
# alias name for the
|
19671
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
19672
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
19673
|
+
# master key (CMK).
|
19407
19674
|
#
|
19408
19675
|
# If you do not specify a value for `PerformanceInsightsKMSKeyId`,
|
19409
19676
|
# then Amazon RDS uses your default CMK. There is a default CMK for
|
19410
|
-
# your
|
19411
|
-
# each
|
19677
|
+
# your Amazon Web Services account. Your Amazon Web Services account
|
19678
|
+
# has a different default CMK for each Amazon Web Services Region.
|
19412
19679
|
# @return [String]
|
19413
19680
|
#
|
19414
19681
|
# @!attribute [rw] performance_insights_retention_period
|
@@ -19627,9 +19894,9 @@ module Aws::RDS
|
|
19627
19894
|
# @!attribute [rw] db_instance_class
|
19628
19895
|
# The compute and memory capacity of the Amazon RDS DB instance, for
|
19629
19896
|
# example, `db.m4.large`. Not all DB instance classes are available in
|
19630
|
-
# all
|
19631
|
-
# DB instance classes, and availability for your
|
19632
|
-
# Instance Class][1] in the *Amazon RDS User Guide.*
|
19897
|
+
# all Amazon Web Services Regions, or for all database engines. For
|
19898
|
+
# the full list of DB instance classes, and availability for your
|
19899
|
+
# engine, see [DB Instance Class][1] in the *Amazon RDS User Guide.*
|
19633
19900
|
#
|
19634
19901
|
# Default: The same DBInstanceClass as the original DB instance.
|
19635
19902
|
#
|
@@ -19728,11 +19995,11 @@ module Aws::RDS
|
|
19728
19995
|
#
|
19729
19996
|
# * `oracle-ee`
|
19730
19997
|
#
|
19731
|
-
# * `oracle-
|
19998
|
+
# * `oracle-ee-cdb`
|
19732
19999
|
#
|
19733
|
-
# * `oracle-
|
20000
|
+
# * `oracle-se2`
|
19734
20001
|
#
|
19735
|
-
# * `oracle-
|
20002
|
+
# * `oracle-se2-cdb`
|
19736
20003
|
#
|
19737
20004
|
# * `postgres`
|
19738
20005
|
#
|
@@ -19831,9 +20098,9 @@ module Aws::RDS
|
|
19831
20098
|
# @return [String]
|
19832
20099
|
#
|
19833
20100
|
# @!attribute [rw] enable_iam_database_authentication
|
19834
|
-
# A value that indicates whether to enable mapping of
|
19835
|
-
# Access Management (IAM) accounts to database
|
19836
|
-
# mapping is disabled.
|
20101
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
20102
|
+
# Services Identity and Access Management (IAM) accounts to database
|
20103
|
+
# accounts. By default, mapping is disabled.
|
19837
20104
|
#
|
19838
20105
|
# For more information about IAM database authentication, see [ IAM
|
19839
20106
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -19928,10 +20195,11 @@ module Aws::RDS
|
|
19928
20195
|
# local network.
|
19929
20196
|
#
|
19930
20197
|
# For more information about RDS on Outposts, see [Working with Amazon
|
19931
|
-
# RDS on
|
20198
|
+
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
20199
|
+
# Guide*.
|
19932
20200
|
#
|
19933
20201
|
# For more information about CoIPs, see [Customer-owned IP
|
19934
|
-
# addresses][2] in the *
|
20202
|
+
# addresses][2] in the *Amazon Web Services Outposts User Guide*.
|
19935
20203
|
#
|
19936
20204
|
#
|
19937
20205
|
#
|
@@ -20050,12 +20318,12 @@ module Aws::RDS
|
|
20050
20318
|
# @return [String]
|
20051
20319
|
#
|
20052
20320
|
# @!attribute [rw] ec2_security_group_owner_id
|
20053
|
-
# The
|
20054
|
-
# specified in the `EC2SecurityGroupName` parameter.
|
20055
|
-
# key ID isn't an acceptable value.
|
20056
|
-
# `EC2SecurityGroupId` must be provided.
|
20057
|
-
# EC2SecurityGroupOwnerId and either `EC2SecurityGroupName`
|
20058
|
-
# `EC2SecurityGroupId` must be provided.
|
20321
|
+
# The Amazon Web Services account number of the owner of the EC2
|
20322
|
+
# security group specified in the `EC2SecurityGroupName` parameter.
|
20323
|
+
# The Amazon Web Services access key ID isn't an acceptable value.
|
20324
|
+
# For VPC DB security groups, `EC2SecurityGroupId` must be provided.
|
20325
|
+
# Otherwise, EC2SecurityGroupOwnerId and either `EC2SecurityGroupName`
|
20326
|
+
# or `EC2SecurityGroupId` must be provided.
|
20059
20327
|
# @return [String]
|
20060
20328
|
#
|
20061
20329
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RevokeDBSecurityGroupIngressMessage AWS API Documentation
|
@@ -20275,24 +20543,24 @@ module Aws::RDS
|
|
20275
20543
|
#
|
20276
20544
|
class SourceNotFoundFault < Aws::EmptyStructure; end
|
20277
20545
|
|
20278
|
-
# Contains an
|
20279
|
-
# `DescribeSourceRegions` action.
|
20546
|
+
# Contains an Amazon Web Services Region name as the result of a
|
20547
|
+
# successful call to the `DescribeSourceRegions` action.
|
20280
20548
|
#
|
20281
20549
|
# @!attribute [rw] region_name
|
20282
|
-
# The name of the source
|
20550
|
+
# The name of the source Amazon Web Services Region.
|
20283
20551
|
# @return [String]
|
20284
20552
|
#
|
20285
20553
|
# @!attribute [rw] endpoint
|
20286
|
-
# The endpoint for the source
|
20554
|
+
# The endpoint for the source Amazon Web Services Region endpoint.
|
20287
20555
|
# @return [String]
|
20288
20556
|
#
|
20289
20557
|
# @!attribute [rw] status
|
20290
|
-
# The status of the source
|
20558
|
+
# The status of the source Amazon Web Services Region.
|
20291
20559
|
# @return [String]
|
20292
20560
|
#
|
20293
20561
|
# @!attribute [rw] supports_db_instance_automated_backups_replication
|
20294
|
-
# Whether the source
|
20295
|
-
# to the current
|
20562
|
+
# Whether the source Amazon Web Services Region supports replicating
|
20563
|
+
# automated backups to the current Amazon Web Services Region.
|
20296
20564
|
# @return [Boolean]
|
20297
20565
|
#
|
20298
20566
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SourceRegion AWS API Documentation
|
@@ -20316,9 +20584,9 @@ module Aws::RDS
|
|
20316
20584
|
# @return [String]
|
20317
20585
|
#
|
20318
20586
|
# @!attribute [rw] source_regions
|
20319
|
-
# A list of SourceRegion instances that contains each source
|
20320
|
-
# Region that the current
|
20321
|
-
# snapshot from.
|
20587
|
+
# A list of SourceRegion instances that contains each source Amazon
|
20588
|
+
# Web Services Region that the current Amazon Web Services Region can
|
20589
|
+
# get a read replica or a DB snapshot from.
|
20322
20590
|
# @return [Array<Types::SourceRegion>]
|
20323
20591
|
#
|
20324
20592
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SourceRegionMessage AWS API Documentation
|
@@ -20338,6 +20606,7 @@ module Aws::RDS
|
|
20338
20606
|
# mode: "sync", # required, accepts sync, async
|
20339
20607
|
# kms_key_id: "String", # required
|
20340
20608
|
# apply_immediately: false,
|
20609
|
+
# engine_native_audit_fields_included: false,
|
20341
20610
|
# }
|
20342
20611
|
#
|
20343
20612
|
# @!attribute [rw] resource_arn
|
@@ -20353,9 +20622,10 @@ module Aws::RDS
|
|
20353
20622
|
# @return [String]
|
20354
20623
|
#
|
20355
20624
|
# @!attribute [rw] kms_key_id
|
20356
|
-
# The
|
20357
|
-
# activity stream. The
|
20358
|
-
# alias ARN, or alias name for the
|
20625
|
+
# The Amazon Web Services KMS key identifier for encrypting messages
|
20626
|
+
# in the database activity stream. The Amazon Web Services KMS key
|
20627
|
+
# identifier is the key ARN, key ID, alias ARN, or alias name for the
|
20628
|
+
# Amazon Web Services KMS customer master key (CMK).
|
20359
20629
|
# @return [String]
|
20360
20630
|
#
|
20361
20631
|
# @!attribute [rw] apply_immediately
|
@@ -20364,20 +20634,27 @@ module Aws::RDS
|
|
20364
20634
|
# database.
|
20365
20635
|
# @return [Boolean]
|
20366
20636
|
#
|
20637
|
+
# @!attribute [rw] engine_native_audit_fields_included
|
20638
|
+
# Specifies whether the database activity stream includes
|
20639
|
+
# engine-native audit fields. This option only applies to an Oracle DB
|
20640
|
+
# instance. By default, no engine-native audit fields are included.
|
20641
|
+
# @return [Boolean]
|
20642
|
+
#
|
20367
20643
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartActivityStreamRequest AWS API Documentation
|
20368
20644
|
#
|
20369
20645
|
class StartActivityStreamRequest < Struct.new(
|
20370
20646
|
:resource_arn,
|
20371
20647
|
:mode,
|
20372
20648
|
:kms_key_id,
|
20373
|
-
:apply_immediately
|
20649
|
+
:apply_immediately,
|
20650
|
+
:engine_native_audit_fields_included)
|
20374
20651
|
SENSITIVE = []
|
20375
20652
|
include Aws::Structure
|
20376
20653
|
end
|
20377
20654
|
|
20378
20655
|
# @!attribute [rw] kms_key_id
|
20379
|
-
# The
|
20380
|
-
# database activity stream.
|
20656
|
+
# The Amazon Web Services KMS key identifier for encryption of
|
20657
|
+
# messages in the database activity stream.
|
20381
20658
|
# @return [String]
|
20382
20659
|
#
|
20383
20660
|
# @!attribute [rw] kinesis_stream_name
|
@@ -20399,6 +20676,11 @@ module Aws::RDS
|
|
20399
20676
|
# database.
|
20400
20677
|
# @return [Boolean]
|
20401
20678
|
#
|
20679
|
+
# @!attribute [rw] engine_native_audit_fields_included
|
20680
|
+
# Indicates whether engine-native audit fields are included in the
|
20681
|
+
# database activity stream.
|
20682
|
+
# @return [Boolean]
|
20683
|
+
#
|
20402
20684
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartActivityStreamResponse AWS API Documentation
|
20403
20685
|
#
|
20404
20686
|
class StartActivityStreamResponse < Struct.new(
|
@@ -20406,7 +20688,8 @@ module Aws::RDS
|
|
20406
20688
|
:kinesis_stream_name,
|
20407
20689
|
:status,
|
20408
20690
|
:mode,
|
20409
|
-
:apply_immediately
|
20691
|
+
:apply_immediately,
|
20692
|
+
:engine_native_audit_fields_included)
|
20410
20693
|
SENSITIVE = []
|
20411
20694
|
include Aws::Structure
|
20412
20695
|
end
|
@@ -20468,20 +20751,21 @@ module Aws::RDS
|
|
20468
20751
|
# @return [Integer]
|
20469
20752
|
#
|
20470
20753
|
# @!attribute [rw] kms_key_id
|
20471
|
-
# The
|
20472
|
-
# automated backups. The KMS key ID is the Amazon Resource
|
20473
|
-
# for the KMS encryption key in the destination
|
20474
|
-
# example,
|
20754
|
+
# The Amazon Web Services KMS key identifier for encryption of the
|
20755
|
+
# replicated automated backups. The KMS key ID is the Amazon Resource
|
20756
|
+
# Name (ARN) for the KMS encryption key in the destination Amazon Web
|
20757
|
+
# Services Region, for example,
|
20475
20758
|
# `arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE`.
|
20476
20759
|
# @return [String]
|
20477
20760
|
#
|
20478
20761
|
# @!attribute [rw] pre_signed_url
|
20479
20762
|
# A URL that contains a Signature Version 4 signed request for the
|
20480
20763
|
# StartDBInstanceAutomatedBackupsReplication action to be called in
|
20481
|
-
# the
|
20482
|
-
# a valid request for the
|
20483
|
-
# API action that can be
|
20484
|
-
#
|
20764
|
+
# the Amazon Web Services Region of the source DB instance. The
|
20765
|
+
# presigned URL must be a valid request for the
|
20766
|
+
# StartDBInstanceAutomatedBackupsReplication API action that can be
|
20767
|
+
# executed in the Amazon Web Services Region that contains the source
|
20768
|
+
# DB instance.
|
20485
20769
|
# @return [String]
|
20486
20770
|
#
|
20487
20771
|
# @!attribute [rw] source_region
|
@@ -20583,12 +20867,13 @@ module Aws::RDS
|
|
20583
20867
|
# @return [String]
|
20584
20868
|
#
|
20585
20869
|
# @!attribute [rw] kms_key_id
|
20586
|
-
# The ID of the
|
20587
|
-
# the snapshot exported to Amazon S3. The
|
20588
|
-
# the key ARN, key ID, alias ARN, or
|
20589
|
-
#
|
20590
|
-
#
|
20591
|
-
# the
|
20870
|
+
# The ID of the Amazon Web Services KMS customer master key (CMK) to
|
20871
|
+
# use to encrypt the snapshot exported to Amazon S3. The Amazon Web
|
20872
|
+
# Services KMS key identifier is the key ARN, key ID, alias ARN, or
|
20873
|
+
# alias name for the Amazon Web Services KMS customer master key
|
20874
|
+
# (CMK). The caller of this operation must be authorized to execute
|
20875
|
+
# the following operations. These can be set in the Amazon Web
|
20876
|
+
# Services KMS key policy:
|
20592
20877
|
#
|
20593
20878
|
# * GrantOperation.Encrypt
|
20594
20879
|
#
|
@@ -20678,11 +20963,12 @@ module Aws::RDS
|
|
20678
20963
|
end
|
20679
20964
|
|
20680
20965
|
# @!attribute [rw] kms_key_id
|
20681
|
-
# The
|
20682
|
-
# database activity stream.
|
20966
|
+
# The Amazon Web Services KMS key identifier used for encrypting
|
20967
|
+
# messages in the database activity stream.
|
20683
20968
|
#
|
20684
|
-
# The
|
20685
|
-
# alias name for the
|
20969
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
20970
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
20971
|
+
# master key (CMK).
|
20686
20972
|
# @return [String]
|
20687
20973
|
#
|
20688
20974
|
# @!attribute [rw] kinesis_stream_name
|
@@ -20847,8 +21133,8 @@ module Aws::RDS
|
|
20847
21133
|
# If the subnet is associated with an Outpost, this value specifies
|
20848
21134
|
# the Outpost.
|
20849
21135
|
#
|
20850
|
-
# For more information about RDS on Outposts, see [Amazon RDS on
|
20851
|
-
# Outposts][1] in the *Amazon RDS User Guide.*
|
21136
|
+
# For more information about RDS on Outposts, see [Amazon RDS on
|
21137
|
+
# Amazon Web Services Outposts][1] in the *Amazon RDS User Guide.*
|
20852
21138
|
#
|
20853
21139
|
#
|
20854
21140
|
#
|
@@ -20908,7 +21194,7 @@ module Aws::RDS
|
|
20908
21194
|
# @!attribute [rw] key
|
20909
21195
|
# A key is the required name of the tag. The string value can be from
|
20910
21196
|
# 1 to 128 Unicode characters in length and can't be prefixed with
|
20911
|
-
#
|
21197
|
+
# `aws:` or `rds:`. The string can only contain only the set of
|
20912
21198
|
# Unicode letters, digits, white-space, '\_', '.', ':', '/',
|
20913
21199
|
# '=', '+', '-', '@' (Java regex:
|
20914
21200
|
# "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-@\]*)$").
|
@@ -20917,9 +21203,9 @@ module Aws::RDS
|
|
20917
21203
|
# @!attribute [rw] value
|
20918
21204
|
# A value is the optional value of the tag. The string value can be
|
20919
21205
|
# from 1 to 256 Unicode characters in length and can't be prefixed
|
20920
|
-
# with
|
20921
|
-
#
|
20922
|
-
# '
|
21206
|
+
# with `aws:` or `rds:`. The string can only contain only the set of
|
21207
|
+
# Unicode letters, digits, white-space, '\_', '.', ':', '/',
|
21208
|
+
# '=', '+', '-', '@' (Java regex:
|
20923
21209
|
# "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-@\]*)$").
|
20924
21210
|
# @return [String]
|
20925
21211
|
#
|
@@ -21081,8 +21367,8 @@ module Aws::RDS
|
|
21081
21367
|
# @return [String]
|
21082
21368
|
#
|
21083
21369
|
# @!attribute [rw] iam_auth
|
21084
|
-
# Whether to require or disallow
|
21085
|
-
# (IAM) authentication for connections to the proxy.
|
21370
|
+
# Whether to require or disallow Amazon Web Services Identity and
|
21371
|
+
# Access Management (IAM) authentication for connections to the proxy.
|
21086
21372
|
# @return [String]
|
21087
21373
|
#
|
21088
21374
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/UserAuthConfig AWS API Documentation
|
@@ -21121,8 +21407,8 @@ module Aws::RDS
|
|
21121
21407
|
# @return [String]
|
21122
21408
|
#
|
21123
21409
|
# @!attribute [rw] iam_auth
|
21124
|
-
# Whether to require or disallow
|
21125
|
-
# (IAM) authentication for connections to the proxy.
|
21410
|
+
# Whether to require or disallow Amazon Web Services Identity and
|
21411
|
+
# Access Management (IAM) authentication for connections to the proxy.
|
21126
21412
|
# @return [String]
|
21127
21413
|
#
|
21128
21414
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/UserAuthConfigInfo AWS API Documentation
|
@@ -21219,7 +21505,7 @@ module Aws::RDS
|
|
21219
21505
|
end
|
21220
21506
|
|
21221
21507
|
# Information about the virtual private network (VPN) between the VMware
|
21222
|
-
# vSphere cluster and the
|
21508
|
+
# vSphere cluster and the Amazon Web Services website.
|
21223
21509
|
#
|
21224
21510
|
# For more information about RDS on VMware, see the [ RDS on VMware User
|
21225
21511
|
# Guide.][1]
|
@@ -21238,8 +21524,8 @@ module Aws::RDS
|
|
21238
21524
|
# @return [String]
|
21239
21525
|
#
|
21240
21526
|
# @!attribute [rw] vpn_gateway_ip
|
21241
|
-
# The IP address of network traffic from
|
21242
|
-
# center.
|
21527
|
+
# The IP address of network traffic from Amazon Web Services to your
|
21528
|
+
# on-premises data center.
|
21243
21529
|
# @return [String]
|
21244
21530
|
#
|
21245
21531
|
# @!attribute [rw] vpn_psk
|