aws-sdk-rds 1.134.0 → 1.135.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.
@@ -78,7 +78,14 @@ module Aws::RDS
78
78
  data[:allocated_storage]
79
79
  end
80
80
 
81
- # Specifies the status of this DB cluster snapshot.
81
+ # Specifies the status of this DB cluster snapshot. Valid statuses are
82
+ # the following:
83
+ #
84
+ # * `available`
85
+ #
86
+ # * `copying`
87
+ #
88
+ # * `creating`
82
89
  # @return [String]
83
90
  def status
84
91
  data[:status]
@@ -574,7 +581,7 @@ module Aws::RDS
574
581
  # "DBEngineVersions[].EngineVersion"`
575
582
  #
576
583
  # To list all of the available engine versions for MySQL 5.7-compatible
577
- # Aurora, use the following command:
584
+ # and MySQL 8.0-compatible Aurora, use the following command:
578
585
  #
579
586
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
580
587
  # "DBEngineVersions[].EngineVersion"`
@@ -804,12 +811,11 @@ module Aws::RDS
804
811
  # Specifies the storage type to be associated with the each DB instance
805
812
  # in the Multi-AZ DB cluster.
806
813
  #
807
- # Valid values: `standard | gp2 | io1`
814
+ # Valid values: `io1`
808
815
  #
809
- # If you specify `io1`, you must also include a value for the `Iops`
810
- # parameter.
816
+ # When specified, a value for the `Iops` parameter is required.
811
817
  #
812
- # Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
818
+ # Default: `io1`
813
819
  #
814
820
  # Valid for: Aurora DB clusters and Multi-AZ DB clusters
815
821
  # @option options [Integer] :iops
@@ -940,7 +940,7 @@ module Aws::RDS
940
940
  #
941
941
  # ^
942
942
  #
943
- # **Amazon RDS Custom**
943
+ # **Amazon RDS Custom for Oracle**
944
944
  #
945
945
  # The Oracle System ID (SID) of the created RDS Custom DB instance. If
946
946
  # you don't specify a value, the default value is `ORCL`.
@@ -955,6 +955,10 @@ module Aws::RDS
955
955
  #
956
956
  # * It can't be a word reserved by the database engine.
957
957
  #
958
+ # **Amazon RDS Custom for SQL Server**
959
+ #
960
+ # Not applicable. Must be null.
961
+ #
958
962
  # **SQL Server**
959
963
  #
960
964
  # Not applicable. Must be null.
@@ -1005,9 +1009,11 @@ module Aws::RDS
1005
1009
  # following:
1006
1010
  #
1007
1011
  # * General Purpose (SSD) storage (gp2): Must be an integer from 40 to
1008
- # 65536.
1012
+ # 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
1013
+ # Server.
1009
1014
  #
1010
- # * Provisioned IOPS storage (io1): Must be an integer from 40 to 65536.
1015
+ # * Provisioned IOPS storage (io1): Must be an integer from 40 to 65536
1016
+ # for RDS Custom for Oracle, 16384 for RDS Custom for SQL Server.
1011
1017
  #
1012
1018
  # **MySQL**
1013
1019
  #
@@ -1068,21 +1074,21 @@ module Aws::RDS
1068
1074
  #
1069
1075
  # * General Purpose (SSD) storage (gp2):
1070
1076
  #
1071
- # * Enterprise and Standard editions: Must be an integer from 200 to
1077
+ # * Enterprise and Standard editions: Must be an integer from 20 to
1072
1078
  # 16384.
1073
1079
  #
1074
1080
  # * Web and Express editions: Must be an integer from 20 to 16384.
1075
1081
  #
1076
1082
  # * Provisioned IOPS storage (io1):
1077
1083
  #
1078
- # * Enterprise and Standard editions: Must be an integer from 200 to
1084
+ # * Enterprise and Standard editions: Must be an integer from 100 to
1079
1085
  # 16384.
1080
1086
  #
1081
1087
  # * Web and Express editions: Must be an integer from 100 to 16384.
1082
1088
  #
1083
1089
  # * Magnetic storage (standard):
1084
1090
  #
1085
- # * Enterprise and Standard editions: Must be an integer from 200 to
1091
+ # * Enterprise and Standard editions: Must be an integer from 20 to
1086
1092
  # 1024.
