aws-sdk-rds 1.69.0 → 1.70.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 +194 -141
- data/lib/aws-sdk-rds/db_cluster.rb +23 -14
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +19 -5
- data/lib/aws-sdk-rds/db_engine.rb +3 -3
- data/lib/aws-sdk-rds/db_engine_version.rb +3 -3
- data/lib/aws-sdk-rds/db_instance.rb +43 -31
- data/lib/aws-sdk-rds/db_log_file.rb +1 -1
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_parameter_group_family.rb +4 -4
- data/lib/aws-sdk-rds/db_security_group.rb +5 -5
- data/lib/aws-sdk-rds/db_snapshot.rb +14 -6
- data/lib/aws-sdk-rds/event_subscription.rb +3 -3
- data/lib/aws-sdk-rds/resource.rb +42 -33
- data/lib/aws-sdk-rds/types.rb +175 -134
- metadata +2 -2
@@ -202,7 +202,7 @@ module Aws::RDS
|
|
202
202
|
# file is returned up to a maximum of 10000 lines, starting with the
|
203
203
|
# most recent log entries first.
|
204
204
|
#
|
205
|
-
# * If NumberOfLines is specified and Marker
|
205
|
+
# * If NumberOfLines is specified and Marker isn't specified, then the
|
206
206
|
# most recent lines from the end of the log file are returned.
|
207
207
|
#
|
208
208
|
# * If Marker is specified as "0", then the specified number of lines
|
@@ -475,7 +475,7 @@ module Aws::RDS
|
|
475
475
|
# A list of event categories that trigger notifications for a event
|
476
476
|
# notification subscription.
|
477
477
|
# @option options [Array<Types::Filter>] :filters
|
478
|
-
# This parameter
|
478
|
+
# This parameter isn't currently supported.
|
479
479
|
# @return [Event::Collection]
|
480
480
|
def events(options = {})
|
481
481
|
batches = Enumerator.new do |y|
|
@@ -519,7 +519,7 @@ module Aws::RDS
|
|
519
519
|
#
|
520
520
|
# Valid Values: `user | system | engine-default`
|
521
521
|
# @option options [Array<Types::Filter>] :filters
|
522
|
-
# This parameter
|
522
|
+
# This parameter isn't currently supported.
|
523
523
|
# @return [Parameter::Collection]
|
524
524
|
def parameters(options = {})
|
525
525
|
batches = Enumerator.new do |y|
|
@@ -169,12 +169,12 @@ module Aws::RDS
|
|
169
169
|
# })
|
170
170
|
# @param [Hash] options ({})
|
171
171
|
# @option options [Array<Types::Filter>] :filters
|
172
|
-
# This parameter
|
172
|
+
# This parameter isn't currently supported.
|
173
173
|
# @option options [Integer] :max_records
|
174
174
|
# The maximum number of records to include in the response. If more
|
175
175
|
# records exist than the specified `MaxRecords` value, a pagination
|
176
|
-
# token called a marker is included in the response so
|
177
|
-
#
|
176
|
+
# token called a marker is included in the response so you can retrieve
|
177
|
+
# the remaining results.
|
178
178
|
#
|
179
179
|
# Default: 100
|
180
180
|
#
|
@@ -214,7 +214,7 @@ module Aws::RDS
|
|
214
214
|
# })
|
215
215
|
# @param [Hash] options ({})
|
216
216
|
# @option options [Array<Types::Filter>] :filters
|
217
|
-
# This parameter
|
217
|
+
# This parameter isn't currently supported.
|
218
218
|
# @return [Parameter::Collection]
|
219
219
|
def engine_default_parameters(options = {})
|
220
220
|
batches = Enumerator.new do |y|
|
@@ -222,7 +222,7 @@ module Aws::RDS
|
|
222
222
|
# `EC2SecurityGroupId` must be provided.
|
223
223
|
# @option options [String] :ec2_security_group_owner_id
|
224
224
|
# AWS account number of the owner of the EC2 security group specified in
|
225
|
-
# the `EC2SecurityGroupName` parameter. The AWS
|
225
|
+
# the `EC2SecurityGroupName` parameter. The AWS access key ID isn't an
|
226
226
|
# acceptable value. For VPC DB security groups, `EC2SecurityGroupId`
|
227
227
|
# must be provided. Otherwise, `EC2SecurityGroupOwnerId` and either
|
228
228
|
# `EC2SecurityGroupName` or `EC2SecurityGroupId` must be provided.
|
@@ -299,9 +299,9 @@ module Aws::RDS
|
|
299
299
|
# EC2SecurityGroupOwnerId and either `EC2SecurityGroupName` or
|
300
300
|
# `EC2SecurityGroupId` must be provided.
|
301
301
|
# @option options [String] :ec2_security_group_owner_id
|
302
|
-
# The AWS
|
303
|
-
# specified in the `EC2SecurityGroupName` parameter. The AWS
|
304
|
-
# ID
|
302
|
+
# The AWS account number of the owner of the EC2 security group
|
303
|
+
# specified in the `EC2SecurityGroupName` parameter. The AWS access key
|
304
|
+
# ID isn't an acceptable value. For VPC DB security groups,
|
305
305
|
# `EC2SecurityGroupId` must be provided. Otherwise,
|
306
306
|
# EC2SecurityGroupOwnerId and either `EC2SecurityGroupName` or
|
307
307
|
# `EC2SecurityGroupId` must be provided.
|
@@ -401,7 +401,7 @@ module Aws::RDS
|
|
401
401
|
# A list of event categories that trigger notifications for a event
|
402
402
|
# notification subscription.
|
403
403
|
# @option options [Array<Types::Filter>] :filters
|
404
|
-
# This parameter
|
404
|
+
# This parameter isn't currently supported.
|
405
405
|
# @return [Event::Collection]
|
406
406
|
def events(options = {})
|
407
407
|
batches = Enumerator.new do |y|
|
@@ -444,9 +444,9 @@ module Aws::RDS
|
|
444
444
|
# source DB snapshot to copy.
|
445
445
|
#
|
446
446
|
# You must specify this parameter when you copy an encrypted DB snapshot
|
447
|
-
# from another AWS Region by using the Amazon RDS API.
|
448
|
-
#
|
449
|
-
#
|
447
|
+
# from another AWS Region by using the Amazon RDS API. Don't specify
|
448
|
+
# `PreSignedUrl` when you are copying an encrypted DB snapshot in the
|
449
|
+
# same AWS Region.
|
450
450
|
#
|
451
451
|
# The presigned URL must be a valid request for the `CopyDBSnapshot` API
|
452
452
|
# action that can be executed in the source AWS Region that contains the
|
@@ -482,6 +482,14 @@ module Aws::RDS
|
|
482
482
|
# [Authenticating Requests: Using Query Parameters (AWS Signature
|
483
483
|
# Version 4)][1] and [Signature Version 4 Signing Process][2].
|
484
484
|
#
|
485
|
+
# <note markdown="1"> If you are using an AWS SDK tool or the AWS CLI, you can specify
|
486
|
+
# `SourceRegion` (or `--source-region` for the AWS CLI) instead of
|
487
|
+
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
488
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
489
|
+
# operation that can be executed in the source AWS Region.
|
490
|
+
#
|
491
|
+
# </note>
|
492
|
+
#
|
485
493
|
#
|
486
494
|
#
|
487
495
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
@@ -631,7 +639,7 @@ module Aws::RDS
|
|
631
639
|
# A value that indicates whether the DB instance is publicly accessible.
|
632
640
|
# When the DB instance is publicly accessible, it is an Internet-facing
|
633
641
|
# instance with a publicly resolvable DNS name, which resolves to a
|
634
|
-
# public IP address. When the DB instance
|
642
|
+
# public IP address. When the DB instance isn't publicly accessible, it
|
635
643
|
# is an internal instance with a DNS name that resolves to a private IP
|
636
644
|
# address. For more information, see CreateDBInstance.
|
637
645
|
# @option options [Boolean] :auto_minor_version_upgrade
|
@@ -685,7 +693,7 @@ module Aws::RDS
|
|
685
693
|
# * `sqlserver-web`
|
686
694
|
# @option options [Integer] :iops
|
687
695
|
# Specifies the amount of provisioned IOPS for the DB instance,
|
688
|
-
# expressed in I/O operations per second. If this parameter
|
696
|
+
# expressed in I/O operations per second. If this parameter isn't
|
689
697
|
# specified, the IOPS value is taken from the backup. If this parameter
|
690
698
|
# is set to 0, the new instance is converted to a non-PIOPS instance.
|
691
699
|
# The conversion takes additional time, though your DB instance is
|
@@ -934,7 +942,7 @@ module Aws::RDS
|
|
934
942
|
# A list of event categories that trigger notifications for a event
|
935
943
|
# notification subscription.
|
936
944
|
# @option options [Array<Types::Filter>] :filters
|
937
|
-
# This parameter
|
945
|
+
# This parameter isn't currently supported.
|
938
946
|
# @return [Event::Collection]
|
939
947
|
def events(options = {})
|
940
948
|
batches = Enumerator.new do |y|
|
@@ -286,7 +286,7 @@ module Aws::RDS
|
|
286
286
|
# @option options [String] :source_type
|
287
287
|
# The type of source that is generating the events. For example, if you
|
288
288
|
# want to be notified of events generated by a DB instance, you would
|
289
|
-
# set this parameter to db-instance. if this value
|
289
|
+
# set this parameter to db-instance. if this value isn't specified, all
|
290
290
|
# events are returned.
|
291
291
|
#
|
292
292
|
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
@@ -324,7 +324,7 @@ module Aws::RDS
|
|
324
324
|
# be supplied.
|
325
325
|
# @option options [Boolean] :enabled
|
326
326
|
# A value that indicates whether to activate the subscription. If the
|
327
|
-
# event notification subscription
|
327
|
+
# event notification subscription isn't activated, the subscription is
|
328
328
|
# created but not active.
|
329
329
|
# @option options [Array<Types::Tag>] :tags
|
330
330
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
@@ -375,7 +375,7 @@ module Aws::RDS
|
|
375
375
|
# @option options [String] :source_type
|
376
376
|
# The type of source that is generating the events. For example, if you
|
377
377
|
# want to be notified of events generated by a DB instance, you would
|
378
|
-
# set this parameter to db-instance.
|
378
|
+
# set this parameter to db-instance. If this value isn't specified, all
|
379
379
|
# events are returned.
|
380
380
|
#
|
381
381
|
# Valid values: db-instance \| db-parameter-group \| db-security-group
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -109,7 +109,8 @@ module Aws::RDS
|
|
109
109
|
# Example: `my-cluster1`
|
110
110
|
# @option options [String] :db_cluster_parameter_group_name
|
111
111
|
# The name of the DB cluster parameter group to associate with this DB
|
112
|
-
# cluster. If
|
112
|
+
# cluster. If you do not specify a value, then the default DB cluster
|
113
|
+
# parameter group for the specified DB engine and version is used.
|
113
114
|
#
|
114
115
|
# Constraints:
|
115
116
|
#
|
@@ -246,14 +247,14 @@ module Aws::RDS
|
|
246
247
|
# cluster, then you can use the KMS key alias instead of the ARN for the
|
247
248
|
# KMS encryption key.
|
248
249
|
#
|
249
|
-
# If an encryption key
|
250
|
+
# If an encryption key isn't specified in `KmsKeyId`\:
|
250
251
|
#
|
251
252
|
# * If `ReplicationSourceIdentifier` identifies an encrypted source,
|
252
253
|
# then Amazon RDS will use the encryption key used to encrypt the
|
253
254
|
# source. Otherwise, Amazon RDS will use your default encryption key.
|
254
255
|
#
|
255
256
|
# * If the `StorageEncrypted` parameter is enabled and
|
256
|
-
# `ReplicationSourceIdentifier`
|
257
|
+
# `ReplicationSourceIdentifier` isn't specified, then Amazon RDS will
|
257
258
|
# use your default encryption key.
|
258
259
|
#
|
259
260
|
# AWS KMS creates the default encryption key for your AWS account. Your
|
@@ -299,6 +300,14 @@ module Aws::RDS
|
|
299
300
|
# Authenticating Requests: Using Query Parameters (AWS Signature Version
|
300
301
|
# 4)][1] and [ Signature Version 4 Signing Process][2].
|
301
302
|
#
|
303
|
+
# <note markdown="1"> If you are using an AWS SDK tool or the AWS CLI, you can specify
|
304
|
+
# `SourceRegion` (or `--source-region` for the AWS CLI) instead of
|
305
|
+
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
306
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
307
|
+
# operation that can be executed in the source AWS Region.
|
308
|
+
#
|
309
|
+
# </note>
|
310
|
+
#
|
302
311
|
#
|
303
312
|
#
|
304
313
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
@@ -503,7 +512,7 @@ module Aws::RDS
|
|
503
512
|
# **MySQL**
|
504
513
|
#
|
505
514
|
# The name of the database to create when the DB instance is created. If
|
506
|
-
# this parameter
|
515
|
+
# this parameter isn't specified, no database is created in the DB
|
507
516
|
# instance.
|
508
517
|
#
|
509
518
|
# Constraints:
|
@@ -515,7 +524,7 @@ module Aws::RDS
|
|
515
524
|
# **MariaDB**
|
516
525
|
#
|
517
526
|
# The name of the database to create when the DB instance is created. If
|
518
|
-
# this parameter
|
527
|
+
# this parameter isn't specified, no database is created in the DB
|
519
528
|
# instance.
|
520
529
|
#
|
521
530
|
# Constraints:
|
@@ -527,7 +536,7 @@ module Aws::RDS
|
|
527
536
|
# **PostgreSQL**
|
528
537
|
#
|
529
538
|
# The name of the database to create when the DB instance is created. If
|
530
|
-
# this parameter
|
539
|
+
# this parameter isn't specified, the default "postgres" database is
|
531
540
|
# created in the DB instance.
|
532
541
|
#
|
533
542
|
# Constraints:
|
@@ -560,7 +569,7 @@ module Aws::RDS
|
|
560
569
|
# **Amazon Aurora**
|
561
570
|
#
|
562
571
|
# The name of the database to create when the primary instance of the DB
|
563
|
-
# cluster is created. If this parameter
|
572
|
+
# cluster is created. If this parameter isn't specified, no database is
|
564
573
|
# created in the DB instance.
|
565
574
|
#
|
566
575
|
# Constraints:
|
@@ -872,8 +881,8 @@ module Aws::RDS
|
|
872
881
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance
|
873
882
|
# @option options [String] :db_parameter_group_name
|
874
883
|
# The name of the DB parameter group to associate with this DB instance.
|
875
|
-
# If you do not specify a value
|
876
|
-
#
|
884
|
+
# If you do not specify a value, then the default DB parameter group for
|
885
|
+
# the specified DB engine and version is used.
|
877
886
|
#
|
878
887
|
# Constraints:
|
879
888
|
#
|
@@ -1067,15 +1076,15 @@ module Aws::RDS
|
|
1067
1076
|
# A value that indicates whether the DB instance is publicly accessible.
|
1068
1077
|
# When the DB instance is publicly accessible, it is an Internet-facing
|
1069
1078
|
# instance with a publicly resolvable DNS name, which resolves to a
|
1070
|
-
# public IP address. When the DB instance
|
1079
|
+
# public IP address. When the DB instance isn't publicly accessible, it
|
1071
1080
|
# is an internal instance with a DNS name that resolves to a private IP
|
1072
1081
|
# address.
|
1073
1082
|
#
|
1074
1083
|
# Default: The default behavior varies depending on whether
|
1075
1084
|
# `DBSubnetGroupName` is specified.
|
1076
1085
|
#
|
1077
|
-
# If `DBSubnetGroupName`
|
1078
|
-
#
|
1086
|
+
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
1087
|
+
# isn't specified, the following applies:
|
1079
1088
|
#
|
1080
1089
|
# * If the default VPC in the target region doesn’t have an Internet
|
1081
1090
|
# gateway attached to it, the DB instance is private.
|
@@ -1083,7 +1092,7 @@ module Aws::RDS
|
|
1083
1092
|
# * If the default VPC in the target region has an Internet gateway
|
1084
1093
|
# attached to it, the DB instance is public.
|
1085
1094
|
#
|
1086
|
-
# If `DBSubnetGroupName` is specified, and `PubliclyAccessible`
|
1095
|
+
# If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
|
1087
1096
|
# specified, the following applies:
|
1088
1097
|
#
|
1089
1098
|
# * If the subnets are part of a VPC that doesn’t have an Internet
|
@@ -1112,7 +1121,7 @@ module Aws::RDS
|
|
1112
1121
|
# the device.
|
1113
1122
|
# @option options [Boolean] :storage_encrypted
|
1114
1123
|
# A value that indicates whether the DB instance is encrypted. By
|
1115
|
-
# default, it
|
1124
|
+
# default, it isn't encrypted.
|
1116
1125
|
#
|
1117
1126
|
# **Amazon Aurora**
|
1118
1127
|
#
|
@@ -1470,7 +1479,7 @@ module Aws::RDS
|
|
1470
1479
|
# @option options [String] :source_type
|
1471
1480
|
# The type of source that is generating the events. For example, if you
|
1472
1481
|
# want to be notified of events generated by a DB instance, you would
|
1473
|
-
# set this parameter to db-instance. if this value
|
1482
|
+
# set this parameter to db-instance. if this value isn't specified, all
|
1474
1483
|
# events are returned.
|
1475
1484
|
#
|
1476
1485
|
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
@@ -1508,7 +1517,7 @@ module Aws::RDS
|
|
1508
1517
|
# be supplied.
|
1509
1518
|
# @option options [Boolean] :enabled
|
1510
1519
|
# A value that indicates whether to activate the subscription. If the
|
1511
|
-
# event notification subscription
|
1520
|
+
# event notification subscription isn't activated, the subscription is
|
1512
1521
|
# created but not active.
|
1513
1522
|
# @option options [Array<Types::Tag>] :tags
|
1514
1523
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
@@ -1631,12 +1640,12 @@ module Aws::RDS
|
|
1631
1640
|
#
|
1632
1641
|
# ^
|
1633
1642
|
# @option options [Array<Types::Filter>] :filters
|
1634
|
-
# This parameter
|
1643
|
+
# This parameter isn't currently supported.
|
1635
1644
|
# @option options [Integer] :max_records
|
1636
1645
|
# The maximum number of records to include in the response. If more
|
1637
1646
|
# records exist than the specified `MaxRecords` value, a pagination
|
1638
|
-
# token called a marker is included in the response so
|
1639
|
-
#
|
1647
|
+
# token called a marker is included in the response so you can retrieve
|
1648
|
+
# the remaining results.
|
1640
1649
|
#
|
1641
1650
|
# Default: 100
|
1642
1651
|
#
|
@@ -1706,12 +1715,12 @@ module Aws::RDS
|
|
1706
1715
|
#
|
1707
1716
|
# ^
|
1708
1717
|
# @option options [Array<Types::Filter>] :filters
|
1709
|
-
# This parameter
|
1718
|
+
# This parameter isn't currently supported.
|
1710
1719
|
# @option options [Integer] :max_records
|
1711
1720
|
# The maximum number of records to include in the response. If more
|
1712
1721
|
# records exist than the specified `MaxRecords` value, a pagination
|
1713
|
-
# token called a marker is included in the response so
|
1714
|
-
#
|
1722
|
+
# token called a marker is included in the response so you can retrieve
|
1723
|
+
# the remaining results.
|
1715
1724
|
#
|
1716
1725
|
# Default: 100
|
1717
1726
|
#
|
@@ -1847,7 +1856,7 @@ module Aws::RDS
|
|
1847
1856
|
#
|
1848
1857
|
# ^
|
1849
1858
|
# @option options [Array<Types::Filter>] :filters
|
1850
|
-
# This parameter
|
1859
|
+
# This parameter isn't currently supported.
|
1851
1860
|
# @option options [Boolean] :default_only
|
1852
1861
|
# A value that indicates whether only the default version of the
|
1853
1862
|
# specified engine or engine and major version combination is returned.
|
@@ -2003,7 +2012,7 @@ module Aws::RDS
|
|
2003
2012
|
#
|
2004
2013
|
# ^
|
2005
2014
|
# @option options [Array<Types::Filter>] :filters
|
2006
|
-
# This parameter
|
2015
|
+
# This parameter isn't currently supported.
|
2007
2016
|
# @return [DBParameterGroup::Collection]
|
2008
2017
|
def db_parameter_groups(options = {})
|
2009
2018
|
batches = Enumerator.new do |y|
|
@@ -2047,7 +2056,7 @@ module Aws::RDS
|
|
2047
2056
|
# @option options [String] :db_security_group_name
|
2048
2057
|
# The name of the DB security group to return details for.
|
2049
2058
|
# @option options [Array<Types::Filter>] :filters
|
2050
|
-
# This parameter
|
2059
|
+
# This parameter isn't currently supported.
|
2051
2060
|
# @return [DBSecurityGroup::Collection]
|
2052
2061
|
def db_security_groups(options = {})
|
2053
2062
|
batches = Enumerator.new do |y|
|
@@ -2087,7 +2096,7 @@ module Aws::RDS
|
|
2087
2096
|
# @option options [String] :db_instance_identifier
|
2088
2097
|
# The ID of the DB instance to retrieve the list of DB snapshots for.
|
2089
2098
|
# This parameter can't be used in conjunction with
|
2090
|
-
# `DBSnapshotIdentifier`. This parameter
|
2099
|
+
# `DBSnapshotIdentifier`. This parameter isn't case-sensitive.
|
2091
2100
|
#
|
2092
2101
|
# Constraints:
|
2093
2102
|
#
|
@@ -2221,7 +2230,7 @@ module Aws::RDS
|
|
2221
2230
|
# @option options [String] :db_subnet_group_name
|
2222
2231
|
# The name of the DB subnet group to return details for.
|
2223
2232
|
# @option options [Array<Types::Filter>] :filters
|
2224
|
-
# This parameter
|
2233
|
+
# This parameter isn't currently supported.
|
2225
2234
|
# @return [DBSubnetGroup::Collection]
|
2226
2235
|
def db_subnet_groups(options = {})
|
2227
2236
|
batches = Enumerator.new do |y|
|
@@ -2268,7 +2277,7 @@ module Aws::RDS
|
|
2268
2277
|
# Valid values: db-instance \| db-parameter-group \| db-security-group
|
2269
2278
|
# \| db-snapshot
|
2270
2279
|
# @option options [Array<Types::Filter>] :filters
|
2271
|
-
# This parameter
|
2280
|
+
# This parameter isn't currently supported.
|
2272
2281
|
# @return [EventCategoryMap::Collection]
|
2273
2282
|
def event_category_maps(options = {})
|
2274
2283
|
batches = Enumerator.new do |y|
|
@@ -2311,7 +2320,7 @@ module Aws::RDS
|
|
2311
2320
|
# The name of the RDS event notification subscription you want to
|
2312
2321
|
# describe.
|
2313
2322
|
# @option options [Array<Types::Filter>] :filters
|
2314
|
-
# This parameter
|
2323
|
+
# This parameter isn't currently supported.
|
2315
2324
|
# @return [EventSubscription::Collection]
|
2316
2325
|
def event_subscriptions(options = {})
|
2317
2326
|
batches = Enumerator.new do |y|
|
@@ -2400,7 +2409,7 @@ module Aws::RDS
|
|
2400
2409
|
# A list of event categories that trigger notifications for a event
|
2401
2410
|
# notification subscription.
|
2402
2411
|
# @option options [Array<Types::Filter>] :filters
|
2403
|
-
# This parameter
|
2412
|
+
# This parameter isn't currently supported.
|
2404
2413
|
# @return [Event::Collection]
|
2405
2414
|
def events(options = {})
|
2406
2415
|
batches = Enumerator.new do |y|
|
@@ -2448,7 +2457,7 @@ module Aws::RDS
|
|
2448
2457
|
# The name of the option group to describe. Can't be supplied together
|
2449
2458
|
# with EngineName or MajorEngineVersion.
|
2450
2459
|
# @option options [Array<Types::Filter>] :filters
|
2451
|
-
# This parameter
|
2460
|
+
# This parameter isn't currently supported.
|
2452
2461
|
# @option options [String] :engine_name
|
2453
2462
|
# Filters the list of option groups to only include groups associated
|
2454
2463
|
# with a specific database engine.
|
@@ -2550,7 +2559,7 @@ module Aws::RDS
|
|
2550
2559
|
#
|
2551
2560
|
# </note>
|
2552
2561
|
# @option options [Array<Types::Filter>] :filters
|
2553
|
-
# This parameter
|
2562
|
+
# This parameter isn't currently supported.
|
2554
2563
|
# @return [ReservedDBInstance::Collection]
|
2555
2564
|
def reserved_db_instances(options = {})
|
2556
2565
|
batches = Enumerator.new do |y|
|
@@ -2627,7 +2636,7 @@ module Aws::RDS
|
|
2627
2636
|
# A value that indicates whether to show only those reservations that
|
2628
2637
|
# support Multi-AZ.
|
2629
2638
|
# @option options [Array<Types::Filter>] :filters
|
2630
|
-
# This parameter
|
2639
|
+
# This parameter isn't currently supported.
|
2631
2640
|
# @return [ReservedDBInstancesOffering::Collection]
|
2632
2641
|
def reserved_db_instances_offerings(options = {})
|
2633
2642
|
batches = Enumerator.new do |y|
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -186,7 +186,7 @@ module Aws::RDS
|
|
186
186
|
# @!attribute [rw] feature_name
|
187
187
|
# The name of the feature for the DB instance that the IAM role is to
|
188
188
|
# be associated with. For the list of supported feature names, see
|
189
|
-
#
|
189
|
+
# DBEngineVersion.
|
190
190
|
# @return [String]
|
191
191
|
#
|
192
192
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AddRoleToDBInstanceMessage AWS API Documentation
|
@@ -380,8 +380,8 @@ module Aws::RDS
|
|
380
380
|
#
|
381
381
|
# @!attribute [rw] ec2_security_group_owner_id
|
382
382
|
# AWS account number of the owner of the EC2 security group specified
|
383
|
-
# in the `EC2SecurityGroupName` parameter. The AWS
|
384
|
-
#
|
383
|
+
# in the `EC2SecurityGroupName` parameter. The AWS access key ID
|
384
|
+
# isn't an acceptable value. For VPC DB security groups,
|
385
385
|
# `EC2SecurityGroupId` must be provided. Otherwise,
|
386
386
|
# `EC2SecurityGroupOwnerId` and either `EC2SecurityGroupName` or
|
387
387
|
# `EC2SecurityGroupId` must be provided.
|
@@ -492,7 +492,7 @@ module Aws::RDS
|
|
492
492
|
# in ISO 8601 format. For more information about ISO 8601, see the
|
493
493
|
# [ISO8601 Wikipedia page.][1]
|
494
494
|
#
|
495
|
-
# <note markdown="1"> If the specified time
|
495
|
+
# <note markdown="1"> If the specified time isn't a consistent time for the DB cluster,
|
496
496
|
# Aurora automatically chooses the nearest possible consistent time
|
497
497
|
# for the DB cluster.
|
498
498
|
#
|
@@ -761,8 +761,8 @@ module Aws::RDS
|
|
761
761
|
# }
|
762
762
|
#
|
763
763
|
# @!attribute [rw] source_db_cluster_snapshot_identifier
|
764
|
-
# The identifier of the DB cluster snapshot to copy. This parameter
|
765
|
-
#
|
764
|
+
# The identifier of the DB cluster snapshot to copy. This parameter
|
765
|
+
# isn't case-sensitive.
|
766
766
|
#
|
767
767
|
# You can't copy an encrypted, shared DB cluster snapshot from one
|
768
768
|
# AWS Region to another.
|
@@ -788,7 +788,7 @@ module Aws::RDS
|
|
788
788
|
#
|
789
789
|
# @!attribute [rw] target_db_cluster_snapshot_identifier
|
790
790
|
# The identifier of the new DB cluster snapshot to create from the
|
791
|
-
# source DB cluster snapshot. This parameter
|
791
|
+
# source DB cluster snapshot. This parameter isn't case-sensitive.
|
792
792
|
#
|
793
793
|
# Constraints:
|
794
794
|
#
|
@@ -831,7 +831,8 @@ module Aws::RDS
|
|
831
831
|
# `CopyDBClusterSnapshot` API action in the AWS Region that contains
|
832
832
|
# the source DB cluster snapshot to copy. The `PreSignedUrl` parameter
|
833
833
|
# must be used when copying an encrypted DB cluster snapshot from
|
834
|
-
# another AWS Region.
|
834
|
+
# another AWS Region. Don't specify `PreSignedUrl` when you are
|
835
|
+
# copying an encrypted DB cluster snapshot in the same AWS Region.
|
835
836
|
#
|
836
837
|
# The pre-signed URL must be a valid request for the
|
837
838
|
# `CopyDBSClusterSnapshot` API action that can be executed in the
|
@@ -861,6 +862,14 @@ module Aws::RDS
|
|
861
862
|
# Authenticating Requests: Using Query Parameters (AWS Signature
|
862
863
|
# Version 4)][1] and [ Signature Version 4 Signing Process][2].
|
863
864
|
#
|
865
|
+
# <note markdown="1"> If you are using an AWS SDK tool or the AWS CLI, you can specify
|
866
|
+
# `SourceRegion` (or `--source-region` for the AWS CLI) instead of
|
867
|
+
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
868
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
869
|
+
# operation that can be executed in the source AWS Region.
|
870
|
+
#
|
871
|
+
# </note>
|
872
|
+
#
|
864
873
|
#
|
865
874
|
#
|
866
875
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
@@ -1112,10 +1121,9 @@ module Aws::RDS
|
|
1112
1121
|
# the source DB snapshot to copy.
|
1113
1122
|
#
|
1114
1123
|
# You must specify this parameter when you copy an encrypted DB
|
1115
|
-
# snapshot from another AWS Region by using the Amazon RDS API.
|
1116
|
-
#
|
1117
|
-
#
|
1118
|
-
# using the AWS CLI.
|
1124
|
+
# snapshot from another AWS Region by using the Amazon RDS API. Don't
|
1125
|
+
# specify `PreSignedUrl` when you are copying an encrypted DB snapshot
|
1126
|
+
# in the same AWS Region.
|
1119
1127
|
#
|
1120
1128
|
# The presigned URL must be a valid request for the `CopyDBSnapshot`
|
1121
1129
|
# API action that can be executed in the source AWS Region that
|
@@ -1153,6 +1161,14 @@ module Aws::RDS
|
|
1153
1161
|
# [Authenticating Requests: Using Query Parameters (AWS Signature
|
1154
1162
|
# Version 4)][1] and [Signature Version 4 Signing Process][2].
|
1155
1163
|
#
|
1164
|
+
# <note markdown="1"> If you are using an AWS SDK tool or the AWS CLI, you can specify
|
1165
|
+
# `SourceRegion` (or `--source-region` for the AWS CLI) instead of
|
1166
|
+
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
1167
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
1168
|
+
# operation that can be executed in the source AWS Region.
|
1169
|
+
#
|
1170
|
+
# </note>
|
1171
|
+
#
|
1156
1172
|
#
|
1157
1173
|
#
|
1158
1174
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
@@ -1321,14 +1337,14 @@ module Aws::RDS
|
|
1321
1337
|
# The name of a new VPN tunnel between the Amazon RDS website and the
|
1322
1338
|
# VMware vSphere cluster.
|
1323
1339
|
#
|
1324
|
-
# Specify this parameter only if `ExistingVpnId`
|
1340
|
+
# Specify this parameter only if `ExistingVpnId` isn't specified.
|
1325
1341
|
# @return [String]
|
1326
1342
|
#
|
1327
1343
|
# @!attribute [rw] vpn_tunnel_originator_ip
|
1328
1344
|
# The IP address of network traffic from your on-premises data center.
|
1329
1345
|
# A custom AZ receives the network traffic.
|
1330
1346
|
#
|
1331
|
-
# Specify this parameter only if `ExistingVpnId`
|
1347
|
+
# Specify this parameter only if `ExistingVpnId` isn't specified.
|
1332
1348
|
# @return [String]
|
1333
1349
|
#
|
1334
1350
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomAvailabilityZoneMessage AWS API Documentation
|
@@ -1507,7 +1523,8 @@ module Aws::RDS
|
|
1507
1523
|
#
|
1508
1524
|
# @!attribute [rw] db_cluster_parameter_group_name
|
1509
1525
|
# The name of the DB cluster parameter group to associate with this DB
|
1510
|
-
# cluster. If
|
1526
|
+
# cluster. If you do not specify a value, then the default DB cluster
|
1527
|
+
# parameter group for the specified DB engine and version is used.
|
1511
1528
|
#
|
1512
1529
|
# Constraints:
|
1513
1530
|
#
|
@@ -1673,7 +1690,7 @@ module Aws::RDS
|
|
1673
1690
|
# cluster, then you can use the KMS key alias instead of the ARN for
|
1674
1691
|
# the KMS encryption key.
|
1675
1692
|
#
|
1676
|
-
# If an encryption key
|
1693
|
+
# If an encryption key isn't specified in `KmsKeyId`\:
|
1677
1694
|
#
|
1678
1695
|
# * If `ReplicationSourceIdentifier` identifies an encrypted source,
|
1679
1696
|
# then Amazon RDS will use the encryption key used to encrypt the
|
@@ -1681,7 +1698,7 @@ module Aws::RDS
|
|
1681
1698
|
# key.
|
1682
1699
|
#
|
1683
1700
|
# * If the `StorageEncrypted` parameter is enabled and
|
1684
|
-
# `ReplicationSourceIdentifier`
|
1701
|
+
# `ReplicationSourceIdentifier` isn't specified, then Amazon RDS
|
1685
1702
|
# will use your default encryption key.
|
1686
1703
|
#
|
1687
1704
|
# AWS KMS creates the default encryption key for your AWS account.
|
@@ -1729,6 +1746,14 @@ module Aws::RDS
|
|
1729
1746
|
# Authenticating Requests: Using Query Parameters (AWS Signature
|
1730
1747
|
# Version 4)][1] and [ Signature Version 4 Signing Process][2].
|
1731
1748
|
#
|
1749
|
+
# <note markdown="1"> If you are using an AWS SDK tool or the AWS CLI, you can specify
|
1750
|
+
# `SourceRegion` (or `--source-region` for the AWS CLI) instead of
|
1751
|
+
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
1752
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
1753
|
+
# operation that can be executed in the source AWS Region.
|
1754
|
+
#
|
1755
|
+
# </note>
|
1756
|
+
#
|
1732
1757
|
#
|
1733
1758
|
#
|
1734
1759
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
@@ -1985,7 +2010,7 @@ module Aws::RDS
|
|
1985
2010
|
#
|
1986
2011
|
# @!attribute [rw] db_cluster_identifier
|
1987
2012
|
# The identifier of the DB cluster to create a snapshot for. This
|
1988
|
-
# parameter
|
2013
|
+
# parameter isn't case-sensitive.
|
1989
2014
|
#
|
1990
2015
|
# Constraints:
|
1991
2016
|
#
|
@@ -2092,7 +2117,7 @@ module Aws::RDS
|
|
2092
2117
|
# **MySQL**
|
2093
2118
|
#
|
2094
2119
|
# The name of the database to create when the DB instance is created.
|
2095
|
-
# If this parameter
|
2120
|
+
# If this parameter isn't specified, no database is created in the DB
|
2096
2121
|
# instance.
|
2097
2122
|
#
|
2098
2123
|
# Constraints:
|
@@ -2104,7 +2129,7 @@ module Aws::RDS
|
|
2104
2129
|
# **MariaDB**
|
2105
2130
|
#
|
2106
2131
|
# The name of the database to create when the DB instance is created.
|
2107
|
-
# If this parameter
|
2132
|
+
# If this parameter isn't specified, no database is created in the DB
|
2108
2133
|
# instance.
|
2109
2134
|
#
|
2110
2135
|
# Constraints:
|
@@ -2116,7 +2141,7 @@ module Aws::RDS
|
|
2116
2141
|
# **PostgreSQL**
|
2117
2142
|
#
|
2118
2143
|
# The name of the database to create when the DB instance is created.
|
2119
|
-
# If this parameter
|
2144
|
+
# If this parameter isn't specified, the default "postgres"
|
2120
2145
|
# database is created in the DB instance.
|
2121
2146
|
#
|
2122
2147
|
# Constraints:
|
@@ -2149,7 +2174,7 @@ module Aws::RDS
|
|
2149
2174
|
# **Amazon Aurora**
|
2150
2175
|
#
|
2151
2176
|
# The name of the database to create when the primary instance of the
|
2152
|
-
# DB cluster is created. If this parameter
|
2177
|
+
# DB cluster is created. If this parameter isn't specified, no
|
2153
2178
|
# database is created in the DB instance.
|
2154
2179
|
#
|
2155
2180
|
# Constraints:
|
@@ -2486,9 +2511,8 @@ module Aws::RDS
|
|
2486
2511
|
#
|
2487
2512
|
# @!attribute [rw] db_parameter_group_name
|
2488
2513
|
# The name of the DB parameter group to associate with this DB
|
2489
|
-
# instance. If you do not specify a value
|
2490
|
-
#
|
2491
|
-
# used.
|
2514
|
+
# instance. If you do not specify a value, then the default DB
|
2515
|
+
# parameter group for the specified DB engine and version is used.
|
2492
2516
|
#
|
2493
2517
|
# Constraints:
|
2494
2518
|
#
|
@@ -2705,15 +2729,15 @@ module Aws::RDS
|
|
2705
2729
|
# A value that indicates whether the DB instance is publicly
|
2706
2730
|
# accessible. When the DB instance is publicly accessible, it is an
|
2707
2731
|
# Internet-facing instance with a publicly resolvable DNS name, which
|
2708
|
-
# resolves to a public IP address. When the DB instance
|
2732
|
+
# resolves to a public IP address. When the DB instance isn't
|
2709
2733
|
# publicly accessible, it is an internal instance with a DNS name that
|
2710
2734
|
# resolves to a private IP address.
|
2711
2735
|
#
|
2712
2736
|
# Default: The default behavior varies depending on whether
|
2713
2737
|
# `DBSubnetGroupName` is specified.
|
2714
2738
|
#
|
2715
|
-
# If `DBSubnetGroupName`
|
2716
|
-
#
|
2739
|
+
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
2740
|
+
# isn't specified, the following applies:
|
2717
2741
|
#
|
2718
2742
|
# * If the default VPC in the target region doesn’t have an Internet
|
2719
2743
|
# gateway attached to it, the DB instance is private.
|
@@ -2721,7 +2745,7 @@ module Aws::RDS
|
|
2721
2745
|
# * If the default VPC in the target region has an Internet gateway
|
2722
2746
|
# attached to it, the DB instance is public.
|
2723
2747
|
#
|
2724
|
-
# If `DBSubnetGroupName` is specified, and `PubliclyAccessible`
|
2748
|
+
# If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
|
2725
2749
|
# specified, the following applies:
|
2726
2750
|
#
|
2727
2751
|
# * If the subnets are part of a VPC that doesn’t have an Internet
|
@@ -2762,7 +2786,7 @@ module Aws::RDS
|
|
2762
2786
|
#
|
2763
2787
|
# @!attribute [rw] storage_encrypted
|
2764
2788
|
# A value that indicates whether the DB instance is encrypted. By
|
2765
|
-
# default, it
|
2789
|
+
# default, it isn't encrypted.
|
2766
2790
|
#
|
2767
2791
|
# **Amazon Aurora**
|
2768
2792
|
#
|
@@ -3189,6 +3213,11 @@ module Aws::RDS
|
|
3189
3213
|
# same region Read Replica, or the default `DBParameterGroup` for the
|
3190
3214
|
# specified DB engine for a cross region Read Replica.
|
3191
3215
|
#
|
3216
|
+
# <note markdown="1"> Currently, specifying a parameter group for this operation is only
|
3217
|
+
# supported for Oracle DB instances.
|
3218
|
+
#
|
3219
|
+
# </note>
|
3220
|
+
#
|
3192
3221
|
# Constraints:
|
3193
3222
|
#
|
3194
3223
|
# * Must be 1 to 255 letters, numbers, or hyphens.
|
@@ -3202,7 +3231,7 @@ module Aws::RDS
|
|
3202
3231
|
# A value that indicates whether the DB instance is publicly
|
3203
3232
|
# accessible. When the DB instance is publicly accessible, it is an
|
3204
3233
|
# Internet-facing instance with a publicly resolvable DNS name, which
|
3205
|
-
# resolves to a public IP address. When the DB instance
|
3234
|
+
# resolves to a public IP address. When the DB instance isn't
|
3206
3235
|
# publicly accessible, it is an internal instance with a DNS name that
|
3207
3236
|
# resolves to a private IP address. For more information, see
|
3208
3237
|
# CreateDBInstance.
|
@@ -3220,7 +3249,7 @@ module Aws::RDS
|
|
3220
3249
|
# @!attribute [rw] db_subnet_group_name
|
3221
3250
|
# Specifies a DB subnet group for the DB instance. The new DB instance
|
3222
3251
|
# is created in the VPC associated with the DB subnet group. If no DB
|
3223
|
-
# subnet group is specified, then the new DB instance
|
3252
|
+
# subnet group is specified, then the new DB instance isn't created
|
3224
3253
|
# in a VPC.
|
3225
3254
|
#
|
3226
3255
|
# Constraints:
|
@@ -3322,10 +3351,9 @@ module Aws::RDS
|
|
3322
3351
|
# that contains the source DB instance.
|
3323
3352
|
#
|
3324
3353
|
# You must specify this parameter when you create an encrypted Read
|
3325
|
-
# Replica from another AWS Region by using the Amazon RDS API.
|
3326
|
-
# specify
|
3327
|
-
#
|
3328
|
-
# using the AWS CLI.
|
3354
|
+
# Replica from another AWS Region by using the Amazon RDS API. Don't
|
3355
|
+
# specify `PreSignedUrl` when you are creating an encrypted Read
|
3356
|
+
# Replica in the same AWS Region.
|
3329
3357
|
#
|
3330
3358
|
# The presigned URL must be a valid request for the
|
3331
3359
|
# `CreateDBInstanceReadReplica` API action that can be executed in the
|
@@ -3364,6 +3392,14 @@ module Aws::RDS
|
|
3364
3392
|
# [Authenticating Requests: Using Query Parameters (AWS Signature
|
3365
3393
|
# Version 4)][1] and [Signature Version 4 Signing Process][2].
|
3366
3394
|
#
|
3395
|
+
# <note markdown="1"> If you are using an AWS SDK tool or the AWS CLI, you can specify
|
3396
|
+
# `SourceRegion` (or `--source-region` for the AWS CLI) instead of
|
3397
|
+
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
3398
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
3399
|
+
# operation that can be executed in the source AWS Region.
|
3400
|
+
#
|
3401
|
+
# </note>
|
3402
|
+
#
|
3367
3403
|
#
|
3368
3404
|
#
|
3369
3405
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
@@ -3846,7 +3882,7 @@ module Aws::RDS
|
|
3846
3882
|
# @!attribute [rw] source_type
|
3847
3883
|
# The type of source that is generating the events. For example, if
|
3848
3884
|
# you want to be notified of events generated by a DB instance, you
|
3849
|
-
# would set this parameter to db-instance. if this value
|
3885
|
+
# would set this parameter to db-instance. if this value isn't
|
3850
3886
|
# specified, all events are returned.
|
3851
3887
|
#
|
3852
3888
|
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group`
|
@@ -3890,7 +3926,7 @@ module Aws::RDS
|
|
3890
3926
|
#
|
3891
3927
|
# @!attribute [rw] enabled
|
3892
3928
|
# A value that indicates whether to activate the subscription. If the
|
3893
|
-
# event notification subscription
|
3929
|
+
# event notification subscription isn't activated, the subscription
|
3894
3930
|
# is created but not active.
|
3895
3931
|
# @return [Boolean]
|
3896
3932
|
#
|
@@ -4136,7 +4172,7 @@ module Aws::RDS
|
|
4136
4172
|
# For all database engines except Amazon Aurora, `AllocatedStorage`
|
4137
4173
|
# specifies the allocated storage size in gibibytes (GiB). For Aurora,
|
4138
4174
|
# `AllocatedStorage` always returns 1, because Aurora DB cluster
|
4139
|
-
# storage size
|
4175
|
+
# storage size isn't fixed, but instead automatically adjusts as
|
4140
4176
|
# needed.
|
4141
4177
|
# @return [Integer]
|
4142
4178
|
#
|
@@ -5134,8 +5170,8 @@ module Aws::RDS
|
|
5134
5170
|
#
|
5135
5171
|
# @!attribute [rw] default_character_set
|
5136
5172
|
# The default character set for new instances of this engine version,
|
5137
|
-
# if the `CharacterSetName` parameter of the CreateDBInstance API
|
5138
|
-
#
|
5173
|
+
# if the `CharacterSetName` parameter of the CreateDBInstance API
|
5174
|
+
# isn't specified.
|
5139
5175
|
# @return [Types::CharacterSet]
|
5140
5176
|
#
|
5141
5177
|
# @!attribute [rw] supported_character_sets
|
@@ -5408,7 +5444,7 @@ module Aws::RDS
|
|
5408
5444
|
# @return [Boolean]
|
5409
5445
|
#
|
5410
5446
|
# @!attribute [rw] status_infos
|
5411
|
-
# The status of a Read Replica. If the instance
|
5447
|
+
# The status of a Read Replica. If the instance isn't a Read Replica,
|
5412
5448
|
# this is blank.
|
5413
5449
|
# @return [Array<Types::DBInstanceStatusInfo>]
|
5414
5450
|
#
|
@@ -5891,7 +5927,7 @@ module Aws::RDS
|
|
5891
5927
|
#
|
5892
5928
|
# @!attribute [rw] message
|
5893
5929
|
# Details of the error if there is an error for the instance. If the
|
5894
|
-
# instance
|
5930
|
+
# instance isn't in an error state, this value is blank.
|
5895
5931
|
# @return [String]
|
5896
5932
|
#
|
5897
5933
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstanceStatusInfo AWS API Documentation
|
@@ -6505,9 +6541,9 @@ module Aws::RDS
|
|
6505
6541
|
# @!attribute [rw] skip_final_snapshot
|
6506
6542
|
# A value that indicates whether to skip the creation of a final DB
|
6507
6543
|
# cluster snapshot before the DB cluster is deleted. If skip is
|
6508
|
-
# specified, no DB cluster snapshot is created. If skip
|
6544
|
+
# specified, no DB cluster snapshot is created. If skip isn't
|
6509
6545
|
# specified, a DB cluster snapshot is created before the DB cluster is
|
6510
|
-
# deleted. By default, skip
|
6546
|
+
# deleted. By default, skip isn't specified, and the DB cluster
|
6511
6547
|
# snapshot is created. By default, this parameter is disabled.
|
6512
6548
|
#
|
6513
6549
|
# <note markdown="1"> You must specify a `FinalDBSnapshotIdentifier` parameter if
|
@@ -6677,8 +6713,8 @@ module Aws::RDS
|
|
6677
6713
|
# @!attribute [rw] skip_final_snapshot
|
6678
6714
|
# A value that indicates whether to skip the creation of a final DB
|
6679
6715
|
# snapshot before the DB instance is deleted. If skip is specified, no
|
6680
|
-
# DB snapshot is created. If skip
|
6681
|
-
# created before the DB instance is deleted. By default, skip
|
6716
|
+
# DB snapshot is created. If skip isn't specified, a DB snapshot is
|
6717
|
+
# created before the DB instance is deleted. By default, skip isn't
|
6682
6718
|
# specified, and the DB snapshot is created.
|
6683
6719
|
#
|
6684
6720
|
# Note that when a DB instance is in a failure state and has a status
|
@@ -6688,8 +6724,8 @@ module Aws::RDS
|
|
6688
6724
|
#
|
6689
6725
|
# Specify skip when deleting a Read Replica.
|
6690
6726
|
#
|
6691
|
-
# <note markdown="1"> The FinalDBSnapshotIdentifier parameter must be specified if skip
|
6692
|
-
#
|
6727
|
+
# <note markdown="1"> The FinalDBSnapshotIdentifier parameter must be specified if skip
|
6728
|
+
# isn't specified.
|
6693
6729
|
#
|
6694
6730
|
# </note>
|
6695
6731
|
# @return [Boolean]
|
@@ -6935,7 +6971,7 @@ module Aws::RDS
|
|
6935
6971
|
# }
|
6936
6972
|
#
|
6937
6973
|
# @!attribute [rw] installation_media_id
|
6938
|
-
# The installation
|
6974
|
+
# The installation medium ID.
|
6939
6975
|
# @return [String]
|
6940
6976
|
#
|
6941
6977
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteInstallationMediaMessage AWS API Documentation
|
@@ -7001,13 +7037,13 @@ module Aws::RDS
|
|
7001
7037
|
# @return [String]
|
7002
7038
|
#
|
7003
7039
|
# @!attribute [rw] filters
|
7004
|
-
# This parameter
|
7040
|
+
# This parameter isn't currently supported.
|
7005
7041
|
# @return [Array<Types::Filter>]
|
7006
7042
|
#
|
7007
7043
|
# @!attribute [rw] max_records
|
7008
7044
|
# The maximum number of records to include in the response. If more
|
7009
7045
|
# records exist than the specified `MaxRecords` value, a pagination
|
7010
|
-
# token called a marker is included in the response so
|
7046
|
+
# token called a marker is included in the response so you can
|
7011
7047
|
# retrieve the remaining results.
|
7012
7048
|
#
|
7013
7049
|
# Default: 100
|
@@ -7059,7 +7095,7 @@ module Aws::RDS
|
|
7059
7095
|
# @!attribute [rw] max_records
|
7060
7096
|
# The maximum number of records to include in the response. If more
|
7061
7097
|
# records exist than the specified `MaxRecords` value, a pagination
|
7062
|
-
# token called a marker is included in the response so
|
7098
|
+
# token called a marker is included in the response so you can
|
7063
7099
|
# retrieve the remaining results.
|
7064
7100
|
#
|
7065
7101
|
# Default: 100
|
@@ -7160,7 +7196,7 @@ module Aws::RDS
|
|
7160
7196
|
# @!attribute [rw] max_records
|
7161
7197
|
# The maximum number of records to include in the response. If more
|
7162
7198
|
# records exist than the specified `MaxRecords` value, a pagination
|
7163
|
-
# token called a marker is included in the response so
|
7199
|
+
# token called a marker is included in the response so you can
|
7164
7200
|
# retrieve the remaining results.
|
7165
7201
|
#
|
7166
7202
|
# Default: 100
|
@@ -7231,7 +7267,7 @@ module Aws::RDS
|
|
7231
7267
|
# @!attribute [rw] max_records
|
7232
7268
|
# The maximum number of records to include in the response. If more
|
7233
7269
|
# records exist than the specified `MaxRecords` value, a pagination
|
7234
|
-
# token called a marker is included in the response so
|
7270
|
+
# token called a marker is included in the response so you can
|
7235
7271
|
# retrieve the remaining results.
|
7236
7272
|
#
|
7237
7273
|
# Default: 100
|
@@ -7285,13 +7321,13 @@ module Aws::RDS
|
|
7285
7321
|
# @return [String]
|
7286
7322
|
#
|
7287
7323
|
# @!attribute [rw] filters
|
7288
|
-
# This parameter
|
7324
|
+
# This parameter isn't currently supported.
|
7289
7325
|
# @return [Array<Types::Filter>]
|
7290
7326
|
#
|
7291
7327
|
# @!attribute [rw] max_records
|
7292
7328
|
# The maximum number of records to include in the response. If more
|
7293
7329
|
# records exist than the specified `MaxRecords` value, a pagination
|
7294
|
-
# token called a marker is included in the response so
|
7330
|
+
# token called a marker is included in the response so you can
|
7295
7331
|
# retrieve the remaining results.
|
7296
7332
|
#
|
7297
7333
|
# Default: 100
|
@@ -7350,13 +7386,13 @@ module Aws::RDS
|
|
7350
7386
|
# @return [String]
|
7351
7387
|
#
|
7352
7388
|
# @!attribute [rw] filters
|
7353
|
-
# This parameter
|
7389
|
+
# This parameter isn't currently supported.
|
7354
7390
|
# @return [Array<Types::Filter>]
|
7355
7391
|
#
|
7356
7392
|
# @!attribute [rw] max_records
|
7357
7393
|
# The maximum number of records to include in the response. If more
|
7358
7394
|
# records exist than the specified `MaxRecords` value, a pagination
|
7359
|
-
# token called a marker is included in the response so
|
7395
|
+
# token called a marker is included in the response so you can
|
7360
7396
|
# retrieve the remaining results.
|
7361
7397
|
#
|
7362
7398
|
# Default: 100
|
@@ -7440,7 +7476,7 @@ module Aws::RDS
|
|
7440
7476
|
# @!attribute [rw] db_cluster_identifier
|
7441
7477
|
# The ID of the DB cluster to retrieve the list of DB cluster
|
7442
7478
|
# snapshots for. This parameter can't be used in conjunction with the
|
7443
|
-
# `DBClusterSnapshotIdentifier` parameter. This parameter
|
7479
|
+
# `DBClusterSnapshotIdentifier` parameter. This parameter isn't
|
7444
7480
|
# case-sensitive.
|
7445
7481
|
#
|
7446
7482
|
# Constraints:
|
@@ -7515,7 +7551,7 @@ module Aws::RDS
|
|
7515
7551
|
# @!attribute [rw] max_records
|
7516
7552
|
# The maximum number of records to include in the response. If more
|
7517
7553
|
# records exist than the specified `MaxRecords` value, a pagination
|
7518
|
-
# token called a marker is included in the response so
|
7554
|
+
# token called a marker is included in the response so you can
|
7519
7555
|
# retrieve the remaining results.
|
7520
7556
|
#
|
7521
7557
|
# Default: 100
|
@@ -7607,7 +7643,7 @@ module Aws::RDS
|
|
7607
7643
|
# @!attribute [rw] max_records
|
7608
7644
|
# The maximum number of records to include in the response. If more
|
7609
7645
|
# records exist than the specified `MaxRecords` value, a pagination
|
7610
|
-
# token called a marker is included in the response so
|
7646
|
+
# token called a marker is included in the response so you can
|
7611
7647
|
# retrieve the remaining results.
|
7612
7648
|
#
|
7613
7649
|
# Default: 100
|
@@ -7681,13 +7717,13 @@ module Aws::RDS
|
|
7681
7717
|
# @return [String]
|
7682
7718
|
#
|
7683
7719
|
# @!attribute [rw] filters
|
7684
|
-
# This parameter
|
7720
|
+
# This parameter isn't currently supported.
|
7685
7721
|
# @return [Array<Types::Filter>]
|
7686
7722
|
#
|
7687
7723
|
# @!attribute [rw] max_records
|
7688
7724
|
# The maximum number of records to include in the response. If more
|
7689
7725
|
# than the `MaxRecords` value is available, a pagination token called
|
7690
|
-
# a marker is included in the response so
|
7726
|
+
# a marker is included in the response so you can retrieve the
|
7691
7727
|
# remaining results.
|
7692
7728
|
#
|
7693
7729
|
# Default: 100
|
@@ -7978,13 +8014,13 @@ module Aws::RDS
|
|
7978
8014
|
# @return [Integer]
|
7979
8015
|
#
|
7980
8016
|
# @!attribute [rw] filters
|
7981
|
-
# This parameter
|
8017
|
+
# This parameter isn't currently supported.
|
7982
8018
|
# @return [Array<Types::Filter>]
|
7983
8019
|
#
|
7984
8020
|
# @!attribute [rw] max_records
|
7985
8021
|
# The maximum number of records to include in the response. If more
|
7986
8022
|
# records exist than the specified MaxRecords value, a pagination
|
7987
|
-
# token called a marker is included in the response so
|
8023
|
+
# token called a marker is included in the response so you can
|
7988
8024
|
# retrieve the remaining results.
|
7989
8025
|
# @return [Integer]
|
7990
8026
|
#
|
@@ -8053,7 +8089,7 @@ module Aws::RDS
|
|
8053
8089
|
# @return [String]
|
8054
8090
|
#
|
8055
8091
|
# @!attribute [rw] filters
|
8056
|
-
# This parameter
|
8092
|
+
# This parameter isn't currently supported.
|
8057
8093
|
# @return [Array<Types::Filter>]
|
8058
8094
|
#
|
8059
8095
|
# @!attribute [rw] max_records
|
@@ -8119,7 +8155,7 @@ module Aws::RDS
|
|
8119
8155
|
# @return [String]
|
8120
8156
|
#
|
8121
8157
|
# @!attribute [rw] filters
|
8122
|
-
# This parameter
|
8158
|
+
# This parameter isn't currently supported.
|
8123
8159
|
# @return [Array<Types::Filter>]
|
8124
8160
|
#
|
8125
8161
|
# @!attribute [rw] max_records
|
@@ -8171,7 +8207,7 @@ module Aws::RDS
|
|
8171
8207
|
# @return [String]
|
8172
8208
|
#
|
8173
8209
|
# @!attribute [rw] filters
|
8174
|
-
# This parameter
|
8210
|
+
# This parameter isn't currently supported.
|
8175
8211
|
# @return [Array<Types::Filter>]
|
8176
8212
|
#
|
8177
8213
|
# @!attribute [rw] max_records
|
@@ -8259,7 +8295,7 @@ module Aws::RDS
|
|
8259
8295
|
# @!attribute [rw] db_instance_identifier
|
8260
8296
|
# The ID of the DB instance to retrieve the list of DB snapshots for.
|
8261
8297
|
# This parameter can't be used in conjunction with
|
8262
|
-
# `DBSnapshotIdentifier`. This parameter
|
8298
|
+
# `DBSnapshotIdentifier`. This parameter isn't case-sensitive.
|
8263
8299
|
#
|
8264
8300
|
# Constraints:
|
8265
8301
|
#
|
@@ -8417,7 +8453,7 @@ module Aws::RDS
|
|
8417
8453
|
# @return [String]
|
8418
8454
|
#
|
8419
8455
|
# @!attribute [rw] filters
|
8420
|
-
# This parameter
|
8456
|
+
# This parameter isn't currently supported.
|
8421
8457
|
# @return [Array<Types::Filter>]
|
8422
8458
|
#
|
8423
8459
|
# @!attribute [rw] max_records
|
@@ -8469,13 +8505,13 @@ module Aws::RDS
|
|
8469
8505
|
# @return [String]
|
8470
8506
|
#
|
8471
8507
|
# @!attribute [rw] filters
|
8472
|
-
# This parameter
|
8508
|
+
# This parameter isn't currently supported.
|
8473
8509
|
# @return [Array<Types::Filter>]
|
8474
8510
|
#
|
8475
8511
|
# @!attribute [rw] max_records
|
8476
8512
|
# The maximum number of records to include in the response. If more
|
8477
8513
|
# records exist than the specified `MaxRecords` value, a pagination
|
8478
|
-
# token called a marker is included in the response so
|
8514
|
+
# token called a marker is included in the response so you can
|
8479
8515
|
# retrieve the remaining results.
|
8480
8516
|
#
|
8481
8517
|
# Default: 100
|
@@ -8532,13 +8568,13 @@ module Aws::RDS
|
|
8532
8568
|
# @return [String]
|
8533
8569
|
#
|
8534
8570
|
# @!attribute [rw] filters
|
8535
|
-
# This parameter
|
8571
|
+
# This parameter isn't currently supported.
|
8536
8572
|
# @return [Array<Types::Filter>]
|
8537
8573
|
#
|
8538
8574
|
# @!attribute [rw] max_records
|
8539
8575
|
# The maximum number of records to include in the response. If more
|
8540
8576
|
# records exist than the specified `MaxRecords` value, a pagination
|
8541
|
-
# token called a marker is included in the response so
|
8577
|
+
# token called a marker is included in the response so you can
|
8542
8578
|
# retrieve the remaining results.
|
8543
8579
|
#
|
8544
8580
|
# Default: 100
|
@@ -8596,7 +8632,7 @@ module Aws::RDS
|
|
8596
8632
|
# @return [String]
|
8597
8633
|
#
|
8598
8634
|
# @!attribute [rw] filters
|
8599
|
-
# This parameter
|
8635
|
+
# This parameter isn't currently supported.
|
8600
8636
|
# @return [Array<Types::Filter>]
|
8601
8637
|
#
|
8602
8638
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeEventCategoriesMessage AWS API Documentation
|
@@ -8628,7 +8664,7 @@ module Aws::RDS
|
|
8628
8664
|
# @return [String]
|
8629
8665
|
#
|
8630
8666
|
# @!attribute [rw] filters
|
8631
|
-
# This parameter
|
8667
|
+
# This parameter isn't currently supported.
|
8632
8668
|
# @return [Array<Types::Filter>]
|
8633
8669
|
#
|
8634
8670
|
# @!attribute [rw] max_records
|
@@ -8743,7 +8779,7 @@ module Aws::RDS
|
|
8743
8779
|
# @return [Array<String>]
|
8744
8780
|
#
|
8745
8781
|
# @!attribute [rw] filters
|
8746
|
-
# This parameter
|
8782
|
+
# This parameter isn't currently supported.
|
8747
8783
|
# @return [Array<Types::Filter>]
|
8748
8784
|
#
|
8749
8785
|
# @!attribute [rw] max_records
|
@@ -8862,7 +8898,7 @@ module Aws::RDS
|
|
8862
8898
|
# }
|
8863
8899
|
#
|
8864
8900
|
# @!attribute [rw] installation_media_id
|
8865
|
-
# The installation
|
8901
|
+
# The installation medium ID.
|
8866
8902
|
# @return [String]
|
8867
8903
|
#
|
8868
8904
|
# @!attribute [rw] filters
|
@@ -8931,7 +8967,7 @@ module Aws::RDS
|
|
8931
8967
|
# @return [String]
|
8932
8968
|
#
|
8933
8969
|
# @!attribute [rw] filters
|
8934
|
-
# This parameter
|
8970
|
+
# This parameter isn't currently supported.
|
8935
8971
|
# @return [Array<Types::Filter>]
|
8936
8972
|
#
|
8937
8973
|
# @!attribute [rw] max_records
|
@@ -8985,7 +9021,7 @@ module Aws::RDS
|
|
8985
9021
|
# @return [String]
|
8986
9022
|
#
|
8987
9023
|
# @!attribute [rw] filters
|
8988
|
-
# This parameter
|
9024
|
+
# This parameter isn't currently supported.
|
8989
9025
|
# @return [Array<Types::Filter>]
|
8990
9026
|
#
|
8991
9027
|
# @!attribute [rw] marker
|
@@ -9074,7 +9110,7 @@ module Aws::RDS
|
|
9074
9110
|
# @return [Boolean]
|
9075
9111
|
#
|
9076
9112
|
# @!attribute [rw] filters
|
9077
|
-
# This parameter
|
9113
|
+
# This parameter isn't currently supported.
|
9078
9114
|
# @return [Array<Types::Filter>]
|
9079
9115
|
#
|
9080
9116
|
# @!attribute [rw] max_records
|
@@ -9246,13 +9282,13 @@ module Aws::RDS
|
|
9246
9282
|
# @return [String]
|
9247
9283
|
#
|
9248
9284
|
# @!attribute [rw] filters
|
9249
|
-
# This parameter
|
9285
|
+
# This parameter isn't currently supported.
|
9250
9286
|
# @return [Array<Types::Filter>]
|
9251
9287
|
#
|
9252
9288
|
# @!attribute [rw] max_records
|
9253
9289
|
# The maximum number of records to include in the response. If more
|
9254
9290
|
# than the `MaxRecords` value is available, a pagination token called
|
9255
|
-
# a marker is included in the response so
|
9291
|
+
# a marker is included in the response so you can retrieve the
|
9256
9292
|
# remaining results.
|
9257
9293
|
#
|
9258
9294
|
# Default: 100
|
@@ -9347,14 +9383,14 @@ module Aws::RDS
|
|
9347
9383
|
# @return [Boolean]
|
9348
9384
|
#
|
9349
9385
|
# @!attribute [rw] filters
|
9350
|
-
# This parameter
|
9386
|
+
# This parameter isn't currently supported.
|
9351
9387
|
# @return [Array<Types::Filter>]
|
9352
9388
|
#
|
9353
9389
|
# @!attribute [rw] max_records
|
9354
9390
|
# The maximum number of records to include in the response. If more
|
9355
9391
|
# than the `MaxRecords` value is available, a pagination token called
|
9356
|
-
# a marker is included in the response so
|
9357
|
-
#
|
9392
|
+
# a marker is included in the response so you can retrieve the
|
9393
|
+
# remaining results.
|
9358
9394
|
#
|
9359
9395
|
# Default: 100
|
9360
9396
|
#
|
@@ -9410,7 +9446,7 @@ module Aws::RDS
|
|
9410
9446
|
# @!attribute [rw] max_records
|
9411
9447
|
# The maximum number of records to include in the response. If more
|
9412
9448
|
# records exist than the specified `MaxRecords` value, a pagination
|
9413
|
-
# token called a marker is included in the response so
|
9449
|
+
# token called a marker is included in the response so you can
|
9414
9450
|
# retrieve the remaining results.
|
9415
9451
|
#
|
9416
9452
|
# Default: 100
|
@@ -9426,7 +9462,7 @@ module Aws::RDS
|
|
9426
9462
|
# @return [String]
|
9427
9463
|
#
|
9428
9464
|
# @!attribute [rw] filters
|
9429
|
-
# This parameter
|
9465
|
+
# This parameter isn't currently supported.
|
9430
9466
|
# @return [Array<Types::Filter>]
|
9431
9467
|
#
|
9432
9468
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeSourceRegionsMessage AWS API Documentation
|
@@ -9590,7 +9626,7 @@ module Aws::RDS
|
|
9590
9626
|
# file is returned up to a maximum of 10000 lines, starting with the
|
9591
9627
|
# most recent log entries first.
|
9592
9628
|
#
|
9593
|
-
# * If NumberOfLines is specified and Marker
|
9629
|
+
# * If NumberOfLines is specified and Marker isn't specified, then
|
9594
9630
|
# the most recent lines from the end of the log file are returned.
|
9595
9631
|
#
|
9596
9632
|
# * If Marker is specified as "0", then the specified number of
|
@@ -9907,8 +9943,8 @@ module Aws::RDS
|
|
9907
9943
|
# }
|
9908
9944
|
#
|
9909
9945
|
# @!attribute [rw] db_cluster_identifier
|
9910
|
-
# A DB cluster identifier to force a failover for. This parameter
|
9911
|
-
#
|
9946
|
+
# A DB cluster identifier to force a failover for. This parameter
|
9947
|
+
# isn't case-sensitive.
|
9912
9948
|
#
|
9913
9949
|
# Constraints:
|
9914
9950
|
#
|
@@ -10140,8 +10176,8 @@ module Aws::RDS
|
|
10140
10176
|
# @!attribute [rw] engine
|
10141
10177
|
# The name of the database engine to be used for this instance.
|
10142
10178
|
#
|
10143
|
-
# The list only includes supported
|
10144
|
-
#
|
10179
|
+
# The list only includes supported DB engines that require an
|
10180
|
+
# on-premises customer provided license.
|
10145
10181
|
#
|
10146
10182
|
# Valid Values:
|
10147
10183
|
#
|
@@ -10160,8 +10196,8 @@ module Aws::RDS
|
|
10160
10196
|
# For a list of valid engine versions, call DescribeDBEngineVersions.
|
10161
10197
|
#
|
10162
10198
|
# The following are the database engines and links to information
|
10163
|
-
# about the major and minor versions. The list only includes
|
10164
|
-
#
|
10199
|
+
# about the major and minor versions. The list only includes DB
|
10200
|
+
# engines that require an on-premises customer provided license.
|
10165
10201
|
#
|
10166
10202
|
# **Microsoft SQL Server**
|
10167
10203
|
#
|
@@ -10174,14 +10210,14 @@ module Aws::RDS
|
|
10174
10210
|
# @return [String]
|
10175
10211
|
#
|
10176
10212
|
# @!attribute [rw] engine_installation_media_path
|
10177
|
-
# The path to the installation
|
10213
|
+
# The path to the installation medium for the specified DB engine.
|
10178
10214
|
#
|
10179
10215
|
# Example:
|
10180
10216
|
# `SQLServerISO/en_sql_server_2016_enterprise_x64_dvd_8701793.iso`
|
10181
10217
|
# @return [String]
|
10182
10218
|
#
|
10183
10219
|
# @!attribute [rw] os_installation_media_path
|
10184
|
-
# The path to the installation
|
10220
|
+
# The path to the installation medium for the operating system
|
10185
10221
|
# associated with the specified DB engine.
|
10186
10222
|
#
|
10187
10223
|
# Example: `WindowsISO/en_windows_server_2016_x64_dvd_9327751.iso`
|
@@ -10198,11 +10234,11 @@ module Aws::RDS
|
|
10198
10234
|
include Aws::Structure
|
10199
10235
|
end
|
10200
10236
|
|
10201
|
-
# Contains the installation media for
|
10202
|
-
#
|
10237
|
+
# Contains the installation media for a DB engine that requires an
|
10238
|
+
# on-premises customer provided license, such as Microsoft SQL Server.
|
10203
10239
|
#
|
10204
10240
|
# @!attribute [rw] installation_media_id
|
10205
|
-
# The installation
|
10241
|
+
# The installation medium ID.
|
10206
10242
|
# @return [String]
|
10207
10243
|
#
|
10208
10244
|
# @!attribute [rw] custom_availability_zone_id
|
@@ -10219,16 +10255,16 @@ module Aws::RDS
|
|
10219
10255
|
# @return [String]
|
10220
10256
|
#
|
10221
10257
|
# @!attribute [rw] engine_installation_media_path
|
10222
|
-
# The path to the installation
|
10258
|
+
# The path to the installation medium for the DB engine.
|
10223
10259
|
# @return [String]
|
10224
10260
|
#
|
10225
10261
|
# @!attribute [rw] os_installation_media_path
|
10226
|
-
# The path to the installation
|
10262
|
+
# The path to the installation medium for the operating system
|
10227
10263
|
# associated with the DB engine.
|
10228
10264
|
# @return [String]
|
10229
10265
|
#
|
10230
10266
|
# @!attribute [rw] status
|
10231
|
-
# The status of the installation
|
10267
|
+
# The status of the installation medium.
|
10232
10268
|
# @return [String]
|
10233
10269
|
#
|
10234
10270
|
# @!attribute [rw] failure_cause
|
@@ -10250,8 +10286,8 @@ module Aws::RDS
|
|
10250
10286
|
end
|
10251
10287
|
|
10252
10288
|
# Contains the cause of an installation media failure. Installation
|
10253
|
-
# media is used for
|
10254
|
-
# such as Microsoft SQL Server.
|
10289
|
+
# media is used for a DB engine that requires an on-premises customer
|
10290
|
+
# provided license, such as Microsoft SQL Server.
|
10255
10291
|
#
|
10256
10292
|
# @!attribute [rw] message
|
10257
10293
|
# The reason that an installation media import failed.
|
@@ -10308,7 +10344,7 @@ module Aws::RDS
|
|
10308
10344
|
# @return [String]
|
10309
10345
|
#
|
10310
10346
|
# @!attribute [rw] filters
|
10311
|
-
# This parameter
|
10347
|
+
# This parameter isn't currently supported.
|
10312
10348
|
# @return [Array<Types::Filter>]
|
10313
10349
|
#
|
10314
10350
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ListTagsForResourceMessage AWS API Documentation
|
@@ -10350,7 +10386,7 @@ module Aws::RDS
|
|
10350
10386
|
#
|
10351
10387
|
# @!attribute [rw] db_cluster_identifier
|
10352
10388
|
# The DB cluster identifier for the cluster being modified. This
|
10353
|
-
# parameter
|
10389
|
+
# parameter isn't case-sensitive.
|
10354
10390
|
#
|
10355
10391
|
# Constraints:
|
10356
10392
|
#
|
@@ -10391,7 +10427,7 @@ module Aws::RDS
|
|
10391
10427
|
# specified value as soon as possible.
|
10392
10428
|
#
|
10393
10429
|
# `RollbackCapacityChange` ignores the capacity change if a scaling
|
10394
|
-
# point
|
10430
|
+
# point isn't found in the timeout period.
|
10395
10431
|
# @return [String]
|
10396
10432
|
#
|
10397
10433
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCurrentDBClusterCapacityMessage AWS API Documentation
|
@@ -10483,7 +10519,7 @@ module Aws::RDS
|
|
10483
10519
|
#
|
10484
10520
|
# @!attribute [rw] db_cluster_identifier
|
10485
10521
|
# The DB cluster identifier for the cluster being modified. This
|
10486
|
-
# parameter
|
10522
|
+
# parameter isn't case-sensitive.
|
10487
10523
|
#
|
10488
10524
|
# Constraints: This identifier must match the identifier of an
|
10489
10525
|
# existing DB cluster.
|
@@ -10997,7 +11033,7 @@ module Aws::RDS
|
|
10997
11033
|
# @!attribute [rw] db_subnet_group_name
|
10998
11034
|
# The new DB subnet group for the DB instance. You can use this
|
10999
11035
|
# parameter to move your DB instance to a different VPC. If your DB
|
11000
|
-
# instance
|
11036
|
+
# instance isn't in a VPC, you can also use this parameter to move
|
11001
11037
|
# your DB instance into a VPC. For more information, see [Updating the
|
11002
11038
|
# VPC for a DB Instance][1] in the *Amazon RDS User Guide.*
|
11003
11039
|
#
|
@@ -11463,7 +11499,7 @@ module Aws::RDS
|
|
11463
11499
|
# A value that indicates whether the DB instance is publicly
|
11464
11500
|
# accessible. When the DB instance is publicly accessible, it is an
|
11465
11501
|
# Internet-facing instance with a publicly resolvable DNS name, which
|
11466
|
-
# resolves to a public IP address. When the DB instance
|
11502
|
+
# resolves to a public IP address. When the DB instance isn't
|
11467
11503
|
# publicly accessible, it is an internal instance with a DNS name that
|
11468
11504
|
# resolves to a private IP address.
|
11469
11505
|
#
|
@@ -11923,7 +11959,7 @@ module Aws::RDS
|
|
11923
11959
|
# @!attribute [rw] source_type
|
11924
11960
|
# The type of source that is generating the events. For example, if
|
11925
11961
|
# you want to be notified of events generated by a DB instance, you
|
11926
|
-
# would set this parameter to db-instance.
|
11962
|
+
# would set this parameter to db-instance. If this value isn't
|
11927
11963
|
# specified, all events are returned.
|
11928
11964
|
#
|
11929
11965
|
# Valid values: db-instance \| db-parameter-group \| db-security-group
|
@@ -11979,7 +12015,7 @@ module Aws::RDS
|
|
11979
12015
|
#
|
11980
12016
|
# @!attribute [rw] global_cluster_identifier
|
11981
12017
|
# The DB cluster identifier for the global cluster being modified.
|
11982
|
-
# This parameter
|
12018
|
+
# This parameter isn't case-sensitive.
|
11983
12019
|
#
|
11984
12020
|
# Constraints:
|
11985
12021
|
#
|
@@ -13097,7 +13133,7 @@ module Aws::RDS
|
|
13097
13133
|
#
|
13098
13134
|
# @!attribute [rw] db_cluster_identifier
|
13099
13135
|
# The identifier of the DB cluster Read Replica to promote. This
|
13100
|
-
# parameter
|
13136
|
+
# parameter isn't case-sensitive.
|
13101
13137
|
#
|
13102
13138
|
# Constraints:
|
13103
13139
|
#
|
@@ -13329,7 +13365,7 @@ module Aws::RDS
|
|
13329
13365
|
# A value that indicates whether the reboot is conducted through a
|
13330
13366
|
# Multi-AZ failover.
|
13331
13367
|
#
|
13332
|
-
# Constraint: You can't enable force failover if the instance
|
13368
|
+
# Constraint: You can't enable force failover if the instance isn't
|
13333
13369
|
# configured for Multi-AZ.
|
13334
13370
|
# @return [Boolean]
|
13335
13371
|
#
|
@@ -14380,6 +14416,11 @@ module Aws::RDS
|
|
14380
14416
|
# `aws rds describe-db-engine-versions --engine aurora-postgresql
|
14381
14417
|
# --query "DBEngineVersions[].EngineVersion"`
|
14382
14418
|
#
|
14419
|
+
# <note markdown="1"> If you aren't using the default engine version, then you must
|
14420
|
+
# specify the engine version.
|
14421
|
+
#
|
14422
|
+
# </note>
|
14423
|
+
#
|
14383
14424
|
# **Aurora MySQL**
|
14384
14425
|
#
|
14385
14426
|
# Example: `5.6.10a`, `5.6.mysql_aurora.1.19.2`, `5.7.12`,
|
@@ -14443,7 +14484,7 @@ module Aws::RDS
|
|
14443
14484
|
# snapshot.
|
14444
14485
|
#
|
14445
14486
|
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier`
|
14446
|
-
#
|
14487
|
+
# isn't encrypted, then the restored DB cluster isn't encrypted.
|
14447
14488
|
# @return [String]
|
14448
14489
|
#
|
14449
14490
|
# @!attribute [rw] enable_iam_database_authentication
|
@@ -14640,7 +14681,7 @@ module Aws::RDS
|
|
14640
14681
|
#
|
14641
14682
|
# * Must be before the latest restorable time for the DB instance
|
14642
14683
|
#
|
14643
|
-
# * Must be specified if `UseLatestRestorableTime` parameter
|
14684
|
+
# * Must be specified if `UseLatestRestorableTime` parameter isn't
|
14644
14685
|
# provided
|
14645
14686
|
#
|
14646
14687
|
# * Can't be specified if the `UseLatestRestorableTime` parameter is
|
@@ -14654,7 +14695,7 @@ module Aws::RDS
|
|
14654
14695
|
#
|
14655
14696
|
# @!attribute [rw] use_latest_restorable_time
|
14656
14697
|
# A value that indicates whether to restore the DB cluster to the
|
14657
|
-
# latest restorable backup time. By default, the DB cluster
|
14698
|
+
# latest restorable backup time. By default, the DB cluster isn't
|
14658
14699
|
# restored to the latest restorable backup time.
|
14659
14700
|
#
|
14660
14701
|
# Constraints: Can't be specified if `RestoreToTime` parameter is
|
@@ -14717,10 +14758,10 @@ module Aws::RDS
|
|
14717
14758
|
# encrypted using the KMS key that was used to encrypt the source DB
|
14718
14759
|
# cluster.
|
14719
14760
|
#
|
14720
|
-
# * If the DB cluster
|
14721
|
-
#
|
14761
|
+
# * If the DB cluster isn't encrypted, then the restored DB cluster
|
14762
|
+
# isn't encrypted.
|
14722
14763
|
#
|
14723
|
-
# If `DBClusterIdentifier` refers to a DB cluster that
|
14764
|
+
# If `DBClusterIdentifier` refers to a DB cluster that isn't
|
14724
14765
|
# encrypted, then the restore request is rejected.
|
14725
14766
|
# @return [String]
|
14726
14767
|
#
|
@@ -14952,7 +14993,7 @@ module Aws::RDS
|
|
14952
14993
|
# A value that indicates whether the DB instance is publicly
|
14953
14994
|
# accessible. When the DB instance is publicly accessible, it is an
|
14954
14995
|
# Internet-facing instance with a publicly resolvable DNS name, which
|
14955
|
-
# resolves to a public IP address. When the DB instance
|
14996
|
+
# resolves to a public IP address. When the DB instance isn't
|
14956
14997
|
# publicly accessible, it is an internal instance with a DNS name that
|
14957
14998
|
# resolves to a private IP address. For more information, see
|
14958
14999
|
# CreateDBInstance.
|
@@ -15017,7 +15058,7 @@ module Aws::RDS
|
|
15017
15058
|
#
|
15018
15059
|
# @!attribute [rw] iops
|
15019
15060
|
# Specifies the amount of provisioned IOPS for the DB instance,
|
15020
|
-
# expressed in I/O operations per second. If this parameter
|
15061
|
+
# expressed in I/O operations per second. If this parameter isn't
|
15021
15062
|
# specified, the IOPS value is taken from the backup. If this
|
15022
15063
|
# parameter is set to 0, the new instance is converted to a non-PIOPS
|
15023
15064
|
# instance. The conversion takes additional time, though your DB
|
@@ -15328,7 +15369,7 @@ module Aws::RDS
|
|
15328
15369
|
# instance classes, and availability for your engine, see [DB Instance
|
15329
15370
|
# Class][1] in the *Amazon RDS User Guide.*
|
15330
15371
|
#
|
15331
|
-
# Importing from Amazon S3
|
15372
|
+
# Importing from Amazon S3 isn't supported on the db.t2.micro DB
|
15332
15373
|
# instance class.
|
15333
15374
|
#
|
15334
15375
|
#
|
@@ -15505,7 +15546,7 @@ module Aws::RDS
|
|
15505
15546
|
# A value that indicates whether the DB instance is publicly
|
15506
15547
|
# accessible. When the DB instance is publicly accessible, it is an
|
15507
15548
|
# Internet-facing instance with a publicly resolvable DNS name, which
|
15508
|
-
# resolves to a public IP address. When the DB instance
|
15549
|
+
# resolves to a public IP address. When the DB instance isn't
|
15509
15550
|
# publicly accessible, it is an internal instance with a DNS name that
|
15510
15551
|
# resolves to a private IP address. For more information, see
|
15511
15552
|
# CreateDBInstance.
|
@@ -15837,7 +15878,7 @@ module Aws::RDS
|
|
15837
15878
|
#
|
15838
15879
|
# @!attribute [rw] use_latest_restorable_time
|
15839
15880
|
# A value that indicates whether the DB instance is restored from the
|
15840
|
-
# latest backup time. By default, the DB instance
|
15881
|
+
# latest backup time. By default, the DB instance isn't restored from
|
15841
15882
|
# the latest backup time.
|
15842
15883
|
#
|
15843
15884
|
# Constraints: Can't be specified if the `RestoreTime` parameter is
|
@@ -15898,7 +15939,7 @@ module Aws::RDS
|
|
15898
15939
|
# A value that indicates whether the DB instance is publicly
|
15899
15940
|
# accessible. When the DB instance is publicly accessible, it is an
|
15900
15941
|
# Internet-facing instance with a publicly resolvable DNS name, which
|
15901
|
-
# resolves to a public IP address. When the DB instance
|
15942
|
+
# resolves to a public IP address. When the DB instance isn't
|
15902
15943
|
# publicly accessible, it is an internal instance with a DNS name that
|
15903
15944
|
# resolves to a private IP address. For more information, see
|
15904
15945
|
# CreateDBInstance.
|
@@ -15921,7 +15962,7 @@ module Aws::RDS
|
|
15921
15962
|
# @!attribute [rw] db_name
|
15922
15963
|
# The database name for the restored DB instance.
|
15923
15964
|
#
|
15924
|
-
# <note markdown="1"> This parameter
|
15965
|
+
# <note markdown="1"> This parameter isn't used for the MySQL or MariaDB engines.
|
15925
15966
|
#
|
15926
15967
|
# </note>
|
15927
15968
|
# @return [String]
|
@@ -15966,7 +16007,7 @@ module Aws::RDS
|
|
15966
16007
|
#
|
15967
16008
|
# **SQL Server**
|
15968
16009
|
#
|
15969
|
-
# Setting the IOPS value for the SQL Server database engine
|
16010
|
+
# Setting the IOPS value for the SQL Server database engine isn't
|
15970
16011
|
# supported.
|
15971
16012
|
# @return [Integer]
|
15972
16013
|
#
|
@@ -16226,9 +16267,9 @@ module Aws::RDS
|
|
16226
16267
|
# @return [String]
|
16227
16268
|
#
|
16228
16269
|
# @!attribute [rw] ec2_security_group_owner_id
|
16229
|
-
# The AWS
|
16230
|
-
# specified in the `EC2SecurityGroupName` parameter. The AWS
|
16231
|
-
#
|
16270
|
+
# The AWS account number of the owner of the EC2 security group
|
16271
|
+
# specified in the `EC2SecurityGroupName` parameter. The AWS access
|
16272
|
+
# key ID isn't an acceptable value. For VPC DB security groups,
|
16232
16273
|
# `EC2SecurityGroupId` must be provided. Otherwise,
|
16233
16274
|
# EC2SecurityGroupOwnerId and either `EC2SecurityGroupName` or
|
16234
16275
|
# `EC2SecurityGroupId` must be provided.
|
@@ -16326,7 +16367,7 @@ module Aws::RDS
|
|
16326
16367
|
# as soon as possible.
|
16327
16368
|
#
|
16328
16369
|
# `RollbackCapacityChange`, the default, ignores the capacity change
|
16329
|
-
# if a scaling point
|
16370
|
+
# if a scaling point isn't found in the timeout period.
|
16330
16371
|
#
|
16331
16372
|
# If you specify `ForceApplyCapacityChange`, connections that prevent
|
16332
16373
|
# Aurora Serverless from finding a scaling point might be dropped.
|