aws-sdk-rds 1.101.0 → 1.106.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 +187 -66
- data/lib/aws-sdk-rds/client_api.rb +12 -0
- data/lib/aws-sdk-rds/db_cluster.rb +31 -14
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +17 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +8 -7
- data/lib/aws-sdk-rds/db_instance.rb +46 -33
- data/lib/aws-sdk-rds/db_snapshot.rb +21 -5
- data/lib/aws-sdk-rds/resource.rb +27 -32
- data/lib/aws-sdk-rds/types.rb +156 -92
- metadata +2 -2
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -374,14 +374,23 @@ module Aws::RDS
|
|
374
374
|
#
|
375
375
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
376
376
|
# @option options [String] :engine_mode
|
377
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
377
|
+
# The DB engine mode of the DB cluster, either `provisioned`
|
378
378
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
379
379
|
#
|
380
|
-
#
|
381
|
-
#
|
382
|
-
#
|
380
|
+
# The `parallelquery` engine mode isn't required for Aurora MySQL
|
381
|
+
# version 1.23 and higher 1.x versions, and version 2.09 and higher 2.x
|
382
|
+
# versions.
|
383
383
|
#
|
384
|
-
#
|
384
|
+
# The `global` engine mode isn't required for Aurora MySQL version 1.22
|
385
|
+
# and higher 1.x versions, and `global` engine mode isn't required for
|
386
|
+
# any 2.x versions.
|
387
|
+
#
|
388
|
+
# The `multimaster` engine mode only applies for DB clusters created
|
389
|
+
# with Aurora MySQL version 5.6.10a.
|
390
|
+
#
|
391
|
+
# For Aurora PostgreSQL, the `global` engine mode isn't required, and
|
392
|
+
# both the `parallelquery` and the `multimaster` engine modes currently
|
393
|
+
# aren't supported.
|
385
394
|
#
|
386
395
|
# Limitations and requirements apply to some DB engine modes. For more
|
387
396
|
# information, see the following sections in the *Amazon Aurora User
|
@@ -391,7 +400,7 @@ module Aws::RDS
|
|
391
400
|
#
|
392
401
|
# * [ Limitations of Parallel Query][2]
|
393
402
|
#
|
394
|
-
# * [
|
403
|
+
# * [ Limitations of Aurora Global Databases][3]
|
395
404
|
#
|
396
405
|
# * [ Limitations of Multi-Master Clusters][4]
|
397
406
|
#
|
@@ -545,6 +554,7 @@ module Aws::RDS
|
|
545
554
|
# iops: 1,
|
546
555
|
# option_group_name: "String",
|
547
556
|
# character_set_name: "String",
|
557
|
+
# nchar_character_set_name: "String",
|
548
558
|
# publicly_accessible: false,
|
549
559
|
# tags: [
|
550
560
|
# {
|
@@ -1092,8 +1102,8 @@ module Aws::RDS
|
|
1092
1102
|
#
|
1093
1103
|
# **Microsoft SQL Server**
|
1094
1104
|
#
|
1095
|
-
# See [
|
1096
|
-
# User Guide.*
|
1105
|
+
# See [Microsoft SQL Server Versions on Amazon RDS][2] in the *Amazon
|
1106
|
+
# RDS User Guide.*
|
1097
1107
|
#
|
1098
1108
|
# **MySQL**
|
1099
1109
|
#
|
@@ -1112,7 +1122,7 @@ module Aws::RDS
|
|
1112
1122
|
#
|
1113
1123
|
#
|
1114
1124
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MariaDB.html#MariaDB.Concepts.VersionMgmt
|
1115
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.
|
1125
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
1116
1126
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
1117
1127
|
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
|
1118
1128
|
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts.General.DBVersions
|
@@ -1155,6 +1165,8 @@ module Aws::RDS
|
|
1155
1165
|
#
|
1156
1166
|
# Not applicable. The character set is managed by the DB cluster. For
|
1157
1167
|
# more information, see `CreateDBCluster`.
|
1168
|
+
# @option options [String] :nchar_character_set_name
|
1169
|
+
# The name of the NCHAR character set for the Oracle DB instance.
|
1158
1170
|
# @option options [Boolean] :publicly_accessible
|
1159
1171
|
# A value that indicates whether the DB instance is publicly accessible.
|
1160
1172
|
#
|
@@ -1304,29 +1316,8 @@ module Aws::RDS
|
|
1304
1316
|
# Access Management (IAM) accounts to database accounts. By default,
|
1305
1317
|
# mapping is disabled.
|
1306
1318
|
#
|
1307
|
-
#
|
1308
|
-
#
|
1309
|
-
#
|
1310
|
-
# **Amazon Aurora**
|
1311
|
-
#
|
1312
|
-
# Not applicable. Mapping AWS IAM accounts to database accounts is
|
1313
|
-
# managed by the DB cluster.
|
1314
|
-
#
|
1315
|
-
# **MySQL**
|
1316
|
-
#
|
1317
|
-
# * For MySQL 5.6, minor version 5.6.34 or higher
|
1318
|
-
#
|
1319
|
-
# * For MySQL 5.7, minor version 5.7.16 or higher
|
1320
|
-
#
|
1321
|
-
# * For MySQL 8.0, minor version 8.0.16 or higher
|
1322
|
-
#
|
1323
|
-
# **PostgreSQL**
|
1324
|
-
#
|
1325
|
-
# * For PostgreSQL 9.5, minor version 9.5.15 or higher
|
1326
|
-
#
|
1327
|
-
# * For PostgreSQL 9.6, minor version 9.6.11 or higher
|
1328
|
-
#
|
1329
|
-
# * PostgreSQL 10.6, 10.7, and 10.9
|
1319
|
+
# This setting doesn't apply to Amazon Aurora. Mapping AWS IAM accounts
|
1320
|
+
# to database accounts is managed by the DB cluster.
|
1330
1321
|
#
|
1331
1322
|
# For more information, see [ IAM Database Authentication for MySQL and
|
1332
1323
|
# PostgreSQL][1] in the *Amazon RDS User Guide.*
|
@@ -1363,6 +1354,10 @@ module Aws::RDS
|
|
1363
1354
|
# CloudWatch Logs ][1] in the *Amazon Relational Database Service User
|
1364
1355
|
# Guide*.
|
1365
1356
|
#
|
1357
|
+
# **Amazon Aurora**
|
1358
|
+
#
|
1359
|
+
# Not applicable. CloudWatch Logs exports are managed by the DB cluster.
|
1360
|
+
#
|
1366
1361
|
# **MariaDB**
|
1367
1362
|
#
|
1368
1363
|
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -715,13 +715,20 @@ module Aws::RDS
|
|
715
715
|
#
|
716
716
|
# The `EnableLogTypes` and `DisableLogTypes` arrays determine which logs
|
717
717
|
# will be exported (or not exported) to CloudWatch Logs. The values
|
718
|
-
# within these arrays depend on the DB engine being used.
|
719
|
-
#
|
718
|
+
# within these arrays depend on the DB engine being used.
|
719
|
+
#
|
720
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS DB
|
721
|
+
# instances, see [Publishing Database Logs to Amazon CloudWatch Logs
|
720
722
|
# ][1] in the *Amazon RDS User Guide*.
|
721
723
|
#
|
724
|
+
# For more information about exporting CloudWatch Logs for Amazon Aurora
|
725
|
+
# DB clusters, see [Publishing Database Logs to Amazon CloudWatch
|
726
|
+
# Logs][2] in the *Amazon Aurora User Guide*.
|
727
|
+
#
|
722
728
|
#
|
723
729
|
#
|
724
730
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
731
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
725
732
|
#
|
726
733
|
# @note When making an API call, you may pass CloudwatchLogsExportConfiguration
|
727
734
|
# data as a hash:
|
@@ -1273,6 +1280,7 @@ module Aws::RDS
|
|
1273
1280
|
# copy_tags: false,
|
1274
1281
|
# pre_signed_url: "String",
|
1275
1282
|
# option_group_name: "String",
|
1283
|
+
# target_custom_availability_zone: "String",
|
1276
1284
|
# source_region: "String",
|
1277
1285
|
# }
|
1278
1286
|
#
|
@@ -1436,6 +1444,13 @@ module Aws::RDS
|
|
1436
1444
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#USER_CopySnapshot.Options
|
1437
1445
|
# @return [String]
|
1438
1446
|
#
|
1447
|
+
# @!attribute [rw] target_custom_availability_zone
|
1448
|
+
# The external custom Availability Zone (CAZ) identifier for the
|
1449
|
+
# target CAZ.
|
1450
|
+
#
|
1451
|
+
# Example: `rds-caz-aiqhTgQv`.
|
1452
|
+
# @return [String]
|
1453
|
+
#
|
1439
1454
|
# @!attribute [rw] destination_region
|
1440
1455
|
# @return [String]
|
1441
1456
|
#
|
@@ -1454,6 +1469,7 @@ module Aws::RDS
|
|
1454
1469
|
:copy_tags,
|
1455
1470
|
:pre_signed_url,
|
1456
1471
|
:option_group_name,
|
1472
|
+
:target_custom_availability_zone,
|
1457
1473
|
:destination_region,
|
1458
1474
|
:source_region)
|
1459
1475
|
SENSITIVE = []
|
@@ -1491,25 +1507,13 @@ module Aws::RDS
|
|
1491
1507
|
# }
|
1492
1508
|
#
|
1493
1509
|
# @!attribute [rw] source_option_group_identifier
|
1494
|
-
# The identifier
|
1495
|
-
# about creating an ARN, see [ Constructing an ARN for Amazon RDS][1]
|
1496
|
-
# in the *Amazon RDS User Guide*.
|
1510
|
+
# The identifier for the source option group.
|
1497
1511
|
#
|
1498
1512
|
# Constraints:
|
1499
1513
|
#
|
1500
1514
|
# * Must specify a valid option group.
|
1501
1515
|
#
|
1502
|
-
#
|
1503
|
-
# specify a valid option group identifier, for example
|
1504
|
-
# `my-option-group`, or a valid ARN.
|
1505
|
-
#
|
1506
|
-
# * If the source option group is in a different AWS Region than the
|
1507
|
-
# copy, specify a valid option group ARN, for example
|
1508
|
-
# `arn:aws:rds:us-west-2:123456789012:og:special-options`.
|
1509
|
-
#
|
1510
|
-
#
|
1511
|
-
#
|
1512
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing
|
1516
|
+
# ^
|
1513
1517
|
# @return [String]
|
1514
1518
|
#
|
1515
1519
|
# @!attribute [rw] target_option_group_identifier
|
@@ -2077,15 +2081,23 @@ module Aws::RDS
|
|
2077
2081
|
# @return [Array<String>]
|
2078
2082
|
#
|
2079
2083
|
# @!attribute [rw] engine_mode
|
2080
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
2084
|
+
# The DB engine mode of the DB cluster, either `provisioned`
|
2081
2085
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
2082
2086
|
#
|
2083
|
-
#
|
2084
|
-
#
|
2085
|
-
# versions
|
2086
|
-
# mode.
|
2087
|
+
# The `parallelquery` engine mode isn't required for Aurora MySQL
|
2088
|
+
# version 1.23 and higher 1.x versions, and version 2.09 and higher
|
2089
|
+
# 2.x versions.
|
2087
2090
|
#
|
2088
|
-
#
|
2091
|
+
# The `global` engine mode isn't required for Aurora MySQL version
|
2092
|
+
# 1.22 and higher 1.x versions, and `global` engine mode isn't
|
2093
|
+
# required for any 2.x versions.
|
2094
|
+
#
|
2095
|
+
# The `multimaster` engine mode only applies for DB clusters created
|
2096
|
+
# with Aurora MySQL version 5.6.10a.
|
2097
|
+
#
|
2098
|
+
# For Aurora PostgreSQL, the `global` engine mode isn't required, and
|
2099
|
+
# both the `parallelquery` and the `multimaster` engine modes
|
2100
|
+
# currently aren't supported.
|
2089
2101
|
#
|
2090
2102
|
# Limitations and requirements apply to some DB engine modes. For more
|
2091
2103
|
# information, see the following sections in the *Amazon Aurora User
|
@@ -2095,7 +2107,7 @@ module Aws::RDS
|
|
2095
2107
|
#
|
2096
2108
|
# * [ Limitations of Parallel Query][2]
|
2097
2109
|
#
|
2098
|
-
# * [
|
2110
|
+
# * [ Limitations of Aurora Global Databases][3]
|
2099
2111
|
#
|
2100
2112
|
# * [ Limitations of Multi-Master Clusters][4]
|
2101
2113
|
#
|
@@ -2415,6 +2427,7 @@ module Aws::RDS
|
|
2415
2427
|
# iops: 1,
|
2416
2428
|
# option_group_name: "String",
|
2417
2429
|
# character_set_name: "String",
|
2430
|
+
# nchar_character_set_name: "String",
|
2418
2431
|
# publicly_accessible: false,
|
2419
2432
|
# tags: [
|
2420
2433
|
# {
|
@@ -2997,7 +3010,7 @@ module Aws::RDS
|
|
2997
3010
|
#
|
2998
3011
|
# **Microsoft SQL Server**
|
2999
3012
|
#
|
3000
|
-
# See [
|
3013
|
+
# See [Microsoft SQL Server Versions on Amazon RDS][2] in the *Amazon
|
3001
3014
|
# RDS User Guide.*
|
3002
3015
|
#
|
3003
3016
|
# **MySQL**
|
@@ -3018,7 +3031,7 @@ module Aws::RDS
|
|
3018
3031
|
#
|
3019
3032
|
#
|
3020
3033
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MariaDB.html#MariaDB.Concepts.VersionMgmt
|
3021
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.
|
3034
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
3022
3035
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
3023
3036
|
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
|
3024
3037
|
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts.General.DBVersions
|
@@ -3073,6 +3086,10 @@ module Aws::RDS
|
|
3073
3086
|
# more information, see `CreateDBCluster`.
|
3074
3087
|
# @return [String]
|
3075
3088
|
#
|
3089
|
+
# @!attribute [rw] nchar_character_set_name
|
3090
|
+
# The name of the NCHAR character set for the Oracle DB instance.
|
3091
|
+
# @return [String]
|
3092
|
+
#
|
3076
3093
|
# @!attribute [rw] publicly_accessible
|
3077
3094
|
# A value that indicates whether the DB instance is publicly
|
3078
3095
|
# accessible.
|
@@ -3253,29 +3270,8 @@ module Aws::RDS
|
|
3253
3270
|
# Access Management (IAM) accounts to database accounts. By default,
|
3254
3271
|
# mapping is disabled.
|
3255
3272
|
#
|
3256
|
-
#
|
3257
|
-
# database
|
3258
|
-
#
|
3259
|
-
# **Amazon Aurora**
|
3260
|
-
#
|
3261
|
-
# Not applicable. Mapping AWS IAM accounts to database accounts is
|
3262
|
-
# managed by the DB cluster.
|
3263
|
-
#
|
3264
|
-
# **MySQL**
|
3265
|
-
#
|
3266
|
-
# * For MySQL 5.6, minor version 5.6.34 or higher
|
3267
|
-
#
|
3268
|
-
# * For MySQL 5.7, minor version 5.7.16 or higher
|
3269
|
-
#
|
3270
|
-
# * For MySQL 8.0, minor version 8.0.16 or higher
|
3271
|
-
#
|
3272
|
-
# **PostgreSQL**
|
3273
|
-
#
|
3274
|
-
# * For PostgreSQL 9.5, minor version 9.5.15 or higher
|
3275
|
-
#
|
3276
|
-
# * For PostgreSQL 9.6, minor version 9.6.11 or higher
|
3277
|
-
#
|
3278
|
-
# * PostgreSQL 10.6, 10.7, and 10.9
|
3273
|
+
# This setting doesn't apply to Amazon Aurora. Mapping AWS IAM
|
3274
|
+
# accounts to database accounts is managed by the DB cluster.
|
3279
3275
|
#
|
3280
3276
|
# For more information, see [ IAM Database Authentication for MySQL
|
3281
3277
|
# and PostgreSQL][1] in the *Amazon RDS User Guide.*
|
@@ -3320,6 +3316,11 @@ module Aws::RDS
|
|
3320
3316
|
# Amazon CloudWatch Logs ][1] in the *Amazon Relational Database
|
3321
3317
|
# Service User Guide*.
|
3322
3318
|
#
|
3319
|
+
# **Amazon Aurora**
|
3320
|
+
#
|
3321
|
+
# Not applicable. CloudWatch Logs exports are managed by the DB
|
3322
|
+
# cluster.
|
3323
|
+
#
|
3323
3324
|
# **MariaDB**
|
3324
3325
|
#
|
3325
3326
|
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
@@ -3399,6 +3400,7 @@ module Aws::RDS
|
|
3399
3400
|
:iops,
|
3400
3401
|
:option_group_name,
|
3401
3402
|
:character_set_name,
|
3403
|
+
:nchar_character_set_name,
|
3402
3404
|
:publicly_accessible,
|
3403
3405
|
:tags,
|
3404
3406
|
:db_cluster_identifier,
|
@@ -3471,6 +3473,7 @@ module Aws::RDS
|
|
3471
3473
|
# domain: "String",
|
3472
3474
|
# domain_iam_role_name: "String",
|
3473
3475
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
3476
|
+
# max_allocated_storage: 1,
|
3474
3477
|
# source_region: "String",
|
3475
3478
|
# }
|
3476
3479
|
#
|
@@ -3802,8 +3805,7 @@ module Aws::RDS
|
|
3802
3805
|
# @!attribute [rw] enable_iam_database_authentication
|
3803
3806
|
# A value that indicates whether to enable mapping of AWS Identity and
|
3804
3807
|
# Access Management (IAM) accounts to database accounts. By default,
|
3805
|
-
# mapping is disabled.
|
3806
|
-
# see CreateDBInstance.
|
3808
|
+
# mapping is disabled.
|
3807
3809
|
#
|
3808
3810
|
# For more information about IAM database authentication, see [ IAM
|
3809
3811
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -3916,6 +3918,11 @@ module Aws::RDS
|
|
3916
3918
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
3917
3919
|
# @return [String]
|
3918
3920
|
#
|
3921
|
+
# @!attribute [rw] max_allocated_storage
|
3922
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
3923
|
+
# storage of the DB instance.
|
3924
|
+
# @return [Integer]
|
3925
|
+
#
|
3919
3926
|
# @!attribute [rw] destination_region
|
3920
3927
|
# @return [String]
|
3921
3928
|
#
|
@@ -3958,6 +3965,7 @@ module Aws::RDS
|
|
3958
3965
|
:domain,
|
3959
3966
|
:domain_iam_role_name,
|
3960
3967
|
:replica_mode,
|
3968
|
+
:max_allocated_storage,
|
3961
3969
|
:destination_region,
|
3962
3970
|
:source_region)
|
3963
3971
|
SENSITIVE = []
|
@@ -4982,14 +4990,11 @@ module Aws::RDS
|
|
4982
4990
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
4983
4991
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
4984
4992
|
#
|
4985
|
-
#
|
4986
|
-
# created with Aurora MySQL version 5.6.10a. For higher Aurora MySQL
|
4987
|
-
# versions, the clusters in a global database use `provisioned` engine
|
4988
|
-
# mode. To check if a DB cluster is part of a global database, use
|
4989
|
-
# `DescribeGlobalClusters` instead of checking the `EngineMode` return
|
4990
|
-
# value from `DescribeDBClusters`.
|
4993
|
+
# For more information, see [ CreateDBCluster][1].
|
4991
4994
|
#
|
4992
|
-
#
|
4995
|
+
#
|
4996
|
+
#
|
4997
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
|
4993
4998
|
# @return [String]
|
4994
4999
|
#
|
4995
5000
|
# @!attribute [rw] scaling_configuration_info
|
@@ -5062,6 +5067,15 @@ module Aws::RDS
|
|
5062
5067
|
# DB cluster.
|
5063
5068
|
# @return [Array<Types::DomainMembership>]
|
5064
5069
|
#
|
5070
|
+
# @!attribute [rw] tag_list
|
5071
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
5072
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
5073
|
+
#
|
5074
|
+
#
|
5075
|
+
#
|
5076
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
5077
|
+
# @return [Array<Types::Tag>]
|
5078
|
+
#
|
5065
5079
|
# @!attribute [rw] global_write_forwarding_status
|
5066
5080
|
# Specifies whether a secondary cluster in an Aurora global database
|
5067
5081
|
# has write forwarding enabled, not enabled, or is in the process of
|
@@ -5132,6 +5146,7 @@ module Aws::RDS
|
|
5132
5146
|
:copy_tags_to_snapshot,
|
5133
5147
|
:cross_account_clone,
|
5134
5148
|
:domain_memberships,
|
5149
|
+
:tag_list,
|
5135
5150
|
:global_write_forwarding_status,
|
5136
5151
|
:global_write_forwarding_requested)
|
5137
5152
|
SENSITIVE = []
|
@@ -5740,6 +5755,15 @@ module Aws::RDS
|
|
5740
5755
|
# to database accounts is enabled, and otherwise false.
|
5741
5756
|
# @return [Boolean]
|
5742
5757
|
#
|
5758
|
+
# @!attribute [rw] tag_list
|
5759
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
5760
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
5761
|
+
#
|
5762
|
+
#
|
5763
|
+
#
|
5764
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
5765
|
+
# @return [Array<Types::Tag>]
|
5766
|
+
#
|
5743
5767
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterSnapshot AWS API Documentation
|
5744
5768
|
#
|
5745
5769
|
class DBClusterSnapshot < Struct.new(
|
@@ -5762,7 +5786,8 @@ module Aws::RDS
|
|
5762
5786
|
:kms_key_id,
|
5763
5787
|
:db_cluster_snapshot_arn,
|
5764
5788
|
:source_db_cluster_snapshot_arn,
|
5765
|
-
:iam_database_authentication_enabled
|
5789
|
+
:iam_database_authentication_enabled,
|
5790
|
+
:tag_list)
|
5766
5791
|
SENSITIVE = []
|
5767
5792
|
include Aws::Structure
|
5768
5793
|
end
|
@@ -5895,7 +5920,13 @@ module Aws::RDS
|
|
5895
5920
|
#
|
5896
5921
|
# @!attribute [rw] supported_character_sets
|
5897
5922
|
# A list of the character sets supported by this engine for the
|
5898
|
-
# `CharacterSetName` parameter of the `CreateDBInstance`
|
5923
|
+
# `CharacterSetName` parameter of the `CreateDBInstance` operation.
|
5924
|
+
# @return [Array<Types::CharacterSet>]
|
5925
|
+
#
|
5926
|
+
# @!attribute [rw] supported_nchar_character_sets
|
5927
|
+
# A list of the character sets supported by the Oracle DB engine for
|
5928
|
+
# the `NcharCharacterSetName` parameter of the `CreateDBInstance`
|
5929
|
+
# operation.
|
5899
5930
|
# @return [Array<Types::CharacterSet>]
|
5900
5931
|
#
|
5901
5932
|
# @!attribute [rw] valid_upgrade_target
|
@@ -5925,13 +5956,6 @@ module Aws::RDS
|
|
5925
5956
|
#
|
5926
5957
|
# @!attribute [rw] supported_engine_modes
|
5927
5958
|
# A list of the supported DB engine modes.
|
5928
|
-
#
|
5929
|
-
# <note markdown="1"> `global` engine mode only applies for global database clusters
|
5930
|
-
# created with Aurora MySQL version 5.6.10a. For higher Aurora MySQL
|
5931
|
-
# versions, the clusters in a global database use `provisioned` engine
|
5932
|
-
# mode.
|
5933
|
-
#
|
5934
|
-
# </note>
|
5935
5959
|
# @return [Array<String>]
|
5936
5960
|
#
|
5937
5961
|
# @!attribute [rw] supported_feature_names
|
@@ -5968,6 +5992,7 @@ module Aws::RDS
|
|
5968
5992
|
:db_engine_version_description,
|
5969
5993
|
:default_character_set,
|
5970
5994
|
:supported_character_sets,
|
5995
|
+
:supported_nchar_character_sets,
|
5971
5996
|
:valid_upgrade_target,
|
5972
5997
|
:supported_timezones,
|
5973
5998
|
:exportable_log_types,
|
@@ -6190,6 +6215,12 @@ module Aws::RDS
|
|
6190
6215
|
# instance is associated with.
|
6191
6216
|
# @return [String]
|
6192
6217
|
#
|
6218
|
+
# @!attribute [rw] nchar_character_set_name
|
6219
|
+
# The name of the NCHAR character set for the Oracle DB instance. This
|
6220
|
+
# character set specifies the Unicode encoding for data stored in
|
6221
|
+
# table columns of type NCHAR, NCLOB, or NVARCHAR2.
|
6222
|
+
# @return [String]
|
6223
|
+
#
|
6193
6224
|
# @!attribute [rw] secondary_availability_zone
|
6194
6225
|
# If present, specifies the name of the secondary Availability Zone
|
6195
6226
|
# for a DB instance with multi-AZ support.
|
@@ -6381,6 +6412,15 @@ module Aws::RDS
|
|
6381
6412
|
# storage of the DB instance.
|
6382
6413
|
# @return [Integer]
|
6383
6414
|
#
|
6415
|
+
# @!attribute [rw] tag_list
|
6416
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
6417
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
6418
|
+
#
|
6419
|
+
#
|
6420
|
+
#
|
6421
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
6422
|
+
# @return [Array<Types::Tag>]
|
6423
|
+
#
|
6384
6424
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
6385
6425
|
#
|
6386
6426
|
class DBInstance < Struct.new(
|
@@ -6414,6 +6454,7 @@ module Aws::RDS
|
|
6414
6454
|
:iops,
|
6415
6455
|
:option_group_memberships,
|
6416
6456
|
:character_set_name,
|
6457
|
+
:nchar_character_set_name,
|
6417
6458
|
:secondary_availability_zone,
|
6418
6459
|
:publicly_accessible,
|
6419
6460
|
:status_infos,
|
@@ -6442,7 +6483,8 @@ module Aws::RDS
|
|
6442
6483
|
:deletion_protection,
|
6443
6484
|
:associated_roles,
|
6444
6485
|
:listener_endpoint,
|
6445
|
-
:max_allocated_storage
|
6486
|
+
:max_allocated_storage,
|
6487
|
+
:tag_list)
|
6446
6488
|
SENSITIVE = []
|
6447
6489
|
include Aws::Structure
|
6448
6490
|
end
|
@@ -7028,7 +7070,7 @@ module Aws::RDS
|
|
7028
7070
|
class DBProxyAlreadyExistsFault < Aws::EmptyStructure; end
|
7029
7071
|
|
7030
7072
|
# The specified proxy name doesn't correspond to a proxy owned by your
|
7031
|
-
# AWS
|
7073
|
+
# AWS account in the specified AWS Region.
|
7032
7074
|
#
|
7033
7075
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyNotFoundFault AWS API Documentation
|
7034
7076
|
#
|
@@ -7318,7 +7360,7 @@ module Aws::RDS
|
|
7318
7360
|
# @return [String]
|
7319
7361
|
#
|
7320
7362
|
# @!attribute [rw] snapshot_create_time
|
7321
|
-
# Specifies when the snapshot was taken in
|
7363
|
+
# Specifies when the snapshot was taken in Coordinated Universal Time
|
7322
7364
|
# (UTC).
|
7323
7365
|
# @return [Time]
|
7324
7366
|
#
|
@@ -7437,6 +7479,15 @@ module Aws::RDS
|
|
7437
7479
|
# and which is unique to an AWS Region.
|
7438
7480
|
# @return [String]
|
7439
7481
|
#
|
7482
|
+
# @!attribute [rw] tag_list
|
7483
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
7484
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
7485
|
+
#
|
7486
|
+
#
|
7487
|
+
#
|
7488
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
7489
|
+
# @return [Array<Types::Tag>]
|
7490
|
+
#
|
7440
7491
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
|
7441
7492
|
#
|
7442
7493
|
class DBSnapshot < Struct.new(
|
@@ -7467,7 +7518,8 @@ module Aws::RDS
|
|
7467
7518
|
:timezone,
|
7468
7519
|
:iam_database_authentication_enabled,
|
7469
7520
|
:processor_features,
|
7470
|
-
:dbi_resource_id
|
7521
|
+
:dbi_resource_id,
|
7522
|
+
:tag_list)
|
7471
7523
|
SENSITIVE = []
|
7472
7524
|
include Aws::Structure
|
7473
7525
|
end
|
@@ -12076,12 +12128,12 @@ module Aws::RDS
|
|
12076
12128
|
#
|
12077
12129
|
# **Microsoft SQL Server**
|
12078
12130
|
#
|
12079
|
-
# See [
|
12131
|
+
# See [ Microsoft SQL Server Versions on Amazon RDS][1] in the *Amazon
|
12080
12132
|
# RDS User Guide.*
|
12081
12133
|
#
|
12082
12134
|
#
|
12083
12135
|
#
|
12084
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.
|
12136
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
12085
12137
|
# @return [String]
|
12086
12138
|
#
|
12087
12139
|
# @!attribute [rw] engine_installation_media_path
|
@@ -13432,7 +13484,7 @@ module Aws::RDS
|
|
13432
13484
|
# The version number of the database engine to upgrade to. Changing
|
13433
13485
|
# this parameter results in an outage and the change is applied during
|
13434
13486
|
# the next maintenance window unless the `ApplyImmediately` parameter
|
13435
|
-
# is
|
13487
|
+
# is enabled for this request.
|
13436
13488
|
#
|
13437
13489
|
# For major version upgrades, if a nondefault DB parameter group is
|
13438
13490
|
# currently in use, a new DB parameter group in the DB parameter group
|
@@ -13731,8 +13783,10 @@ module Aws::RDS
|
|
13731
13783
|
# @!attribute [rw] enable_iam_database_authentication
|
13732
13784
|
# A value that indicates whether to enable mapping of AWS Identity and
|
13733
13785
|
# Access Management (IAM) accounts to database accounts. By default,
|
13734
|
-
# mapping is disabled.
|
13735
|
-
#
|
13786
|
+
# mapping is disabled.
|
13787
|
+
#
|
13788
|
+
# This setting doesn't apply to Amazon Aurora. Mapping AWS IAM
|
13789
|
+
# accounts to database accounts is managed by the DB cluster.
|
13736
13790
|
#
|
13737
13791
|
# For more information about IAM database authentication, see [ IAM
|
13738
13792
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -15168,13 +15222,6 @@ module Aws::RDS
|
|
15168
15222
|
#
|
15169
15223
|
# @!attribute [rw] supported_engine_modes
|
15170
15224
|
# A list of the supported DB engine modes.
|
15171
|
-
#
|
15172
|
-
# <note markdown="1"> `global` engine mode only applies for global database clusters
|
15173
|
-
# created with Aurora MySQL version 5.6.10a. For higher Aurora MySQL
|
15174
|
-
# versions, the clusters in a global database use `provisioned` engine
|
15175
|
-
# mode.
|
15176
|
-
#
|
15177
|
-
# </note>
|
15178
15225
|
# @return [Array<String>]
|
15179
15226
|
#
|
15180
15227
|
# @!attribute [rw] supports_storage_autoscaling
|
@@ -17201,6 +17248,12 @@ module Aws::RDS
|
|
17201
17248
|
# @!attribute [rw] engine_mode
|
17202
17249
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
17203
17250
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
17251
|
+
#
|
17252
|
+
# For more information, see [ CreateDBCluster][1].
|
17253
|
+
#
|
17254
|
+
#
|
17255
|
+
#
|
17256
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
|
17204
17257
|
# @return [String]
|
17205
17258
|
#
|
17206
17259
|
# @!attribute [rw] scaling_configuration
|
@@ -17884,8 +17937,7 @@ module Aws::RDS
|
|
17884
17937
|
# @!attribute [rw] enable_iam_database_authentication
|
17885
17938
|
# A value that indicates whether to enable mapping of AWS Identity and
|
17886
17939
|
# Access Management (IAM) accounts to database accounts. By default,
|
17887
|
-
# mapping is disabled.
|
17888
|
-
# see CreateDBInstance.
|
17940
|
+
# mapping is disabled.
|
17889
17941
|
#
|
17890
17942
|
# For more information about IAM database authentication, see [ IAM
|
17891
17943
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -17900,11 +17952,11 @@ module Aws::RDS
|
|
17900
17952
|
# The list of logs that the restored DB instance is to export to
|
17901
17953
|
# CloudWatch Logs. The values in the list depend on the DB engine
|
17902
17954
|
# being used. For more information, see [Publishing Database Logs to
|
17903
|
-
# Amazon CloudWatch Logs][1] in the *Amazon
|
17955
|
+
# Amazon CloudWatch Logs][1] in the *Amazon RDS User Guide*.
|
17904
17956
|
#
|
17905
17957
|
#
|
17906
17958
|
#
|
17907
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
17959
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
17908
17960
|
# @return [Array<String>]
|
17909
17961
|
#
|
17910
17962
|
# @!attribute [rw] processor_features
|
@@ -18053,6 +18105,7 @@ module Aws::RDS
|
|
18053
18105
|
# ],
|
18054
18106
|
# use_default_processor_features: false,
|
18055
18107
|
# deletion_protection: false,
|
18108
|
+
# max_allocated_storage: 1,
|
18056
18109
|
# }
|
18057
18110
|
#
|
18058
18111
|
# @!attribute [rw] db_name
|
@@ -18362,8 +18415,7 @@ module Aws::RDS
|
|
18362
18415
|
# @!attribute [rw] enable_iam_database_authentication
|
18363
18416
|
# A value that indicates whether to enable mapping of AWS Identity and
|
18364
18417
|
# Access Management (IAM) accounts to database accounts. By default,
|
18365
|
-
# mapping is disabled.
|
18366
|
-
# see CreateDBInstance.
|
18418
|
+
# mapping is disabled.
|
18367
18419
|
#
|
18368
18420
|
# For more information about IAM database authentication, see [ IAM
|
18369
18421
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -18462,6 +18514,11 @@ module Aws::RDS
|
|
18462
18514
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
18463
18515
|
# @return [Boolean]
|
18464
18516
|
#
|
18517
|
+
# @!attribute [rw] max_allocated_storage
|
18518
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
18519
|
+
# storage of the DB instance.
|
18520
|
+
# @return [Integer]
|
18521
|
+
#
|
18465
18522
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3Message AWS API Documentation
|
18466
18523
|
#
|
18467
18524
|
class RestoreDBInstanceFromS3Message < Struct.new(
|
@@ -18507,7 +18564,8 @@ module Aws::RDS
|
|
18507
18564
|
:enable_cloudwatch_logs_exports,
|
18508
18565
|
:processor_features,
|
18509
18566
|
:use_default_processor_features,
|
18510
|
-
:deletion_protection
|
18567
|
+
:deletion_protection,
|
18568
|
+
:max_allocated_storage)
|
18511
18569
|
SENSITIVE = []
|
18512
18570
|
include Aws::Structure
|
18513
18571
|
end
|
@@ -18572,6 +18630,7 @@ module Aws::RDS
|
|
18572
18630
|
# db_parameter_group_name: "String",
|
18573
18631
|
# deletion_protection: false,
|
18574
18632
|
# source_dbi_resource_id: "String",
|
18633
|
+
# max_allocated_storage: 1,
|
18575
18634
|
# }
|
18576
18635
|
#
|
18577
18636
|
# @!attribute [rw] source_db_instance_identifier
|
@@ -18830,8 +18889,7 @@ module Aws::RDS
|
|
18830
18889
|
# @!attribute [rw] enable_iam_database_authentication
|
18831
18890
|
# A value that indicates whether to enable mapping of AWS Identity and
|
18832
18891
|
# Access Management (IAM) accounts to database accounts. By default,
|
18833
|
-
# mapping is disabled.
|
18834
|
-
# see CreateDBInstance.
|
18892
|
+
# mapping is disabled.
|
18835
18893
|
#
|
18836
18894
|
# For more information about IAM database authentication, see [ IAM
|
18837
18895
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -18896,6 +18954,11 @@ module Aws::RDS
|
|
18896
18954
|
# The resource ID of the source DB instance from which to restore.
|
18897
18955
|
# @return [String]
|
18898
18956
|
#
|
18957
|
+
# @!attribute [rw] max_allocated_storage
|
18958
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
18959
|
+
# storage of the DB instance.
|
18960
|
+
# @return [Integer]
|
18961
|
+
#
|
18899
18962
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
|
18900
18963
|
#
|
18901
18964
|
class RestoreDBInstanceToPointInTimeMessage < Struct.new(
|
@@ -18929,7 +18992,8 @@ module Aws::RDS
|
|
18929
18992
|
:use_default_processor_features,
|
18930
18993
|
:db_parameter_group_name,
|
18931
18994
|
:deletion_protection,
|
18932
|
-
:source_dbi_resource_id
|
18995
|
+
:source_dbi_resource_id,
|
18996
|
+
:max_allocated_storage)
|
18933
18997
|
SENSITIVE = []
|
18934
18998
|
include Aws::Structure
|
18935
18999
|
end
|