1087
1093
  #
1088
1094
  # * Web and Express editions: Must be an integer from 20 to 1024.
@@ -1106,11 +1112,18 @@ module Aws::RDS
1106
1112
  #
1107
1113
  # * `aurora` (for MySQL 5.6-compatible Aurora)
1108
1114
  #
1109
- # * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
1115
+ # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
1116
+ # Aurora)
1110
1117
  #
1111
1118
  # * `aurora-postgresql`
1112
1119
  #
1113
- # * `custom-oracle-ee (for RDS Custom instances)`
1120
+ # * `custom-oracle-ee (for RDS Custom for Oracle instances)`
1121
+ #
1122
+ # * `custom-sqlserver-ee (for RDS Custom for SQL Server instances)`
1123
+ #
1124
+ # * `custom-sqlserver-se (for RDS Custom for SQL Server instances)`
1125
+ #
1126
+ # * `custom-sqlserver-web (for RDS Custom for SQL Server instances)`
1114
1127
  #
1115
1128
  # * `mariadb`
1116
1129
  #
@@ -1200,6 +1213,10 @@ module Aws::RDS
1200
1213
  # information on Amazon Web Services Regions and Availability Zones, see
1201
1214
  # [Regions and Availability Zones][1].
1202
1215
  #
1216
+ # **Amazon Aurora**
1217
+ #
1218
+ # Not applicable. Availability Zones are managed by the DB cluster.
1219
+ #
1203
1220
  # Default: A random, system-chosen Availability Zone in the endpoint's
1204
1221
  # Amazon Web Services Region.
1205
1222
  #
@@ -1277,7 +1294,7 @@ module Aws::RDS
1277
1294
  #
1278
1295
  # * Can't be set to 0 if the DB instance is a source to read replicas
1279
1296
  #
1280
- # * Can't be set to 0 or 35 for an RDS Custom DB instance
1297
+ # * Can't be set to 0 or 35 for an RDS Custom for Oracle DB instance
1281
1298
  # @option options [String] :preferred_backup_window
1282
1299
  # The daily time range during which automated backups are created if
1283
1300
  # automated backups are enabled, using the `BackupRetentionPeriod`
@@ -1372,47 +1389,53 @@ module Aws::RDS
1372
1389
  # Not applicable. The version number of the database engine to be used
1373
1390
  # by the DB instance is managed by the DB cluster.
1374
1391
  #
1375
- # **Amazon RDS Custom**
1392
+ # **Amazon RDS Custom for Oracle**
1376
1393
  #
1377
1394
  # A custom engine version (CEV) that you have previously created. This
1378
- # setting is required for RDS Custom. The CEV name has the following
1379
- # format: `19.customized_string `. An example identifier is
1380
- # `19.my_cev1`. For more information, see [ Creating an RDS Custom DB
1381
- # instance][1] in the *Amazon RDS User Guide.*.
1395
+ # setting is required for RDS Custom for Oracle. The CEV name has the
1396
+ # following format: `19.customized_string `. An example identifier is
1397
+ # `19.my_cev1`. For more information, see [ Creating an RDS Custom for
1398
+ # Oracle DB instance][1] in the *Amazon RDS User Guide.*.
1399
+ #
1400
+ # **Amazon RDS Custom for SQL Server**
1401
+ #
1402
+ # See [RDS Custom for SQL Server general requirements][2] in the *Amazon
1403
+ # RDS User Guide.*
1382
1404
  #
1383
1405
  # **MariaDB**
1384
1406
  #
1385
- # For information, see [MariaDB on Amazon RDS Versions][2] in the
1407
+ # For information, see [MariaDB on Amazon RDS Versions][3] in the
1386
1408
  # *Amazon RDS User Guide.*
1387
1409
  #
1388
1410
  # **Microsoft SQL Server**
1389
1411
  #
1390
- # For information, see [Microsoft SQL Server Versions on Amazon RDS][3]
1412
+ # For information, see [Microsoft SQL Server Versions on Amazon RDS][4]
1391
1413
  # in the *Amazon RDS User Guide.*
1392
1414
  #
1393
1415
  # **MySQL**
1394
1416
  #
