aws-sdk-rds 1.6.0 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +181 -156
- data/lib/aws-sdk-rds/client_api.rb +7 -0
- data/lib/aws-sdk-rds/db_cluster.rb +7 -9
- data/lib/aws-sdk-rds/db_instance.rb +124 -102
- data/lib/aws-sdk-rds/db_log_file.rb +2 -2
- data/lib/aws-sdk-rds/db_snapshot.rb +27 -24
- data/lib/aws-sdk-rds/event_subscription.rb +9 -9
- data/lib/aws-sdk-rds/pending_maintenance_action.rb +10 -10
- data/lib/aws-sdk-rds/resource.rb +47 -33
- data/lib/aws-sdk-rds/types.rb +240 -190
- metadata +2 -2
@@ -191,8 +191,8 @@ module Aws::RDS
|
|
191
191
|
# beyond the marker until the end of the file or up to NumberOfLines.
|
192
192
|
# @option options [Integer] :number_of_lines
|
193
193
|
# The number of lines to download. If the number of lines specified
|
194
|
-
# results in a file over 1 MB in size, the file
|
195
|
-
#
|
194
|
+
# results in a file over 1 MB in size, the file is truncated at 1 MB in
|
195
|
+
# size.
|
196
196
|
#
|
197
197
|
# If the NumberOfLines parameter is specified, then the block of lines
|
198
198
|
# returned can be from the beginning or the end of the log file,
|
@@ -430,7 +430,7 @@ module Aws::RDS
|
|
430
430
|
# contain the following parameter values:
|
431
431
|
#
|
432
432
|
# * `DestinationRegion` - The AWS Region that the encrypted DB snapshot
|
433
|
-
#
|
433
|
+
# is copied to. This AWS Region is the same one where the
|
434
434
|
# `CopyDBSnapshot` action is called that contains this presigned URL.
|
435
435
|
#
|
436
436
|
# For example, if you copy an encrypted DB snapshot from the us-west-2
|
@@ -552,15 +552,17 @@ module Aws::RDS
|
|
552
552
|
#
|
553
553
|
# Example: `my-snapshot-id`
|
554
554
|
# @option options [String] :db_instance_class
|
555
|
-
# The compute and memory capacity of the Amazon RDS DB instance
|
556
|
-
#
|
557
|
-
#
|
558
|
-
#
|
559
|
-
#
|
560
|
-
#
|
561
|
-
#
|
562
|
-
#
|
563
|
-
#
|
555
|
+
# The compute and memory capacity of the Amazon RDS DB instance, for
|
556
|
+
# example, `db.m4.large`. Not all DB instance classes are available in
|
557
|
+
# all regions, or for all database engines. For the full list of DB
|
558
|
+
# instance classes, and availability for your engine, see [DB Instance
|
559
|
+
# Class][1] in the Amazon RDS User Guide.
|
560
|
+
#
|
561
|
+
# Default: The same DBInstanceClass as the original DB instance.
|
562
|
+
#
|
563
|
+
#
|
564
|
+
#
|
565
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
564
566
|
# @option options [Integer] :port
|
565
567
|
# The port number on which the database accepts connections.
|
566
568
|
#
|
@@ -568,8 +570,7 @@ module Aws::RDS
|
|
568
570
|
#
|
569
571
|
# Constraints: Value must be `1150-65535`
|
570
572
|
# @option options [String] :availability_zone
|
571
|
-
# The EC2 Availability Zone that the database instance
|
572
|
-
# in.
|
573
|
+
# The EC2 Availability Zone that the database instance is created in.
|
573
574
|
#
|
574
575
|
# Default: A random, system-chosen Availability Zone.
|
575
576
|
#
|
@@ -605,13 +606,13 @@ module Aws::RDS
|
|
605
606
|
# * **VPC:** false
|
606
607
|
#
|
607
608
|
# If no DB subnet group has been specified as part of the request and
|
608
|
-
# the PubliclyAccessible value has not been set, the DB instance
|
609
|
+
# the PubliclyAccessible value has not been set, the DB instance is
|
609
610
|
# publicly accessible. If a specific DB subnet group has been specified
|
610
611
|
# as part of the request and the PubliclyAccessible value has not been
|
611
|
-
# set, the DB instance
|
612
|
+
# set, the DB instance is private.
|
612
613
|
# @option options [Boolean] :auto_minor_version_upgrade
|
613
|
-
# Indicates that minor version upgrades
|
614
|
-
#
|
614
|
+
# Indicates that minor version upgrades are applied automatically to the
|
615
|
+
# DB instance during the maintenance window.
|
615
616
|
# @option options [String] :license_model
|
616
617
|
# License model information for the restored DB instance.
|
617
618
|
#
|
@@ -662,18 +663,20 @@ module Aws::RDS
|
|
662
663
|
# @option options [Integer] :iops
|
663
664
|
# Specifies the amount of provisioned IOPS for the DB instance,
|
664
665
|
# expressed in I/O operations per second. If this parameter is not
|
665
|
-
# specified, the IOPS value
|
666
|
-
#
|
667
|
-
#
|
668
|
-
#
|
669
|
-
#
|
666
|
+
# specified, the IOPS value is taken from the backup. If this parameter
|
667
|
+
# is set to 0, the new instance is converted to a non-PIOPS instance.
|
668
|
+
# The conversion takes additional time, though your DB instance is
|
669
|
+
# available for connections before the conversion starts.
|
670
|
+
#
|
671
|
+
# The provisioned IOPS value must follow the requirements for your
|
672
|
+
# database engine. For more information, see [Amazon RDS Provisioned
|
673
|
+
# IOPS Storage to Improve Performance][1].
|
670
674
|
#
|
671
675
|
# Constraints: Must be an integer greater than 1000.
|
672
676
|
#
|
673
|
-
# **SQL Server**
|
674
677
|
#
|
675
|
-
#
|
676
|
-
#
|
678
|
+
#
|
679
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
677
680
|
# @option options [String] :option_group_name
|
678
681
|
# The name of the option group to be used for the restored DB instance.
|
679
682
|
#
|
@@ -284,10 +284,10 @@ module Aws::RDS
|
|
284
284
|
# notification. The ARN is created by Amazon SNS when you create a topic
|
285
285
|
# and subscribe to it.
|
286
286
|
# @option options [String] :source_type
|
287
|
-
# The type of source that
|
288
|
-
#
|
289
|
-
#
|
290
|
-
#
|
287
|
+
# The type of source that is generating the events. For example, if you
|
288
|
+
# want to be notified of events generated by a DB instance, you would
|
289
|
+
# set this parameter to db-instance. if this value is not specified, all
|
290
|
+
# events are returned.
|
291
291
|
#
|
292
292
|
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
293
293
|
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
@@ -301,7 +301,7 @@ module Aws::RDS
|
|
301
301
|
#
|
302
302
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html
|
303
303
|
# @option options [Array<String>] :source_ids
|
304
|
-
# The list of identifiers of the event sources for which events
|
304
|
+
# The list of identifiers of the event sources for which events are
|
305
305
|
# returned. If not specified, then all sources are included in the
|
306
306
|
# response. An identifier must begin with a letter and must contain only
|
307
307
|
# ASCII letters, digits, and hyphens; it cannot end with a hyphen or
|
@@ -367,10 +367,10 @@ module Aws::RDS
|
|
367
367
|
# notification. The ARN is created by Amazon SNS when you create a topic
|
368
368
|
# and subscribe to it.
|
369
369
|
# @option options [String] :source_type
|
370
|
-
# The type of source that
|
371
|
-
#
|
372
|
-
#
|
373
|
-
#
|
370
|
+
# The type of source that is generating the events. For example, if you
|
371
|
+
# want to be notified of events generated by a DB instance, you would
|
372
|
+
# set this parameter to db-instance. if this value is not specified, all
|
373
|
+
# events are returned.
|
374
374
|
#
|
375
375
|
# Valid values: db-instance \| db-parameter-group \| db-security-group
|
376
376
|
# \| db-snapshot
|
@@ -39,19 +39,19 @@ module Aws::RDS
|
|
39
39
|
end
|
40
40
|
alias :action :name
|
41
41
|
|
42
|
-
# The date of the maintenance window when the action
|
43
|
-
#
|
44
|
-
#
|
45
|
-
#
|
42
|
+
# The date of the maintenance window when the action is applied. The
|
43
|
+
# maintenance action is applied to the resource during its first
|
44
|
+
# maintenance window after this date. If this date is specified, any
|
45
|
+
# `next-maintenance` opt-in requests are ignored.
|
46
46
|
# @return [Time]
|
47
47
|
def auto_applied_after_date
|
48
48
|
data[:auto_applied_after_date]
|
49
49
|
end
|
50
50
|
|
51
|
-
# The date when the maintenance action
|
52
|
-
#
|
53
|
-
#
|
54
|
-
#
|
51
|
+
# The date when the maintenance action is automatically applied. The
|
52
|
+
# maintenance action is applied to the resource on this date regardless
|
53
|
+
# of the maintenance window for the resource. If this date is specified,
|
54
|
+
# any `immediate` opt-in requests are ignored.
|
55
55
|
# @return [Time]
|
56
56
|
def forced_apply_date
|
57
57
|
data[:forced_apply_date]
|
@@ -64,8 +64,8 @@ module Aws::RDS
|
|
64
64
|
data[:opt_in_status]
|
65
65
|
end
|
66
66
|
|
67
|
-
# The effective date when the pending maintenance action
|
68
|
-
#
|
67
|
+
# The effective date when the pending maintenance action is applied to
|
68
|
+
# the resource. This date takes into account opt-in requests received
|
69
69
|
# from the ApplyPendingMaintenanceAction API, the
|
70
70
|
# `AutoAppliedAfterDate`, and the `ForcedApplyDate`. This value is blank
|
71
71
|
# if an opt-in request has not been received and nothing has been
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -95,8 +95,7 @@ module Aws::RDS
|
|
95
95
|
# Example: `my-cluster1`
|
96
96
|
# @option options [String] :db_cluster_parameter_group_name
|
97
97
|
# The name of the DB cluster parameter group to associate with this DB
|
98
|
-
# cluster. If this argument is omitted, `default.aurora5.6`
|
99
|
-
# used.
|
98
|
+
# cluster. If this argument is omitted, `default.aurora5.6` is used.
|
100
99
|
#
|
101
100
|
# Constraints:
|
102
101
|
#
|
@@ -227,7 +226,7 @@ module Aws::RDS
|
|
227
226
|
# @option options [String] :pre_signed_url
|
228
227
|
# A URL that contains a Signature Version 4 signed request for the
|
229
228
|
# `CreateDBCluster` action to be called in the source AWS Region where
|
230
|
-
# the DB cluster
|
229
|
+
# the DB cluster is replicated from. You only need to specify
|
231
230
|
# `PreSignedUrl` when you are performing cross-region replication from
|
232
231
|
# an encrypted DB cluster.
|
233
232
|
#
|
@@ -553,16 +552,15 @@ module Aws::RDS
|
|
553
552
|
#
|
554
553
|
# * Web and Express editions: Must be an integer from 20 to 1024.
|
555
554
|
# @option options [required, String] :db_instance_class
|
556
|
-
# The compute and memory capacity of the DB instance
|
557
|
-
# instance classes are available in all
|
558
|
-
#
|
559
|
-
#
|
560
|
-
#
|
561
|
-
#
|
562
|
-
#
|
563
|
-
#
|
564
|
-
#
|
565
|
-
# db.t2.medium | db.t2.large`
|
555
|
+
# The compute and memory capacity of the DB instance, for example,
|
556
|
+
# `db.m4.large`. Not all DB instance classes are available in all
|
557
|
+
# regions, or for all database engines. For the full list of DB instance
|
558
|
+
# classes, and availability for your engine, see [DB Instance Class][1]
|
559
|
+
# in the Amazon RDS User Guide.
|
560
|
+
#
|
561
|
+
#
|
562
|
+
#
|
563
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
566
564
|
# @option options [required, String] :engine
|
567
565
|
# The name of the database engine to be used for this instance.
|
568
566
|
#
|
@@ -701,9 +699,9 @@ module Aws::RDS
|
|
701
699
|
# Default: The default EC2 VPC security group for the DB subnet group's
|
702
700
|
# VPC.
|
703
701
|
# @option options [String] :availability_zone
|
704
|
-
# The EC2 Availability Zone that the database instance
|
705
|
-
#
|
706
|
-
#
|
702
|
+
# The EC2 Availability Zone that the database instance is created in.
|
703
|
+
# For information on regions and Availability Zones, see [Regions and
|
704
|
+
# Availability Zones][1].
|
707
705
|
#
|
708
706
|
# Default: A random, system-chosen Availability Zone in the endpoint's
|
709
707
|
# AWS Region.
|
@@ -744,7 +742,7 @@ module Aws::RDS
|
|
744
742
|
# @option options [String] :db_parameter_group_name
|
745
743
|
# The name of the DB parameter group to associate with this DB instance.
|
746
744
|
# If this argument is omitted, the default DBParameterGroup for the
|
747
|
-
# specified engine
|
745
|
+
# specified engine is used.
|
748
746
|
#
|
749
747
|
# Constraints:
|
750
748
|
#
|
@@ -921,6 +919,8 @@ module Aws::RDS
|
|
921
919
|
#
|
922
920
|
# **MySQL**
|
923
921
|
#
|
922
|
+
# * `5.7.19` (supported in all AWS regions)
|
923
|
+
#
|
924
924
|
# * `5.7.17` (supported in all AWS regions)
|
925
925
|
#
|
926
926
|
# * `5.7.16` (supported in all AWS regions)
|
@@ -929,6 +929,8 @@ module Aws::RDS
|
|
929
929
|
#
|
930
930
|
#
|
931
931
|
#
|
932
|
+
# * `5.6.37` (supported in all AWS regions)
|
933
|
+
#
|
932
934
|
# * `5.6.35` (supported in all AWS regions)
|
933
935
|
#
|
934
936
|
# * `5.6.34` (supported in all AWS regions)
|
@@ -940,6 +942,8 @@ module Aws::RDS
|
|
940
942
|
#
|
941
943
|
#
|
942
944
|
#
|
945
|
+
# * `5.5.57` (supported in all AWS regions)
|
946
|
+
#
|
943
947
|
# * `5.5.54` (supported in all AWS regions)
|
944
948
|
#
|
945
949
|
# * `5.5.53` (supported in all AWS regions)
|
@@ -948,6 +952,9 @@ module Aws::RDS
|
|
948
952
|
#
|
949
953
|
# **Oracle 12c**
|
950
954
|
#
|
955
|
+
# * `12.1.0.2.v9` (supported for EE in all AWS regions, and SE2 in all
|
956
|
+
# AWS regions except us-gov-west-1)
|
957
|
+
#
|
951
958
|
# * `12.1.0.2.v8` (supported for EE in all AWS regions, and SE2 in all
|
952
959
|
# AWS regions except us-gov-west-1)
|
953
960
|
#
|
@@ -974,6 +981,8 @@ module Aws::RDS
|
|
974
981
|
#
|
975
982
|
# **Oracle 11g**
|
976
983
|
#
|
984
|
+
# * `11.2.0.4.v13` (supported for EE, SE1, and SE, in all AWS regions)
|
985
|
+
#
|
977
986
|
# * `11.2.0.4.v12` (supported for EE, SE1, and SE, in all AWS regions)
|
978
987
|
#
|
979
988
|
# * `11.2.0.4.v11` (supported for EE, SE1, and SE, in all AWS regions)
|
@@ -998,16 +1007,16 @@ module Aws::RDS
|
|
998
1007
|
#
|
999
1008
|
# **PostgreSQL**
|
1000
1009
|
#
|
1001
|
-
# * **Version 9.6.x:** ` 9.6.
|
1010
|
+
# * **Version 9.6.x:** ` 9.6.5 | 9.6.3 | 9.6.2 | 9.6.1`
|
1002
1011
|
#
|
1003
|
-
# * **Version 9.5.x:** `9.5.6 | 9.5.4 | 9.5.2`
|
1012
|
+
# * **Version 9.5.x:** ` 9.5.9 | 9.5.7 | 9.5.6 | 9.5.4 | 9.5.2`
|
1004
1013
|
#
|
1005
|
-
# * **Version 9.4.x:** `9.4.11 | 9.4.9 | 9.4.7`
|
1014
|
+
# * **Version 9.4.x:** ` 9.4.14 | 9.4.12 | 9.4.11 | 9.4.9 | 9.4.7`
|
1006
1015
|
#
|
1007
|
-
# * **Version 9.3.x:** `9.3.16 | 9.3.14 | 9.3.12`
|
1016
|
+
# * **Version 9.3.x:** ` 9.3.19 | 9.3.17 | 9.3.16 | 9.3.14 | 9.3.12`
|
1008
1017
|
# @option options [Boolean] :auto_minor_version_upgrade
|
1009
|
-
# Indicates that minor engine upgrades
|
1010
|
-
#
|
1018
|
+
# Indicates that minor engine upgrades are applied automatically to the
|
1019
|
+
# DB instance during the maintenance window.
|
1011
1020
|
#
|
1012
1021
|
# Default: `true`
|
1013
1022
|
# @option options [String] :license_model
|
@@ -1055,10 +1064,10 @@ module Aws::RDS
|
|
1055
1064
|
# * **VPC:** false
|
1056
1065
|
#
|
1057
1066
|
# If no DB subnet group has been specified as part of the request and
|
1058
|
-
# the PubliclyAccessible value has not been set, the DB instance
|
1067
|
+
# the PubliclyAccessible value has not been set, the DB instance is
|
1059
1068
|
# publicly accessible. If a specific DB subnet group has been specified
|
1060
1069
|
# as part of the request and the PubliclyAccessible value has not been
|
1061
|
-
# set, the DB instance
|
1070
|
+
# set, the DB instance is private.
|
1062
1071
|
# @option options [Array<Types::Tag>] :tags
|
1063
1072
|
# A list of tags.
|
1064
1073
|
# @option options [String] :db_cluster_identifier
|
@@ -1181,7 +1190,12 @@ module Aws::RDS
|
|
1181
1190
|
#
|
1182
1191
|
# Default: `false`
|
1183
1192
|
# @option options [Boolean] :enable_performance_insights
|
1193
|
+
# True to enable Performance Insights for the DB instance; otherwise
|
1194
|
+
# false.
|
1184
1195
|
# @option options [String] :performance_insights_kms_key_id
|
1196
|
+
# The KMS key identifier for encryption of Performance Insights data.
|
1197
|
+
# The KMS key ID is the Amazon Resource Name (ARN), KMS key identifier,
|
1198
|
+
# or the KMS key alias for the KMS encryption key.
|
1185
1199
|
# @return [DBInstance]
|
1186
1200
|
def create_db_instance(options = {})
|
1187
1201
|
resp = @client.create_db_instance(options)
|
@@ -1345,10 +1359,10 @@ module Aws::RDS
|
|
1345
1359
|
# notification. The ARN is created by Amazon SNS when you create a topic
|
1346
1360
|
# and subscribe to it.
|
1347
1361
|
# @option options [String] :source_type
|
1348
|
-
# The type of source that
|
1349
|
-
#
|
1350
|
-
#
|
1351
|
-
#
|
1362
|
+
# The type of source that is generating the events. For example, if you
|
1363
|
+
# want to be notified of events generated by a DB instance, you would
|
1364
|
+
# set this parameter to db-instance. if this value is not specified, all
|
1365
|
+
# events are returned.
|
1352
1366
|
#
|
1353
1367
|
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
1354
1368
|
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
@@ -1362,7 +1376,7 @@ module Aws::RDS
|
|
1362
1376
|
#
|
1363
1377
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html
|
1364
1378
|
# @option options [Array<String>] :source_ids
|
1365
|
-
# The list of identifiers of the event sources for which events
|
1379
|
+
# The list of identifiers of the event sources for which events are
|
1366
1380
|
# returned. If not specified, then all sources are included in the
|
1367
1381
|
# response. An identifier must begin with a letter and must contain only
|
1368
1382
|
# ASCII letters, digits, and hyphens; it cannot end with a hyphen or
|
@@ -2093,7 +2107,7 @@ module Aws::RDS
|
|
2093
2107
|
# })
|
2094
2108
|
# @param [Hash] options ({})
|
2095
2109
|
# @option options [String] :source_type
|
2096
|
-
# The type of source that
|
2110
|
+
# The type of source that is generating the events.
|
2097
2111
|
#
|
2098
2112
|
# Valid values: db-instance \| db-parameter-group \| db-security-group
|
2099
2113
|
# \| db-snapshot
|
@@ -2179,8 +2193,8 @@ module Aws::RDS
|
|
2179
2193
|
# })
|
2180
2194
|
# @param [Hash] options ({})
|
2181
2195
|
# @option options [String] :source_identifier
|
2182
|
-
# The identifier of the event source for which events
|
2183
|
-
#
|
2196
|
+
# The identifier of the event source for which events are returned. If
|
2197
|
+
# not specified, then all sources are included in the response.
|
2184
2198
|
#
|
2185
2199
|
# Constraints:
|
2186
2200
|
#
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -138,7 +138,7 @@ module Aws::RDS
|
|
138
138
|
# }
|
139
139
|
#
|
140
140
|
# @!attribute [rw] resource_name
|
141
|
-
# The Amazon RDS resource the tags
|
141
|
+
# The Amazon RDS resource that the tags are added to. This value is an
|
142
142
|
# Amazon Resource Name (ARN). For information about creating an ARN,
|
143
143
|
# see [ Constructing an RDS Amazon Resource Name (ARN)][1].
|
144
144
|
#
|
@@ -853,8 +853,8 @@ module Aws::RDS
|
|
853
853
|
# request must contain the following parameter values:
|
854
854
|
#
|
855
855
|
# * `DestinationRegion` - The AWS Region that the encrypted DB
|
856
|
-
# snapshot
|
857
|
-
#
|
856
|
+
# snapshot is copied to. This AWS Region is the same one where the
|
857
|
+
# `CopyDBSnapshot` action is called that contains this presigned
|
858
858
|
# URL.
|
859
859
|
#
|
860
860
|
# For example, if you copy an encrypted DB snapshot from the
|
@@ -1112,8 +1112,7 @@ module Aws::RDS
|
|
1112
1112
|
#
|
1113
1113
|
# @!attribute [rw] db_cluster_parameter_group_name
|
1114
1114
|
# The name of the DB cluster parameter group to associate with this DB
|
1115
|
-
# cluster. If this argument is omitted, `default.aurora5.6`
|
1116
|
-
# used.
|
1115
|
+
# cluster. If this argument is omitted, `default.aurora5.6` is used.
|
1117
1116
|
#
|
1118
1117
|
# Constraints:
|
1119
1118
|
#
|
@@ -1276,7 +1275,7 @@ module Aws::RDS
|
|
1276
1275
|
# @!attribute [rw] pre_signed_url
|
1277
1276
|
# A URL that contains a Signature Version 4 signed request for the
|
1278
1277
|
# `CreateDBCluster` action to be called in the source AWS Region where
|
1279
|
-
# the DB cluster
|
1278
|
+
# the DB cluster is replicated from. You only need to specify
|
1280
1279
|
# `PreSignedUrl` when you are performing cross-region replication from
|
1281
1280
|
# an encrypted DB cluster.
|
1282
1281
|
#
|
@@ -1767,17 +1766,15 @@ module Aws::RDS
|
|
1767
1766
|
# @return [Integer]
|
1768
1767
|
#
|
1769
1768
|
# @!attribute [rw] db_instance_class
|
1770
|
-
# The compute and memory capacity of the DB instance
|
1771
|
-
# all instance classes are available in all
|
1772
|
-
# engines.
|
1769
|
+
# 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
|
+
# regions, or for all database engines. For the full list of DB
|
1772
|
+
# instance classes, and availability for your engine, see [DB Instance
|
1773
|
+
# Class][1] in the Amazon RDS User Guide.
|
1774
|
+
#
|
1773
1775
|
#
|
1774
|
-
#
|
1775
|
-
#
|
1776
|
-
# db.m2.4xlarge | db.m3.medium | db.m3.large | db.m3.xlarge |
|
1777
|
-
# db.m3.2xlarge | db.m4.large | db.m4.xlarge | db.m4.2xlarge |
|
1778
|
-
# db.m4.4xlarge | db.m4.10xlarge | db.r3.large | db.r3.xlarge |
|
1779
|
-
# db.r3.2xlarge | db.r3.4xlarge | db.r3.8xlarge | db.t2.micro |
|
1780
|
-
# db.t2.small | db.t2.medium | db.t2.large`
|
1776
|
+
#
|
1777
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
1781
1778
|
# @return [String]
|
1782
1779
|
#
|
1783
1780
|
# @!attribute [rw] engine
|
@@ -1930,9 +1927,9 @@ module Aws::RDS
|
|
1930
1927
|
# @return [Array<String>]
|
1931
1928
|
#
|
1932
1929
|
# @!attribute [rw] availability_zone
|
1933
|
-
# The EC2 Availability Zone that the database instance
|
1934
|
-
#
|
1935
|
-
#
|
1930
|
+
# The EC2 Availability Zone that the database instance is created in.
|
1931
|
+
# For information on regions and Availability Zones, see [Regions and
|
1932
|
+
# Availability Zones][1].
|
1936
1933
|
#
|
1937
1934
|
# Default: A random, system-chosen Availability Zone in the
|
1938
1935
|
# endpoint's AWS Region.
|
@@ -1979,7 +1976,7 @@ module Aws::RDS
|
|
1979
1976
|
# @!attribute [rw] db_parameter_group_name
|
1980
1977
|
# The name of the DB parameter group to associate with this DB
|
1981
1978
|
# instance. If this argument is omitted, the default DBParameterGroup
|
1982
|
-
# for the specified engine
|
1979
|
+
# for the specified engine is used.
|
1983
1980
|
#
|
1984
1981
|
# Constraints:
|
1985
1982
|
#
|
@@ -2174,6 +2171,8 @@ module Aws::RDS
|
|
2174
2171
|
#
|
2175
2172
|
# **MySQL**
|
2176
2173
|
#
|
2174
|
+
# * `5.7.19` (supported in all AWS regions)
|
2175
|
+
#
|
2177
2176
|
# * `5.7.17` (supported in all AWS regions)
|
2178
2177
|
#
|
2179
2178
|
# * `5.7.16` (supported in all AWS regions)
|
@@ -2182,6 +2181,8 @@ module Aws::RDS
|
|
2182
2181
|
#
|
2183
2182
|
#
|
2184
2183
|
#
|
2184
|
+
# * `5.6.37` (supported in all AWS regions)
|
2185
|
+
#
|
2185
2186
|
# * `5.6.35` (supported in all AWS regions)
|
2186
2187
|
#
|
2187
2188
|
# * `5.6.34` (supported in all AWS regions)
|
@@ -2193,6 +2194,8 @@ module Aws::RDS
|
|
2193
2194
|
#
|
2194
2195
|
#
|
2195
2196
|
#
|
2197
|
+
# * `5.5.57` (supported in all AWS regions)
|
2198
|
+
#
|
2196
2199
|
# * `5.5.54` (supported in all AWS regions)
|
2197
2200
|
#
|
2198
2201
|
# * `5.5.53` (supported in all AWS regions)
|
@@ -2201,6 +2204,9 @@ module Aws::RDS
|
|
2201
2204
|
#
|
2202
2205
|
# **Oracle 12c**
|
2203
2206
|
#
|
2207
|
+
# * `12.1.0.2.v9` (supported for EE in all AWS regions, and SE2 in all
|
2208
|
+
# AWS regions except us-gov-west-1)
|
2209
|
+
#
|
2204
2210
|
# * `12.1.0.2.v8` (supported for EE in all AWS regions, and SE2 in all
|
2205
2211
|
# AWS regions except us-gov-west-1)
|
2206
2212
|
#
|
@@ -2227,6 +2233,8 @@ module Aws::RDS
|
|
2227
2233
|
#
|
2228
2234
|
# **Oracle 11g**
|
2229
2235
|
#
|
2236
|
+
# * `11.2.0.4.v13` (supported for EE, SE1, and SE, in all AWS regions)
|
2237
|
+
#
|
2230
2238
|
# * `11.2.0.4.v12` (supported for EE, SE1, and SE, in all AWS regions)
|
2231
2239
|
#
|
2232
2240
|
# * `11.2.0.4.v11` (supported for EE, SE1, and SE, in all AWS regions)
|
@@ -2251,18 +2259,18 @@ module Aws::RDS
|
|
2251
2259
|
#
|
2252
2260
|
# **PostgreSQL**
|
2253
2261
|
#
|
2254
|
-
# * **Version 9.6.x:** ` 9.6.
|
2262
|
+
# * **Version 9.6.x:** ` 9.6.5 | 9.6.3 | 9.6.2 | 9.6.1`
|
2255
2263
|
#
|
2256
|
-
# * **Version 9.5.x:** `9.5.6 | 9.5.4 | 9.5.2`
|
2264
|
+
# * **Version 9.5.x:** ` 9.5.9 | 9.5.7 | 9.5.6 | 9.5.4 | 9.5.2`
|
2257
2265
|
#
|
2258
|
-
# * **Version 9.4.x:** `9.4.11 | 9.4.9 | 9.4.7`
|
2266
|
+
# * **Version 9.4.x:** ` 9.4.14 | 9.4.12 | 9.4.11 | 9.4.9 | 9.4.7`
|
2259
2267
|
#
|
2260
|
-
# * **Version 9.3.x:** `9.3.16 | 9.3.14 | 9.3.12`
|
2268
|
+
# * **Version 9.3.x:** ` 9.3.19 | 9.3.17 | 9.3.16 | 9.3.14 | 9.3.12`
|
2261
2269
|
# @return [String]
|
2262
2270
|
#
|
2263
2271
|
# @!attribute [rw] auto_minor_version_upgrade
|
2264
|
-
# Indicates that minor engine upgrades
|
2265
|
-
#
|
2272
|
+
# Indicates that minor engine upgrades are applied automatically to
|
2273
|
+
# the DB instance during the maintenance window.
|
2266
2274
|
#
|
2267
2275
|
# Default: `true`
|
2268
2276
|
# @return [Boolean]
|
@@ -2320,10 +2328,10 @@ module Aws::RDS
|
|
2320
2328
|
# * **VPC:** false
|
2321
2329
|
#
|
2322
2330
|
# If no DB subnet group has been specified as part of the request and
|
2323
|
-
# the PubliclyAccessible value has not been set, the DB instance
|
2324
|
-
#
|
2331
|
+
# the PubliclyAccessible value has not been set, the DB instance is
|
2332
|
+
# publicly accessible. If a specific DB subnet group has been
|
2325
2333
|
# specified as part of the request and the PubliclyAccessible value
|
2326
|
-
# has not been set, the DB instance
|
2334
|
+
# has not been set, the DB instance is private.
|
2327
2335
|
# @return [Boolean]
|
2328
2336
|
#
|
2329
2337
|
# @!attribute [rw] tags
|
@@ -2479,9 +2487,14 @@ module Aws::RDS
|
|
2479
2487
|
# @return [Boolean]
|
2480
2488
|
#
|
2481
2489
|
# @!attribute [rw] enable_performance_insights
|
2490
|
+
# True to enable Performance Insights for the DB instance; otherwise
|
2491
|
+
# false.
|
2482
2492
|
# @return [Boolean]
|
2483
2493
|
#
|
2484
2494
|
# @!attribute [rw] performance_insights_kms_key_id
|
2495
|
+
# The KMS key identifier for encryption of Performance Insights data.
|
2496
|
+
# The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
2497
|
+
# identifier, or the KMS key alias for the KMS encryption key.
|
2485
2498
|
# @return [String]
|
2486
2499
|
#
|
2487
2500
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
@@ -2603,24 +2616,22 @@ module Aws::RDS
|
|
2603
2616
|
# @return [String]
|
2604
2617
|
#
|
2605
2618
|
# @!attribute [rw] db_instance_class
|
2606
|
-
# The compute and memory capacity of the Read Replica
|
2607
|
-
# all instance classes are available in all
|
2608
|
-
# engines.
|
2609
|
-
#
|
2610
|
-
#
|
2611
|
-
# db.m1.xlarge | db.m2.xlarge |db.m2.2xlarge | db.m2.4xlarge |
|
2612
|
-
# db.m3.medium | db.m3.large | db.m3.xlarge | db.m3.2xlarge |
|
2613
|
-
# db.m4.large | db.m4.xlarge | db.m4.2xlarge | db.m4.4xlarge |
|
2614
|
-
# db.m4.10xlarge | db.r3.large | db.r3.xlarge | db.r3.2xlarge |
|
2615
|
-
# db.r3.4xlarge | db.r3.8xlarge | db.t2.micro | db.t2.small |
|
2616
|
-
# db.t2.medium | db.t2.large`
|
2619
|
+
# 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
|
+
# regions, or for all database engines. For the full list of DB
|
2622
|
+
# instance classes, and availability for your engine, see [DB Instance
|
2623
|
+
# Class][1] in the Amazon RDS User Guide.
|
2617
2624
|
#
|
2618
2625
|
# Default: Inherits from the source DB instance.
|
2626
|
+
#
|
2627
|
+
#
|
2628
|
+
#
|
2629
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
2619
2630
|
# @return [String]
|
2620
2631
|
#
|
2621
2632
|
# @!attribute [rw] availability_zone
|
2622
|
-
# The Amazon EC2 Availability Zone that the Read Replica
|
2623
|
-
#
|
2633
|
+
# The Amazon EC2 Availability Zone that the Read Replica is created
|
2634
|
+
# in.
|
2624
2635
|
#
|
2625
2636
|
# Default: A random, system-chosen Availability Zone in the
|
2626
2637
|
# endpoint's AWS Region.
|
@@ -2637,8 +2648,8 @@ module Aws::RDS
|
|
2637
2648
|
# @return [Integer]
|
2638
2649
|
#
|
2639
2650
|
# @!attribute [rw] auto_minor_version_upgrade
|
2640
|
-
# Indicates that minor engine upgrades
|
2641
|
-
#
|
2651
|
+
# Indicates that minor engine upgrades are applied automatically to
|
2652
|
+
# the Read Replica during the maintenance window.
|
2642
2653
|
#
|
2643
2654
|
# Default: Inherits from the source DB instance
|
2644
2655
|
# @return [Boolean]
|
@@ -2649,9 +2660,8 @@ module Aws::RDS
|
|
2649
2660
|
# @return [Integer]
|
2650
2661
|
#
|
2651
2662
|
# @!attribute [rw] option_group_name
|
2652
|
-
# The option group the DB instance
|
2653
|
-
#
|
2654
|
-
# used.
|
2663
|
+
# The option group the DB instance is associated with. If omitted, the
|
2664
|
+
# default option group for the engine specified is used.
|
2655
2665
|
# @return [String]
|
2656
2666
|
#
|
2657
2667
|
# @!attribute [rw] publicly_accessible
|
@@ -2670,10 +2680,10 @@ module Aws::RDS
|
|
2670
2680
|
# * **VPC:**false
|
2671
2681
|
#
|
2672
2682
|
# If no DB subnet group has been specified as part of the request and
|
2673
|
-
# the PubliclyAccessible value has not been set, the DB instance
|
2674
|
-
#
|
2683
|
+
# the PubliclyAccessible value has not been set, the DB instance is
|
2684
|
+
# publicly accessible. If a specific DB subnet group has been
|
2675
2685
|
# specified as part of the request and the PubliclyAccessible value
|
2676
|
-
# has not been set, the DB instance
|
2686
|
+
# has not been set, the DB instance is private.
|
2677
2687
|
# @return [Boolean]
|
2678
2688
|
#
|
2679
2689
|
# @!attribute [rw] tags
|
@@ -2682,9 +2692,9 @@ module Aws::RDS
|
|
2682
2692
|
#
|
2683
2693
|
# @!attribute [rw] db_subnet_group_name
|
2684
2694
|
# Specifies a DB subnet group for the DB instance. The new DB instance
|
2685
|
-
#
|
2686
|
-
#
|
2687
|
-
#
|
2695
|
+
# is created in the VPC associated with the DB subnet group. If no DB
|
2696
|
+
# subnet group is specified, then the new DB instance is not created
|
2697
|
+
# in a VPC.
|
2688
2698
|
#
|
2689
2699
|
# Constraints:
|
2690
2700
|
#
|
@@ -2700,9 +2710,9 @@ module Aws::RDS
|
|
2700
2710
|
# source DB instance must either:>
|
2701
2711
|
#
|
2702
2712
|
# * Specify DB subnet groups from the same VPC. All these Read
|
2703
|
-
# Replicas
|
2713
|
+
# Replicas are created in the same VPC.
|
2704
2714
|
#
|
2705
|
-
# * Not specify a DB subnet group. All these Read Replicas
|
2715
|
+
# * Not specify a DB subnet group. All these Read Replicas are
|
2706
2716
|
# created outside of any VPC.
|
2707
2717
|
#
|
2708
2718
|
# Example: `mySubnetgroup`
|
@@ -2789,9 +2799,9 @@ module Aws::RDS
|
|
2789
2799
|
# values:
|
2790
2800
|
#
|
2791
2801
|
# * `DestinationRegion` - The AWS Region that the encrypted Read
|
2792
|
-
# Replica
|
2793
|
-
#
|
2794
|
-
#
|
2802
|
+
# Replica is created in. This AWS Region is the same one where the
|
2803
|
+
# `CreateDBInstanceReadReplica` action is called that contains this
|
2804
|
+
# presigned URL.
|
2795
2805
|
#
|
2796
2806
|
# For example, if you create an encrypted DB instance in the
|
2797
2807
|
# us-west-1 region, from a source DB instance in the us-east-2
|
@@ -2842,9 +2852,14 @@ module Aws::RDS
|
|
2842
2852
|
# @return [Boolean]
|
2843
2853
|
#
|
2844
2854
|
# @!attribute [rw] enable_performance_insights
|
2855
|
+
# True to enable Performance Insights for the read replica; otherwise
|
2856
|
+
# false.
|
2845
2857
|
# @return [Boolean]
|
2846
2858
|
#
|
2847
2859
|
# @!attribute [rw] performance_insights_kms_key_id
|
2860
|
+
# The KMS key identifier for encryption of Performance Insights data.
|
2861
|
+
# The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
2862
|
+
# identifier, or the KMS key alias for the KMS encryption key.
|
2848
2863
|
# @return [String]
|
2849
2864
|
#
|
2850
2865
|
# @!attribute [rw] destination_region
|
@@ -3250,8 +3265,8 @@ module Aws::RDS
|
|
3250
3265
|
# @return [String]
|
3251
3266
|
#
|
3252
3267
|
# @!attribute [rw] source_type
|
3253
|
-
# The type of source that
|
3254
|
-
#
|
3268
|
+
# The type of source that is generating the events. For example, if
|
3269
|
+
# you want to be notified of events generated by a DB instance, you
|
3255
3270
|
# would set this parameter to db-instance. if this value is not
|
3256
3271
|
# specified, all events are returned.
|
3257
3272
|
#
|
@@ -3271,8 +3286,8 @@ module Aws::RDS
|
|
3271
3286
|
# @return [Array<String>]
|
3272
3287
|
#
|
3273
3288
|
# @!attribute [rw] source_ids
|
3274
|
-
# The list of identifiers of the event sources for which events
|
3275
|
-
#
|
3289
|
+
# The list of identifiers of the event sources for which events are
|
3290
|
+
# returned. If not specified, then all sources are included in the
|
3276
3291
|
# response. An identifier must begin with a letter and must contain
|
3277
3292
|
# only ASCII letters, digits, and hyphens; it cannot end with a hyphen
|
3278
3293
|
# or contain two consecutive hyphens.
|
@@ -3489,7 +3504,7 @@ module Aws::RDS
|
|
3489
3504
|
# your DB cluster.
|
3490
3505
|
#
|
3491
3506
|
# If a failover occurs, and the Aurora Replica that you are connected
|
3492
|
-
# to is promoted to be the primary instance, your connection
|
3507
|
+
# to is promoted to be the primary instance, your connection is
|
3493
3508
|
# dropped. To continue sending your read workload to other Aurora
|
3494
3509
|
# Replicas in the cluster, you can then reconnect to the reader
|
3495
3510
|
# endpoint.
|
@@ -4327,15 +4342,15 @@ module Aws::RDS
|
|
4327
4342
|
# * **VPC:**false
|
4328
4343
|
#
|
4329
4344
|
# If no DB subnet group has been specified as part of the request and
|
4330
|
-
# the PubliclyAccessible value has not been set, the DB instance
|
4331
|
-
#
|
4345
|
+
# the PubliclyAccessible value has not been set, the DB instance is
|
4346
|
+
# publicly accessible. If a specific DB subnet group has been
|
4332
4347
|
# specified as part of the request and the PubliclyAccessible value
|
4333
|
-
# has not been set, the DB instance
|
4348
|
+
# has not been set, the DB instance is private.
|
4334
4349
|
# @return [Boolean]
|
4335
4350
|
#
|
4336
4351
|
# @!attribute [rw] status_infos
|
4337
4352
|
# The status of a Read Replica. If the instance is not a Read Replica,
|
4338
|
-
# this
|
4353
|
+
# this is blank.
|
4339
4354
|
# @return [Array<Types::DBInstanceStatusInfo>]
|
4340
4355
|
#
|
4341
4356
|
# @!attribute [rw] storage_type
|
@@ -4440,9 +4455,14 @@ module Aws::RDS
|
|
4440
4455
|
# @return [Boolean]
|
4441
4456
|
#
|
4442
4457
|
# @!attribute [rw] performance_insights_enabled
|
4458
|
+
# True if Performance Insights is enabled for the DB instance;
|
4459
|
+
# otherwise false.
|
4443
4460
|
# @return [Boolean]
|
4444
4461
|
#
|
4445
4462
|
# @!attribute [rw] performance_insights_kms_key_id
|
4463
|
+
# The KMS key identifier for encryption of Performance Insights data.
|
4464
|
+
# The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
4465
|
+
# identifier, or the KMS key alias for the KMS encryption key.
|
4446
4466
|
# @return [String]
|
4447
4467
|
#
|
4448
4468
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
@@ -6756,7 +6776,7 @@ module Aws::RDS
|
|
6756
6776
|
# }
|
6757
6777
|
#
|
6758
6778
|
# @!attribute [rw] source_type
|
6759
|
-
# The type of source that
|
6779
|
+
# The type of source that is generating the events.
|
6760
6780
|
#
|
6761
6781
|
# Valid values: db-instance \| db-parameter-group \| db-security-group
|
6762
6782
|
# \| db-snapshot
|
@@ -6847,9 +6867,8 @@ module Aws::RDS
|
|
6847
6867
|
# }
|
6848
6868
|
#
|
6849
6869
|
# @!attribute [rw] source_identifier
|
6850
|
-
# The identifier of the event source for which events
|
6851
|
-
#
|
6852
|
-
# response.
|
6870
|
+
# The identifier of the event source for which events are returned. If
|
6871
|
+
# not specified, then all sources are included in the response.
|
6853
6872
|
#
|
6854
6873
|
# Constraints:
|
6855
6874
|
#
|
@@ -6965,7 +6984,7 @@ module Aws::RDS
|
|
6965
6984
|
#
|
6966
6985
|
# @!attribute [rw] engine_name
|
6967
6986
|
# A required parameter. Options available for the given engine name
|
6968
|
-
#
|
6987
|
+
# are described.
|
6969
6988
|
# @return [String]
|
6970
6989
|
#
|
6971
6990
|
# @!attribute [rw] major_engine_version
|
@@ -7606,8 +7625,8 @@ module Aws::RDS
|
|
7606
7625
|
#
|
7607
7626
|
# @!attribute [rw] number_of_lines
|
7608
7627
|
# The number of lines to download. If the number of lines specified
|
7609
|
-
# results in a file over 1 MB in size, the file
|
7610
|
-
#
|
7628
|
+
# results in a file over 1 MB in size, the file is truncated at 1 MB
|
7629
|
+
# in size.
|
7611
7630
|
#
|
7612
7631
|
# If the NumberOfLines parameter is specified, then the block of lines
|
7613
7632
|
# returned can be from the beginning or the end of the log file,
|
@@ -8506,34 +8525,31 @@ module Aws::RDS
|
|
8506
8525
|
# IOPS provisioned (if any), and the number of prior scale storage
|
8507
8526
|
# operations. Typical migration times are under 24 hours, but the
|
8508
8527
|
# process can take up to several days in some cases. During the
|
8509
|
-
# migration, the DB instance
|
8528
|
+
# migration, the DB instance is available for use, but might
|
8510
8529
|
# experience performance degradation. While the migration takes place,
|
8511
|
-
# nightly backups for the instance
|
8512
|
-
#
|
8513
|
-
#
|
8514
|
-
#
|
8515
|
-
#
|
8530
|
+
# nightly backups for the instance are suspended. No other Amazon RDS
|
8531
|
+
# operations can take place for the instance, including modifying the
|
8532
|
+
# instance, rebooting the instance, deleting the instance, creating a
|
8533
|
+
# Read Replica for the instance, and creating a DB snapshot of the
|
8534
|
+
# instance.
|
8516
8535
|
# @return [Integer]
|
8517
8536
|
#
|
8518
8537
|
# @!attribute [rw] db_instance_class
|
8519
|
-
# The new compute and memory capacity of the DB instance
|
8520
|
-
#
|
8521
|
-
#
|
8522
|
-
# instance classes
|
8538
|
+
# 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
|
+
# regions, or for all database engines. For the full list of DB
|
8541
|
+
# instance classes, and availability for your engine, see [DB Instance
|
8542
|
+
# Class][1] in the Amazon RDS User Guide.
|
8523
8543
|
#
|
8524
|
-
#
|
8525
|
-
#
|
8526
|
-
# `ApplyImmediately` is specified as `true` for this request.
|
8544
|
+
# If you modify the DB instance class, an outage occurs during the
|
8545
|
+
# change. The change is applied during the next maintenance window,
|
8546
|
+
# unless `ApplyImmediately` is specified as `true` for this request.
|
8527
8547
|
#
|
8528
8548
|
# Default: Uses existing setting
|
8529
8549
|
#
|
8530
|
-
#
|
8531
|
-
#
|
8532
|
-
#
|
8533
|
-
# db.m3.2xlarge | db.m4.large | db.m4.xlarge | db.m4.2xlarge |
|
8534
|
-
# db.m4.4xlarge | db.m4.10xlarge | db.r3.large | db.r3.xlarge |
|
8535
|
-
# db.r3.2xlarge | db.r3.4xlarge | db.r3.8xlarge | db.t2.micro |
|
8536
|
-
# db.t2.small | db.t2.medium | db.t2.large`
|
8550
|
+
#
|
8551
|
+
#
|
8552
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
8537
8553
|
# @return [String]
|
8538
8554
|
#
|
8539
8555
|
# @!attribute [rw] db_subnet_group_name
|
@@ -8594,12 +8610,12 @@ module Aws::RDS
|
|
8594
8610
|
#
|
8595
8611
|
# If this parameter is set to `false`, changes to the DB instance are
|
8596
8612
|
# applied during the next maintenance window. Some parameter changes
|
8597
|
-
# can cause an outage and
|
8613
|
+
# can cause an outage and are applied on the next call to
|
8598
8614
|
# RebootDBInstance, or the next failure reboot. Review the table of
|
8599
8615
|
# parameters in [Modifying a DB Instance and Using the Apply
|
8600
8616
|
# Immediately Parameter][1] to see the impact that setting
|
8601
8617
|
# `ApplyImmediately` to `true` or `false` has for each modified
|
8602
|
-
# parameter and to determine when the changes
|
8618
|
+
# parameter and to determine when the changes are applied.
|
8603
8619
|
#
|
8604
8620
|
# Default: `false`
|
8605
8621
|
#
|
@@ -8781,8 +8797,8 @@ module Aws::RDS
|
|
8781
8797
|
# @return [Boolean]
|
8782
8798
|
#
|
8783
8799
|
# @!attribute [rw] auto_minor_version_upgrade
|
8784
|
-
# Indicates that minor version upgrades
|
8785
|
-
#
|
8800
|
+
# Indicates that minor version upgrades are applied automatically to
|
8801
|
+
# the DB instance during the maintenance window. Changing this
|
8786
8802
|
# parameter does not result in an outage except in the following case
|
8787
8803
|
# and the change is asynchronously applied as soon as possible. An
|
8788
8804
|
# outage will result if this parameter is set to `true` during the
|
@@ -8827,13 +8843,13 @@ module Aws::RDS
|
|
8827
8843
|
# IOPS provisioned (if any), and the number of prior scale storage
|
8828
8844
|
# operations. Typical migration times are under 24 hours, but the
|
8829
8845
|
# process can take up to several days in some cases. During the
|
8830
|
-
# migration, the DB instance
|
8846
|
+
# migration, the DB instance is available for use, but might
|
8831
8847
|
# experience performance degradation. While the migration takes place,
|
8832
|
-
# nightly backups for the instance
|
8833
|
-
#
|
8834
|
-
#
|
8835
|
-
#
|
8836
|
-
#
|
8848
|
+
# nightly backups for the instance are suspended. No other Amazon RDS
|
8849
|
+
# operations can take place for the instance, including modifying the
|
8850
|
+
# instance, rebooting the instance, deleting the instance, creating a
|
8851
|
+
# Read Replica for the instance, and creating a DB snapshot of the
|
8852
|
+
# instance.
|
8837
8853
|
# @return [Integer]
|
8838
8854
|
#
|
8839
8855
|
# @!attribute [rw] option_group_name
|
@@ -9046,9 +9062,14 @@ module Aws::RDS
|
|
9046
9062
|
# @return [Boolean]
|
9047
9063
|
#
|
9048
9064
|
# @!attribute [rw] enable_performance_insights
|
9065
|
+
# True to enable Performance Insights for the DB instance; otherwise
|
9066
|
+
# false.
|
9049
9067
|
# @return [Boolean]
|
9050
9068
|
#
|
9051
9069
|
# @!attribute [rw] performance_insights_kms_key_id
|
9070
|
+
# The KMS key identifier for encryption of Performance Insights data.
|
9071
|
+
# The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
9072
|
+
# identifier, or the KMS key alias for the KMS encryption key.
|
9052
9073
|
# @return [String]
|
9053
9074
|
#
|
9054
9075
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
@@ -9400,8 +9421,8 @@ module Aws::RDS
|
|
9400
9421
|
# @return [String]
|
9401
9422
|
#
|
9402
9423
|
# @!attribute [rw] source_type
|
9403
|
-
# The type of source that
|
9404
|
-
#
|
9424
|
+
# The type of source that is generating the events. For example, if
|
9425
|
+
# you want to be notified of events generated by a DB instance, you
|
9405
9426
|
# would set this parameter to db-instance. if this value is not
|
9406
9427
|
# specified, all events are returned.
|
9407
9428
|
#
|
@@ -9992,71 +10013,94 @@ module Aws::RDS
|
|
9992
10013
|
include Aws::Structure
|
9993
10014
|
end
|
9994
10015
|
|
9995
|
-
# Contains a list of available options for a DB instance
|
10016
|
+
# Contains a list of available options for a DB instance.
|
9996
10017
|
#
|
9997
10018
|
# This data type is used as a response element in the
|
9998
10019
|
# DescribeOrderableDBInstanceOptions action.
|
9999
10020
|
#
|
10000
10021
|
# @!attribute [rw] engine
|
10001
|
-
# The engine type of
|
10022
|
+
# The engine type of a DB instance.
|
10002
10023
|
# @return [String]
|
10003
10024
|
#
|
10004
10025
|
# @!attribute [rw] engine_version
|
10005
|
-
# The engine version of
|
10026
|
+
# The engine version of a DB instance.
|
10006
10027
|
# @return [String]
|
10007
10028
|
#
|
10008
10029
|
# @!attribute [rw] db_instance_class
|
10009
|
-
# The DB instance class for
|
10030
|
+
# The DB instance class for a DB instance.
|
10010
10031
|
# @return [String]
|
10011
10032
|
#
|
10012
10033
|
# @!attribute [rw] license_model
|
10013
|
-
# The license model for
|
10034
|
+
# The license model for a DB instance.
|
10014
10035
|
# @return [String]
|
10015
10036
|
#
|
10016
10037
|
# @!attribute [rw] availability_zones
|
10017
|
-
# A list of Availability Zones for
|
10038
|
+
# A list of Availability Zones for a DB instance.
|
10018
10039
|
# @return [Array<Types::AvailabilityZone>]
|
10019
10040
|
#
|
10020
10041
|
# @!attribute [rw] multi_az_capable
|
10021
|
-
# Indicates whether
|
10042
|
+
# Indicates whether a DB instance is Multi-AZ capable.
|
10022
10043
|
# @return [Boolean]
|
10023
10044
|
#
|
10024
10045
|
# @!attribute [rw] read_replica_capable
|
10025
|
-
# Indicates whether
|
10026
|
-
# Replica.
|
10046
|
+
# Indicates whether a DB instance can have a Read Replica.
|
10027
10047
|
# @return [Boolean]
|
10028
10048
|
#
|
10029
10049
|
# @!attribute [rw] vpc
|
10030
|
-
# Indicates whether
|
10050
|
+
# Indicates whether a DB instance is in a VPC.
|
10031
10051
|
# @return [Boolean]
|
10032
10052
|
#
|
10033
10053
|
# @!attribute [rw] supports_storage_encryption
|
10034
|
-
# Indicates whether
|
10035
|
-
# storage.
|
10054
|
+
# Indicates whether a DB instance supports encrypted storage.
|
10036
10055
|
# @return [Boolean]
|
10037
10056
|
#
|
10038
10057
|
# @!attribute [rw] storage_type
|
10039
|
-
# Indicates the storage type for
|
10058
|
+
# Indicates the storage type for a DB instance.
|
10040
10059
|
# @return [String]
|
10041
10060
|
#
|
10042
10061
|
# @!attribute [rw] supports_iops
|
10043
|
-
# Indicates whether
|
10044
|
-
# IOPS.
|
10062
|
+
# Indicates whether a DB instance supports provisioned IOPS.
|
10045
10063
|
# @return [Boolean]
|
10046
10064
|
#
|
10047
10065
|
# @!attribute [rw] supports_enhanced_monitoring
|
10048
|
-
# Indicates whether
|
10066
|
+
# Indicates whether a DB instance supports Enhanced Monitoring at
|
10049
10067
|
# intervals from 1 to 60 seconds.
|
10050
10068
|
# @return [Boolean]
|
10051
10069
|
#
|
10052
10070
|
# @!attribute [rw] supports_iam_database_authentication
|
10053
|
-
# Indicates whether
|
10071
|
+
# Indicates whether a DB instance supports IAM database
|
10054
10072
|
# authentication.
|
10055
10073
|
# @return [Boolean]
|
10056
10074
|
#
|
10057
10075
|
# @!attribute [rw] supports_performance_insights
|
10076
|
+
# True if a DB instance supports Performance Insights, otherwise
|
10077
|
+
# false.
|
10058
10078
|
# @return [Boolean]
|
10059
10079
|
#
|
10080
|
+
# @!attribute [rw] min_storage_size
|
10081
|
+
# Minimum storage size for a DB instance.
|
10082
|
+
# @return [Integer]
|
10083
|
+
#
|
10084
|
+
# @!attribute [rw] max_storage_size
|
10085
|
+
# Maximum storage size for a DB instance.
|
10086
|
+
# @return [Integer]
|
10087
|
+
#
|
10088
|
+
# @!attribute [rw] min_iops_per_db_instance
|
10089
|
+
# Minimum total provisioned IOPS for a DB instance.
|
10090
|
+
# @return [Integer]
|
10091
|
+
#
|
10092
|
+
# @!attribute [rw] max_iops_per_db_instance
|
10093
|
+
# Maximum total provisioned IOPS for a DB instance.
|
10094
|
+
# @return [Integer]
|
10095
|
+
#
|
10096
|
+
# @!attribute [rw] min_iops_per_gib
|
10097
|
+
# Minimum provisioned IOPS per GiB for a DB instance.
|
10098
|
+
# @return [Float]
|
10099
|
+
#
|
10100
|
+
# @!attribute [rw] max_iops_per_gib
|
10101
|
+
# Maximum provisioned IOPS per GiB for a DB instance.
|
10102
|
+
# @return [Float]
|
10103
|
+
#
|
10060
10104
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OrderableDBInstanceOption AWS API Documentation
|
10061
10105
|
#
|
10062
10106
|
class OrderableDBInstanceOption < Struct.new(
|
@@ -10073,7 +10117,13 @@ module Aws::RDS
|
|
10073
10117
|
:supports_iops,
|
10074
10118
|
:supports_enhanced_monitoring,
|
10075
10119
|
:supports_iam_database_authentication,
|
10076
|
-
:supports_performance_insights
|
10120
|
+
:supports_performance_insights,
|
10121
|
+
:min_storage_size,
|
10122
|
+
:max_storage_size,
|
10123
|
+
:min_iops_per_db_instance,
|
10124
|
+
:max_iops_per_db_instance,
|
10125
|
+
:min_iops_per_gib,
|
10126
|
+
:max_iops_per_gib)
|
10077
10127
|
include Aws::Structure
|
10078
10128
|
end
|
10079
10129
|
|
@@ -10189,15 +10239,15 @@ module Aws::RDS
|
|
10189
10239
|
# @return [String]
|
10190
10240
|
#
|
10191
10241
|
# @!attribute [rw] auto_applied_after_date
|
10192
|
-
# The date of the maintenance window when the action
|
10193
|
-
#
|
10194
|
-
#
|
10195
|
-
#
|
10242
|
+
# The date of the maintenance window when the action is applied. The
|
10243
|
+
# maintenance action is applied to the resource during its first
|
10244
|
+
# maintenance window after this date. If this date is specified, any
|
10245
|
+
# `next-maintenance` opt-in requests are ignored.
|
10196
10246
|
# @return [Time]
|
10197
10247
|
#
|
10198
10248
|
# @!attribute [rw] forced_apply_date
|
10199
|
-
# The date when the maintenance action
|
10200
|
-
#
|
10249
|
+
# The date when the maintenance action is automatically applied. The
|
10250
|
+
# maintenance action is applied to the resource on this date
|
10201
10251
|
# regardless of the maintenance window for the resource. If this date
|
10202
10252
|
# is specified, any `immediate` opt-in requests are ignored.
|
10203
10253
|
# @return [Time]
|
@@ -10208,9 +10258,9 @@ module Aws::RDS
|
|
10208
10258
|
# @return [String]
|
10209
10259
|
#
|
10210
10260
|
# @!attribute [rw] current_apply_date
|
10211
|
-
# The effective date when the pending maintenance action
|
10212
|
-
#
|
10213
|
-
#
|
10261
|
+
# The effective date when the pending maintenance action is applied to
|
10262
|
+
# the resource. This date takes into account opt-in requests received
|
10263
|
+
# from the ApplyPendingMaintenanceAction API, the
|
10214
10264
|
# `AutoAppliedAfterDate`, and the `ForcedApplyDate`. This value is
|
10215
10265
|
# blank if an opt-in request has not been received and nothing has
|
10216
10266
|
# been specified as `AutoAppliedAfterDate` or `ForcedApplyDate`.
|
@@ -10258,17 +10308,17 @@ module Aws::RDS
|
|
10258
10308
|
#
|
10259
10309
|
# @!attribute [rw] db_instance_class
|
10260
10310
|
# Contains the new `DBInstanceClass` for the DB instance that will be
|
10261
|
-
# applied or is
|
10311
|
+
# applied or is currently being applied.
|
10262
10312
|
# @return [String]
|
10263
10313
|
#
|
10264
10314
|
# @!attribute [rw] allocated_storage
|
10265
10315
|
# Contains the new `AllocatedStorage` size for the DB instance that
|
10266
|
-
# will be applied or is
|
10316
|
+
# will be applied or is currently being applied.
|
10267
10317
|
# @return [Integer]
|
10268
10318
|
#
|
10269
10319
|
# @!attribute [rw] master_user_password
|
10270
|
-
# Contains the pending or in-progress change of the master
|
10271
|
-
# for the DB instance.
|
10320
|
+
# Contains the pending or currently-in-progress change of the master
|
10321
|
+
# credentials for the DB instance.
|
10272
10322
|
# @return [String]
|
10273
10323
|
#
|
10274
10324
|
# @!attribute [rw] port
|
@@ -10298,12 +10348,12 @@ module Aws::RDS
|
|
10298
10348
|
#
|
10299
10349
|
# @!attribute [rw] iops
|
10300
10350
|
# Specifies the new Provisioned IOPS value for the DB instance that
|
10301
|
-
# will be applied or is being applied.
|
10351
|
+
# will be applied or is currently being applied.
|
10302
10352
|
# @return [Integer]
|
10303
10353
|
#
|
10304
10354
|
# @!attribute [rw] db_instance_identifier
|
10305
10355
|
# Contains the new `DBInstanceIdentifier` for the DB instance that
|
10306
|
-
# will be applied or is
|
10356
|
+
# will be applied or is currently being applied.
|
10307
10357
|
# @return [String]
|
10308
10358
|
#
|
10309
10359
|
# @!attribute [rw] storage_type
|
@@ -10593,8 +10643,7 @@ module Aws::RDS
|
|
10593
10643
|
# @return [String]
|
10594
10644
|
#
|
10595
10645
|
# @!attribute [rw] force_failover
|
10596
|
-
# When `true`, the reboot
|
10597
|
-
# failover.
|
10646
|
+
# When `true`, the reboot is conducted through a MultiAZ failover.
|
10598
10647
|
#
|
10599
10648
|
# Constraint: You cannot specify `true` if the instance is not
|
10600
10649
|
# configured for MultiAZ.
|
@@ -10727,8 +10776,8 @@ module Aws::RDS
|
|
10727
10776
|
# }
|
10728
10777
|
#
|
10729
10778
|
# @!attribute [rw] resource_name
|
10730
|
-
# The Amazon RDS resource the tags
|
10731
|
-
# an Amazon Resource Name (ARN). For information about creating an
|
10779
|
+
# The Amazon RDS resource that the tags are removed from. This value
|
10780
|
+
# is an Amazon Resource Name (ARN). For information about creating an
|
10732
10781
|
# ARN, see [ Constructing an RDS Amazon Resource Name (ARN)][1].
|
10733
10782
|
#
|
10734
10783
|
#
|
@@ -11158,7 +11207,7 @@ module Aws::RDS
|
|
11158
11207
|
# @!attribute [rw] db_cluster_parameter_group_name
|
11159
11208
|
# The name of the DB cluster parameter group to associate with the
|
11160
11209
|
# restored DB cluster. If this argument is omitted,
|
11161
|
-
# `default.aurora5.6`
|
11210
|
+
# `default.aurora5.6` is used.
|
11162
11211
|
#
|
11163
11212
|
# Constraints:
|
11164
11213
|
#
|
@@ -11714,8 +11763,8 @@ module Aws::RDS
|
|
11714
11763
|
#
|
11715
11764
|
# You can restore to a new DB cluster and encrypt the new DB cluster
|
11716
11765
|
# with a KMS key that is different than the KMS key used to encrypt
|
11717
|
-
# the source DB cluster. The new DB cluster
|
11718
|
-
#
|
11766
|
+
# the source DB cluster. The new DB cluster is encrypted with the KMS
|
11767
|
+
# key identified by the `KmsKeyId` parameter.
|
11719
11768
|
#
|
11720
11769
|
# If you do not specify a value for the `KmsKeyId` parameter, then the
|
11721
11770
|
# following will occur:
|
@@ -11844,15 +11893,17 @@ module Aws::RDS
|
|
11844
11893
|
# @return [String]
|
11845
11894
|
#
|
11846
11895
|
# @!attribute [rw] db_instance_class
|
11847
|
-
# The compute and memory capacity of the Amazon RDS DB instance
|
11896
|
+
# The compute and memory capacity of the Amazon RDS DB instance, for
|
11897
|
+
# example, `db.m4.large`. Not all DB instance classes are available in
|
11898
|
+
# all regions, or for all database engines. For the full list of DB
|
11899
|
+
# instance classes, and availability for your engine, see [DB Instance
|
11900
|
+
# Class][1] in the Amazon RDS User Guide.
|
11901
|
+
#
|
11902
|
+
# Default: The same DBInstanceClass as the original DB instance.
|
11848
11903
|
#
|
11849
|
-
#
|
11850
|
-
#
|
11851
|
-
#
|
11852
|
-
# db.m4.large | db.m4.xlarge | db.m4.2xlarge | db.m4.4xlarge |
|
11853
|
-
# db.m4.10xlarge | db.r3.large | db.r3.xlarge | db.r3.2xlarge |
|
11854
|
-
# db.r3.4xlarge | db.r3.8xlarge | db.t2.micro | db.t2.small |
|
11855
|
-
# db.t2.medium | db.t2.large`
|
11904
|
+
#
|
11905
|
+
#
|
11906
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
11856
11907
|
# @return [String]
|
11857
11908
|
#
|
11858
11909
|
# @!attribute [rw] port
|
@@ -11864,8 +11915,7 @@ module Aws::RDS
|
|
11864
11915
|
# @return [Integer]
|
11865
11916
|
#
|
11866
11917
|
# @!attribute [rw] availability_zone
|
11867
|
-
# The EC2 Availability Zone that the database instance
|
11868
|
-
# in.
|
11918
|
+
# The EC2 Availability Zone that the database instance is created in.
|
11869
11919
|
#
|
11870
11920
|
# Default: A random, system-chosen Availability Zone.
|
11871
11921
|
#
|
@@ -11907,15 +11957,15 @@ module Aws::RDS
|
|
11907
11957
|
# * **VPC:** false
|
11908
11958
|
#
|
11909
11959
|
# If no DB subnet group has been specified as part of the request and
|
11910
|
-
# the PubliclyAccessible value has not been set, the DB instance
|
11911
|
-
#
|
11960
|
+
# the PubliclyAccessible value has not been set, the DB instance is
|
11961
|
+
# publicly accessible. If a specific DB subnet group has been
|
11912
11962
|
# specified as part of the request and the PubliclyAccessible value
|
11913
|
-
# has not been set, the DB instance
|
11963
|
+
# has not been set, the DB instance is private.
|
11914
11964
|
# @return [Boolean]
|
11915
11965
|
#
|
11916
11966
|
# @!attribute [rw] auto_minor_version_upgrade
|
11917
|
-
# Indicates that minor version upgrades
|
11918
|
-
#
|
11967
|
+
# Indicates that minor version upgrades are applied automatically to
|
11968
|
+
# the DB instance during the maintenance window.
|
11919
11969
|
# @return [Boolean]
|
11920
11970
|
#
|
11921
11971
|
# @!attribute [rw] license_model
|
@@ -11974,18 +12024,20 @@ module Aws::RDS
|
|
11974
12024
|
# @!attribute [rw] iops
|
11975
12025
|
# Specifies the amount of provisioned IOPS for the DB instance,
|
11976
12026
|
# expressed in I/O operations per second. If this parameter is not
|
11977
|
-
# specified, the IOPS value
|
11978
|
-
# parameter is set to 0, the new instance
|
11979
|
-
#
|
11980
|
-
# instance
|
11981
|
-
#
|
12027
|
+
# specified, the IOPS value is taken from the backup. If this
|
12028
|
+
# parameter is set to 0, the new instance is converted to a non-PIOPS
|
12029
|
+
# instance. The conversion takes additional time, though your DB
|
12030
|
+
# instance is available for connections before the conversion starts.
|
12031
|
+
#
|
12032
|
+
# The provisioned IOPS value must follow the requirements for your
|
12033
|
+
# database engine. For more information, see [Amazon RDS Provisioned
|
12034
|
+
# IOPS Storage to Improve Performance][1].
|
11982
12035
|
#
|
11983
12036
|
# Constraints: Must be an integer greater than 1000.
|
11984
12037
|
#
|
11985
|
-
# **SQL Server**
|
11986
12038
|
#
|
11987
|
-
#
|
11988
|
-
#
|
12039
|
+
#
|
12040
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
11989
12041
|
# @return [Integer]
|
11990
12042
|
#
|
11991
12043
|
# @!attribute [rw] option_group_name
|
@@ -12190,17 +12242,17 @@ module Aws::RDS
|
|
12190
12242
|
# @return [Boolean]
|
12191
12243
|
#
|
12192
12244
|
# @!attribute [rw] db_instance_class
|
12193
|
-
# The compute and memory capacity of the Amazon RDS DB instance
|
12194
|
-
#
|
12195
|
-
#
|
12196
|
-
#
|
12197
|
-
#
|
12198
|
-
# db.m4.large | db.m4.xlarge | db.m4.2xlarge | db.m4.4xlarge |
|
12199
|
-
# db.m4.10xlarge | db.r3.large | db.r3.xlarge | db.r3.2xlarge |
|
12200
|
-
# db.r3.4xlarge | db.r3.8xlarge | db.t2.micro | db.t2.small |
|
12201
|
-
# db.t2.medium | db.t2.large`
|
12245
|
+
# The compute and memory capacity of the Amazon RDS DB instance, for
|
12246
|
+
# example, `db.m4.large`. Not all DB instance classes are available in
|
12247
|
+
# all regions, or for all database engines. For the full list of DB
|
12248
|
+
# instance classes, and availability for your engine, see [DB Instance
|
12249
|
+
# Class][1] in the Amazon RDS User Guide.
|
12202
12250
|
#
|
12203
12251
|
# Default: The same DBInstanceClass as the original DB instance.
|
12252
|
+
#
|
12253
|
+
#
|
12254
|
+
#
|
12255
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
12204
12256
|
# @return [String]
|
12205
12257
|
#
|
12206
12258
|
# @!attribute [rw] port
|
@@ -12212,8 +12264,7 @@ module Aws::RDS
|
|
12212
12264
|
# @return [Integer]
|
12213
12265
|
#
|
12214
12266
|
# @!attribute [rw] availability_zone
|
12215
|
-
# The EC2 Availability Zone that the database instance
|
12216
|
-
# in.
|
12267
|
+
# The EC2 Availability Zone that the database instance is created in.
|
12217
12268
|
#
|
12218
12269
|
# Default: A random, system-chosen Availability Zone.
|
12219
12270
|
#
|
@@ -12255,15 +12306,15 @@ module Aws::RDS
|
|
12255
12306
|
# * **VPC:**false
|
12256
12307
|
#
|
12257
12308
|
# If no DB subnet group has been specified as part of the request and
|
12258
|
-
# the PubliclyAccessible value has not been set, the DB instance
|
12259
|
-
#
|
12309
|
+
# the PubliclyAccessible value has not been set, the DB instance is
|
12310
|
+
# publicly accessible. If a specific DB subnet group has been
|
12260
12311
|
# specified as part of the request and the PubliclyAccessible value
|
12261
|
-
# has not been set, the DB instance
|
12312
|
+
# has not been set, the DB instance is private.
|
12262
12313
|
# @return [Boolean]
|
12263
12314
|
#
|
12264
12315
|
# @!attribute [rw] auto_minor_version_upgrade
|
12265
|
-
# Indicates that minor version upgrades
|
12266
|
-
#
|
12316
|
+
# Indicates that minor version upgrades are applied automatically to
|
12317
|
+
# the DB instance during the maintenance window.
|
12267
12318
|
# @return [Boolean]
|
12268
12319
|
#
|
12269
12320
|
# @!attribute [rw] license_model
|
@@ -12778,14 +12829,13 @@ module Aws::RDS
|
|
12778
12829
|
# @return [String]
|
12779
12830
|
#
|
12780
12831
|
# @!attribute [rw] auto_upgrade
|
12781
|
-
# A value that indicates whether the target version
|
12782
|
-
#
|
12783
|
-
# true.
|
12832
|
+
# A value that indicates whether the target version is applied to any
|
12833
|
+
# source DB instances that have AutoMinorVersionUpgrade set to true.
|
12784
12834
|
# @return [Boolean]
|
12785
12835
|
#
|
12786
12836
|
# @!attribute [rw] is_major_version_upgrade
|
12787
|
-
# A value that indicates whether a database engine
|
12788
|
-
#
|
12837
|
+
# A value that indicates whether a database engine is upgraded to a
|
12838
|
+
# major version.
|
12789
12839
|
# @return [Boolean]
|
12790
12840
|
#
|
12791
12841
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/UpgradeTarget AWS API Documentation
|