aws-sdk-rds 1.7.0 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +875 -310
- data/lib/aws-sdk-rds/client_api.rb +69 -0
- data/lib/aws-sdk-rds/db_cluster.rb +66 -59
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +8 -3
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +24 -20
- data/lib/aws-sdk-rds/db_instance.rb +182 -156
- data/lib/aws-sdk-rds/db_parameter_group.rb +12 -2
- data/lib/aws-sdk-rds/db_security_group.rb +7 -2
- data/lib/aws-sdk-rds/db_snapshot.rb +53 -35
- data/lib/aws-sdk-rds/db_subnet_group.rb +6 -1
- data/lib/aws-sdk-rds/event_subscription.rb +7 -2
- data/lib/aws-sdk-rds/option_group.rb +12 -2
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +6 -1
- data/lib/aws-sdk-rds/resource.rb +156 -113
- data/lib/aws-sdk-rds/types.rb +918 -731
- metadata +2 -2
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -186,7 +186,7 @@ module Aws::RDS
|
|
186
186
|
#
|
187
187
|
# @!attribute [rw] opt_in_type
|
188
188
|
# A value that specifies the type of opt-in request, or undoes an
|
189
|
-
# opt-in request. An opt-in request of type `immediate`
|
189
|
+
# opt-in request. An opt-in request of type `immediate` can't be
|
190
190
|
# undone.
|
191
191
|
#
|
192
192
|
# Valid values:
|
@@ -274,16 +274,7 @@ module Aws::RDS
|
|
274
274
|
end
|
275
275
|
|
276
276
|
# @!attribute [rw] db_security_group
|
277
|
-
# Contains the
|
278
|
-
# actions:
|
279
|
-
#
|
280
|
-
# * DescribeDBSecurityGroups
|
281
|
-
#
|
282
|
-
# * AuthorizeDBSecurityGroupIngress
|
283
|
-
#
|
284
|
-
# * CreateDBSecurityGroup
|
285
|
-
#
|
286
|
-
# * RevokeDBSecurityGroupIngress
|
277
|
+
# Contains the details for an Amazon RDS DB security group.
|
287
278
|
#
|
288
279
|
# This data type is used as a response element in the
|
289
280
|
# DescribeDBSecurityGroups action.
|
@@ -452,7 +443,12 @@ module Aws::RDS
|
|
452
443
|
# @return [String]
|
453
444
|
#
|
454
445
|
# @!attribute [rw] tags
|
455
|
-
# A list of tags.
|
446
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
447
|
+
# Resources][1].
|
448
|
+
#
|
449
|
+
#
|
450
|
+
#
|
451
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
456
452
|
# @return [Array<Types::Tag>]
|
457
453
|
#
|
458
454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBClusterParameterGroupMessage AWS API Documentation
|
@@ -466,12 +462,10 @@ module Aws::RDS
|
|
466
462
|
end
|
467
463
|
|
468
464
|
# @!attribute [rw] db_cluster_parameter_group
|
469
|
-
# Contains the
|
470
|
-
# CreateDBClusterParameterGroup or CopyDBClusterParameterGroup action.
|
465
|
+
# Contains the details of an Amazon RDS DB cluster parameter group.
|
471
466
|
#
|
472
|
-
# This data type is used as a
|
473
|
-
#
|
474
|
-
# the DescribeDBClusterParameterGroups action.
|
467
|
+
# This data type is used as a response element in the
|
468
|
+
# DescribeDBClusterParameterGroups action.
|
475
469
|
# @return [Types::DBClusterParameterGroup]
|
476
470
|
#
|
477
471
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBClusterParameterGroupResult AWS API Documentation
|
@@ -503,7 +497,7 @@ module Aws::RDS
|
|
503
497
|
# The identifier of the DB cluster snapshot to copy. This parameter is
|
504
498
|
# not case-sensitive.
|
505
499
|
#
|
506
|
-
# You
|
500
|
+
# You can't copy an encrypted, shared DB cluster snapshot from one
|
507
501
|
# AWS Region to another.
|
508
502
|
#
|
509
503
|
# Constraints:
|
@@ -540,9 +534,9 @@ module Aws::RDS
|
|
540
534
|
# @return [String]
|
541
535
|
#
|
542
536
|
# @!attribute [rw] kms_key_id
|
543
|
-
# The AWS KMS key ID for an encrypted DB cluster snapshot. The KMS
|
544
|
-
# ID is the Amazon Resource Name (ARN), KMS key identifier, or the
|
545
|
-
# key alias for the KMS encryption key.
|
537
|
+
# The AWS AWS KMS key ID for an encrypted DB cluster snapshot. The KMS
|
538
|
+
# key ID is the Amazon Resource Name (ARN), KMS key identifier, or the
|
539
|
+
# KMS key alias for the KMS encryption key.
|
546
540
|
#
|
547
541
|
# If you copy an unencrypted DB cluster snapshot and specify a value
|
548
542
|
# for the `KmsKeyId` parameter, Amazon RDS encrypts the target DB
|
@@ -561,7 +555,7 @@ module Aws::RDS
|
|
561
555
|
# must set `KmsKeyId` to the KMS key ID you want to use to encrypt the
|
562
556
|
# copy of the DB cluster snapshot in the destination AWS Region. KMS
|
563
557
|
# encryption keys are specific to the AWS Region that they are created
|
564
|
-
# in, and you
|
558
|
+
# in, and you can't use encryption keys from one AWS Region in
|
565
559
|
# another AWS Region.
|
566
560
|
# @return [String]
|
567
561
|
#
|
@@ -578,11 +572,11 @@ module Aws::RDS
|
|
578
572
|
# be copied. The pre-signed URL request must contain the following
|
579
573
|
# parameter values:
|
580
574
|
#
|
581
|
-
# * `KmsKeyId` - The KMS key identifier for the key to use to
|
582
|
-
# the copy of the DB cluster snapshot in the destination AWS
|
583
|
-
# This is the same identifier for both the
|
584
|
-
# action that is called in the destination
|
585
|
-
# action contained in the pre-signed URL.
|
575
|
+
# * `KmsKeyId` - The AWS KMS key identifier for the key to use to
|
576
|
+
# encrypt the copy of the DB cluster snapshot in the destination AWS
|
577
|
+
# Region. This is the same identifier for both the
|
578
|
+
# `CopyDBClusterSnapshot` action that is called in the destination
|
579
|
+
# AWS Region, and the action contained in the pre-signed URL.
|
586
580
|
#
|
587
581
|
# * `DestinationRegion` - The name of the AWS Region that the DB
|
588
582
|
# cluster snapshot will be created in.
|
@@ -591,8 +585,8 @@ module Aws::RDS
|
|
591
585
|
# identifier for the encrypted DB cluster snapshot to be copied.
|
592
586
|
# This identifier must be in the Amazon Resource Name (ARN) format
|
593
587
|
# for the source AWS Region. For example, if you are copying an
|
594
|
-
# encrypted DB cluster snapshot from the us-west-2
|
595
|
-
# `SourceDBClusterSnapshotIdentifier` looks like the following
|
588
|
+
# encrypted DB cluster snapshot from the us-west-2 AWS Region, then
|
589
|
+
# your `SourceDBClusterSnapshotIdentifier` looks like the following
|
596
590
|
# example:
|
597
591
|
# `arn:aws:rds:us-west-2:123456789012:cluster-snapshot:aurora-cluster1-snapshot-20161115`.
|
598
592
|
#
|
@@ -608,11 +602,17 @@ module Aws::RDS
|
|
608
602
|
#
|
609
603
|
# @!attribute [rw] copy_tags
|
610
604
|
# True to copy all tags from the source DB cluster snapshot to the
|
611
|
-
# target DB cluster snapshot
|
605
|
+
# target DB cluster snapshot, and otherwise false. The default is
|
606
|
+
# false.
|
612
607
|
# @return [Boolean]
|
613
608
|
#
|
614
609
|
# @!attribute [rw] tags
|
615
|
-
# A list of tags.
|
610
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
611
|
+
# Resources][1].
|
612
|
+
#
|
613
|
+
#
|
614
|
+
#
|
615
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
616
616
|
# @return [Array<Types::Tag>]
|
617
617
|
#
|
618
618
|
# @!attribute [rw] destination_region
|
@@ -638,12 +638,7 @@ module Aws::RDS
|
|
638
638
|
end
|
639
639
|
|
640
640
|
# @!attribute [rw] db_cluster_snapshot
|
641
|
-
# Contains the
|
642
|
-
# actions:
|
643
|
-
#
|
644
|
-
# * CreateDBClusterSnapshot
|
645
|
-
#
|
646
|
-
# * DeleteDBClusterSnapshot
|
641
|
+
# Contains the details for an Amazon RDS DB cluster snapshot
|
647
642
|
#
|
648
643
|
# This data type is used as a response element in the
|
649
644
|
# DescribeDBClusterSnapshots action.
|
@@ -709,7 +704,12 @@ module Aws::RDS
|
|
709
704
|
# @return [String]
|
710
705
|
#
|
711
706
|
# @!attribute [rw] tags
|
712
|
-
# A list of tags.
|
707
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
708
|
+
# Resources][1].
|
709
|
+
#
|
710
|
+
#
|
711
|
+
#
|
712
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
713
713
|
# @return [Array<Types::Tag>]
|
714
714
|
#
|
715
715
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBParameterGroupMessage AWS API Documentation
|
@@ -723,11 +723,9 @@ module Aws::RDS
|
|
723
723
|
end
|
724
724
|
|
725
725
|
# @!attribute [rw] db_parameter_group
|
726
|
-
# Contains the
|
727
|
-
# CreateDBParameterGroup action.
|
726
|
+
# Contains the details of an Amazon RDS DB parameter group.
|
728
727
|
#
|
729
|
-
# This data type is used as a
|
730
|
-
# DeleteDBParameterGroup action, and as a response element in the
|
728
|
+
# This data type is used as a response element in the
|
731
729
|
# DescribeDBParameterGroups action.
|
732
730
|
# @return [Types::DBParameterGroup]
|
733
731
|
#
|
@@ -823,17 +821,22 @@ module Aws::RDS
|
|
823
821
|
# If you copy an encrypted snapshot to a different AWS Region, then
|
824
822
|
# you must specify a KMS key for the destination AWS Region. KMS
|
825
823
|
# encryption keys are specific to the AWS Region that they are created
|
826
|
-
# in, and you
|
824
|
+
# in, and you can't use encryption keys from one AWS Region in
|
827
825
|
# another AWS Region.
|
828
826
|
# @return [String]
|
829
827
|
#
|
830
828
|
# @!attribute [rw] tags
|
831
|
-
# A list of tags.
|
829
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
830
|
+
# Resources][1].
|
831
|
+
#
|
832
|
+
#
|
833
|
+
#
|
834
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
832
835
|
# @return [Array<Types::Tag>]
|
833
836
|
#
|
834
837
|
# @!attribute [rw] copy_tags
|
835
838
|
# True to copy all tags from the source DB snapshot to the target DB
|
836
|
-
# snapshot
|
839
|
+
# snapshot, and otherwise false. The default is false.
|
837
840
|
# @return [Boolean]
|
838
841
|
#
|
839
842
|
# @!attribute [rw] pre_signed_url
|
@@ -843,9 +846,9 @@ module Aws::RDS
|
|
843
846
|
#
|
844
847
|
# You must specify this parameter when you copy an encrypted DB
|
845
848
|
# snapshot from another AWS Region by using the Amazon RDS API. You
|
846
|
-
# can specify the source
|
847
|
-
# you copy an encrypted DB snapshot from another AWS Region by
|
848
|
-
# the AWS CLI.
|
849
|
+
# can specify the `--source-region` option instead of this parameter
|
850
|
+
# when you copy an encrypted DB snapshot from another AWS Region by
|
851
|
+
# using the AWS CLI.
|
849
852
|
#
|
850
853
|
# The presigned URL must be a valid request for the `CopyDBSnapshot`
|
851
854
|
# API action that can be executed in the source AWS Region that
|
@@ -858,23 +861,24 @@ module Aws::RDS
|
|
858
861
|
# URL.
|
859
862
|
#
|
860
863
|
# For example, if you copy an encrypted DB snapshot from the
|
861
|
-
# us-west-2
|
862
|
-
# `CopyDBSnapshot` action in the us-east-1
|
863
|
-
# presigned URL that contains a call to the
|
864
|
-
# in the us-west-2
|
865
|
-
# in the presigned URL must be set
|
866
|
-
#
|
867
|
-
#
|
868
|
-
#
|
869
|
-
# the
|
870
|
-
#
|
871
|
-
# the
|
864
|
+
# us-west-2 AWS Region to the us-east-1 AWS Region, then you call
|
865
|
+
# the `CopyDBSnapshot` action in the us-east-1 AWS Region and
|
866
|
+
# provide a presigned URL that contains a call to the
|
867
|
+
# `CopyDBSnapshot` action in the us-west-2 AWS Region. For this
|
868
|
+
# example, the `DestinationRegion` in the presigned URL must be set
|
869
|
+
# to the us-east-1 AWS Region.
|
870
|
+
#
|
871
|
+
# * `KmsKeyId` - The AWS KMS key identifier for the key to use to
|
872
|
+
# encrypt the copy of the DB snapshot in the destination AWS Region.
|
873
|
+
# This is the same identifier for both the `CopyDBSnapshot` action
|
874
|
+
# that is called in the destination AWS Region, and the action
|
875
|
+
# contained in the presigned URL.
|
872
876
|
#
|
873
877
|
# * `SourceDBSnapshotIdentifier` - The DB snapshot identifier for the
|
874
878
|
# encrypted snapshot to be copied. This identifier must be in the
|
875
879
|
# Amazon Resource Name (ARN) format for the source AWS Region. For
|
876
880
|
# example, if you are copying an encrypted DB snapshot from the
|
877
|
-
# us-west-2
|
881
|
+
# us-west-2 AWS Region, then your `SourceDBSnapshotIdentifier` looks
|
878
882
|
# like the following example:
|
879
883
|
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20161115`.
|
880
884
|
#
|
@@ -896,8 +900,8 @@ module Aws::RDS
|
|
896
900
|
# Region to another, and your DB instance uses a nondefault option
|
897
901
|
# group. If your source DB instance uses Transparent Data Encryption
|
898
902
|
# for Oracle or Microsoft SQL Server, you must specify this option
|
899
|
-
# when copying across
|
900
|
-
# Considerations][1].
|
903
|
+
# when copying across AWS Regions. For more information, see [Option
|
904
|
+
# Group Considerations][1].
|
901
905
|
#
|
902
906
|
#
|
903
907
|
#
|
@@ -928,12 +932,7 @@ module Aws::RDS
|
|
928
932
|
end
|
929
933
|
|
930
934
|
# @!attribute [rw] db_snapshot
|
931
|
-
# Contains the
|
932
|
-
# actions:
|
933
|
-
#
|
934
|
-
# * CreateDBSnapshot
|
935
|
-
#
|
936
|
-
# * DeleteDBSnapshot
|
935
|
+
# Contains the details of an Amazon RDS DB snapshot.
|
937
936
|
#
|
938
937
|
# This data type is used as a response element in the
|
939
938
|
# DescribeDBSnapshots action.
|
@@ -1004,7 +1003,12 @@ module Aws::RDS
|
|
1004
1003
|
# @return [String]
|
1005
1004
|
#
|
1006
1005
|
# @!attribute [rw] tags
|
1007
|
-
# A list of tags.
|
1006
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
1007
|
+
# Resources][1].
|
1008
|
+
#
|
1009
|
+
#
|
1010
|
+
#
|
1011
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1008
1012
|
# @return [Array<Types::Tag>]
|
1009
1013
|
#
|
1010
1014
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyOptionGroupMessage AWS API Documentation
|
@@ -1063,7 +1067,7 @@ module Aws::RDS
|
|
1063
1067
|
#
|
1064
1068
|
# @!attribute [rw] availability_zones
|
1065
1069
|
# A list of EC2 Availability Zones that instances in the DB cluster
|
1066
|
-
# can be created in. For information on
|
1070
|
+
# can be created in. For information on AWS Regions and Availability
|
1067
1071
|
# Zones, see [Regions and Availability Zones][1].
|
1068
1072
|
#
|
1069
1073
|
#
|
@@ -1138,7 +1142,7 @@ module Aws::RDS
|
|
1138
1142
|
# @!attribute [rw] engine
|
1139
1143
|
# The name of the database engine to be used for this DB cluster.
|
1140
1144
|
#
|
1141
|
-
# Valid Values: `aurora`
|
1145
|
+
# Valid Values: `aurora`, `aurora-postgresql`
|
1142
1146
|
# @return [String]
|
1143
1147
|
#
|
1144
1148
|
# @!attribute [rw] engine_version
|
@@ -1179,8 +1183,8 @@ module Aws::RDS
|
|
1179
1183
|
# A value that indicates that the DB cluster should be associated with
|
1180
1184
|
# the specified option group.
|
1181
1185
|
#
|
1182
|
-
# Permanent options
|
1183
|
-
# group
|
1186
|
+
# Permanent options can't be removed from an option group. The option
|
1187
|
+
# group can't be removed from a DB cluster once it is associated with
|
1184
1188
|
# a DB cluster.
|
1185
1189
|
# @return [String]
|
1186
1190
|
#
|
@@ -1189,16 +1193,16 @@ module Aws::RDS
|
|
1189
1193
|
# automated backups are enabled using the `BackupRetentionPeriod`
|
1190
1194
|
# parameter.
|
1191
1195
|
#
|
1192
|
-
#
|
1193
|
-
# of time
|
1194
|
-
# Adjusting the Preferred Maintenance Window][1] in the *Amazon
|
1195
|
-
# User Guide.*
|
1196
|
+
# The default is a 30-minute window selected at random from an 8-hour
|
1197
|
+
# block of time for each AWS Region. To see the time blocks available,
|
1198
|
+
# see [ Adjusting the Preferred Maintenance Window][1] in the *Amazon
|
1199
|
+
# RDS User Guide.*
|
1196
1200
|
#
|
1197
1201
|
# Constraints:
|
1198
1202
|
#
|
1199
1203
|
# * Must be in the format `hh24:mi-hh24:mi`.
|
1200
1204
|
#
|
1201
|
-
# *
|
1205
|
+
# * Must be in Universal Coordinated Time (UTC).
|
1202
1206
|
#
|
1203
1207
|
# * Must not conflict with the preferred maintenance window.
|
1204
1208
|
#
|
@@ -1215,12 +1219,12 @@ module Aws::RDS
|
|
1215
1219
|
#
|
1216
1220
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
1217
1221
|
#
|
1218
|
-
#
|
1219
|
-
# of time
|
1220
|
-
# see the time blocks available, see [ Adjusting the
|
1221
|
-
# Maintenance Window][1] in the *Amazon RDS User Guide.*
|
1222
|
+
# The default is a 30-minute window selected at random from an 8-hour
|
1223
|
+
# block of time for each AWS Region, occurring on a random day of the
|
1224
|
+
# week. To see the time blocks available, see [ Adjusting the
|
1225
|
+
# Preferred Maintenance Window][1] in the *Amazon RDS User Guide.*
|
1222
1226
|
#
|
1223
|
-
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
|
1227
|
+
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
1224
1228
|
#
|
1225
1229
|
# Constraints: Minimum 30-minute window.
|
1226
1230
|
#
|
@@ -1235,7 +1239,12 @@ module Aws::RDS
|
|
1235
1239
|
# @return [String]
|
1236
1240
|
#
|
1237
1241
|
# @!attribute [rw] tags
|
1238
|
-
# A list of tags.
|
1242
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
1243
|
+
# Resources][1].
|
1244
|
+
#
|
1245
|
+
#
|
1246
|
+
#
|
1247
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1239
1248
|
# @return [Array<Types::Tag>]
|
1240
1249
|
#
|
1241
1250
|
# @!attribute [rw] storage_encrypted
|
@@ -1243,7 +1252,7 @@ module Aws::RDS
|
|
1243
1252
|
# @return [Boolean]
|
1244
1253
|
#
|
1245
1254
|
# @!attribute [rw] kms_key_id
|
1246
|
-
# The KMS key identifier for an encrypted DB cluster.
|
1255
|
+
# The AWS KMS key identifier for an encrypted DB cluster.
|
1247
1256
|
#
|
1248
1257
|
# The KMS key identifier is the Amazon Resource Name (ARN) for the KMS
|
1249
1258
|
# encryption key. If you are creating a DB cluster with the same AWS
|
@@ -1286,11 +1295,11 @@ module Aws::RDS
|
|
1286
1295
|
# The pre-signed URL request must contain the following parameter
|
1287
1296
|
# values:
|
1288
1297
|
#
|
1289
|
-
# * `KmsKeyId` - The KMS key identifier for the key to use to
|
1290
|
-
# the copy of the DB cluster in the destination AWS Region.
|
1291
|
-
# should refer to the same KMS key for both the
|
1292
|
-
# action that is called in the destination AWS
|
1293
|
-
# action contained in the pre-signed URL.
|
1298
|
+
# * `KmsKeyId` - The AWS KMS key identifier for the key to use to
|
1299
|
+
# encrypt the copy of the DB cluster in the destination AWS Region.
|
1300
|
+
# This should refer to the same KMS key for both the
|
1301
|
+
# `CreateDBCluster` action that is called in the destination AWS
|
1302
|
+
# Region, and the action contained in the pre-signed URL.
|
1294
1303
|
#
|
1295
1304
|
# * `DestinationRegion` - The name of the AWS Region that Aurora Read
|
1296
1305
|
# Replica will be created in.
|
@@ -1299,8 +1308,8 @@ module Aws::RDS
|
|
1299
1308
|
# encrypted DB cluster to be copied. This identifier must be in the
|
1300
1309
|
# Amazon Resource Name (ARN) format for the source AWS Region. For
|
1301
1310
|
# example, if you are copying an encrypted DB cluster from the
|
1302
|
-
# us-west-2
|
1303
|
-
# look like Example:
|
1311
|
+
# us-west-2 AWS Region, then your `ReplicationSourceIdentifier`
|
1312
|
+
# would look like Example:
|
1304
1313
|
# `arn:aws:rds:us-west-2:123456789012:cluster:aurora-cluster1`.
|
1305
1314
|
#
|
1306
1315
|
# To learn how to generate a Signature Version 4 signed request, see [
|
@@ -1314,9 +1323,8 @@ module Aws::RDS
|
|
1314
1323
|
# @return [String]
|
1315
1324
|
#
|
1316
1325
|
# @!attribute [rw] enable_iam_database_authentication
|
1317
|
-
#
|
1318
|
-
#
|
1319
|
-
# false.
|
1326
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
1327
|
+
# accounts to database accounts, and otherwise false.
|
1320
1328
|
#
|
1321
1329
|
# Default: `false`
|
1322
1330
|
# @return [Boolean]
|
@@ -1401,7 +1409,12 @@ module Aws::RDS
|
|
1401
1409
|
# @return [String]
|
1402
1410
|
#
|
1403
1411
|
# @!attribute [rw] tags
|
1404
|
-
# A list of tags.
|
1412
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
1413
|
+
# Resources][1].
|
1414
|
+
#
|
1415
|
+
#
|
1416
|
+
#
|
1417
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1405
1418
|
# @return [Array<Types::Tag>]
|
1406
1419
|
#
|
1407
1420
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterParameterGroupMessage AWS API Documentation
|
@@ -1415,12 +1428,10 @@ module Aws::RDS
|
|
1415
1428
|
end
|
1416
1429
|
|
1417
1430
|
# @!attribute [rw] db_cluster_parameter_group
|
1418
|
-
# Contains the
|
1419
|
-
# CreateDBClusterParameterGroup or CopyDBClusterParameterGroup action.
|
1431
|
+
# Contains the details of an Amazon RDS DB cluster parameter group.
|
1420
1432
|
#
|
1421
|
-
# This data type is used as a
|
1422
|
-
#
|
1423
|
-
# the DescribeDBClusterParameterGroups action.
|
1433
|
+
# This data type is used as a response element in the
|
1434
|
+
# DescribeDBClusterParameterGroups action.
|
1424
1435
|
# @return [Types::DBClusterParameterGroup]
|
1425
1436
|
#
|
1426
1437
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterParameterGroupResult AWS API Documentation
|
@@ -1431,20 +1442,7 @@ module Aws::RDS
|
|
1431
1442
|
end
|
1432
1443
|
|
1433
1444
|
# @!attribute [rw] db_cluster
|
1434
|
-
# Contains the
|
1435
|
-
# actions:
|
1436
|
-
#
|
1437
|
-
# * CreateDBCluster
|
1438
|
-
#
|
1439
|
-
# * DeleteDBCluster
|
1440
|
-
#
|
1441
|
-
# * FailoverDBCluster
|
1442
|
-
#
|
1443
|
-
# * ModifyDBCluster
|
1444
|
-
#
|
1445
|
-
# * RestoreDBClusterFromSnapshot
|
1446
|
-
#
|
1447
|
-
# * RestoreDBClusterToPointInTime
|
1445
|
+
# Contains the details of an Amazon RDS DB cluster.
|
1448
1446
|
#
|
1449
1447
|
# This data type is used as a response element in the
|
1450
1448
|
# DescribeDBClusters action.
|
@@ -1513,12 +1511,7 @@ module Aws::RDS
|
|
1513
1511
|
end
|
1514
1512
|
|
1515
1513
|
# @!attribute [rw] db_cluster_snapshot
|
1516
|
-
# Contains the
|
1517
|
-
# actions:
|
1518
|
-
#
|
1519
|
-
# * CreateDBClusterSnapshot
|
1520
|
-
#
|
1521
|
-
# * DeleteDBClusterSnapshot
|
1514
|
+
# Contains the details for an Amazon RDS DB cluster snapshot
|
1522
1515
|
#
|
1523
1516
|
# This data type is used as a response element in the
|
1524
1517
|
# DescribeDBClusterSnapshots action.
|
@@ -1676,7 +1669,7 @@ module Aws::RDS
|
|
1676
1669
|
#
|
1677
1670
|
# @!attribute [rw] allocated_storage
|
1678
1671
|
# The amount of storage (in gigabytes) to be initially allocated for
|
1679
|
-
# the
|
1672
|
+
# the DB instance.
|
1680
1673
|
#
|
1681
1674
|
# Type: Integer
|
1682
1675
|
#
|
@@ -1767,8 +1760,8 @@ module Aws::RDS
|
|
1767
1760
|
#
|
1768
1761
|
# @!attribute [rw] db_instance_class
|
1769
1762
|
# The compute and memory capacity of the DB instance, for example,
|
1770
|
-
# `db.m4.large`. Not all DB instance classes are available in all
|
1771
|
-
#
|
1763
|
+
# `db.m4.large`. Not all DB instance classes are available in all AWS
|
1764
|
+
# Regions, or for all database engines. For the full list of DB
|
1772
1765
|
# instance classes, and availability for your engine, see [DB Instance
|
1773
1766
|
# Class][1] in the Amazon RDS User Guide.
|
1774
1767
|
#
|
@@ -1786,6 +1779,8 @@ module Aws::RDS
|
|
1786
1779
|
#
|
1787
1780
|
# * `aurora`
|
1788
1781
|
#
|
1782
|
+
# * `aurora-postgresql`
|
1783
|
+
#
|
1789
1784
|
# * `mariadb`
|
1790
1785
|
#
|
1791
1786
|
# * `mysql`
|
@@ -1877,8 +1872,8 @@ module Aws::RDS
|
|
1877
1872
|
# @return [String]
|
1878
1873
|
#
|
1879
1874
|
# @!attribute [rw] master_user_password
|
1880
|
-
# The password for the master user.
|
1881
|
-
# character except "/", """, or "@".
|
1875
|
+
# The password for the master user. The password can include any
|
1876
|
+
# printable ASCII character except "/", """, or "@".
|
1882
1877
|
#
|
1883
1878
|
# **Amazon Aurora**
|
1884
1879
|
#
|
@@ -1927,8 +1922,8 @@ module Aws::RDS
|
|
1927
1922
|
# @return [Array<String>]
|
1928
1923
|
#
|
1929
1924
|
# @!attribute [rw] availability_zone
|
1930
|
-
# The EC2 Availability Zone that the
|
1931
|
-
#
|
1925
|
+
# The EC2 Availability Zone that the DB instance is created in. For
|
1926
|
+
# information on AWS Regions and Availability Zones, see [Regions and
|
1932
1927
|
# Availability Zones][1].
|
1933
1928
|
#
|
1934
1929
|
# Default: A random, system-chosen Availability Zone in the
|
@@ -1936,7 +1931,7 @@ module Aws::RDS
|
|
1936
1931
|
#
|
1937
1932
|
# Example: `us-east-1d`
|
1938
1933
|
#
|
1939
|
-
# Constraint: The AvailabilityZone parameter
|
1934
|
+
# Constraint: The AvailabilityZone parameter can't be specified if
|
1940
1935
|
# the MultiAZ parameter is set to `true`. The specified Availability
|
1941
1936
|
# Zone must be in the same AWS Region as the current endpoint.
|
1942
1937
|
#
|
@@ -1952,25 +1947,23 @@ module Aws::RDS
|
|
1952
1947
|
# @return [String]
|
1953
1948
|
#
|
1954
1949
|
# @!attribute [rw] preferred_maintenance_window
|
1955
|
-
# The
|
1956
|
-
# Universal Coordinated Time (UTC). For more information, see
|
1957
|
-
#
|
1950
|
+
# The time range each week during which system maintenance can occur,
|
1951
|
+
# in Universal Coordinated Time (UTC). For more information, see
|
1952
|
+
# [Amazon RDS Maintenance Window][1].
|
1958
1953
|
#
|
1959
1954
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
1960
1955
|
#
|
1961
|
-
#
|
1962
|
-
# of time
|
1963
|
-
#
|
1964
|
-
# Maintenance Window][2] in the *Amazon RDS User Guide.*
|
1956
|
+
# The default is a 30-minute window selected at random from an 8-hour
|
1957
|
+
# block of time for each AWS Region, occurring on a random day of the
|
1958
|
+
# week.
|
1965
1959
|
#
|
1966
|
-
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
|
1960
|
+
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
1967
1961
|
#
|
1968
1962
|
# Constraints: Minimum 30-minute window.
|
1969
1963
|
#
|
1970
1964
|
#
|
1971
1965
|
#
|
1972
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBMaintenance
|
1973
|
-
# [2]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
|
1966
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance
|
1974
1967
|
# @return [String]
|
1975
1968
|
#
|
1976
1969
|
# @!attribute [rw] db_parameter_group_name
|
@@ -2010,7 +2003,7 @@ module Aws::RDS
|
|
2010
2003
|
# @!attribute [rw] preferred_backup_window
|
2011
2004
|
# The daily time range during which automated backups are created if
|
2012
2005
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
2013
|
-
# parameter. For more information, see [
|
2006
|
+
# parameter. For more information, see [The Backup Window][1].
|
2014
2007
|
#
|
2015
2008
|
# **Amazon Aurora**
|
2016
2009
|
#
|
@@ -2018,15 +2011,15 @@ module Aws::RDS
|
|
2018
2011
|
# is managed by the DB cluster. For more information, see
|
2019
2012
|
# CreateDBCluster.
|
2020
2013
|
#
|
2021
|
-
#
|
2022
|
-
# of time
|
2023
|
-
# Adjusting the Preferred DB Instance Maintenance Window][2].
|
2014
|
+
# The default is a 30-minute window selected at random from an 8-hour
|
2015
|
+
# block of time for each AWS Region. To see the time blocks available,
|
2016
|
+
# see [ Adjusting the Preferred DB Instance Maintenance Window][2].
|
2024
2017
|
#
|
2025
2018
|
# Constraints:
|
2026
2019
|
#
|
2027
2020
|
# * Must be in the format `hh24:mi-hh24:mi`.
|
2028
2021
|
#
|
2029
|
-
# *
|
2022
|
+
# * Must be in Universal Coordinated Time (UTC).
|
2030
2023
|
#
|
2031
2024
|
# * Must not conflict with the preferred maintenance window.
|
2032
2025
|
#
|
@@ -2034,7 +2027,7 @@ module Aws::RDS
|
|
2034
2027
|
#
|
2035
2028
|
#
|
2036
2029
|
#
|
2037
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
2030
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
|
2038
2031
|
# [2]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow
|
2039
2032
|
# @return [String]
|
2040
2033
|
#
|
@@ -2088,7 +2081,7 @@ module Aws::RDS
|
|
2088
2081
|
# @return [Integer]
|
2089
2082
|
#
|
2090
2083
|
# @!attribute [rw] multi_az
|
2091
|
-
# Specifies if the DB instance is a Multi-AZ deployment. You
|
2084
|
+
# Specifies if the DB instance is a Multi-AZ deployment. You can't
|
2092
2085
|
# set the AvailabilityZone parameter if the MultiAZ parameter is set
|
2093
2086
|
# to true.
|
2094
2087
|
# @return [Boolean]
|
@@ -2108,65 +2101,65 @@ module Aws::RDS
|
|
2108
2101
|
#
|
2109
2102
|
# **MariaDB**
|
2110
2103
|
#
|
2111
|
-
# * `10.1.23` (supported in all AWS
|
2104
|
+
# * `10.1.23` (supported in all AWS Regions)
|
2112
2105
|
#
|
2113
|
-
# * `10.1.19` (supported in all AWS
|
2106
|
+
# * `10.1.19` (supported in all AWS Regions)
|
2114
2107
|
#
|
2115
|
-
# * `10.1.14` (supported in all
|
2108
|
+
# * `10.1.14` (supported in all AWS Regions except us-east-2)
|
2116
2109
|
#
|
2117
2110
|
#
|
2118
2111
|
#
|
2119
|
-
# * `10.0.31` (supported in all AWS
|
2112
|
+
# * `10.0.31` (supported in all AWS Regions)
|
2120
2113
|
#
|
2121
|
-
# * `10.0.28` (supported in all AWS
|
2114
|
+
# * `10.0.28` (supported in all AWS Regions)
|
2122
2115
|
#
|
2123
|
-
# * `10.0.24` (supported in all AWS
|
2116
|
+
# * `10.0.24` (supported in all AWS Regions)
|
2124
2117
|
#
|
2125
|
-
# * `10.0.17` (supported in all
|
2118
|
+
# * `10.0.17` (supported in all AWS Regions except us-east-2,
|
2126
2119
|
# ca-central-1, eu-west-2)
|
2127
2120
|
#
|
2128
2121
|
# **Microsoft SQL Server 2016**
|
2129
2122
|
#
|
2130
2123
|
# * `13.00.4422.0.v1` (supported for all editions, and all AWS
|
2131
|
-
#
|
2124
|
+
# Regions)
|
2132
2125
|
#
|
2133
2126
|
# * `13.00.2164.0.v1` (supported for all editions, and all AWS
|
2134
|
-
#
|
2127
|
+
# Regions)
|
2135
2128
|
#
|
2136
2129
|
# **Microsoft SQL Server 2014**
|
2137
2130
|
#
|
2138
2131
|
# * `12.00.5546.0.v1` (supported for all editions, and all AWS
|
2139
|
-
#
|
2132
|
+
# Regions)
|
2140
2133
|
#
|
2141
2134
|
# * `12.00.5000.0.v1` (supported for all editions, and all AWS
|
2142
|
-
#
|
2135
|
+
# Regions)
|
2143
2136
|
#
|
2144
2137
|
# * `12.00.4422.0.v1` (supported for all editions except Enterprise
|
2145
|
-
# Edition, and all AWS
|
2138
|
+
# Edition, and all AWS Regions except ca-central-1 and eu-west-2)
|
2146
2139
|
#
|
2147
2140
|
# **Microsoft SQL Server 2012**
|
2148
2141
|
#
|
2149
2142
|
# * `11.00.6594.0.v1` (supported for all editions, and all AWS
|
2150
|
-
#
|
2143
|
+
# Regions)
|
2151
2144
|
#
|
2152
2145
|
# * `11.00.6020.0.v1` (supported for all editions, and all AWS
|
2153
|
-
#
|
2146
|
+
# Regions)
|
2154
2147
|
#
|
2155
|
-
# * `11.00.5058.0.v1` (supported for all editions, and all AWS
|
2148
|
+
# * `11.00.5058.0.v1` (supported for all editions, and all AWS Regions
|
2156
2149
|
# except us-east-2, ca-central-1, and eu-west-2)
|
2157
2150
|
#
|
2158
2151
|
# * `11.00.2100.60.v1` (supported for all editions, and all AWS
|
2159
|
-
#
|
2152
|
+
# Regions except us-east-2, ca-central-1, and eu-west-2)
|
2160
2153
|
#
|
2161
2154
|
# **Microsoft SQL Server 2008 R2**
|
2162
2155
|
#
|
2163
|
-
# * `10.50.6529.0.v1` (supported for all editions, and all AWS
|
2156
|
+
# * `10.50.6529.0.v1` (supported for all editions, and all AWS Regions
|
2164
2157
|
# except us-east-2, ca-central-1, and eu-west-2)
|
2165
2158
|
#
|
2166
2159
|
# * `10.50.6000.34.v1` (supported for all editions, and all AWS
|
2167
|
-
#
|
2160
|
+
# Regions except us-east-2, ca-central-1, and eu-west-2)
|
2168
2161
|
#
|
2169
|
-
# * `10.50.2789.0.v1` (supported for all editions, and all AWS
|
2162
|
+
# * `10.50.2789.0.v1` (supported for all editions, and all AWS Regions
|
2170
2163
|
# except us-east-2, ca-central-1, and eu-west-2)
|
2171
2164
|
#
|
2172
2165
|
# **MySQL**
|
@@ -2177,30 +2170,28 @@ module Aws::RDS
|
|
2177
2170
|
#
|
2178
2171
|
# * `5.7.16` (supported in all AWS regions)
|
2179
2172
|
#
|
2180
|
-
# * `5.7.11` (supported in all AWS regions)
|
2181
2173
|
#
|
2182
2174
|
#
|
2175
|
+
# * `5.6.37` (supported in all AWS Regions)
|
2183
2176
|
#
|
2184
|
-
# * `5.6.
|
2177
|
+
# * `5.6.35` (supported in all AWS Regions)
|
2185
2178
|
#
|
2186
|
-
# * `5.6.
|
2179
|
+
# * `5.6.34` (supported in all AWS Regions)
|
2187
2180
|
#
|
2188
|
-
# * `5.6.
|
2181
|
+
# * `5.6.29` (supported in all AWS Regions)
|
2189
2182
|
#
|
2190
|
-
# * `5.6.
|
2191
|
-
#
|
2192
|
-
# * `5.6.27` (supported in all regions except us-east-2, ca-central-1,
|
2193
|
-
# eu-west-2)
|
2183
|
+
# * `5.6.27` (supported in all AWS Regions except us-east-2,
|
2184
|
+
# ca-central-1, eu-west-2)
|
2194
2185
|
#
|
2195
2186
|
#
|
2196
2187
|
#
|
2197
|
-
# * `5.5.57` (supported in all AWS
|
2188
|
+
# * `5.5.57` (supported in all AWS Regions)
|
2198
2189
|
#
|
2199
|
-
# * `5.5.54` (supported in all AWS
|
2190
|
+
# * `5.5.54` (supported in all AWS Regions)
|
2200
2191
|
#
|
2201
|
-
# * `5.5.53` (supported in all AWS
|
2192
|
+
# * `5.5.53` (supported in all AWS Regions)
|
2202
2193
|
#
|
2203
|
-
# * `5.5.46` (supported in all AWS
|
2194
|
+
# * `5.5.46` (supported in all AWS Regions)
|
2204
2195
|
#
|
2205
2196
|
# **Oracle 12c**
|
2206
2197
|
#
|
@@ -2284,12 +2275,18 @@ module Aws::RDS
|
|
2284
2275
|
#
|
2285
2276
|
# @!attribute [rw] iops
|
2286
2277
|
# The amount of Provisioned IOPS (input/output operations per second)
|
2287
|
-
# to be initially allocated for the DB instance.
|
2278
|
+
# to be initially allocated for the DB instance. For information about
|
2279
|
+
# valid Iops values, see see [Amazon RDS Provisioned IOPS Storage to
|
2280
|
+
# Improve Performance][1].
|
2288
2281
|
#
|
2289
2282
|
# Constraints: Must be a multiple between 3 and 10 of the storage
|
2290
2283
|
# amount for the DB instance. Must also be an integer multiple of
|
2291
2284
|
# 1000. For example, if the size of your DB instance is 500 GB, then
|
2292
2285
|
# your `Iops` value can be 2000, 3000, 4000, or 5000.
|
2286
|
+
#
|
2287
|
+
#
|
2288
|
+
#
|
2289
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
2293
2290
|
# @return [Integer]
|
2294
2291
|
#
|
2295
2292
|
# @!attribute [rw] option_group_name
|
@@ -2297,8 +2294,8 @@ module Aws::RDS
|
|
2297
2294
|
# specified option group.
|
2298
2295
|
#
|
2299
2296
|
# Permanent options, such as the TDE option for Oracle Advanced
|
2300
|
-
# Security TDE,
|
2301
|
-
# option group
|
2297
|
+
# Security TDE, can't be removed from an option group, and that
|
2298
|
+
# option group can't be removed from a DB instance once it is
|
2302
2299
|
# associated with a DB instance
|
2303
2300
|
# @return [String]
|
2304
2301
|
#
|
@@ -2335,7 +2332,12 @@ module Aws::RDS
|
|
2335
2332
|
# @return [Boolean]
|
2336
2333
|
#
|
2337
2334
|
# @!attribute [rw] tags
|
2338
|
-
# A list of tags.
|
2335
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
2336
|
+
# Resources][1].
|
2337
|
+
#
|
2338
|
+
#
|
2339
|
+
#
|
2340
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
2339
2341
|
# @return [Array<Types::Tag>]
|
2340
2342
|
#
|
2341
2343
|
# @!attribute [rw] db_cluster_identifier
|
@@ -2354,17 +2356,17 @@ module Aws::RDS
|
|
2354
2356
|
# If you specify `io1`, you must also include a value for the `Iops`
|
2355
2357
|
# parameter.
|
2356
2358
|
#
|
2357
|
-
# Default: `io1` if the `Iops` parameter is specified
|
2359
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
2358
2360
|
# `standard`
|
2359
2361
|
# @return [String]
|
2360
2362
|
#
|
2361
2363
|
# @!attribute [rw] tde_credential_arn
|
2362
|
-
# The ARN from the
|
2364
|
+
# The ARN from the key store with which to associate the instance for
|
2363
2365
|
# TDE encryption.
|
2364
2366
|
# @return [String]
|
2365
2367
|
#
|
2366
2368
|
# @!attribute [rw] tde_credential_password
|
2367
|
-
# The password for the given ARN from the
|
2369
|
+
# The password for the given ARN from the key store in order to access
|
2368
2370
|
# the device.
|
2369
2371
|
# @return [String]
|
2370
2372
|
#
|
@@ -2380,7 +2382,7 @@ module Aws::RDS
|
|
2380
2382
|
# @return [Boolean]
|
2381
2383
|
#
|
2382
2384
|
# @!attribute [rw] kms_key_id
|
2383
|
-
# The KMS key identifier for an encrypted DB instance.
|
2385
|
+
# The AWS KMS key identifier for an encrypted DB instance.
|
2384
2386
|
#
|
2385
2387
|
# The KMS key identifier is the Amazon Resource Name (ARN) for the KMS
|
2386
2388
|
# encryption key. If you are creating a DB instance with the same AWS
|
@@ -2406,7 +2408,7 @@ module Aws::RDS
|
|
2406
2408
|
#
|
2407
2409
|
# @!attribute [rw] copy_tags_to_snapshot
|
2408
2410
|
# True to copy all tags from the DB instance to snapshots of the DB
|
2409
|
-
# instance
|
2411
|
+
# instance, and otherwise false. The default is false.
|
2410
2412
|
# @return [Boolean]
|
2411
2413
|
#
|
2412
2414
|
# @!attribute [rw] monitoring_interval
|
@@ -2422,7 +2424,7 @@ module Aws::RDS
|
|
2422
2424
|
#
|
2423
2425
|
# @!attribute [rw] monitoring_role_arn
|
2424
2426
|
# The ARN for the IAM role that permits RDS to send enhanced
|
2425
|
-
# monitoring metrics to CloudWatch Logs. For example,
|
2427
|
+
# monitoring metrics to Amazon CloudWatch Logs. For example,
|
2426
2428
|
# `arn:aws:iam:123456789012:role/emaccess`. For information on
|
2427
2429
|
# creating a monitoring role, go to [Setting Up and Enabling Enhanced
|
2428
2430
|
# Monitoring][1].
|
@@ -2466,7 +2468,7 @@ module Aws::RDS
|
|
2466
2468
|
#
|
2467
2469
|
# @!attribute [rw] enable_iam_database_authentication
|
2468
2470
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
2469
|
-
# accounts to database accounts
|
2471
|
+
# accounts to database accounts, and otherwise false.
|
2470
2472
|
#
|
2471
2473
|
# You can enable IAM database authentication for the following
|
2472
2474
|
# database engines:
|
@@ -2487,13 +2489,13 @@ module Aws::RDS
|
|
2487
2489
|
# @return [Boolean]
|
2488
2490
|
#
|
2489
2491
|
# @!attribute [rw] enable_performance_insights
|
2490
|
-
# True to enable Performance Insights for the DB instance
|
2491
|
-
# false.
|
2492
|
+
# True to enable Performance Insights for the DB instance, and
|
2493
|
+
# otherwise false.
|
2492
2494
|
# @return [Boolean]
|
2493
2495
|
#
|
2494
2496
|
# @!attribute [rw] performance_insights_kms_key_id
|
2495
|
-
# The KMS key identifier for encryption of Performance Insights
|
2496
|
-
# The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
2497
|
+
# The AWS KMS key identifier for encryption of Performance Insights
|
2498
|
+
# data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
2497
2499
|
# identifier, or the KMS key alias for the KMS encryption key.
|
2498
2500
|
# @return [String]
|
2499
2501
|
#
|
@@ -2597,7 +2599,7 @@ module Aws::RDS
|
|
2597
2599
|
#
|
2598
2600
|
# * Can specify a DB instance that is a PostgreSQL DB instance only if
|
2599
2601
|
# the source is running PostgreSQL 9.3.5 or later (9.4.7 and higher
|
2600
|
-
# for cross
|
2602
|
+
# for cross-region replication).
|
2601
2603
|
#
|
2602
2604
|
# * The specified DB instance must have automatic backups enabled, its
|
2603
2605
|
# backup retention period must be greater than 0.
|
@@ -2617,8 +2619,8 @@ module Aws::RDS
|
|
2617
2619
|
#
|
2618
2620
|
# @!attribute [rw] db_instance_class
|
2619
2621
|
# The compute and memory capacity of the Read Replica, for example,
|
2620
|
-
# `db.m4.large`. Not all DB instance classes are available in all
|
2621
|
-
#
|
2622
|
+
# `db.m4.large`. Not all DB instance classes are available in all AWS
|
2623
|
+
# Regions, or for all database engines. For the full list of DB
|
2622
2624
|
# instance classes, and availability for your engine, see [DB Instance
|
2623
2625
|
# Class][1] in the Amazon RDS User Guide.
|
2624
2626
|
#
|
@@ -2687,7 +2689,12 @@ module Aws::RDS
|
|
2687
2689
|
# @return [Boolean]
|
2688
2690
|
#
|
2689
2691
|
# @!attribute [rw] tags
|
2690
|
-
# A list of tags.
|
2692
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
2693
|
+
# Resources][1].
|
2694
|
+
#
|
2695
|
+
#
|
2696
|
+
#
|
2697
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
2691
2698
|
# @return [Array<Types::Tag>]
|
2692
2699
|
#
|
2693
2700
|
# @!attribute [rw] db_subnet_group_name
|
@@ -2726,13 +2733,13 @@ module Aws::RDS
|
|
2726
2733
|
# If you specify `io1`, you must also include a value for the `Iops`
|
2727
2734
|
# parameter.
|
2728
2735
|
#
|
2729
|
-
# Default: `io1` if the `Iops` parameter is specified
|
2736
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
2730
2737
|
# `standard`
|
2731
2738
|
# @return [String]
|
2732
2739
|
#
|
2733
2740
|
# @!attribute [rw] copy_tags_to_snapshot
|
2734
2741
|
# True to copy all tags from the Read Replica to snapshots of the Read
|
2735
|
-
# Replica
|
2742
|
+
# Replica, and otherwise false. The default is false.
|
2736
2743
|
# @return [Boolean]
|
2737
2744
|
#
|
2738
2745
|
# @!attribute [rw] monitoring_interval
|
@@ -2748,7 +2755,7 @@ module Aws::RDS
|
|
2748
2755
|
#
|
2749
2756
|
# @!attribute [rw] monitoring_role_arn
|
2750
2757
|
# The ARN for the IAM role that permits RDS to send enhanced
|
2751
|
-
# monitoring metrics to CloudWatch Logs. For example,
|
2758
|
+
# monitoring metrics to Amazon CloudWatch Logs. For example,
|
2752
2759
|
# `arn:aws:iam:123456789012:role/emaccess`. For information on
|
2753
2760
|
# creating a monitoring role, go to [To create an IAM role for Amazon
|
2754
2761
|
# RDS Enhanced Monitoring][1].
|
@@ -2777,7 +2784,7 @@ module Aws::RDS
|
|
2777
2784
|
# If you create an encrypted Read Replica in a different AWS Region,
|
2778
2785
|
# then you must specify a KMS key for the destination AWS Region. KMS
|
2779
2786
|
# encryption keys are specific to the AWS Region that they are created
|
2780
|
-
# in, and you
|
2787
|
+
# in, and you can't use encryption keys from one AWS Region in
|
2781
2788
|
# another AWS Region.
|
2782
2789
|
# @return [String]
|
2783
2790
|
#
|
@@ -2788,9 +2795,9 @@ module Aws::RDS
|
|
2788
2795
|
#
|
2789
2796
|
# You must specify this parameter when you create an encrypted Read
|
2790
2797
|
# Replica from another AWS Region by using the Amazon RDS API. You can
|
2791
|
-
# specify the source
|
2792
|
-
# create an encrypted Read Replica from another AWS Region by
|
2793
|
-
# the AWS CLI.
|
2798
|
+
# specify the `--source-region` option instead of this parameter when
|
2799
|
+
# you create an encrypted Read Replica from another AWS Region by
|
2800
|
+
# using the AWS CLI.
|
2794
2801
|
#
|
2795
2802
|
# The presigned URL must be a valid request for the
|
2796
2803
|
# `CreateDBInstanceReadReplica` API action that can be executed in the
|
@@ -2804,24 +2811,24 @@ module Aws::RDS
|
|
2804
2811
|
# presigned URL.
|
2805
2812
|
#
|
2806
2813
|
# For example, if you create an encrypted DB instance in the
|
2807
|
-
# us-west-1
|
2808
|
-
#
|
2809
|
-
# the us-east-1
|
2810
|
-
# call to the `CreateDBInstanceReadReplica` action in the
|
2811
|
-
#
|
2812
|
-
# URL must be set to the us-east-1
|
2813
|
-
#
|
2814
|
-
# * `KmsKeyId` - The KMS key identifier for the key to use to
|
2815
|
-
# the Read Replica in the destination AWS Region. This is
|
2816
|
-
# identifier for both the `CreateDBInstanceReadReplica`
|
2817
|
-
# is called in the destination AWS Region, and the
|
2818
|
-
# in the presigned URL.
|
2814
|
+
# us-west-1 AWS Region, from a source DB instance in the us-east-2
|
2815
|
+
# AWS Region, then you call the `CreateDBInstanceReadReplica` action
|
2816
|
+
# in the us-east-1 AWS Region and provide a presigned URL that
|
2817
|
+
# contains a call to the `CreateDBInstanceReadReplica` action in the
|
2818
|
+
# us-west-2 AWS Region. For this example, the `DestinationRegion` in
|
2819
|
+
# the presigned URL must be set to the us-east-1 AWS Region.
|
2820
|
+
#
|
2821
|
+
# * `KmsKeyId` - The AWS KMS key identifier for the key to use to
|
2822
|
+
# encrypt the Read Replica in the destination AWS Region. This is
|
2823
|
+
# the same identifier for both the `CreateDBInstanceReadReplica`
|
2824
|
+
# action that is called in the destination AWS Region, and the
|
2825
|
+
# action contained in the presigned URL.
|
2819
2826
|
#
|
2820
2827
|
# * `SourceDBInstanceIdentifier` - The DB instance identifier for the
|
2821
2828
|
# encrypted DB instance to be replicated. This identifier must be in
|
2822
2829
|
# the Amazon Resource Name (ARN) format for the source AWS Region.
|
2823
2830
|
# For example, if you are creating an encrypted Read Replica from a
|
2824
|
-
# DB instance in the us-west-2
|
2831
|
+
# DB instance in the us-west-2 AWS Region, then your
|
2825
2832
|
# `SourceDBInstanceIdentifier` looks like the following example:
|
2826
2833
|
# `arn:aws:rds:us-west-2:123456789012:instance:mysql-instance1-20161115`.
|
2827
2834
|
#
|
@@ -2837,7 +2844,7 @@ module Aws::RDS
|
|
2837
2844
|
#
|
2838
2845
|
# @!attribute [rw] enable_iam_database_authentication
|
2839
2846
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
2840
|
-
# accounts to database accounts
|
2847
|
+
# accounts to database accounts, and otherwise false.
|
2841
2848
|
#
|
2842
2849
|
# You can enable IAM database authentication for the following
|
2843
2850
|
# database engines
|
@@ -2852,13 +2859,13 @@ module Aws::RDS
|
|
2852
2859
|
# @return [Boolean]
|
2853
2860
|
#
|
2854
2861
|
# @!attribute [rw] enable_performance_insights
|
2855
|
-
# True to enable Performance Insights for the read replica
|
2856
|
-
# false.
|
2862
|
+
# True to enable Performance Insights for the read replica, and
|
2863
|
+
# otherwise false.
|
2857
2864
|
# @return [Boolean]
|
2858
2865
|
#
|
2859
2866
|
# @!attribute [rw] performance_insights_kms_key_id
|
2860
|
-
# The KMS key identifier for encryption of Performance Insights
|
2861
|
-
# The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
2867
|
+
# The AWS KMS key identifier for encryption of Performance Insights
|
2868
|
+
# data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
2862
2869
|
# identifier, or the KMS key alias for the KMS encryption key.
|
2863
2870
|
# @return [String]
|
2864
2871
|
#
|
@@ -2899,18 +2906,7 @@ module Aws::RDS
|
|
2899
2906
|
end
|
2900
2907
|
|
2901
2908
|
# @!attribute [rw] db_instance
|
2902
|
-
# Contains the
|
2903
|
-
# actions:
|
2904
|
-
#
|
2905
|
-
# * CreateDBInstance
|
2906
|
-
#
|
2907
|
-
# * DeleteDBInstance
|
2908
|
-
#
|
2909
|
-
# * ModifyDBInstance
|
2910
|
-
#
|
2911
|
-
# * StopDBInstance
|
2912
|
-
#
|
2913
|
-
# * StartDBInstance
|
2909
|
+
# Contains the details of an Amazon RDS DB instance.
|
2914
2910
|
#
|
2915
2911
|
# This data type is used as a response element in the
|
2916
2912
|
# DescribeDBInstances action.
|
@@ -2924,18 +2920,7 @@ module Aws::RDS
|
|
2924
2920
|
end
|
2925
2921
|
|
2926
2922
|
# @!attribute [rw] db_instance
|
2927
|
-
# Contains the
|
2928
|
-
# actions:
|
2929
|
-
#
|
2930
|
-
# * CreateDBInstance
|
2931
|
-
#
|
2932
|
-
# * DeleteDBInstance
|
2933
|
-
#
|
2934
|
-
# * ModifyDBInstance
|
2935
|
-
#
|
2936
|
-
# * StopDBInstance
|
2937
|
-
#
|
2938
|
-
# * StartDBInstance
|
2923
|
+
# Contains the details of an Amazon RDS DB instance.
|
2939
2924
|
#
|
2940
2925
|
# This data type is used as a response element in the
|
2941
2926
|
# DescribeDBInstances action.
|
@@ -2991,7 +2976,12 @@ module Aws::RDS
|
|
2991
2976
|
# @return [String]
|
2992
2977
|
#
|
2993
2978
|
# @!attribute [rw] tags
|
2994
|
-
# A list of tags.
|
2979
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
2980
|
+
# Resources][1].
|
2981
|
+
#
|
2982
|
+
#
|
2983
|
+
#
|
2984
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
2995
2985
|
# @return [Array<Types::Tag>]
|
2996
2986
|
#
|
2997
2987
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBParameterGroupMessage AWS API Documentation
|
@@ -3005,11 +2995,9 @@ module Aws::RDS
|
|
3005
2995
|
end
|
3006
2996
|
|
3007
2997
|
# @!attribute [rw] db_parameter_group
|
3008
|
-
# Contains the
|
3009
|
-
# CreateDBParameterGroup action.
|
2998
|
+
# Contains the details of an Amazon RDS DB parameter group.
|
3010
2999
|
#
|
3011
|
-
# This data type is used as a
|
3012
|
-
# DeleteDBParameterGroup action, and as a response element in the
|
3000
|
+
# This data type is used as a response element in the
|
3013
3001
|
# DescribeDBParameterGroups action.
|
3014
3002
|
# @return [Types::DBParameterGroup]
|
3015
3003
|
#
|
@@ -3056,7 +3044,12 @@ module Aws::RDS
|
|
3056
3044
|
# @return [String]
|
3057
3045
|
#
|
3058
3046
|
# @!attribute [rw] tags
|
3059
|
-
# A list of tags.
|
3047
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
3048
|
+
# Resources][1].
|
3049
|
+
#
|
3050
|
+
#
|
3051
|
+
#
|
3052
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
3060
3053
|
# @return [Array<Types::Tag>]
|
3061
3054
|
#
|
3062
3055
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSecurityGroupMessage AWS API Documentation
|
@@ -3069,16 +3062,7 @@ module Aws::RDS
|
|
3069
3062
|
end
|
3070
3063
|
|
3071
3064
|
# @!attribute [rw] db_security_group
|
3072
|
-
# Contains the
|
3073
|
-
# actions:
|
3074
|
-
#
|
3075
|
-
# * DescribeDBSecurityGroups
|
3076
|
-
#
|
3077
|
-
# * AuthorizeDBSecurityGroupIngress
|
3078
|
-
#
|
3079
|
-
# * CreateDBSecurityGroup
|
3080
|
-
#
|
3081
|
-
# * RevokeDBSecurityGroupIngress
|
3065
|
+
# Contains the details for an Amazon RDS DB security group.
|
3082
3066
|
#
|
3083
3067
|
# This data type is used as a response element in the
|
3084
3068
|
# DescribeDBSecurityGroups action.
|
@@ -3133,7 +3117,12 @@ module Aws::RDS
|
|
3133
3117
|
# @return [String]
|
3134
3118
|
#
|
3135
3119
|
# @!attribute [rw] tags
|
3136
|
-
# A list of tags.
|
3120
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
3121
|
+
# Resources][1].
|
3122
|
+
#
|
3123
|
+
#
|
3124
|
+
#
|
3125
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
3137
3126
|
# @return [Array<Types::Tag>]
|
3138
3127
|
#
|
3139
3128
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshotMessage AWS API Documentation
|
@@ -3146,12 +3135,7 @@ module Aws::RDS
|
|
3146
3135
|
end
|
3147
3136
|
|
3148
3137
|
# @!attribute [rw] db_snapshot
|
3149
|
-
# Contains the
|
3150
|
-
# actions:
|
3151
|
-
#
|
3152
|
-
# * CreateDBSnapshot
|
3153
|
-
#
|
3154
|
-
# * DeleteDBSnapshot
|
3138
|
+
# Contains the details of an Amazon RDS DB snapshot.
|
3155
3139
|
#
|
3156
3140
|
# This data type is used as a response element in the
|
3157
3141
|
# DescribeDBSnapshots action.
|
@@ -3198,7 +3182,12 @@ module Aws::RDS
|
|
3198
3182
|
# @return [Array<String>]
|
3199
3183
|
#
|
3200
3184
|
# @!attribute [rw] tags
|
3201
|
-
# A list of tags.
|
3185
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
3186
|
+
# Resources][1].
|
3187
|
+
#
|
3188
|
+
#
|
3189
|
+
#
|
3190
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
3202
3191
|
# @return [Array<Types::Tag>]
|
3203
3192
|
#
|
3204
3193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSubnetGroupMessage AWS API Documentation
|
@@ -3212,16 +3201,7 @@ module Aws::RDS
|
|
3212
3201
|
end
|
3213
3202
|
|
3214
3203
|
# @!attribute [rw] db_subnet_group
|
3215
|
-
# Contains the
|
3216
|
-
# actions:
|
3217
|
-
#
|
3218
|
-
# * CreateDBSubnetGroup
|
3219
|
-
#
|
3220
|
-
# * ModifyDBSubnetGroup
|
3221
|
-
#
|
3222
|
-
# * DescribeDBSubnetGroups
|
3223
|
-
#
|
3224
|
-
# * DeleteDBSubnetGroup
|
3204
|
+
# Contains the details of an Amazon RDS DB subnet group.
|
3225
3205
|
#
|
3226
3206
|
# This data type is used as a response element in the
|
3227
3207
|
# DescribeDBSubnetGroups action.
|
@@ -3289,7 +3269,7 @@ module Aws::RDS
|
|
3289
3269
|
# The list of identifiers of the event sources for which events are
|
3290
3270
|
# returned. If not specified, then all sources are included in the
|
3291
3271
|
# response. An identifier must begin with a letter and must contain
|
3292
|
-
# only ASCII letters, digits, and hyphens; it
|
3272
|
+
# only ASCII letters, digits, and hyphens; it can't end with a hyphen
|
3293
3273
|
# or contain two consecutive hyphens.
|
3294
3274
|
#
|
3295
3275
|
# Constraints:
|
@@ -3315,7 +3295,12 @@ module Aws::RDS
|
|
3315
3295
|
# @return [Boolean]
|
3316
3296
|
#
|
3317
3297
|
# @!attribute [rw] tags
|
3318
|
-
# A list of tags.
|
3298
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
3299
|
+
# Resources][1].
|
3300
|
+
#
|
3301
|
+
#
|
3302
|
+
#
|
3303
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
3319
3304
|
# @return [Array<Types::Tag>]
|
3320
3305
|
#
|
3321
3306
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateEventSubscriptionMessage AWS API Documentation
|
@@ -3388,7 +3373,12 @@ module Aws::RDS
|
|
3388
3373
|
# @return [String]
|
3389
3374
|
#
|
3390
3375
|
# @!attribute [rw] tags
|
3391
|
-
# A list of tags.
|
3376
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
3377
|
+
# Resources][1].
|
3378
|
+
#
|
3379
|
+
#
|
3380
|
+
#
|
3381
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
3392
3382
|
# @return [Array<Types::Tag>]
|
3393
3383
|
#
|
3394
3384
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateOptionGroupMessage AWS API Documentation
|
@@ -3412,20 +3402,7 @@ module Aws::RDS
|
|
3412
3402
|
include Aws::Structure
|
3413
3403
|
end
|
3414
3404
|
|
3415
|
-
# Contains the
|
3416
|
-
# actions:
|
3417
|
-
#
|
3418
|
-
# * CreateDBCluster
|
3419
|
-
#
|
3420
|
-
# * DeleteDBCluster
|
3421
|
-
#
|
3422
|
-
# * FailoverDBCluster
|
3423
|
-
#
|
3424
|
-
# * ModifyDBCluster
|
3425
|
-
#
|
3426
|
-
# * RestoreDBClusterFromSnapshot
|
3427
|
-
#
|
3428
|
-
# * RestoreDBClusterToPointInTime
|
3405
|
+
# Contains the details of an Amazon RDS DB cluster.
|
3429
3406
|
#
|
3430
3407
|
# This data type is used as a response element in the DescribeDBClusters
|
3431
3408
|
# action.
|
@@ -3581,14 +3558,14 @@ module Aws::RDS
|
|
3581
3558
|
# @return [Boolean]
|
3582
3559
|
#
|
3583
3560
|
# @!attribute [rw] kms_key_id
|
3584
|
-
# If `StorageEncrypted` is true, the KMS key identifier for the
|
3561
|
+
# If `StorageEncrypted` is true, the AWS KMS key identifier for the
|
3585
3562
|
# encrypted DB cluster.
|
3586
3563
|
# @return [String]
|
3587
3564
|
#
|
3588
3565
|
# @!attribute [rw] db_cluster_resource_id
|
3589
|
-
# The
|
3590
|
-
# identifier is found in AWS CloudTrail log entries whenever the
|
3591
|
-
# key for the DB cluster is accessed.
|
3566
|
+
# The AWS Region-unique, immutable identifier for the DB cluster. This
|
3567
|
+
# identifier is found in AWS CloudTrail log entries whenever the AWS
|
3568
|
+
# KMS key for the DB cluster is accessed.
|
3592
3569
|
# @return [String]
|
3593
3570
|
#
|
3594
3571
|
# @!attribute [rw] db_cluster_arn
|
@@ -3604,7 +3581,7 @@ module Aws::RDS
|
|
3604
3581
|
#
|
3605
3582
|
# @!attribute [rw] iam_database_authentication_enabled
|
3606
3583
|
# True if mapping of AWS Identity and Access Management (IAM) accounts
|
3607
|
-
# to database accounts is enabled
|
3584
|
+
# to database accounts is enabled, and otherwise false.
|
3608
3585
|
# @return [Boolean]
|
3609
3586
|
#
|
3610
3587
|
# @!attribute [rw] clone_group_id
|
@@ -3732,11 +3709,9 @@ module Aws::RDS
|
|
3732
3709
|
include Aws::Structure
|
3733
3710
|
end
|
3734
3711
|
|
3735
|
-
# Contains the
|
3736
|
-
# CreateDBClusterParameterGroup or CopyDBClusterParameterGroup action.
|
3712
|
+
# Contains the details of an Amazon RDS DB cluster parameter group.
|
3737
3713
|
#
|
3738
|
-
# This data type is used as a
|
3739
|
-
# DeleteDBClusterParameterGroup action, and as a response element in the
|
3714
|
+
# This data type is used as a response element in the
|
3740
3715
|
# DescribeDBClusterParameterGroups action.
|
3741
3716
|
#
|
3742
3717
|
# @!attribute [rw] db_cluster_parameter_group_name
|
@@ -3862,12 +3837,7 @@ module Aws::RDS
|
|
3862
3837
|
include Aws::Structure
|
3863
3838
|
end
|
3864
3839
|
|
3865
|
-
# Contains the
|
3866
|
-
# actions:
|
3867
|
-
#
|
3868
|
-
# * CreateDBClusterSnapshot
|
3869
|
-
#
|
3870
|
-
# * DeleteDBClusterSnapshot
|
3840
|
+
# Contains the details for an Amazon RDS DB cluster snapshot
|
3871
3841
|
#
|
3872
3842
|
# This data type is used as a response element in the
|
3873
3843
|
# DescribeDBClusterSnapshots action.
|
@@ -3944,7 +3914,7 @@ module Aws::RDS
|
|
3944
3914
|
# @return [Boolean]
|
3945
3915
|
#
|
3946
3916
|
# @!attribute [rw] kms_key_id
|
3947
|
-
# If `StorageEncrypted` is true, the KMS key identifier for the
|
3917
|
+
# If `StorageEncrypted` is true, the AWS KMS key identifier for the
|
3948
3918
|
# encrypted DB cluster snapshot.
|
3949
3919
|
# @return [String]
|
3950
3920
|
#
|
@@ -3955,12 +3925,12 @@ module Aws::RDS
|
|
3955
3925
|
# @!attribute [rw] source_db_cluster_snapshot_arn
|
3956
3926
|
# If the DB cluster snapshot was copied from a source DB cluster
|
3957
3927
|
# snapshot, the Amazon Resource Name (ARN) for the source DB cluster
|
3958
|
-
# snapshot
|
3928
|
+
# snapshot, otherwise, a null value.
|
3959
3929
|
# @return [String]
|
3960
3930
|
#
|
3961
3931
|
# @!attribute [rw] iam_database_authentication_enabled
|
3962
3932
|
# True if mapping of AWS Identity and Access Management (IAM) accounts
|
3963
|
-
# to database accounts is enabled
|
3933
|
+
# to database accounts is enabled, and otherwise false.
|
3964
3934
|
# @return [Boolean]
|
3965
3935
|
#
|
3966
3936
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterSnapshot AWS API Documentation
|
@@ -4150,18 +4120,7 @@ module Aws::RDS
|
|
4150
4120
|
include Aws::Structure
|
4151
4121
|
end
|
4152
4122
|
|
4153
|
-
# Contains the
|
4154
|
-
# actions:
|
4155
|
-
#
|
4156
|
-
# * CreateDBInstance
|
4157
|
-
#
|
4158
|
-
# * DeleteDBInstance
|
4159
|
-
#
|
4160
|
-
# * ModifyDBInstance
|
4161
|
-
#
|
4162
|
-
# * StopDBInstance
|
4163
|
-
#
|
4164
|
-
# * StartDBInstance
|
4123
|
+
# Contains the details of an Amazon RDS DB instance.
|
4165
4124
|
#
|
4166
4125
|
# This data type is used as a response element in the
|
4167
4126
|
# DescribeDBInstances action.
|
@@ -4378,14 +4337,14 @@ module Aws::RDS
|
|
4378
4337
|
# @return [Boolean]
|
4379
4338
|
#
|
4380
4339
|
# @!attribute [rw] kms_key_id
|
4381
|
-
# If `StorageEncrypted` is true, the KMS key identifier for the
|
4340
|
+
# If `StorageEncrypted` is true, the AWS KMS key identifier for the
|
4382
4341
|
# encrypted DB instance.
|
4383
4342
|
# @return [String]
|
4384
4343
|
#
|
4385
4344
|
# @!attribute [rw] dbi_resource_id
|
4386
|
-
# The
|
4387
|
-
# identifier is found in AWS CloudTrail log entries whenever the
|
4388
|
-
# key for the DB instance is accessed.
|
4345
|
+
# The AWS Region-unique, immutable identifier for the DB instance.
|
4346
|
+
# This identifier is found in AWS CloudTrail log entries whenever the
|
4347
|
+
# AWS KMS key for the DB instance is accessed.
|
4389
4348
|
# @return [String]
|
4390
4349
|
#
|
4391
4350
|
# @!attribute [rw] ca_certificate_identifier
|
@@ -4415,7 +4374,7 @@ module Aws::RDS
|
|
4415
4374
|
#
|
4416
4375
|
# @!attribute [rw] monitoring_role_arn
|
4417
4376
|
# The ARN for the IAM role that permits RDS to send Enhanced
|
4418
|
-
# Monitoring metrics to CloudWatch Logs.
|
4377
|
+
# Monitoring metrics to Amazon CloudWatch Logs.
|
4419
4378
|
# @return [String]
|
4420
4379
|
#
|
4421
4380
|
# @!attribute [rw] promotion_tier
|
@@ -4441,7 +4400,7 @@ module Aws::RDS
|
|
4441
4400
|
#
|
4442
4401
|
# @!attribute [rw] iam_database_authentication_enabled
|
4443
4402
|
# True if mapping of AWS Identity and Access Management (IAM) accounts
|
4444
|
-
# to database accounts is enabled
|
4403
|
+
# to database accounts is enabled, and otherwise false.
|
4445
4404
|
#
|
4446
4405
|
# IAM database authentication can be enabled for the following
|
4447
4406
|
# database engines
|
@@ -4455,13 +4414,13 @@ module Aws::RDS
|
|
4455
4414
|
# @return [Boolean]
|
4456
4415
|
#
|
4457
4416
|
# @!attribute [rw] performance_insights_enabled
|
4458
|
-
# True if Performance Insights is enabled for the DB instance
|
4417
|
+
# True if Performance Insights is enabled for the DB instance, and
|
4459
4418
|
# otherwise false.
|
4460
4419
|
# @return [Boolean]
|
4461
4420
|
#
|
4462
4421
|
# @!attribute [rw] performance_insights_kms_key_id
|
4463
|
-
# The KMS key identifier for encryption of Performance Insights
|
4464
|
-
# The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
4422
|
+
# The AWS KMS key identifier for encryption of Performance Insights
|
4423
|
+
# data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
4465
4424
|
# identifier, or the KMS key alias for the KMS encryption key.
|
4466
4425
|
# @return [String]
|
4467
4426
|
#
|
@@ -4574,11 +4533,9 @@ module Aws::RDS
|
|
4574
4533
|
include Aws::Structure
|
4575
4534
|
end
|
4576
4535
|
|
4577
|
-
# Contains the
|
4578
|
-
# CreateDBParameterGroup action.
|
4536
|
+
# Contains the details of an Amazon RDS DB parameter group.
|
4579
4537
|
#
|
4580
|
-
# This data type is used as a
|
4581
|
-
# DeleteDBParameterGroup action, and as a response element in the
|
4538
|
+
# This data type is used as a response element in the
|
4582
4539
|
# DescribeDBParameterGroups action.
|
4583
4540
|
#
|
4584
4541
|
# @!attribute [rw] db_parameter_group_name
|
@@ -4697,16 +4654,7 @@ module Aws::RDS
|
|
4697
4654
|
include Aws::Structure
|
4698
4655
|
end
|
4699
4656
|
|
4700
|
-
# Contains the
|
4701
|
-
# actions:
|
4702
|
-
#
|
4703
|
-
# * DescribeDBSecurityGroups
|
4704
|
-
#
|
4705
|
-
# * AuthorizeDBSecurityGroupIngress
|
4706
|
-
#
|
4707
|
-
# * CreateDBSecurityGroup
|
4708
|
-
#
|
4709
|
-
# * RevokeDBSecurityGroupIngress
|
4657
|
+
# Contains the details for an Amazon RDS DB security group.
|
4710
4658
|
#
|
4711
4659
|
# This data type is used as a response element in the
|
4712
4660
|
# DescribeDBSecurityGroups action.
|
@@ -4799,12 +4747,7 @@ module Aws::RDS
|
|
4799
4747
|
include Aws::Structure
|
4800
4748
|
end
|
4801
4749
|
|
4802
|
-
# Contains the
|
4803
|
-
# actions:
|
4804
|
-
#
|
4805
|
-
# * CreateDBSnapshot
|
4806
|
-
#
|
4807
|
-
# * DeleteDBSnapshot
|
4750
|
+
# Contains the details of an Amazon RDS DB snapshot.
|
4808
4751
|
#
|
4809
4752
|
# This data type is used as a response element in the
|
4810
4753
|
# DescribeDBSnapshots action.
|
@@ -4907,8 +4850,8 @@ module Aws::RDS
|
|
4907
4850
|
# @return [Boolean]
|
4908
4851
|
#
|
4909
4852
|
# @!attribute [rw] kms_key_id
|
4910
|
-
# If `Encrypted` is true, the KMS key identifier for the encrypted
|
4911
|
-
# snapshot.
|
4853
|
+
# If `Encrypted` is true, the AWS KMS key identifier for the encrypted
|
4854
|
+
# DB snapshot.
|
4912
4855
|
# @return [String]
|
4913
4856
|
#
|
4914
4857
|
# @!attribute [rw] db_snapshot_arn
|
@@ -4924,7 +4867,7 @@ module Aws::RDS
|
|
4924
4867
|
#
|
4925
4868
|
# @!attribute [rw] iam_database_authentication_enabled
|
4926
4869
|
# True if mapping of AWS Identity and Access Management (IAM) accounts
|
4927
|
-
# to database accounts is enabled
|
4870
|
+
# to database accounts is enabled, and otherwise false.
|
4928
4871
|
# @return [Boolean]
|
4929
4872
|
#
|
4930
4873
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
|
@@ -5037,16 +4980,7 @@ module Aws::RDS
|
|
5037
4980
|
include Aws::Structure
|
5038
4981
|
end
|
5039
4982
|
|
5040
|
-
# Contains the
|
5041
|
-
# actions:
|
5042
|
-
#
|
5043
|
-
# * CreateDBSubnetGroup
|
5044
|
-
#
|
5045
|
-
# * ModifyDBSubnetGroup
|
5046
|
-
#
|
5047
|
-
# * DescribeDBSubnetGroups
|
5048
|
-
#
|
5049
|
-
# * DeleteDBSubnetGroup
|
4983
|
+
# Contains the details of an Amazon RDS DB subnet group.
|
5050
4984
|
#
|
5051
4985
|
# This data type is used as a response element in the
|
5052
4986
|
# DescribeDBSubnetGroups action.
|
@@ -5183,7 +5117,7 @@ module Aws::RDS
|
|
5183
5117
|
#
|
5184
5118
|
# * Must be the name of an existing DB cluster parameter group.
|
5185
5119
|
#
|
5186
|
-
# * You
|
5120
|
+
# * You can't delete a default DB cluster parameter group.
|
5187
5121
|
#
|
5188
5122
|
# * Cannot be associated with any DB clusters.
|
5189
5123
|
# @return [String]
|
@@ -5196,20 +5130,7 @@ module Aws::RDS
|
|
5196
5130
|
end
|
5197
5131
|
|
5198
5132
|
# @!attribute [rw] db_cluster
|
5199
|
-
# Contains the
|
5200
|
-
# actions:
|
5201
|
-
#
|
5202
|
-
# * CreateDBCluster
|
5203
|
-
#
|
5204
|
-
# * DeleteDBCluster
|
5205
|
-
#
|
5206
|
-
# * FailoverDBCluster
|
5207
|
-
#
|
5208
|
-
# * ModifyDBCluster
|
5209
|
-
#
|
5210
|
-
# * RestoreDBClusterFromSnapshot
|
5211
|
-
#
|
5212
|
-
# * RestoreDBClusterToPointInTime
|
5133
|
+
# Contains the details of an Amazon RDS DB cluster.
|
5213
5134
|
#
|
5214
5135
|
# This data type is used as a response element in the
|
5215
5136
|
# DescribeDBClusters action.
|
@@ -5244,12 +5165,7 @@ module Aws::RDS
|
|
5244
5165
|
end
|
5245
5166
|
|
5246
5167
|
# @!attribute [rw] db_cluster_snapshot
|
5247
|
-
# Contains the
|
5248
|
-
# actions:
|
5249
|
-
#
|
5250
|
-
# * CreateDBClusterSnapshot
|
5251
|
-
#
|
5252
|
-
# * DeleteDBClusterSnapshot
|
5168
|
+
# Contains the details for an Amazon RDS DB cluster snapshot
|
5253
5169
|
#
|
5254
5170
|
# This data type is used as a response element in the
|
5255
5171
|
# DescribeDBClusterSnapshots action.
|
@@ -5333,18 +5249,7 @@ module Aws::RDS
|
|
5333
5249
|
end
|
5334
5250
|
|
5335
5251
|
# @!attribute [rw] db_instance
|
5336
|
-
# Contains the
|
5337
|
-
# actions:
|
5338
|
-
#
|
5339
|
-
# * CreateDBInstance
|
5340
|
-
#
|
5341
|
-
# * DeleteDBInstance
|
5342
|
-
#
|
5343
|
-
# * ModifyDBInstance
|
5344
|
-
#
|
5345
|
-
# * StopDBInstance
|
5346
|
-
#
|
5347
|
-
# * StartDBInstance
|
5252
|
+
# Contains the details of an Amazon RDS DB instance.
|
5348
5253
|
#
|
5349
5254
|
# This data type is used as a response element in the
|
5350
5255
|
# DescribeDBInstances action.
|
@@ -5371,7 +5276,7 @@ module Aws::RDS
|
|
5371
5276
|
#
|
5372
5277
|
# * Must be the name of an existing DB parameter group
|
5373
5278
|
#
|
5374
|
-
# * You
|
5279
|
+
# * You can't delete a default DB parameter group
|
5375
5280
|
#
|
5376
5281
|
# * Cannot be associated with any DB instances
|
5377
5282
|
# @return [String]
|
@@ -5393,7 +5298,7 @@ module Aws::RDS
|
|
5393
5298
|
# @!attribute [rw] db_security_group_name
|
5394
5299
|
# The name of the DB security group to delete.
|
5395
5300
|
#
|
5396
|
-
# <note markdown="1"> You
|
5301
|
+
# <note markdown="1"> You can't delete the default DB security group.
|
5397
5302
|
#
|
5398
5303
|
# </note>
|
5399
5304
|
#
|
@@ -5437,12 +5342,7 @@ module Aws::RDS
|
|
5437
5342
|
end
|
5438
5343
|
|
5439
5344
|
# @!attribute [rw] db_snapshot
|
5440
|
-
# Contains the
|
5441
|
-
# actions:
|
5442
|
-
#
|
5443
|
-
# * CreateDBSnapshot
|
5444
|
-
#
|
5445
|
-
# * DeleteDBSnapshot
|
5345
|
+
# Contains the details of an Amazon RDS DB snapshot.
|
5446
5346
|
#
|
5447
5347
|
# This data type is used as a response element in the
|
5448
5348
|
# DescribeDBSnapshots action.
|
@@ -5465,7 +5365,7 @@ module Aws::RDS
|
|
5465
5365
|
# @!attribute [rw] db_subnet_group_name
|
5466
5366
|
# The name of the database subnet group to delete.
|
5467
5367
|
#
|
5468
|
-
# <note markdown="1"> You
|
5368
|
+
# <note markdown="1"> You can't delete the default subnet group.
|
5469
5369
|
#
|
5470
5370
|
# </note>
|
5471
5371
|
#
|
@@ -5525,7 +5425,7 @@ module Aws::RDS
|
|
5525
5425
|
# @!attribute [rw] option_group_name
|
5526
5426
|
# The name of the option group to be deleted.
|
5527
5427
|
#
|
5528
|
-
# <note markdown="1"> You
|
5428
|
+
# <note markdown="1"> You can't delete default option groups.
|
5529
5429
|
#
|
5530
5430
|
# </note>
|
5531
5431
|
# @return [String]
|
@@ -5784,7 +5684,7 @@ module Aws::RDS
|
|
5784
5684
|
#
|
5785
5685
|
# @!attribute [rw] db_cluster_identifier
|
5786
5686
|
# The ID of the DB cluster to retrieve the list of DB cluster
|
5787
|
-
# snapshots for. This parameter
|
5687
|
+
# snapshots for. This parameter can't be used in conjunction with the
|
5788
5688
|
# `DBClusterSnapshotIdentifier` parameter. This parameter is not
|
5789
5689
|
# case-sensitive.
|
5790
5690
|
#
|
@@ -5797,7 +5697,7 @@ module Aws::RDS
|
|
5797
5697
|
#
|
5798
5698
|
# @!attribute [rw] db_cluster_snapshot_identifier
|
5799
5699
|
# A specific DB cluster snapshot identifier to describe. This
|
5800
|
-
# parameter
|
5700
|
+
# parameter can't be used in conjunction with the
|
5801
5701
|
# `DBClusterIdentifier` parameter. This value is stored as a lowercase
|
5802
5702
|
# string.
|
5803
5703
|
#
|
@@ -5863,10 +5763,9 @@ module Aws::RDS
|
|
5863
5763
|
# @return [String]
|
5864
5764
|
#
|
5865
5765
|
# @!attribute [rw] include_shared
|
5866
|
-
#
|
5867
|
-
#
|
5868
|
-
#
|
5869
|
-
# `false`. The default is `false`.
|
5766
|
+
# True to include shared manual DB cluster snapshots from other AWS
|
5767
|
+
# accounts that this AWS account has been given permission to copy or
|
5768
|
+
# restore, and otherwise false. The default is `false`.
|
5870
5769
|
#
|
5871
5770
|
# You can give an AWS account permission to restore a manual DB
|
5872
5771
|
# cluster snapshot from another AWS account by the
|
@@ -5874,10 +5773,9 @@ module Aws::RDS
|
|
5874
5773
|
# @return [Boolean]
|
5875
5774
|
#
|
5876
5775
|
# @!attribute [rw] include_public
|
5877
|
-
#
|
5878
|
-
#
|
5879
|
-
#
|
5880
|
-
# default is false.
|
5776
|
+
# True to include manual DB cluster snapshots that are public and can
|
5777
|
+
# be copied or restored by any AWS account, and otherwise false. The
|
5778
|
+
# default is `false`. The default is false.
|
5881
5779
|
#
|
5882
5780
|
# You can share a manual DB cluster snapshot as public by using the
|
5883
5781
|
# ModifyDBClusterSnapshotAttribute API action.
|
@@ -6092,7 +5990,7 @@ module Aws::RDS
|
|
6092
5990
|
#
|
6093
5991
|
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
6094
5992
|
# Amazon Resource Names (ARNs). The results list will only include
|
6095
|
-
# information about the DB instances associated with the DB
|
5993
|
+
# information about the DB instances associated with the DB clusters
|
6096
5994
|
# identified by these ARNs.
|
6097
5995
|
#
|
6098
5996
|
# * `db-instance-id` - Accepts DB instance identifiers and DB instance
|
@@ -6475,7 +6373,7 @@ module Aws::RDS
|
|
6475
6373
|
#
|
6476
6374
|
# @!attribute [rw] db_instance_identifier
|
6477
6375
|
# The ID of the DB instance to retrieve the list of DB snapshots for.
|
6478
|
-
# This parameter
|
6376
|
+
# This parameter can't be used in conjunction with
|
6479
6377
|
# `DBSnapshotIdentifier`. This parameter is not case-sensitive.
|
6480
6378
|
#
|
6481
6379
|
# Constraints:
|
@@ -6486,7 +6384,7 @@ module Aws::RDS
|
|
6486
6384
|
# @return [String]
|
6487
6385
|
#
|
6488
6386
|
# @!attribute [rw] db_snapshot_identifier
|
6489
|
-
# A specific DB snapshot identifier to describe. This parameter
|
6387
|
+
# A specific DB snapshot identifier to describe. This parameter can't
|
6490
6388
|
# be used in conjunction with `DBInstanceIdentifier`. This value is
|
6491
6389
|
# stored as a lowercase string.
|
6492
6390
|
#
|
@@ -6551,10 +6449,9 @@ module Aws::RDS
|
|
6551
6449
|
# @return [String]
|
6552
6450
|
#
|
6553
6451
|
# @!attribute [rw] include_shared
|
6554
|
-
#
|
6555
|
-
#
|
6556
|
-
#
|
6557
|
-
# is `false`.
|
6452
|
+
# True to include shared manual DB snapshots from other AWS accounts
|
6453
|
+
# that this AWS account has been given permission to copy or restore,
|
6454
|
+
# and otherwise false. The default is `false`.
|
6558
6455
|
#
|
6559
6456
|
# You can give an AWS account permission to restore a manual DB
|
6560
6457
|
# snapshot from another AWS account by using the
|
@@ -6562,9 +6459,9 @@ module Aws::RDS
|
|
6562
6459
|
# @return [Boolean]
|
6563
6460
|
#
|
6564
6461
|
# @!attribute [rw] include_public
|
6565
|
-
#
|
6566
|
-
#
|
6567
|
-
#
|
6462
|
+
# True to include manual DB snapshots that are public and can be
|
6463
|
+
# copied or restored by any AWS account, and otherwise false. The
|
6464
|
+
# default is false.
|
6568
6465
|
#
|
6569
6466
|
# You can share a manual DB snapshot as public by using the
|
6570
6467
|
# ModifyDBSnapshotAttribute API.
|
@@ -7974,20 +7871,7 @@ module Aws::RDS
|
|
7974
7871
|
end
|
7975
7872
|
|
7976
7873
|
# @!attribute [rw] db_cluster
|
7977
|
-
# Contains the
|
7978
|
-
# actions:
|
7979
|
-
#
|
7980
|
-
# * CreateDBCluster
|
7981
|
-
#
|
7982
|
-
# * DeleteDBCluster
|
7983
|
-
#
|
7984
|
-
# * FailoverDBCluster
|
7985
|
-
#
|
7986
|
-
# * ModifyDBCluster
|
7987
|
-
#
|
7988
|
-
# * RestoreDBClusterFromSnapshot
|
7989
|
-
#
|
7990
|
-
# * RestoreDBClusterToPointInTime
|
7874
|
+
# Contains the details of an Amazon RDS DB cluster.
|
7991
7875
|
#
|
7992
7876
|
# This data type is used as a response element in the
|
7993
7877
|
# DescribeDBClusters action.
|
@@ -8191,8 +8075,8 @@ module Aws::RDS
|
|
8191
8075
|
# brief (sub-second) period during which new connections are rejected
|
8192
8076
|
# but existing connections are not interrupted.
|
8193
8077
|
#
|
8194
|
-
# Permanent options
|
8195
|
-
# group
|
8078
|
+
# Permanent options can't be removed from an option group. The option
|
8079
|
+
# group can't be removed from a DB cluster once it is associated with
|
8196
8080
|
# a DB cluster.
|
8197
8081
|
# @return [String]
|
8198
8082
|
#
|
@@ -8201,16 +8085,16 @@ module Aws::RDS
|
|
8201
8085
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
8202
8086
|
# parameter.
|
8203
8087
|
#
|
8204
|
-
#
|
8205
|
-
# of time
|
8206
|
-
# Adjusting the Preferred Maintenance Window][1] in the *Amazon
|
8207
|
-
# User Guide.*
|
8088
|
+
# The default is a 30-minute window selected at random from an 8-hour
|
8089
|
+
# block of time for each AWS Region. To see the time blocks available,
|
8090
|
+
# see [ Adjusting the Preferred Maintenance Window][1] in the *Amazon
|
8091
|
+
# RDS User Guide.*
|
8208
8092
|
#
|
8209
8093
|
# Constraints:
|
8210
8094
|
#
|
8211
8095
|
# * Must be in the format `hh24:mi-hh24:mi`.
|
8212
8096
|
#
|
8213
|
-
# *
|
8097
|
+
# * Must be in Universal Coordinated Time (UTC).
|
8214
8098
|
#
|
8215
8099
|
# * Must not conflict with the preferred maintenance window.
|
8216
8100
|
#
|
@@ -8227,12 +8111,12 @@ module Aws::RDS
|
|
8227
8111
|
#
|
8228
8112
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
8229
8113
|
#
|
8230
|
-
#
|
8231
|
-
# of time
|
8232
|
-
# see the time blocks available, see [ Adjusting the
|
8233
|
-
# Maintenance Window][1] in the *Amazon RDS User Guide.*
|
8114
|
+
# The default is a 30-minute window selected at random from an 8-hour
|
8115
|
+
# block of time for each AWS Region, occurring on a random day of the
|
8116
|
+
# week. To see the time blocks available, see [ Adjusting the
|
8117
|
+
# Preferred Maintenance Window][1] in the *Amazon RDS User Guide.*
|
8234
8118
|
#
|
8235
|
-
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
|
8119
|
+
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
8236
8120
|
#
|
8237
8121
|
# Constraints: Minimum 30-minute window.
|
8238
8122
|
#
|
@@ -8242,9 +8126,8 @@ module Aws::RDS
|
|
8242
8126
|
# @return [String]
|
8243
8127
|
#
|
8244
8128
|
# @!attribute [rw] enable_iam_database_authentication
|
8245
|
-
#
|
8246
|
-
#
|
8247
|
-
# false.
|
8129
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
8130
|
+
# accounts to database accounts, and otherwise false.
|
8248
8131
|
#
|
8249
8132
|
# Default: `false`
|
8250
8133
|
# @return [Boolean]
|
@@ -8305,20 +8188,7 @@ module Aws::RDS
|
|
8305
8188
|
end
|
8306
8189
|
|
8307
8190
|
# @!attribute [rw] db_cluster
|
8308
|
-
# Contains the
|
8309
|
-
# actions:
|
8310
|
-
#
|
8311
|
-
# * CreateDBCluster
|
8312
|
-
#
|
8313
|
-
# * DeleteDBCluster
|
8314
|
-
#
|
8315
|
-
# * FailoverDBCluster
|
8316
|
-
#
|
8317
|
-
# * ModifyDBCluster
|
8318
|
-
#
|
8319
|
-
# * RestoreDBClusterFromSnapshot
|
8320
|
-
#
|
8321
|
-
# * RestoreDBClusterToPointInTime
|
8191
|
+
# Contains the details of an Amazon RDS DB cluster.
|
8322
8192
|
#
|
8323
8193
|
# This data type is used as a response element in the
|
8324
8194
|
# DescribeDBClusters action.
|
@@ -8536,8 +8406,8 @@ module Aws::RDS
|
|
8536
8406
|
#
|
8537
8407
|
# @!attribute [rw] db_instance_class
|
8538
8408
|
# The new compute and memory capacity of the DB instance, for example,
|
8539
|
-
# `db.m4.large`. Not all DB instance classes are available in all
|
8540
|
-
#
|
8409
|
+
# `db.m4.large`. Not all DB instance classes are available in all AWS
|
8410
|
+
# Regions, or for all database engines. For the full list of DB
|
8541
8411
|
# instance classes, and availability for your engine, see [DB Instance
|
8542
8412
|
# Class][1] in the Amazon RDS User Guide.
|
8543
8413
|
#
|
@@ -8625,8 +8495,8 @@ module Aws::RDS
|
|
8625
8495
|
# @return [Boolean]
|
8626
8496
|
#
|
8627
8497
|
# @!attribute [rw] master_user_password
|
8628
|
-
# The new password for the master user.
|
8629
|
-
# character except "/", """, or "@".
|
8498
|
+
# The new password for the master user. The password can include any
|
8499
|
+
# printable ASCII character except "/", """, or "@".
|
8630
8500
|
#
|
8631
8501
|
# Changing this parameter does not result in an outage and the change
|
8632
8502
|
# is asynchronously applied as soon as possible. Between the time of
|
@@ -8734,7 +8604,7 @@ module Aws::RDS
|
|
8734
8604
|
#
|
8735
8605
|
# * Must be in the format hh24:mi-hh24:mi
|
8736
8606
|
#
|
8737
|
-
# *
|
8607
|
+
# * Must be in Universal Time Coordinated (UTC)
|
8738
8608
|
#
|
8739
8609
|
# * Must not conflict with the preferred maintenance window
|
8740
8610
|
#
|
@@ -8863,8 +8733,8 @@ module Aws::RDS
|
|
8863
8733
|
# but existing connections are not interrupted.
|
8864
8734
|
#
|
8865
8735
|
# Permanent options, such as the TDE option for Oracle Advanced
|
8866
|
-
# Security TDE,
|
8867
|
-
# option group
|
8736
|
+
# Security TDE, can't be removed from an option group, and that
|
8737
|
+
# option group can't be removed from a DB instance once it is
|
8868
8738
|
# associated with a DB instance
|
8869
8739
|
# @return [String]
|
8870
8740
|
#
|
@@ -8894,17 +8764,17 @@ module Aws::RDS
|
|
8894
8764
|
# If you specify `io1`, you must also include a value for the `Iops`
|
8895
8765
|
# parameter.
|
8896
8766
|
#
|
8897
|
-
# Default: `io1` if the `Iops` parameter is specified
|
8767
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
8898
8768
|
# `standard`
|
8899
8769
|
# @return [String]
|
8900
8770
|
#
|
8901
8771
|
# @!attribute [rw] tde_credential_arn
|
8902
|
-
# The ARN from the
|
8772
|
+
# The ARN from the key store with which to associate the instance for
|
8903
8773
|
# TDE encryption.
|
8904
8774
|
# @return [String]
|
8905
8775
|
#
|
8906
8776
|
# @!attribute [rw] tde_credential_password
|
8907
|
-
# The password for the given ARN from the
|
8777
|
+
# The password for the given ARN from the key store in order to access
|
8908
8778
|
# the device.
|
8909
8779
|
# @return [String]
|
8910
8780
|
#
|
@@ -8922,7 +8792,7 @@ module Aws::RDS
|
|
8922
8792
|
#
|
8923
8793
|
# @!attribute [rw] copy_tags_to_snapshot
|
8924
8794
|
# True to copy all tags from the DB instance to snapshots of the DB
|
8925
|
-
# instance
|
8795
|
+
# instance, and otherwise false. The default is false.
|
8926
8796
|
# @return [Boolean]
|
8927
8797
|
#
|
8928
8798
|
# @!attribute [rw] monitoring_interval
|
@@ -9006,7 +8876,7 @@ module Aws::RDS
|
|
9006
8876
|
#
|
9007
8877
|
# @!attribute [rw] monitoring_role_arn
|
9008
8878
|
# The ARN for the IAM role that permits RDS to send enhanced
|
9009
|
-
# monitoring metrics to CloudWatch Logs. For example,
|
8879
|
+
# monitoring metrics to Amazon CloudWatch Logs. For example,
|
9010
8880
|
# `arn:aws:iam:123456789012:role/emaccess`. For information on
|
9011
8881
|
# creating a monitoring role, go to [To create an IAM role for Amazon
|
9012
8882
|
# RDS Enhanced Monitoring][1].
|
@@ -9041,7 +8911,7 @@ module Aws::RDS
|
|
9041
8911
|
#
|
9042
8912
|
# @!attribute [rw] enable_iam_database_authentication
|
9043
8913
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
9044
|
-
# accounts to database accounts
|
8914
|
+
# accounts to database accounts, and otherwise false.
|
9045
8915
|
#
|
9046
8916
|
# You can enable IAM database authentication for the following
|
9047
8917
|
# database engines
|
@@ -9062,13 +8932,13 @@ module Aws::RDS
|
|
9062
8932
|
# @return [Boolean]
|
9063
8933
|
#
|
9064
8934
|
# @!attribute [rw] enable_performance_insights
|
9065
|
-
# True to enable Performance Insights for the DB instance
|
9066
|
-
# false.
|
8935
|
+
# True to enable Performance Insights for the DB instance, and
|
8936
|
+
# otherwise false.
|
9067
8937
|
# @return [Boolean]
|
9068
8938
|
#
|
9069
8939
|
# @!attribute [rw] performance_insights_kms_key_id
|
9070
|
-
# The KMS key identifier for encryption of Performance Insights
|
9071
|
-
# The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
8940
|
+
# The AWS KMS key identifier for encryption of Performance Insights
|
8941
|
+
# data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
9072
8942
|
# identifier, or the KMS key alias for the KMS encryption key.
|
9073
8943
|
# @return [String]
|
9074
8944
|
#
|
@@ -9114,18 +8984,7 @@ module Aws::RDS
|
|
9114
8984
|
end
|
9115
8985
|
|
9116
8986
|
# @!attribute [rw] db_instance
|
9117
|
-
# Contains the
|
9118
|
-
# actions:
|
9119
|
-
#
|
9120
|
-
# * CreateDBInstance
|
9121
|
-
#
|
9122
|
-
# * DeleteDBInstance
|
9123
|
-
#
|
9124
|
-
# * ModifyDBInstance
|
9125
|
-
#
|
9126
|
-
# * StopDBInstance
|
9127
|
-
#
|
9128
|
-
# * StartDBInstance
|
8987
|
+
# Contains the details of an Amazon RDS DB instance.
|
9129
8988
|
#
|
9130
8989
|
# This data type is used as a response element in the
|
9131
8990
|
# DescribeDBInstances action.
|
@@ -9322,12 +9181,7 @@ module Aws::RDS
|
|
9322
9181
|
end
|
9323
9182
|
|
9324
9183
|
# @!attribute [rw] db_snapshot
|
9325
|
-
# Contains the
|
9326
|
-
# actions:
|
9327
|
-
#
|
9328
|
-
# * CreateDBSnapshot
|
9329
|
-
#
|
9330
|
-
# * DeleteDBSnapshot
|
9184
|
+
# Contains the details of an Amazon RDS DB snapshot.
|
9331
9185
|
#
|
9332
9186
|
# This data type is used as a response element in the
|
9333
9187
|
# DescribeDBSnapshots action.
|
@@ -9377,16 +9231,7 @@ module Aws::RDS
|
|
9377
9231
|
end
|
9378
9232
|
|
9379
9233
|
# @!attribute [rw] db_subnet_group
|
9380
|
-
# Contains the
|
9381
|
-
# actions:
|
9382
|
-
#
|
9383
|
-
# * CreateDBSubnetGroup
|
9384
|
-
#
|
9385
|
-
# * ModifyDBSubnetGroup
|
9386
|
-
#
|
9387
|
-
# * DescribeDBSubnetGroups
|
9388
|
-
#
|
9389
|
-
# * DeleteDBSubnetGroup
|
9234
|
+
# Contains the details of an Amazon RDS DB subnet group.
|
9390
9235
|
#
|
9391
9236
|
# This data type is used as a response element in the
|
9392
9237
|
# DescribeDBSubnetGroups action.
|
@@ -9503,8 +9348,8 @@ module Aws::RDS
|
|
9503
9348
|
# The name of the option group to be modified.
|
9504
9349
|
#
|
9505
9350
|
# Permanent options, such as the TDE option for Oracle Advanced
|
9506
|
-
# Security TDE,
|
9507
|
-
# option group
|
9351
|
+
# Security TDE, can't be removed from an option group, and that
|
9352
|
+
# option group can't be removed from a DB instance once it is
|
9508
9353
|
# associated with a DB instance
|
9509
9354
|
# @return [String]
|
9510
9355
|
#
|
@@ -10001,8 +9846,8 @@ module Aws::RDS
|
|
10001
9846
|
# @return [String]
|
10002
9847
|
#
|
10003
9848
|
# @!attribute [rw] is_default
|
10004
|
-
# True if the version is the default version of the option
|
10005
|
-
# false.
|
9849
|
+
# True if the version is the default version of the option, and
|
9850
|
+
# otherwise false.
|
10006
9851
|
# @return [Boolean]
|
10007
9852
|
#
|
10008
9853
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OptionVersion AWS API Documentation
|
@@ -10415,20 +10260,7 @@ module Aws::RDS
|
|
10415
10260
|
end
|
10416
10261
|
|
10417
10262
|
# @!attribute [rw] db_cluster
|
10418
|
-
# Contains the
|
10419
|
-
# actions:
|
10420
|
-
#
|
10421
|
-
# * CreateDBCluster
|
10422
|
-
#
|
10423
|
-
# * DeleteDBCluster
|
10424
|
-
#
|
10425
|
-
# * FailoverDBCluster
|
10426
|
-
#
|
10427
|
-
# * ModifyDBCluster
|
10428
|
-
#
|
10429
|
-
# * RestoreDBClusterFromSnapshot
|
10430
|
-
#
|
10431
|
-
# * RestoreDBClusterToPointInTime
|
10263
|
+
# Contains the details of an Amazon RDS DB cluster.
|
10432
10264
|
#
|
10433
10265
|
# This data type is used as a response element in the
|
10434
10266
|
# DescribeDBClusters action.
|
@@ -10482,16 +10314,16 @@ module Aws::RDS
|
|
10482
10314
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
10483
10315
|
# parameter.
|
10484
10316
|
#
|
10485
|
-
#
|
10486
|
-
# of time
|
10487
|
-
# Adjusting the Preferred Maintenance Window][1] in the *Amazon
|
10488
|
-
# User Guide.*
|
10317
|
+
# The default is a 30-minute window selected at random from an 8-hour
|
10318
|
+
# block of time for each AWS Region. To see the time blocks available,
|
10319
|
+
# see [ Adjusting the Preferred Maintenance Window][1] in the *Amazon
|
10320
|
+
# RDS User Guide.*
|
10489
10321
|
#
|
10490
10322
|
# Constraints:
|
10491
10323
|
#
|
10492
10324
|
# * Must be in the format `hh24:mi-hh24:mi`.
|
10493
10325
|
#
|
10494
|
-
# *
|
10326
|
+
# * Must be in Universal Coordinated Time (UTC).
|
10495
10327
|
#
|
10496
10328
|
# * Must not conflict with the preferred maintenance window.
|
10497
10329
|
#
|
@@ -10512,18 +10344,7 @@ module Aws::RDS
|
|
10512
10344
|
end
|
10513
10345
|
|
10514
10346
|
# @!attribute [rw] db_instance
|
10515
|
-
# Contains the
|
10516
|
-
# actions:
|
10517
|
-
#
|
10518
|
-
# * CreateDBInstance
|
10519
|
-
#
|
10520
|
-
# * DeleteDBInstance
|
10521
|
-
#
|
10522
|
-
# * ModifyDBInstance
|
10523
|
-
#
|
10524
|
-
# * StopDBInstance
|
10525
|
-
#
|
10526
|
-
# * StartDBInstance
|
10347
|
+
# Contains the details of an Amazon RDS DB instance.
|
10527
10348
|
#
|
10528
10349
|
# This data type is used as a response element in the
|
10529
10350
|
# DescribeDBInstances action.
|
@@ -10570,7 +10391,12 @@ module Aws::RDS
|
|
10570
10391
|
# @return [Integer]
|
10571
10392
|
#
|
10572
10393
|
# @!attribute [rw] tags
|
10573
|
-
# A list of tags.
|
10394
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
10395
|
+
# Resources][1].
|
10396
|
+
#
|
10397
|
+
#
|
10398
|
+
#
|
10399
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
10574
10400
|
# @return [Array<Types::Tag>]
|
10575
10401
|
#
|
10576
10402
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PurchaseReservedDBInstancesOfferingMessage AWS API Documentation
|
@@ -10645,7 +10471,7 @@ module Aws::RDS
|
|
10645
10471
|
# @!attribute [rw] force_failover
|
10646
10472
|
# When `true`, the reboot is conducted through a MultiAZ failover.
|
10647
10473
|
#
|
10648
|
-
# Constraint: You
|
10474
|
+
# Constraint: You can't specify `true` if the instance is not
|
10649
10475
|
# configured for MultiAZ.
|
10650
10476
|
# @return [Boolean]
|
10651
10477
|
#
|
@@ -10658,18 +10484,7 @@ module Aws::RDS
|
|
10658
10484
|
end
|
10659
10485
|
|
10660
10486
|
# @!attribute [rw] db_instance
|
10661
|
-
# Contains the
|
10662
|
-
# actions:
|
10663
|
-
#
|
10664
|
-
# * CreateDBInstance
|
10665
|
-
#
|
10666
|
-
# * DeleteDBInstance
|
10667
|
-
#
|
10668
|
-
# * ModifyDBInstance
|
10669
|
-
#
|
10670
|
-
# * StopDBInstance
|
10671
|
-
#
|
10672
|
-
# * StartDBInstance
|
10487
|
+
# Contains the details of an Amazon RDS DB instance.
|
10673
10488
|
#
|
10674
10489
|
# This data type is used as a response element in the
|
10675
10490
|
# DescribeDBInstances action.
|
@@ -11012,13 +10827,13 @@ module Aws::RDS
|
|
11012
10827
|
# @!attribute [rw] reset_all_parameters
|
11013
10828
|
# A value that is set to `true` to reset all parameters in the DB
|
11014
10829
|
# cluster parameter group to their default values, and `false`
|
11015
|
-
# otherwise. You
|
10830
|
+
# otherwise. You can't use this parameter if there is a list of
|
11016
10831
|
# parameter names specified for the `Parameters` parameter.
|
11017
10832
|
# @return [Boolean]
|
11018
10833
|
#
|
11019
10834
|
# @!attribute [rw] parameters
|
11020
10835
|
# A list of parameter names in the DB cluster parameter group to reset
|
11021
|
-
# to the default values. You
|
10836
|
+
# to the default values. You can't use this parameter if the
|
11022
10837
|
# `ResetAllParameters` parameter is set to `true`.
|
11023
10838
|
# @return [Array<Types::Parameter>]
|
11024
10839
|
#
|
@@ -11190,8 +11005,8 @@ module Aws::RDS
|
|
11190
11005
|
# @return [String]
|
11191
11006
|
#
|
11192
11007
|
# @!attribute [rw] db_cluster_identifier
|
11193
|
-
# The name of the DB cluster to create from the source data in the
|
11194
|
-
# bucket. This parameter is isn't case-sensitive.
|
11008
|
+
# The name of the DB cluster to create from the source data in the
|
11009
|
+
# Amazon S3 bucket. This parameter is isn't case-sensitive.
|
11195
11010
|
#
|
11196
11011
|
# Constraints:
|
11197
11012
|
#
|
@@ -11235,7 +11050,7 @@ module Aws::RDS
|
|
11235
11050
|
# The name of the database engine to be used for the restored DB
|
11236
11051
|
# cluster.
|
11237
11052
|
#
|
11238
|
-
# Valid Values: `aurora`
|
11053
|
+
# Valid Values: `aurora`, `aurora-postgresql`
|
11239
11054
|
# @return [String]
|
11240
11055
|
#
|
11241
11056
|
# @!attribute [rw] engine_version
|
@@ -11276,8 +11091,8 @@ module Aws::RDS
|
|
11276
11091
|
# A value that indicates that the restored DB cluster should be
|
11277
11092
|
# associated with the specified option group.
|
11278
11093
|
#
|
11279
|
-
# Permanent options
|
11280
|
-
# group
|
11094
|
+
# Permanent options can't be removed from an option group. An option
|
11095
|
+
# group can't be removed from a DB cluster once it is associated with
|
11281
11096
|
# a DB cluster.
|
11282
11097
|
# @return [String]
|
11283
11098
|
#
|
@@ -11286,16 +11101,16 @@ module Aws::RDS
|
|
11286
11101
|
# automated backups are enabled using the `BackupRetentionPeriod`
|
11287
11102
|
# parameter.
|
11288
11103
|
#
|
11289
|
-
#
|
11290
|
-
# of time
|
11291
|
-
# Adjusting the Preferred Maintenance Window][1] in the *Amazon
|
11292
|
-
# User Guide.*
|
11104
|
+
# The default is a 30-minute window selected at random from an 8-hour
|
11105
|
+
# block of time for each AWS Region. To see the time blocks available,
|
11106
|
+
# see [ Adjusting the Preferred Maintenance Window][1] in the *Amazon
|
11107
|
+
# RDS User Guide.*
|
11293
11108
|
#
|
11294
11109
|
# Constraints:
|
11295
11110
|
#
|
11296
11111
|
# * Must be in the format `hh24:mi-hh24:mi`.
|
11297
11112
|
#
|
11298
|
-
# *
|
11113
|
+
# * Must be in Universal Coordinated Time (UTC).
|
11299
11114
|
#
|
11300
11115
|
# * Must not conflict with the preferred maintenance window.
|
11301
11116
|
#
|
@@ -11312,12 +11127,12 @@ module Aws::RDS
|
|
11312
11127
|
#
|
11313
11128
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
11314
11129
|
#
|
11315
|
-
#
|
11316
|
-
# of time
|
11317
|
-
# see the time blocks available, see [ Adjusting the
|
11318
|
-
# Maintenance Window][1] in the *Amazon RDS User Guide.*
|
11130
|
+
# The default is a 30-minute window selected at random from an 8-hour
|
11131
|
+
# block of time for each AWS Region, occurring on a random day of the
|
11132
|
+
# week. To see the time blocks available, see [ Adjusting the
|
11133
|
+
# Preferred Maintenance Window][1] in the *Amazon RDS User Guide.*
|
11319
11134
|
#
|
11320
|
-
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
|
11135
|
+
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
11321
11136
|
#
|
11322
11137
|
# Constraints: Minimum 30-minute window.
|
11323
11138
|
#
|
@@ -11327,7 +11142,12 @@ module Aws::RDS
|
|
11327
11142
|
# @return [String]
|
11328
11143
|
#
|
11329
11144
|
# @!attribute [rw] tags
|
11330
|
-
# A list of tags.
|
11145
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
11146
|
+
# Resources][1].
|
11147
|
+
#
|
11148
|
+
#
|
11149
|
+
#
|
11150
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
11331
11151
|
# @return [Array<Types::Tag>]
|
11332
11152
|
#
|
11333
11153
|
# @!attribute [rw] storage_encrypted
|
@@ -11335,7 +11155,7 @@ module Aws::RDS
|
|
11335
11155
|
# @return [Boolean]
|
11336
11156
|
#
|
11337
11157
|
# @!attribute [rw] kms_key_id
|
11338
|
-
# The KMS key identifier for an encrypted DB cluster.
|
11158
|
+
# The AWS KMS key identifier for an encrypted DB cluster.
|
11339
11159
|
#
|
11340
11160
|
# The KMS key identifier is the Amazon Resource Name (ARN) for the KMS
|
11341
11161
|
# encryption key. If you are creating a DB cluster with the same AWS
|
@@ -11351,9 +11171,8 @@ module Aws::RDS
|
|
11351
11171
|
# @return [String]
|
11352
11172
|
#
|
11353
11173
|
# @!attribute [rw] enable_iam_database_authentication
|
11354
|
-
#
|
11355
|
-
#
|
11356
|
-
# false.
|
11174
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
11175
|
+
# accounts to database accounts, and otherwise false.
|
11357
11176
|
#
|
11358
11177
|
# Default: `false`
|
11359
11178
|
# @return [Boolean]
|
@@ -11423,20 +11242,7 @@ module Aws::RDS
|
|
11423
11242
|
end
|
11424
11243
|
|
11425
11244
|
# @!attribute [rw] db_cluster
|
11426
|
-
# Contains the
|
11427
|
-
# actions:
|
11428
|
-
#
|
11429
|
-
# * CreateDBCluster
|
11430
|
-
#
|
11431
|
-
# * DeleteDBCluster
|
11432
|
-
#
|
11433
|
-
# * FailoverDBCluster
|
11434
|
-
#
|
11435
|
-
# * ModifyDBCluster
|
11436
|
-
#
|
11437
|
-
# * RestoreDBClusterFromSnapshot
|
11438
|
-
#
|
11439
|
-
# * RestoreDBClusterToPointInTime
|
11245
|
+
# Contains the details of an Amazon RDS DB cluster.
|
11440
11246
|
#
|
11441
11247
|
# This data type is used as a response element in the
|
11442
11248
|
# DescribeDBClusters action.
|
@@ -11555,8 +11361,8 @@ module Aws::RDS
|
|
11555
11361
|
# @return [Array<Types::Tag>]
|
11556
11362
|
#
|
11557
11363
|
# @!attribute [rw] kms_key_id
|
11558
|
-
# The KMS key identifier to use when restoring an encrypted DB
|
11559
|
-
# from a DB snapshot or DB cluster snapshot.
|
11364
|
+
# The AWS KMS key identifier to use when restoring an encrypted DB
|
11365
|
+
# cluster from a DB snapshot or DB cluster snapshot.
|
11560
11366
|
#
|
11561
11367
|
# The KMS key identifier is the Amazon Resource Name (ARN) for the KMS
|
11562
11368
|
# encryption key. If you are restoring a DB cluster with the same AWS
|
@@ -11577,9 +11383,8 @@ module Aws::RDS
|
|
11577
11383
|
# @return [String]
|
11578
11384
|
#
|
11579
11385
|
# @!attribute [rw] enable_iam_database_authentication
|
11580
|
-
#
|
11581
|
-
#
|
11582
|
-
# false.
|
11386
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
11387
|
+
# accounts to database accounts, and otherwise false.
|
11583
11388
|
#
|
11584
11389
|
# Default: `false`
|
11585
11390
|
# @return [Boolean]
|
@@ -11604,20 +11409,7 @@ module Aws::RDS
|
|
11604
11409
|
end
|
11605
11410
|
|
11606
11411
|
# @!attribute [rw] db_cluster
|
11607
|
-
# Contains the
|
11608
|
-
# actions:
|
11609
|
-
#
|
11610
|
-
# * CreateDBCluster
|
11611
|
-
#
|
11612
|
-
# * DeleteDBCluster
|
11613
|
-
#
|
11614
|
-
# * FailoverDBCluster
|
11615
|
-
#
|
11616
|
-
# * ModifyDBCluster
|
11617
|
-
#
|
11618
|
-
# * RestoreDBClusterFromSnapshot
|
11619
|
-
#
|
11620
|
-
# * RestoreDBClusterToPointInTime
|
11412
|
+
# Contains the details of an Amazon RDS DB cluster.
|
11621
11413
|
#
|
11622
11414
|
# This data type is used as a response element in the
|
11623
11415
|
# DescribeDBClusters action.
|
@@ -11675,7 +11467,7 @@ module Aws::RDS
|
|
11675
11467
|
# * `copy-on-write` - The new DB cluster is restored as a clone of the
|
11676
11468
|
# source DB cluster.
|
11677
11469
|
#
|
11678
|
-
# Constraints: You
|
11470
|
+
# Constraints: You can't specify `copy-on-write` if the engine
|
11679
11471
|
# version of the source DB cluster is earlier than 1.11.
|
11680
11472
|
#
|
11681
11473
|
# If you don't specify a `RestoreType` value, then the new DB cluster
|
@@ -11748,12 +11540,17 @@ module Aws::RDS
|
|
11748
11540
|
# @return [Array<String>]
|
11749
11541
|
#
|
11750
11542
|
# @!attribute [rw] tags
|
11751
|
-
# A list of tags.
|
11543
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
11544
|
+
# Resources][1].
|
11545
|
+
#
|
11546
|
+
#
|
11547
|
+
#
|
11548
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
11752
11549
|
# @return [Array<Types::Tag>]
|
11753
11550
|
#
|
11754
11551
|
# @!attribute [rw] kms_key_id
|
11755
|
-
# The KMS key identifier to use when restoring an encrypted DB
|
11756
|
-
# from an encrypted DB cluster.
|
11552
|
+
# The AWS KMS key identifier to use when restoring an encrypted DB
|
11553
|
+
# cluster from an encrypted DB cluster.
|
11757
11554
|
#
|
11758
11555
|
# The KMS key identifier is the Amazon Resource Name (ARN) for the KMS
|
11759
11556
|
# encryption key. If you are restoring a DB cluster with the same AWS
|
@@ -11781,9 +11578,8 @@ module Aws::RDS
|
|
11781
11578
|
# @return [String]
|
11782
11579
|
#
|
11783
11580
|
# @!attribute [rw] enable_iam_database_authentication
|
11784
|
-
#
|
11785
|
-
#
|
11786
|
-
# false.
|
11581
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
11582
|
+
# accounts to database accounts, and otherwise false.
|
11787
11583
|
#
|
11788
11584
|
# Default: `false`
|
11789
11585
|
# @return [Boolean]
|
@@ -11807,20 +11603,7 @@ module Aws::RDS
|
|
11807
11603
|
end
|
11808
11604
|
|
11809
11605
|
# @!attribute [rw] db_cluster
|
11810
|
-
# Contains the
|
11811
|
-
# actions:
|
11812
|
-
#
|
11813
|
-
# * CreateDBCluster
|
11814
|
-
#
|
11815
|
-
# * DeleteDBCluster
|
11816
|
-
#
|
11817
|
-
# * FailoverDBCluster
|
11818
|
-
#
|
11819
|
-
# * ModifyDBCluster
|
11820
|
-
#
|
11821
|
-
# * RestoreDBClusterFromSnapshot
|
11822
|
-
#
|
11823
|
-
# * RestoreDBClusterToPointInTime
|
11606
|
+
# Contains the details of an Amazon RDS DB cluster.
|
11824
11607
|
#
|
11825
11608
|
# This data type is used as a response element in the
|
11826
11609
|
# DescribeDBClusters action.
|
@@ -11895,9 +11678,9 @@ module Aws::RDS
|
|
11895
11678
|
# @!attribute [rw] db_instance_class
|
11896
11679
|
# The compute and memory capacity of the Amazon RDS DB instance, for
|
11897
11680
|
# example, `db.m4.large`. Not all DB instance classes are available in
|
11898
|
-
# all
|
11899
|
-
# instance classes, and availability for your engine, see [DB
|
11900
|
-
# Class][1] in the Amazon RDS User Guide.
|
11681
|
+
# all AWS Regions, or for all database engines. For the full list of
|
11682
|
+
# DB instance classes, and availability for your engine, see [DB
|
11683
|
+
# Instance Class][1] in the Amazon RDS User Guide.
|
11901
11684
|
#
|
11902
11685
|
# Default: The same DBInstanceClass as the original DB instance.
|
11903
11686
|
#
|
@@ -11915,11 +11698,11 @@ module Aws::RDS
|
|
11915
11698
|
# @return [Integer]
|
11916
11699
|
#
|
11917
11700
|
# @!attribute [rw] availability_zone
|
11918
|
-
# The EC2 Availability Zone that the
|
11701
|
+
# The EC2 Availability Zone that the DB instance is created in.
|
11919
11702
|
#
|
11920
11703
|
# Default: A random, system-chosen Availability Zone.
|
11921
11704
|
#
|
11922
|
-
# Constraint: You
|
11705
|
+
# Constraint: You can't specify the AvailabilityZone parameter if the
|
11923
11706
|
# MultiAZ parameter is set to `true`.
|
11924
11707
|
#
|
11925
11708
|
# Example: `us-east-1a`
|
@@ -11937,7 +11720,7 @@ module Aws::RDS
|
|
11937
11720
|
# @!attribute [rw] multi_az
|
11938
11721
|
# Specifies if the DB instance is a Multi-AZ deployment.
|
11939
11722
|
#
|
11940
|
-
# Constraint: You
|
11723
|
+
# Constraint: You can't specify the AvailabilityZone parameter if the
|
11941
11724
|
# MultiAZ parameter is set to `true`.
|
11942
11725
|
# @return [Boolean]
|
11943
11726
|
#
|
@@ -11998,6 +11781,8 @@ module Aws::RDS
|
|
11998
11781
|
#
|
11999
11782
|
# * `aurora`
|
12000
11783
|
#
|
11784
|
+
# * `aurora-postgresql`
|
11785
|
+
#
|
12001
11786
|
# * `mariadb`
|
12002
11787
|
#
|
12003
11788
|
# * `mysql`
|
@@ -12045,13 +11830,18 @@ module Aws::RDS
|
|
12045
11830
|
# instance.
|
12046
11831
|
#
|
12047
11832
|
# Permanent options, such as the TDE option for Oracle Advanced
|
12048
|
-
# Security TDE,
|
12049
|
-
# option group
|
11833
|
+
# Security TDE, can't be removed from an option group, and that
|
11834
|
+
# option group can't be removed from a DB instance once it is
|
12050
11835
|
# associated with a DB instance
|
12051
11836
|
# @return [String]
|
12052
11837
|
#
|
12053
11838
|
# @!attribute [rw] tags
|
12054
|
-
# A list of tags.
|
11839
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
11840
|
+
# Resources][1].
|
11841
|
+
#
|
11842
|
+
#
|
11843
|
+
#
|
11844
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
12055
11845
|
# @return [Array<Types::Tag>]
|
12056
11846
|
#
|
12057
11847
|
# @!attribute [rw] storage_type
|
@@ -12062,17 +11852,17 @@ module Aws::RDS
|
|
12062
11852
|
# If you specify `io1`, you must also include a value for the `Iops`
|
12063
11853
|
# parameter.
|
12064
11854
|
#
|
12065
|
-
# Default: `io1` if the `Iops` parameter is specified
|
11855
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
12066
11856
|
# `standard`
|
12067
11857
|
# @return [String]
|
12068
11858
|
#
|
12069
11859
|
# @!attribute [rw] tde_credential_arn
|
12070
|
-
# The ARN from the
|
11860
|
+
# The ARN from the key store with which to associate the instance for
|
12071
11861
|
# TDE encryption.
|
12072
11862
|
# @return [String]
|
12073
11863
|
#
|
12074
11864
|
# @!attribute [rw] tde_credential_password
|
12075
|
-
# The password for the given ARN from the
|
11865
|
+
# The password for the given ARN from the key store in order to access
|
12076
11866
|
# the device.
|
12077
11867
|
# @return [String]
|
12078
11868
|
#
|
@@ -12082,7 +11872,7 @@ module Aws::RDS
|
|
12082
11872
|
#
|
12083
11873
|
# @!attribute [rw] copy_tags_to_snapshot
|
12084
11874
|
# True to copy all tags from the restored DB instance to snapshots of
|
12085
|
-
# the DB instance
|
11875
|
+
# the DB instance, and otherwise false. The default is false.
|
12086
11876
|
# @return [Boolean]
|
12087
11877
|
#
|
12088
11878
|
# @!attribute [rw] domain_iam_role_name
|
@@ -12092,7 +11882,7 @@ module Aws::RDS
|
|
12092
11882
|
#
|
12093
11883
|
# @!attribute [rw] enable_iam_database_authentication
|
12094
11884
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
12095
|
-
# accounts to database accounts
|
11885
|
+
# accounts to database accounts, and otherwise false.
|
12096
11886
|
#
|
12097
11887
|
# You can enable IAM database authentication for the following
|
12098
11888
|
# database engines
|
@@ -12135,26 +11925,458 @@ module Aws::RDS
|
|
12135
11925
|
end
|
12136
11926
|
|
12137
11927
|
# @!attribute [rw] db_instance
|
12138
|
-
# Contains the
|
12139
|
-
# actions:
|
11928
|
+
# Contains the details of an Amazon RDS DB instance.
|
12140
11929
|
#
|
12141
|
-
#
|
11930
|
+
# This data type is used as a response element in the
|
11931
|
+
# DescribeDBInstances action.
|
11932
|
+
# @return [Types::DBInstance]
|
12142
11933
|
#
|
12143
|
-
#
|
11934
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshotResult AWS API Documentation
|
12144
11935
|
#
|
12145
|
-
|
11936
|
+
class RestoreDBInstanceFromDBSnapshotResult < Struct.new(
|
11937
|
+
:db_instance)
|
11938
|
+
include Aws::Structure
|
11939
|
+
end
|
11940
|
+
|
11941
|
+
# @note When making an API call, you may pass RestoreDBInstanceFromS3Message
|
11942
|
+
# data as a hash:
|
11943
|
+
#
|
11944
|
+
# {
|
11945
|
+
# db_name: "String",
|
11946
|
+
# db_instance_identifier: "String", # required
|
11947
|
+
# allocated_storage: 1,
|
11948
|
+
# db_instance_class: "String", # required
|
11949
|
+
# engine: "String", # required
|
11950
|
+
# master_username: "String",
|
11951
|
+
# master_user_password: "String",
|
11952
|
+
# db_security_groups: ["String"],
|
11953
|
+
# vpc_security_group_ids: ["String"],
|
11954
|
+
# availability_zone: "String",
|
11955
|
+
# db_subnet_group_name: "String",
|
11956
|
+
# preferred_maintenance_window: "String",
|
11957
|
+
# db_parameter_group_name: "String",
|
11958
|
+
# backup_retention_period: 1,
|
11959
|
+
# preferred_backup_window: "String",
|
11960
|
+
# port: 1,
|
11961
|
+
# multi_az: false,
|
11962
|
+
# engine_version: "String",
|
11963
|
+
# auto_minor_version_upgrade: false,
|
11964
|
+
# license_model: "String",
|
11965
|
+
# iops: 1,
|
11966
|
+
# option_group_name: "String",
|
11967
|
+
# publicly_accessible: false,
|
11968
|
+
# tags: [
|
11969
|
+
# {
|
11970
|
+
# key: "String",
|
11971
|
+
# value: "String",
|
11972
|
+
# },
|
11973
|
+
# ],
|
11974
|
+
# storage_type: "String",
|
11975
|
+
# storage_encrypted: false,
|
11976
|
+
# kms_key_id: "String",
|
11977
|
+
# copy_tags_to_snapshot: false,
|
11978
|
+
# monitoring_interval: 1,
|
11979
|
+
# monitoring_role_arn: "String",
|
11980
|
+
# enable_iam_database_authentication: false,
|
11981
|
+
# source_engine: "String", # required
|
11982
|
+
# source_engine_version: "String", # required
|
11983
|
+
# s3_bucket_name: "String", # required
|
11984
|
+
# s3_prefix: "String",
|
11985
|
+
# s3_ingestion_role_arn: "String", # required
|
11986
|
+
# enable_performance_insights: false,
|
11987
|
+
# performance_insights_kms_key_id: "String",
|
11988
|
+
# }
|
11989
|
+
#
|
11990
|
+
# @!attribute [rw] db_name
|
11991
|
+
# The name of the database to create when the DB instance is created.
|
11992
|
+
# Follow the naming rules specified in CreateDBInstance.
|
11993
|
+
# @return [String]
|
11994
|
+
#
|
11995
|
+
# @!attribute [rw] db_instance_identifier
|
11996
|
+
# The DB instance identifier. This parameter is stored as a lowercase
|
11997
|
+
# string.
|
11998
|
+
#
|
11999
|
+
# Constraints:
|
12000
|
+
#
|
12001
|
+
# * Must contain from 1 to 63 letters, numbers, or hyphens.
|
12002
|
+
#
|
12003
|
+
# * First character must be a letter.
|
12004
|
+
#
|
12005
|
+
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
12006
|
+
#
|
12007
|
+
# Example: `mydbinstance`
|
12008
|
+
# @return [String]
|
12009
|
+
#
|
12010
|
+
# @!attribute [rw] allocated_storage
|
12011
|
+
# The amount of storage (in gigabytes) to allocate initially for the
|
12012
|
+
# DB instance. Follow the allocation rules specified in
|
12013
|
+
# CreateDBInstance.
|
12014
|
+
#
|
12015
|
+
# <note markdown="1"> Be sure to allocate enough memory for your new DB instance so that
|
12016
|
+
# the restore operation can succeed. You can also allocate additional
|
12017
|
+
# memory for future growth.
|
12018
|
+
#
|
12019
|
+
# </note>
|
12020
|
+
# @return [Integer]
|
12021
|
+
#
|
12022
|
+
# @!attribute [rw] db_instance_class
|
12023
|
+
# The compute and memory capacity of the DB instance, for example,
|
12024
|
+
# `db.m4.large`. Not all DB instance classes are available in all AWS
|
12025
|
+
# Regions, or for all database engines. For the full list of DB
|
12026
|
+
# instance classes, and availability for your engine, see [DB Instance
|
12027
|
+
# Class][1] in the Amazon RDS User Guide.
|
12028
|
+
#
|
12029
|
+
# Importing from Amazon S3 is not supported on the db.t2.micro DB
|
12030
|
+
# instance class.
|
12031
|
+
#
|
12032
|
+
#
|
12033
|
+
#
|
12034
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
12035
|
+
# @return [String]
|
12036
|
+
#
|
12037
|
+
# @!attribute [rw] engine
|
12038
|
+
# The name of the database engine to be used for this instance.
|
12039
|
+
#
|
12040
|
+
# Valid Values: `mysql`
|
12041
|
+
# @return [String]
|
12042
|
+
#
|
12043
|
+
# @!attribute [rw] master_username
|
12044
|
+
# The name for the master user.
|
12045
|
+
#
|
12046
|
+
# Constraints:
|
12047
|
+
#
|
12048
|
+
# * Must be 1 to 16 letters or numbers.
|
12049
|
+
#
|
12050
|
+
# * First character must be a letter.
|
12051
|
+
#
|
12052
|
+
# * Cannot be a reserved word for the chosen database engine.
|
12053
|
+
# @return [String]
|
12054
|
+
#
|
12055
|
+
# @!attribute [rw] master_user_password
|
12056
|
+
# The password for the master user. The password can include any
|
12057
|
+
# printable ASCII character except "/", """, or "@".
|
12058
|
+
#
|
12059
|
+
# Constraints: Must contain from 8 to 41 characters.
|
12060
|
+
# @return [String]
|
12061
|
+
#
|
12062
|
+
# @!attribute [rw] db_security_groups
|
12063
|
+
# A list of DB security groups to associate with this DB instance.
|
12064
|
+
#
|
12065
|
+
# Default: The default DB security group for the database engine.
|
12066
|
+
# @return [Array<String>]
|
12067
|
+
#
|
12068
|
+
# @!attribute [rw] vpc_security_group_ids
|
12069
|
+
# A list of VPC security groups to associate with this DB instance.
|
12070
|
+
# @return [Array<String>]
|
12071
|
+
#
|
12072
|
+
# @!attribute [rw] availability_zone
|
12073
|
+
# The Availability Zone that the DB instance is created in. For
|
12074
|
+
# information about AWS Regions and Availability Zones, see [Regions
|
12075
|
+
# and Availability Zones][1].
|
12076
|
+
#
|
12077
|
+
# Default: A random, system-chosen Availability Zone in the
|
12078
|
+
# endpoint's AWS Region.
|
12079
|
+
#
|
12080
|
+
# Example: `us-east-1d`
|
12081
|
+
#
|
12082
|
+
# Constraint: The AvailabilityZone parameter can't be specified if
|
12083
|
+
# the MultiAZ parameter is set to `true`. The specified Availability
|
12084
|
+
# Zone must be in the same AWS Region as the current endpoint.
|
12085
|
+
#
|
12086
|
+
#
|
12087
|
+
#
|
12088
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html
|
12089
|
+
# @return [String]
|
12090
|
+
#
|
12091
|
+
# @!attribute [rw] db_subnet_group_name
|
12092
|
+
# A DB subnet group to associate with this DB instance.
|
12093
|
+
# @return [String]
|
12094
|
+
#
|
12095
|
+
# @!attribute [rw] preferred_maintenance_window
|
12096
|
+
# The time range each week during which system maintenance can occur,
|
12097
|
+
# in Universal Coordinated Time (UTC). For more information, see
|
12098
|
+
# [Amazon RDS Maintenance Window][1].
|
12099
|
+
#
|
12100
|
+
# Constraints:
|
12101
|
+
#
|
12102
|
+
# * Must be in the format `ddd:hh24:mi-ddd:hh24:mi`.
|
12146
12103
|
#
|
12147
|
-
# *
|
12104
|
+
# * Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
12148
12105
|
#
|
12149
|
-
# *
|
12106
|
+
# * Must be in Universal Coordinated Time (UTC).
|
12107
|
+
#
|
12108
|
+
# * Must not conflict with the preferred backup window.
|
12109
|
+
#
|
12110
|
+
# * Must be at least 30 minutes.
|
12111
|
+
#
|
12112
|
+
#
|
12113
|
+
#
|
12114
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance
|
12115
|
+
# @return [String]
|
12116
|
+
#
|
12117
|
+
# @!attribute [rw] db_parameter_group_name
|
12118
|
+
# The name of the DB parameter group to associate with this DB
|
12119
|
+
# instance. If this argument is omitted, the default parameter group
|
12120
|
+
# for the specified engine is used.
|
12121
|
+
# @return [String]
|
12122
|
+
#
|
12123
|
+
# @!attribute [rw] backup_retention_period
|
12124
|
+
# The number of days for which automated backups are retained. Setting
|
12125
|
+
# this parameter to a positive number enables backups. For more
|
12126
|
+
# information, see CreateDBInstance.
|
12127
|
+
# @return [Integer]
|
12128
|
+
#
|
12129
|
+
# @!attribute [rw] preferred_backup_window
|
12130
|
+
# The time range each day during which automated backups are created
|
12131
|
+
# if automated backups are enabled. For more information, see [The
|
12132
|
+
# Backup Window][1].
|
12133
|
+
#
|
12134
|
+
# Constraints:
|
12135
|
+
#
|
12136
|
+
# * Must be in the format `hh24:mi-hh24:mi`.
|
12137
|
+
#
|
12138
|
+
# * Must be in Universal Coordinated Time (UTC).
|
12139
|
+
#
|
12140
|
+
# * Must not conflict with the preferred maintenance window.
|
12141
|
+
#
|
12142
|
+
# * Must be at least 30 minutes.
|
12143
|
+
#
|
12144
|
+
#
|
12145
|
+
#
|
12146
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
|
12147
|
+
# @return [String]
|
12148
|
+
#
|
12149
|
+
# @!attribute [rw] port
|
12150
|
+
# The port number on which the database accepts connections.
|
12151
|
+
#
|
12152
|
+
# Type: Integer
|
12153
|
+
#
|
12154
|
+
# Valid Values: `1150`-`65535`
|
12155
|
+
#
|
12156
|
+
# Default: `3306`
|
12157
|
+
# @return [Integer]
|
12158
|
+
#
|
12159
|
+
# @!attribute [rw] multi_az
|
12160
|
+
# Specifies whether the DB instance is a Multi-AZ deployment. If
|
12161
|
+
# MultiAZ is set to `true`, you can't set the AvailabilityZone
|
12162
|
+
# parameter.
|
12163
|
+
# @return [Boolean]
|
12164
|
+
#
|
12165
|
+
# @!attribute [rw] engine_version
|
12166
|
+
# The version number of the database engine to use. Choose the latest
|
12167
|
+
# minor version of your database engine as specified in
|
12168
|
+
# CreateDBInstance.
|
12169
|
+
# @return [String]
|
12170
|
+
#
|
12171
|
+
# @!attribute [rw] auto_minor_version_upgrade
|
12172
|
+
# True to indicate that minor engine upgrades are applied
|
12173
|
+
# automatically to the DB instance during the maintenance window, and
|
12174
|
+
# otherwise false.
|
12175
|
+
#
|
12176
|
+
# Default: `true`
|
12177
|
+
# @return [Boolean]
|
12178
|
+
#
|
12179
|
+
# @!attribute [rw] license_model
|
12180
|
+
# The license model for this DB instance. Use
|
12181
|
+
# `general-public-license`.
|
12182
|
+
# @return [String]
|
12183
|
+
#
|
12184
|
+
# @!attribute [rw] iops
|
12185
|
+
# The amount of Provisioned IOPS (input/output operations per second)
|
12186
|
+
# to allocate initially for the DB instance. For information about
|
12187
|
+
# valid Iops values, see see [Amazon RDS Provisioned IOPS Storage to
|
12188
|
+
# Improve Performance][1].
|
12189
|
+
#
|
12190
|
+
#
|
12191
|
+
#
|
12192
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
12193
|
+
# @return [Integer]
|
12194
|
+
#
|
12195
|
+
# @!attribute [rw] option_group_name
|
12196
|
+
# The name of the option group to associate with this DB instance. If
|
12197
|
+
# this argument is omitted, the default option group for the specified
|
12198
|
+
# engine is used.
|
12199
|
+
# @return [String]
|
12200
|
+
#
|
12201
|
+
# @!attribute [rw] publicly_accessible
|
12202
|
+
# Specifies whether the DB instance is publicly accessible or not. For
|
12203
|
+
# more information, see CreateDBInstance.
|
12204
|
+
# @return [Boolean]
|
12205
|
+
#
|
12206
|
+
# @!attribute [rw] tags
|
12207
|
+
# A list of tags to associate with this DB instance. For more
|
12208
|
+
# information, see [Tagging Amazon RDS Resources][1].
|
12209
|
+
#
|
12210
|
+
#
|
12211
|
+
#
|
12212
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
12213
|
+
# @return [Array<Types::Tag>]
|
12214
|
+
#
|
12215
|
+
# @!attribute [rw] storage_type
|
12216
|
+
# Specifies the storage type to be associated with the DB instance.
|
12217
|
+
#
|
12218
|
+
# Valid values: `standard` \| `gp2` \| `io1`
|
12219
|
+
#
|
12220
|
+
# If you specify `io1`, you must also include a value for the `Iops`
|
12221
|
+
# parameter.
|
12222
|
+
#
|
12223
|
+
# Default: `io1` if the `Iops` parameter is specified; otherwise
|
12224
|
+
# `standard`
|
12225
|
+
# @return [String]
|
12226
|
+
#
|
12227
|
+
# @!attribute [rw] storage_encrypted
|
12228
|
+
# Specifies whether the new DB instance is encrypted or not.
|
12229
|
+
# @return [Boolean]
|
12230
|
+
#
|
12231
|
+
# @!attribute [rw] kms_key_id
|
12232
|
+
# The AWS KMS key identifier for an encrypted DB instance.
|
12233
|
+
#
|
12234
|
+
# The KMS key identifier is the Amazon Resource Name (ARN) for the KMS
|
12235
|
+
# encryption key. If you are creating a DB instance with the same AWS
|
12236
|
+
# account that owns the KMS encryption key used to encrypt the new DB
|
12237
|
+
# instance, then you can use the KMS key alias instead of the ARN for
|
12238
|
+
# the KM encryption key.
|
12239
|
+
#
|
12240
|
+
# If the `StorageEncrypted` parameter is true, and you do not specify
|
12241
|
+
# a value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
12242
|
+
# default encryption key. AWS KMS creates the default encryption key
|
12243
|
+
# for your AWS account. Your AWS account has a different default
|
12244
|
+
# encryption key for each AWS Region.
|
12245
|
+
# @return [String]
|
12246
|
+
#
|
12247
|
+
# @!attribute [rw] copy_tags_to_snapshot
|
12248
|
+
# True to copy all tags from the DB instance to snapshots of the DB
|
12249
|
+
# instance, and otherwise false.
|
12250
|
+
#
|
12251
|
+
# Default: false.
|
12252
|
+
# @return [Boolean]
|
12253
|
+
#
|
12254
|
+
# @!attribute [rw] monitoring_interval
|
12255
|
+
# The interval, in seconds, between points when Enhanced Monitoring
|
12256
|
+
# metrics are collected for the DB instance. To disable collecting
|
12257
|
+
# Enhanced Monitoring metrics, specify 0.
|
12258
|
+
#
|
12259
|
+
# If `MonitoringRoleArn` is specified, then you must also set
|
12260
|
+
# `MonitoringInterval` to a value other than 0.
|
12261
|
+
#
|
12262
|
+
# Valid Values: 0, 1, 5, 10, 15, 30, 60
|
12263
|
+
#
|
12264
|
+
# Default: `0`
|
12265
|
+
# @return [Integer]
|
12266
|
+
#
|
12267
|
+
# @!attribute [rw] monitoring_role_arn
|
12268
|
+
# The ARN for the IAM role that permits RDS to send enhanced
|
12269
|
+
# monitoring metrics to Amazon CloudWatch Logs. For example,
|
12270
|
+
# `arn:aws:iam:123456789012:role/emaccess`. For information on
|
12271
|
+
# creating a monitoring role, see [Setting Up and Enabling Enhanced
|
12272
|
+
# Monitoring][1].
|
12273
|
+
#
|
12274
|
+
# If `MonitoringInterval` is set to a value other than 0, then you
|
12275
|
+
# must supply a `MonitoringRoleArn` value.
|
12276
|
+
#
|
12277
|
+
#
|
12278
|
+
#
|
12279
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
12280
|
+
# @return [String]
|
12281
|
+
#
|
12282
|
+
# @!attribute [rw] enable_iam_database_authentication
|
12283
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
12284
|
+
# accounts to database accounts, and otherwise false.
|
12285
|
+
#
|
12286
|
+
# Default: `false`
|
12287
|
+
# @return [Boolean]
|
12288
|
+
#
|
12289
|
+
# @!attribute [rw] source_engine
|
12290
|
+
# The name of the engine of your source database.
|
12291
|
+
#
|
12292
|
+
# Valid Values: `mysql`
|
12293
|
+
# @return [String]
|
12294
|
+
#
|
12295
|
+
# @!attribute [rw] source_engine_version
|
12296
|
+
# The engine version of your source database.
|
12297
|
+
#
|
12298
|
+
# Valid Values: `5.6`
|
12299
|
+
# @return [String]
|
12300
|
+
#
|
12301
|
+
# @!attribute [rw] s3_bucket_name
|
12302
|
+
# The name of your Amazon S3 bucket that contains your database backup
|
12303
|
+
# file.
|
12304
|
+
# @return [String]
|
12305
|
+
#
|
12306
|
+
# @!attribute [rw] s3_prefix
|
12307
|
+
# The prefix of your Amazon S3 bucket.
|
12308
|
+
# @return [String]
|
12309
|
+
#
|
12310
|
+
# @!attribute [rw] s3_ingestion_role_arn
|
12311
|
+
# An AWS Identity and Access Management (IAM) role to allow Amazon RDS
|
12312
|
+
# to access your Amazon S3 bucket.
|
12313
|
+
# @return [String]
|
12314
|
+
#
|
12315
|
+
# @!attribute [rw] enable_performance_insights
|
12316
|
+
# True to enable Performance Insights for the DB instance, and
|
12317
|
+
# otherwise false.
|
12318
|
+
# @return [Boolean]
|
12319
|
+
#
|
12320
|
+
# @!attribute [rw] performance_insights_kms_key_id
|
12321
|
+
# The AWS KMS key identifier for encryption of Performance Insights
|
12322
|
+
# data. The KMS key ID is the Amazon Resource Name (ARN), the KMS key
|
12323
|
+
# identifier, or the KMS key alias for the KMS encryption key.
|
12324
|
+
# @return [String]
|
12325
|
+
#
|
12326
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3Message AWS API Documentation
|
12327
|
+
#
|
12328
|
+
class RestoreDBInstanceFromS3Message < Struct.new(
|
12329
|
+
:db_name,
|
12330
|
+
:db_instance_identifier,
|
12331
|
+
:allocated_storage,
|
12332
|
+
:db_instance_class,
|
12333
|
+
:engine,
|
12334
|
+
:master_username,
|
12335
|
+
:master_user_password,
|
12336
|
+
:db_security_groups,
|
12337
|
+
:vpc_security_group_ids,
|
12338
|
+
:availability_zone,
|
12339
|
+
:db_subnet_group_name,
|
12340
|
+
:preferred_maintenance_window,
|
12341
|
+
:db_parameter_group_name,
|
12342
|
+
:backup_retention_period,
|
12343
|
+
:preferred_backup_window,
|
12344
|
+
:port,
|
12345
|
+
:multi_az,
|
12346
|
+
:engine_version,
|
12347
|
+
:auto_minor_version_upgrade,
|
12348
|
+
:license_model,
|
12349
|
+
:iops,
|
12350
|
+
:option_group_name,
|
12351
|
+
:publicly_accessible,
|
12352
|
+
:tags,
|
12353
|
+
:storage_type,
|
12354
|
+
:storage_encrypted,
|
12355
|
+
:kms_key_id,
|
12356
|
+
:copy_tags_to_snapshot,
|
12357
|
+
:monitoring_interval,
|
12358
|
+
:monitoring_role_arn,
|
12359
|
+
:enable_iam_database_authentication,
|
12360
|
+
:source_engine,
|
12361
|
+
:source_engine_version,
|
12362
|
+
:s3_bucket_name,
|
12363
|
+
:s3_prefix,
|
12364
|
+
:s3_ingestion_role_arn,
|
12365
|
+
:enable_performance_insights,
|
12366
|
+
:performance_insights_kms_key_id)
|
12367
|
+
include Aws::Structure
|
12368
|
+
end
|
12369
|
+
|
12370
|
+
# @!attribute [rw] db_instance
|
12371
|
+
# Contains the details of an Amazon RDS DB instance.
|
12150
12372
|
#
|
12151
12373
|
# This data type is used as a response element in the
|
12152
12374
|
# DescribeDBInstances action.
|
12153
12375
|
# @return [Types::DBInstance]
|
12154
12376
|
#
|
12155
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/
|
12377
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3Result AWS API Documentation
|
12156
12378
|
#
|
12157
|
-
class
|
12379
|
+
class RestoreDBInstanceFromS3Result < Struct.new(
|
12158
12380
|
:db_instance)
|
12159
12381
|
include Aws::Structure
|
12160
12382
|
end
|
@@ -12205,7 +12427,7 @@ module Aws::RDS
|
|
12205
12427
|
# @return [String]
|
12206
12428
|
#
|
12207
12429
|
# @!attribute [rw] target_db_instance_identifier
|
12208
|
-
# The name of the new
|
12430
|
+
# The name of the new DB instance to be created.
|
12209
12431
|
#
|
12210
12432
|
# Constraints:
|
12211
12433
|
#
|
@@ -12244,9 +12466,9 @@ module Aws::RDS
|
|
12244
12466
|
# @!attribute [rw] db_instance_class
|
12245
12467
|
# The compute and memory capacity of the Amazon RDS DB instance, for
|
12246
12468
|
# example, `db.m4.large`. Not all DB instance classes are available in
|
12247
|
-
# all
|
12248
|
-
# instance classes, and availability for your engine, see [DB
|
12249
|
-
# Class][1] in the Amazon RDS User Guide.
|
12469
|
+
# all AWS Regions, or for all database engines. For the full list of
|
12470
|
+
# DB instance classes, and availability for your engine, see [DB
|
12471
|
+
# Instance Class][1] in the Amazon RDS User Guide.
|
12250
12472
|
#
|
12251
12473
|
# Default: The same DBInstanceClass as the original DB instance.
|
12252
12474
|
#
|
@@ -12264,11 +12486,11 @@ module Aws::RDS
|
|
12264
12486
|
# @return [Integer]
|
12265
12487
|
#
|
12266
12488
|
# @!attribute [rw] availability_zone
|
12267
|
-
# The EC2 Availability Zone that the
|
12489
|
+
# The EC2 Availability Zone that the DB instance is created in.
|
12268
12490
|
#
|
12269
12491
|
# Default: A random, system-chosen Availability Zone.
|
12270
12492
|
#
|
12271
|
-
# Constraint: You
|
12493
|
+
# Constraint: You can't specify the AvailabilityZone parameter if the
|
12272
12494
|
# MultiAZ parameter is set to true.
|
12273
12495
|
#
|
12274
12496
|
# Example: `us-east-1a`
|
@@ -12286,7 +12508,7 @@ module Aws::RDS
|
|
12286
12508
|
# @!attribute [rw] multi_az
|
12287
12509
|
# Specifies if the DB instance is a Multi-AZ deployment.
|
12288
12510
|
#
|
12289
|
-
# Constraint: You
|
12511
|
+
# Constraint: You can't specify the AvailabilityZone parameter if the
|
12290
12512
|
# MultiAZ parameter is set to `true`.
|
12291
12513
|
# @return [Boolean]
|
12292
12514
|
#
|
@@ -12345,6 +12567,8 @@ module Aws::RDS
|
|
12345
12567
|
#
|
12346
12568
|
# * `aurora`
|
12347
12569
|
#
|
12570
|
+
# * `aurora-postgresql`
|
12571
|
+
#
|
12348
12572
|
# * `mariadb`
|
12349
12573
|
#
|
12350
12574
|
# * `mysql`
|
@@ -12385,18 +12609,23 @@ module Aws::RDS
|
|
12385
12609
|
# instance.
|
12386
12610
|
#
|
12387
12611
|
# Permanent options, such as the TDE option for Oracle Advanced
|
12388
|
-
# Security TDE,
|
12389
|
-
# option group
|
12612
|
+
# Security TDE, can't be removed from an option group, and that
|
12613
|
+
# option group can't be removed from a DB instance once it is
|
12390
12614
|
# associated with a DB instance
|
12391
12615
|
# @return [String]
|
12392
12616
|
#
|
12393
12617
|
# @!attribute [rw] copy_tags_to_snapshot
|
12394
12618
|
# True to copy all tags from the restored DB instance to snapshots of
|
12395
|
-
# the DB instance
|
12619
|
+
# the DB instance, and otherwise false. The default is false.
|
12396
12620
|
# @return [Boolean]
|
12397
12621
|
#
|
12398
12622
|
# @!attribute [rw] tags
|
12399
|
-
# A list of tags.
|
12623
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
12624
|
+
# Resources][1].
|
12625
|
+
#
|
12626
|
+
#
|
12627
|
+
#
|
12628
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
12400
12629
|
# @return [Array<Types::Tag>]
|
12401
12630
|
#
|
12402
12631
|
# @!attribute [rw] storage_type
|
@@ -12407,17 +12636,17 @@ module Aws::RDS
|
|
12407
12636
|
# If you specify `io1`, you must also include a value for the `Iops`
|
12408
12637
|
# parameter.
|
12409
12638
|
#
|
12410
|
-
# Default: `io1` if the `Iops` parameter is specified
|
12639
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
12411
12640
|
# `standard`
|
12412
12641
|
# @return [String]
|
12413
12642
|
#
|
12414
12643
|
# @!attribute [rw] tde_credential_arn
|
12415
|
-
# The ARN from the
|
12644
|
+
# The ARN from the key store with which to associate the instance for
|
12416
12645
|
# TDE encryption.
|
12417
12646
|
# @return [String]
|
12418
12647
|
#
|
12419
12648
|
# @!attribute [rw] tde_credential_password
|
12420
|
-
# The password for the given ARN from the
|
12649
|
+
# The password for the given ARN from the key store in order to access
|
12421
12650
|
# the device.
|
12422
12651
|
# @return [String]
|
12423
12652
|
#
|
@@ -12432,7 +12661,7 @@ module Aws::RDS
|
|
12432
12661
|
#
|
12433
12662
|
# @!attribute [rw] enable_iam_database_authentication
|
12434
12663
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
12435
|
-
# accounts to database accounts
|
12664
|
+
# accounts to database accounts, and otherwise false.
|
12436
12665
|
#
|
12437
12666
|
# You can enable IAM database authentication for the following
|
12438
12667
|
# database engines
|
@@ -12477,18 +12706,7 @@ module Aws::RDS
|
|
12477
12706
|
end
|
12478
12707
|
|
12479
12708
|
# @!attribute [rw] db_instance
|
12480
|
-
# Contains the
|
12481
|
-
# actions:
|
12482
|
-
#
|
12483
|
-
# * CreateDBInstance
|
12484
|
-
#
|
12485
|
-
# * DeleteDBInstance
|
12486
|
-
#
|
12487
|
-
# * ModifyDBInstance
|
12488
|
-
#
|
12489
|
-
# * StopDBInstance
|
12490
|
-
#
|
12491
|
-
# * StartDBInstance
|
12709
|
+
# Contains the details of an Amazon RDS DB instance.
|
12492
12710
|
#
|
12493
12711
|
# This data type is used as a response element in the
|
12494
12712
|
# DescribeDBInstances action.
|
@@ -12519,7 +12737,7 @@ module Aws::RDS
|
|
12519
12737
|
# @!attribute [rw] cidrip
|
12520
12738
|
# The IP range to revoke access from. Must be a valid CIDR range. If
|
12521
12739
|
# `CIDRIP` is specified, `EC2SecurityGroupName`, `EC2SecurityGroupId`
|
12522
|
-
# and `EC2SecurityGroupOwnerId`
|
12740
|
+
# and `EC2SecurityGroupOwnerId` can't be provided.
|
12523
12741
|
# @return [String]
|
12524
12742
|
#
|
12525
12743
|
# @!attribute [rw] ec2_security_group_name
|
@@ -12557,16 +12775,7 @@ module Aws::RDS
|
|
12557
12775
|
end
|
12558
12776
|
|
12559
12777
|
# @!attribute [rw] db_security_group
|
12560
|
-
# Contains the
|
12561
|
-
# actions:
|
12562
|
-
#
|
12563
|
-
# * DescribeDBSecurityGroups
|
12564
|
-
#
|
12565
|
-
# * AuthorizeDBSecurityGroupIngress
|
12566
|
-
#
|
12567
|
-
# * CreateDBSecurityGroup
|
12568
|
-
#
|
12569
|
-
# * RevokeDBSecurityGroupIngress
|
12778
|
+
# Contains the details for an Amazon RDS DB security group.
|
12570
12779
|
#
|
12571
12780
|
# This data type is used as a response element in the
|
12572
12781
|
# DescribeDBSecurityGroups action.
|
@@ -12645,18 +12854,7 @@ module Aws::RDS
|
|
12645
12854
|
end
|
12646
12855
|
|
12647
12856
|
# @!attribute [rw] db_instance
|
12648
|
-
# Contains the
|
12649
|
-
# actions:
|
12650
|
-
#
|
12651
|
-
# * CreateDBInstance
|
12652
|
-
#
|
12653
|
-
# * DeleteDBInstance
|
12654
|
-
#
|
12655
|
-
# * ModifyDBInstance
|
12656
|
-
#
|
12657
|
-
# * StopDBInstance
|
12658
|
-
#
|
12659
|
-
# * StartDBInstance
|
12857
|
+
# Contains the details of an Amazon RDS DB instance.
|
12660
12858
|
#
|
12661
12859
|
# This data type is used as a response element in the
|
12662
12860
|
# DescribeDBInstances action.
|
@@ -12695,18 +12893,7 @@ module Aws::RDS
|
|
12695
12893
|
end
|
12696
12894
|
|
12697
12895
|
# @!attribute [rw] db_instance
|
12698
|
-
# Contains the
|
12699
|
-
# actions:
|
12700
|
-
#
|
12701
|
-
# * CreateDBInstance
|
12702
|
-
#
|
12703
|
-
# * DeleteDBInstance
|
12704
|
-
#
|
12705
|
-
# * ModifyDBInstance
|
12706
|
-
#
|
12707
|
-
# * StopDBInstance
|
12708
|
-
#
|
12709
|
-
# * StartDBInstance
|
12896
|
+
# Contains the details of an Amazon RDS DB instance.
|
12710
12897
|
#
|
12711
12898
|
# This data type is used as a response element in the
|
12712
12899
|
# DescribeDBInstances action.
|
@@ -12762,7 +12949,7 @@ module Aws::RDS
|
|
12762
12949
|
#
|
12763
12950
|
# @!attribute [rw] key
|
12764
12951
|
# A key is the required name of the tag. The string value can be from
|
12765
|
-
# 1 to 128 Unicode characters in length and
|
12952
|
+
# 1 to 128 Unicode characters in length and can't be prefixed with
|
12766
12953
|
# "aws:" or "rds:". The string can only contain only the set of
|
12767
12954
|
# Unicode letters, digits, white-space, '\_', '.', '/', '=',
|
12768
12955
|
# '+', '-' (Java regex:
|
@@ -12771,7 +12958,7 @@ module Aws::RDS
|
|
12771
12958
|
#
|
12772
12959
|
# @!attribute [rw] value
|
12773
12960
|
# A value is the optional value of the tag. The string value can be
|
12774
|
-
# from 1 to 256 Unicode characters in length and
|
12961
|
+
# from 1 to 256 Unicode characters in length and can't be prefixed
|
12775
12962
|
# with "aws:" or "rds:". The string can only contain only the set
|
12776
12963
|
# of Unicode letters, digits, white-space, '\_', '.', '/',
|
12777
12964
|
# '=', '+', '-' (Java regex:
|