1395
- # For information, see [MySQL on Amazon RDS Versions][4] in the *Amazon
1417
+ # For information, see [MySQL on Amazon RDS Versions][5] in the *Amazon
1396
1418
  # RDS User Guide.*
1397
1419
  #
1398
1420
  # **Oracle**
1399
1421
  #
1400
- # For information, see [Oracle Database Engine Release Notes][5] in the
1422
+ # For information, see [Oracle Database Engine Release Notes][6] in the
1401
1423
  # *Amazon RDS User Guide.*
1402
1424
  #
1403
1425
  # **PostgreSQL**
1404
1426
  #
1405
1427
  # For information, see [Amazon RDS for PostgreSQL versions and
1406
- # extensions][6] in the *Amazon RDS User Guide.*
1428
+ # extensions][7] in the *Amazon RDS User Guide.*
1407
1429
  #
1408
1430
  #
1409
1431
  #
1410
1432
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-creating.html#custom-creating.create
1411
- # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MariaDB.html#MariaDB.Concepts.VersionMgmt
1412
- # [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
1413
- # [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
1414
- # [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
1415
- # [6]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts
1433
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits.html#custom-reqs-limits.reqsMS
1434
+ # [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MariaDB.html#MariaDB.Concepts.VersionMgmt
1435
+ # [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
1436
+ # [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
1437
+ # [6]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
1438
+ # [7]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts
1416
1439
  # @option options [Boolean] :auto_minor_version_upgrade
1417
1440
  # A value that indicates whether minor engine upgrades are applied
1418
1441
  # automatically to the DB instance during the maintenance window. By
@@ -1529,9 +1552,8 @@ module Aws::RDS
1529
1552
  # A value that indicates whether the DB instance is encrypted. By
1530
1553
  # default, it isn't encrypted.
1531
1554
  #
1532
- # For RDS Custom Oracle instances, either set this parameter to `true`
1533
- # or leave it unset. If you set this parameter to `false`, RDS reports
1534
- # an error.
1555
+ # For RDS Custom instances, either set this parameter to `true` or leave
1556
+ # it unset. If you set this parameter to `false`, RDS reports an error.
1535
1557
  #
1536
1558
  # **Amazon Aurora**
1537
1559
  #
@@ -1559,11 +1581,11 @@ module Aws::RDS
1559
1581
  #
1560
1582
  # **Amazon RDS Custom**
1561
1583
  #
1562
- # A KMS key is required for RDS Custom Oracle instances. For most RDS
1563
- # engines, if you leave this parameter empty while enabling
1564
- # `StorageEncrypted`, the engine uses the default KMS key. However, RDS
1565
- # Custom for Oracle doesn't use the default key when this parameter is
1566
- # empty. You must explicitly specify a key.
1584
+ # A KMS key is required for RDS Custom instances. For most RDS engines,
1585
+ # if you leave this parameter empty while enabling `StorageEncrypted`,
1586
+ # the engine uses the default KMS key. However, RDS Custom doesn't use
1587
+ # the default key when this parameter is empty. You must explicitly
1588
+ # specify a key.
1567
1589
  # @option options [String] :domain
1568
1590
  # The Active Directory directory ID to create the DB instance in.
1569
1591
  # Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
@@ -2489,7 +2511,7 @@ module Aws::RDS
2489
2511
  # change. The change is applied during the next maintenance window,
2490
2512
  # unless `ApplyImmediately` is enabled for this request.
2491
2513
  #
2492
- # This setting doesn't apply to RDS Custom.
2514
+ # This setting doesn't apply to RDS Custom for Oracle.
2493
2515
  #
2494
2516
  # Default: Uses existing setting
2495
2517
  #
@@ -2556,7 +2578,7 @@ module Aws::RDS
2556
2578
  # during the next maintenance window. Some parameter changes can cause
2557
2579
  # an outage and are applied on the next call to RebootDBInstance, or the
2558
2580
  # next failure reboot. Review the table of parameters in [Modifying a DB
2559
- # Instance][1] in the *Amazon RDS User Guide.* to see the impact of
2581
+ # Instance][1] in the *Amazon RDS User Guide* to see the impact of
2560
2582
  # enabling or disabling `ApplyImmediately` for each modified parameter
2561
2583
  # and to determine when the changes are applied.
2562
2584
  #
@@ -2653,7 +2675,7 @@ module Aws::RDS
2653
2675
  #
2654
2676
  # * It must be a value from 0 to 35. It can't be set to 0 if the DB
2655
2677
  # instance is a source to read replicas. It can't be set to 0 or 35
2656
- # for an RDS Custom DB instance.
2678
+ # for an RDS Custom for Oracle DB instance.
2657
2679
  #
2658
2680
  # * It can be specified for a MySQL read replica only if the source is
2659
2681
  # running MySQL 5.6 or later.
@@ -2736,8 +2758,8 @@ module Aws::RDS
2736
2758
  # lower. For information about valid engine versions, see
2737
2759
  # `CreateDBInstance`, or call `DescribeDBEngineVersions`.
2738
2760
  #
2739
- # In RDS Custom, this parameter is supported for read replicas only if
2740
- # they are in the `PATCH_DB_FAILURE` lifecycle.
2761
+ # In RDS Custom for Oracle, this parameter is supported for read
2762
+ # replicas only if they are in the `PATCH_DB_FAILURE` lifecycle.
2741
2763
  # @option options [Boolean] :allow_major_version_upgrade
2742
2764
  # A value that indicates whether major version upgrades are allowed.
2743
2765
  # Changing this parameter doesn't result in an outage and the change is
@@ -2983,8 +3005,6 @@ module Aws::RDS
2983
3005
  #
2984
3006
  # Changes to the `PubliclyAccessible` parameter are applied immediately
2985
3007
  # regardless of the value of the `ApplyImmediately` parameter.
2986
- #
2987
- # This setting doesn't apply to RDS Custom.
2988
3008
  # @option options [String] :monitoring_role_arn
2989
3009
  # The ARN for the IAM role that permits RDS to send enhanced monitoring
2990
3010
  # metrics to Amazon CloudWatch Logs. For example,
@@ -228,7 +228,8 @@ module Aws::RDS
228
228
  #
229
229
  # * `aurora` (for MySQL 5.6-compatible Aurora)
230
230
  #
231
- # * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
231
+ # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
232
+ # Aurora)
232
233
  #
233
234
  # * `aurora-postgresql`
234
235
  #
@@ -349,25 +350,35 @@ module Aws::RDS
349
350
  # @option options [required, Array<Types::Parameter>] :parameters
350
351
  # An array of parameter names, values, and the application methods for
351
352
  # the parameter update. At least one parameter name, value, and
352
- # application method method must be supplied; later arguments are
353
- # optional. A maximum of 20 parameters can be modified in a single
354
- # request.
353
+ # application method must be supplied; later arguments are optional. A
354
+ # maximum of 20 parameters can be modified in a single request.
355
355
  #
356
356
  # Valid Values (for the application method): `immediate |
357
357
  # pending-reboot`
358
358
  #
359
- # <note markdown="1"> You can use the `immediate` value with dynamic parameters only. You
359
+ # You can use the `immediate` value with dynamic parameters only. You
360
360
  # can use the `pending-reboot` value for both dynamic and static
361
361
  # parameters.
362
362
  #
363
- # When the application method is `immediate`, changes to dynamic
363
+ # When the application method is `immediate`, changes to dynamic
364
364
  # parameters are applied immediately to the DB instances associated with
365
- # the parameter group. When the application method is `pending-reboot`,
366
- # changes to dynamic and static parameters are applied after a reboot
367
- # without failover to the DB instances associated with the parameter
368
- # group.
365
+ # the parameter group.
366
+ #
367
+ # When the application method is `pending-reboot`, changes to dynamic
368
+ # and static parameters are applied after a reboot without failover to
369
+ # the DB instances associated with the parameter group.
370
+ #
371
+ # <note markdown="1"> You can't use `pending-reboot` with dynamic parameters on RDS for SQL
372
+ # Server DB instances. Use `immediate`.
369
373
  #
370
374
  # </note>
375
+ #
376
+ # For more information on modifying DB parameters, see [Working with DB
377
+ # parameter groups][1] in the *Amazon RDS User Guide*.
378
+ #
379
+ #
380
+ #
381
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithParamGroups.html
371
382
  # @return [DBParameterGroup]
372
383
  def modify(options = {})
373
384
  options = options.merge(db_parameter_group_name: @name)
@@ -183,7 +183,8 @@ module Aws::RDS
183
183
  #
184
184
  # * `aurora` (for MySQL 5.6-compatible Aurora)
185
185
  #
186
- # * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
186
+ # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
187
+ # Aurora)
187
188
  #
188
189
  # * `aurora-postgresql`
189
190
  #
@@ -202,7 +203,7 @@ module Aws::RDS
202
203
  # "DBEngineVersions[].EngineVersion"`
203
204
  #
204
205
  # To list all of the available engine versions for MySQL 5.7-compatible
205
- # Aurora, use the following command:
206
+ # and MySQL 8.0-compatible Aurora, use the following command:
206
207
  #
207
208
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
208
209
  # "DBEngineVersions[].EngineVersion"`
@@ -623,11 +624,11 @@ module Aws::RDS
623
624
  #
624
625
  # This setting is required to create a Multi-AZ DB cluster.
625
626
  #
626
- # Valid values: `standard | gp2 | io1`
627
+ # Valid values: `io1`
627
628
  #
628
- # If you specify `io1`, also include a value for the `Iops` parameter.
629
+ # When specified, a value for the `Iops` parameter is required.
629
630
  #
630
- # Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
631
+ # Default: `io1`
631
632
  #
632
633
  # Valid for: Multi-AZ DB clusters only
633
634
  # @option options [Integer] :iops
@@ -795,7 +796,7 @@ module Aws::RDS
795
796
  #
796
797
  # **Aurora MySQL**
797
798
  #
798
- # Example: `aurora5.6`, `aurora-mysql5.7`
799
+ # Example: `aurora5.6`, `aurora-mysql5.7`, `aurora-mysql8.0`
799
800
  #
800
801
  # **Aurora PostgreSQL**
801
802
  #
@@ -830,7 +831,8 @@ module Aws::RDS
830
831
  #
831
832
  # * `aurora` (for MySQL 5.6-compatible Aurora)
832
833
  #
833
- # * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
834
+ # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
835
+ # Aurora)
834
836
  #
835
837
  # * `aurora-postgresql`
836
838
  #
@@ -979,7 +981,7 @@ module Aws::RDS
979
981
  #
980
982
  # ^
981
983
  #
982
- # **Amazon RDS Custom**
984
+ # **Amazon RDS Custom for Oracle**
983
985
  #
984
986
  # The Oracle System ID (SID) of the created RDS Custom DB instance. If
985
987
  # you don't specify a value, the default value is `ORCL`.
@@ -994,6 +996,10 @@ module Aws::RDS
994
996
  #
995
997
  # * It can't be a word reserved by the database engine.
996
998
  #
999
+ # **Amazon RDS Custom for SQL Server**
1000
+ #
1001
+ # Not applicable. Must be null.
1002
+ #
997
1003
  # **SQL Server**
998
1004
  #
999
1005
  # Not applicable. Must be null.
@@ -1057,9 +1063,11 @@ module Aws::RDS
1057
1063
  # following:
1058
1064
  #
1059
1065
  # * General Purpose (SSD) storage (gp2): Must be an integer from 40 to
1060
- # 65536.
1066
+ # 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
1067
+ # Server.
1061
1068
  #
1062
- # * Provisioned IOPS storage (io1): Must be an integer from 40 to 65536.
1069
+ # * Provisioned IOPS storage (io1): Must be an integer from 40 to 65536
1070
+ # for RDS Custom for Oracle, 16384 for RDS Custom for SQL Server.
1063
1071
  #
1064
1072
  # **MySQL**
1065
1073
  #
@@ -1120,21 +1128,21 @@ module Aws::RDS
1120
1128
  #
1121
1129
  # * General Purpose (SSD) storage (gp2):
1122
1130
  #
1123
- # * Enterprise and Standard editions: Must be an integer from 200 to
1131
+ # * Enterprise and Standard editions: Must be an integer from 20 to
1124
1132
  # 16384.
1125
1133
  #
1126
1134
  # * Web and Express editions: Must be an integer from 20 to 16384.
1127
1135
  #
1128
1136
  # * Provisioned IOPS storage (io1):
1129
1137
  #
1130
- # * Enterprise and Standard editions: Must be an integer from 200 to
1138
+ # * Enterprise and Standard editions: Must be an integer from 100 to
1131
1139
  # 16384.
1132
1140
  #
1133
1141
  # * Web and Express editions: Must be an integer from 100 to 16384.
1134
1142
  #
1135
1143
  # * Magnetic storage (standard):
1136
1144
  #
1137
- # * Enterprise and Standard editions: Must be an integer from 200 to
1145
+ # * Enterprise and Standard editions: Must be an integer from 20 to
1138
1146
  # 1024.
1139
1147
  #
1140
1148
  # * Web and Express editions: Must be an integer from 20 to 1024.
@@ -1158,11 +1166,18 @@ module Aws::RDS
1158
1166
  #
1159
1167
  # * `aurora` (for MySQL 5.6-compatible Aurora)
1160
1168
  #
1161
- # * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
1169
+ # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
1170
+ # Aurora)
1162
1171
  #
1163
1172
  # * `aurora-postgresql`
1164
1173
  #
1165
- # * `custom-oracle-ee (for RDS Custom instances)`
1174
+ # * `custom-oracle-ee (for RDS Custom for Oracle instances)`
1175
+ #
1176
+ # * `custom-sqlserver-ee (for RDS Custom for SQL Server instances)`
1177
+ #
1178
+ # * `custom-sqlserver-se (for RDS Custom for SQL Server instances)`
1179
+ #
1180
+ # * `custom-sqlserver-web (for RDS Custom for SQL Server instances)`
1166
1181
  #
1167
1182
  # * `mariadb`
1168
1183
  #
@@ -1252,6 +1267,10 @@ module Aws::RDS
1252
1267
  # information on Amazon Web Services Regions and Availability Zones, see
1253
1268
  # [Regions and Availability Zones][1].
1254
1269
  #
1270
+ # **Amazon Aurora**
1271
+ #
1272
+ # Not applicable. Availability Zones are managed by the DB cluster.
1273
+ #
1255
1274
  # Default: A random, system-chosen Availability Zone in the endpoint's
1256
1275
  # Amazon Web Services Region.
1257
1276
  #
@@ -1329,7 +1348,7 @@ module Aws::RDS
1329
1348
  #
1330
1349
  # * Can't be set to 0 if the DB instance is a source to read replicas
1331
1350
  #
1332
- # * Can't be set to 0 or 35 for an RDS Custom DB instance
1351
+ # * Can't be set to 0 or 35 for an RDS Custom for Oracle DB instance
1333
1352
  # @option options [String] :preferred_backup_window
1334
1353
  # The daily time range during which automated backups are created if
1335
1354
  # automated backups are enabled, using the `BackupRetentionPeriod`
@@ -1424,47 +1443,53 @@ module Aws::RDS
1424
1443
  # Not applicable. The version number of the database engine to be used
1425
1444
  # by the DB instance is managed by the DB cluster.
1426
1445
  #
1427
- # **Amazon RDS Custom**
1446
+ # **Amazon RDS Custom for Oracle**
1428
1447
  #
1429
1448
  # A custom engine version (CEV) that you have previously created. This
1430
- # setting is required for RDS Custom. The CEV name has the following
1431
- # format: `19.customized_string `. An example identifier is
1432
- # `19.my_cev1`. For more information, see [ Creating an RDS Custom DB
1433
- # instance][1] in the *Amazon RDS User Guide.*.
1449
+ # setting is required for RDS Custom for Oracle. The CEV name has the
1450
+ # following format: `19.customized_string `. An example identifier is
1451
+ # `19.my_cev1`. For more information, see [ Creating an RDS Custom for
1452
+ # Oracle DB instance][1] in the *Amazon RDS User Guide.*.
1453
+ #
1454
+ # **Amazon RDS Custom for SQL Server**
1455
+ #
1456
+ # See [RDS Custom for SQL Server general requirements][2] in the *Amazon
1457
+ # RDS User Guide.*
1434
1458
  #
1435
1459
  # **MariaDB**
1436
1460
  #
1437
- # For information, see [MariaDB on Amazon RDS Versions][2] in the
1461
+ # For information, see [MariaDB on Amazon RDS Versions][3] in the
1438
1462
  # *Amazon RDS User Guide.*
1439
1463
  #
1440
1464
  # **Microsoft SQL Server**
1441
1465
  #
1442
- # For information, see [Microsoft SQL Server Versions on Amazon RDS][3]
1466
+ # For information, see [Microsoft SQL Server Versions on Amazon RDS][4]
1443
1467
  # in the *Amazon RDS User Guide.*
1444
1468
  #
1445
1469
  # **MySQL**
1446
1470
  #
1447
- # For information, see [MySQL on Amazon RDS Versions][4] in the *Amazon
1471
+ # For information, see [MySQL on Amazon RDS Versions][5] in the *Amazon
1448
1472
  # RDS User Guide.*
1449
1473
  #
1450
1474
  # **Oracle**
1451
1475
  #
1452
- # For information, see [Oracle Database Engine Release Notes][5] in the
1476
+ # For information, see [Oracle Database Engine Release Notes][6] in the
1453
1477
  # *Amazon RDS User Guide.*
1454
1478
  #
1455
1479
  # **PostgreSQL**
1456
1480
  #
1457
1481
  # For information, see [Amazon RDS for PostgreSQL versions and
1458
- # extensions][6] in the *Amazon RDS User Guide.*
1482
+ # extensions][7] in the *Amazon RDS User Guide.*
1459
1483
  #
1460
1484
  #
1461
1485
  #
1462
1486
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-creating.html#custom-creating.create
1463
- # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MariaDB.html#MariaDB.Concepts.VersionMgmt
1464
- # [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
1465
- # [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
1466
- # [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
1467
- # [6]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts
1487
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits.html#custom-reqs-limits.reqsMS
1488
+ # [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MariaDB.html#MariaDB.Concepts.VersionMgmt
1489
+ # [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
1490
+ # [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
1491
+ # [6]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
1492
+ # [7]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts
1468
1493
  # @option options [Boolean] :auto_minor_version_upgrade
1469
1494
  # A value that indicates whether minor engine upgrades are applied
1470
1495
  # automatically to the DB instance during the maintenance window. By
@@ -1581,9 +1606,8 @@ module Aws::RDS
1581
1606
  # A value that indicates whether the DB instance is encrypted. By
1582
1607
  # default, it isn't encrypted.
1583
1608
  #
1584
- # For RDS Custom Oracle instances, either set this parameter to `true`
1585
- # or leave it unset. If you set this parameter to `false`, RDS reports
1586
- # an error.
1609
+ # For RDS Custom instances, either set this parameter to `true` or leave
1610
+ # it unset. If you set this parameter to `false`, RDS reports an error.
1587
1611
  #
1588
1612
  # **Amazon Aurora**
1589
1613
  #
@@ -1611,11 +1635,11 @@ module Aws::RDS
1611
1635
  #
1612
1636
  # **Amazon RDS Custom**
1613
1637
  #
1614
- # A KMS key is required for RDS Custom Oracle instances. For most RDS
1615
- # engines, if you leave this parameter empty while enabling
1616
- # `StorageEncrypted`, the engine uses the default KMS key. However, RDS
1617
- # Custom for Oracle doesn't use the default key when this parameter is
1618
- # empty. You must explicitly specify a key.
1638
+ # A KMS key is required for RDS Custom instances. For most RDS engines,
1639
+ # if you leave this parameter empty while enabling `StorageEncrypted`,
1640
+ # the engine uses the default KMS key. However, RDS Custom doesn't use
1641
+ # the default key when this parameter is empty. You must explicitly
1642
+ # specify a key.
1619
1643
  # @option options [String] :domain
1620
1644
  # The Active Directory directory ID to create the DB instance in.
1621
1645
  # Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
@@ -1924,7 +1948,8 @@ module Aws::RDS
1924
1948
  #
1925
1949
  # * `aurora` (for MySQL 5.6-compatible Aurora)
1926
1950
  #
1927
- # * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
1951
+ # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
1952
+ # Aurora)
1928
1953
  #
1929
1954
  # * `aurora-postgresql`
1930
1955
  #
@@ -2451,7 +2476,8 @@ module Aws::RDS
2451
2476
  #
2452
2477
  # * `aurora` (for MySQL 5.6-compatible Aurora)
2453
2478
  #
2454
- # * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
2479
+ # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
2480
+ # Aurora)
2455
2481
  #
2456
2482
  # * `aurora-postgresql`
2457
2483
  #