aws-sdk-rds 1.100.0 → 1.105.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 +180 -66
- data/lib/aws-sdk-rds/client_api.rb +10 -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 +15 -5
- data/lib/aws-sdk-rds/resource.rb +27 -32
- data/lib/aws-sdk-rds/types.rb +147 -92
- metadata +4 -4
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:
|
@@ -1491,25 +1498,13 @@ module Aws::RDS
|
|
1491
1498
|
# }
|
1492
1499
|
#
|
1493
1500
|
# @!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*.
|
1501
|
+
# The identifier for the source option group.
|
1497
1502
|
#
|
1498
1503
|
# Constraints:
|
1499
1504
|
#
|
1500
1505
|
# * Must specify a valid option group.
|
1501
1506
|
#
|
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
|
1507
|
+
# ^
|
1513
1508
|
# @return [String]
|
1514
1509
|
#
|
1515
1510
|
# @!attribute [rw] target_option_group_identifier
|
@@ -2077,15 +2072,23 @@ module Aws::RDS
|
|
2077
2072
|
# @return [Array<String>]
|
2078
2073
|
#
|
2079
2074
|
# @!attribute [rw] engine_mode
|
2080
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
2075
|
+
# The DB engine mode of the DB cluster, either `provisioned`
|
2081
2076
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
2082
2077
|
#
|
2083
|
-
#
|
2084
|
-
#
|
2085
|
-
# versions
|
2086
|
-
# mode.
|
2078
|
+
# The `parallelquery` engine mode isn't required for Aurora MySQL
|
2079
|
+
# version 1.23 and higher 1.x versions, and version 2.09 and higher
|
2080
|
+
# 2.x versions.
|
2087
2081
|
#
|
2088
|
-
#
|
2082
|
+
# The `global` engine mode isn't required for Aurora MySQL version
|
2083
|
+
# 1.22 and higher 1.x versions, and `global` engine mode isn't
|
2084
|
+
# required for any 2.x versions.
|
2085
|
+
#
|
2086
|
+
# The `multimaster` engine mode only applies for DB clusters created
|
2087
|
+
# with Aurora MySQL version 5.6.10a.
|
2088
|
+
#
|
2089
|
+
# For Aurora PostgreSQL, the `global` engine mode isn't required, and
|
2090
|
+
# both the `parallelquery` and the `multimaster` engine modes
|
2091
|
+
# currently aren't supported.
|
2089
2092
|
#
|
2090
2093
|
# Limitations and requirements apply to some DB engine modes. For more
|
2091
2094
|
# information, see the following sections in the *Amazon Aurora User
|
@@ -2095,7 +2098,7 @@ module Aws::RDS
|
|
2095
2098
|
#
|
2096
2099
|
# * [ Limitations of Parallel Query][2]
|
2097
2100
|
#
|
2098
|
-
# * [
|
2101
|
+
# * [ Limitations of Aurora Global Databases][3]
|
2099
2102
|
#
|
2100
2103
|
# * [ Limitations of Multi-Master Clusters][4]
|
2101
2104
|
#
|
@@ -2415,6 +2418,7 @@ module Aws::RDS
|
|
2415
2418
|
# iops: 1,
|
2416
2419
|
# option_group_name: "String",
|
2417
2420
|
# character_set_name: "String",
|
2421
|
+
# nchar_character_set_name: "String",
|
2418
2422
|
# publicly_accessible: false,
|
2419
2423
|
# tags: [
|
2420
2424
|
# {
|
@@ -2997,7 +3001,7 @@ module Aws::RDS
|
|
2997
3001
|
#
|
2998
3002
|
# **Microsoft SQL Server**
|
2999
3003
|
#
|
3000
|
-
# See [
|
3004
|
+
# See [Microsoft SQL Server Versions on Amazon RDS][2] in the *Amazon
|
3001
3005
|
# RDS User Guide.*
|
3002
3006
|
#
|
3003
3007
|
# **MySQL**
|
@@ -3018,7 +3022,7 @@ module Aws::RDS
|
|
3018
3022
|
#
|
3019
3023
|
#
|
3020
3024
|
# [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.
|
3025
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
3022
3026
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
3023
3027
|
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
|
3024
3028
|
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts.General.DBVersions
|
@@ -3073,6 +3077,10 @@ module Aws::RDS
|
|
3073
3077
|
# more information, see `CreateDBCluster`.
|
3074
3078
|
# @return [String]
|
3075
3079
|
#
|
3080
|
+
# @!attribute [rw] nchar_character_set_name
|
3081
|
+
# The name of the NCHAR character set for the Oracle DB instance.
|
3082
|
+
# @return [String]
|
3083
|
+
#
|
3076
3084
|
# @!attribute [rw] publicly_accessible
|
3077
3085
|
# A value that indicates whether the DB instance is publicly
|
3078
3086
|
# accessible.
|
@@ -3253,29 +3261,8 @@ module Aws::RDS
|
|
3253
3261
|
# Access Management (IAM) accounts to database accounts. By default,
|
3254
3262
|
# mapping is disabled.
|
3255
3263
|
#
|
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
|
3264
|
+
# This setting doesn't apply to Amazon Aurora. Mapping AWS IAM
|
3265
|
+
# accounts to database accounts is managed by the DB cluster.
|
3279
3266
|
#
|
3280
3267
|
# For more information, see [ IAM Database Authentication for MySQL
|
3281
3268
|
# and PostgreSQL][1] in the *Amazon RDS User Guide.*
|
@@ -3320,6 +3307,11 @@ module Aws::RDS
|
|
3320
3307
|
# Amazon CloudWatch Logs ][1] in the *Amazon Relational Database
|
3321
3308
|
# Service User Guide*.
|
3322
3309
|
#
|
3310
|
+
# **Amazon Aurora**
|
3311
|
+
#
|
3312
|
+
# Not applicable. CloudWatch Logs exports are managed by the DB
|
3313
|
+
# cluster.
|
3314
|
+
#
|
3323
3315
|
# **MariaDB**
|
3324
3316
|
#
|
3325
3317
|
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
@@ -3399,6 +3391,7 @@ module Aws::RDS
|
|
3399
3391
|
:iops,
|
3400
3392
|
:option_group_name,
|
3401
3393
|
:character_set_name,
|
3394
|
+
:nchar_character_set_name,
|
3402
3395
|
:publicly_accessible,
|
3403
3396
|
:tags,
|
3404
3397
|
:db_cluster_identifier,
|
@@ -3471,6 +3464,7 @@ module Aws::RDS
|
|
3471
3464
|
# domain: "String",
|
3472
3465
|
# domain_iam_role_name: "String",
|
3473
3466
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
3467
|
+
# max_allocated_storage: 1,
|
3474
3468
|
# source_region: "String",
|
3475
3469
|
# }
|
3476
3470
|
#
|
@@ -3802,8 +3796,7 @@ module Aws::RDS
|
|
3802
3796
|
# @!attribute [rw] enable_iam_database_authentication
|
3803
3797
|
# A value that indicates whether to enable mapping of AWS Identity and
|
3804
3798
|
# Access Management (IAM) accounts to database accounts. By default,
|
3805
|
-
# mapping is disabled.
|
3806
|
-
# see CreateDBInstance.
|
3799
|
+
# mapping is disabled.
|
3807
3800
|
#
|
3808
3801
|
# For more information about IAM database authentication, see [ IAM
|
3809
3802
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -3916,6 +3909,11 @@ module Aws::RDS
|
|
3916
3909
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
3917
3910
|
# @return [String]
|
3918
3911
|
#
|
3912
|
+
# @!attribute [rw] max_allocated_storage
|
3913
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
3914
|
+
# storage of the DB instance.
|
3915
|
+
# @return [Integer]
|
3916
|
+
#
|
3919
3917
|
# @!attribute [rw] destination_region
|
3920
3918
|
# @return [String]
|
3921
3919
|
#
|
@@ -3958,6 +3956,7 @@ module Aws::RDS
|
|
3958
3956
|
:domain,
|
3959
3957
|
:domain_iam_role_name,
|
3960
3958
|
:replica_mode,
|
3959
|
+
:max_allocated_storage,
|
3961
3960
|
:destination_region,
|
3962
3961
|
:source_region)
|
3963
3962
|
SENSITIVE = []
|
@@ -4982,14 +4981,11 @@ module Aws::RDS
|
|
4982
4981
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
4983
4982
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
4984
4983
|
#
|
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`.
|
4984
|
+
# For more information, see [ CreateDBCluster][1].
|
4991
4985
|
#
|
4992
|
-
#
|
4986
|
+
#
|
4987
|
+
#
|
4988
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
|
4993
4989
|
# @return [String]
|
4994
4990
|
#
|
4995
4991
|
# @!attribute [rw] scaling_configuration_info
|
@@ -5062,6 +5058,15 @@ module Aws::RDS
|
|
5062
5058
|
# DB cluster.
|
5063
5059
|
# @return [Array<Types::DomainMembership>]
|
5064
5060
|
#
|
5061
|
+
# @!attribute [rw] tag_list
|
5062
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
5063
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
5064
|
+
#
|
5065
|
+
#
|
5066
|
+
#
|
5067
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
5068
|
+
# @return [Array<Types::Tag>]
|
5069
|
+
#
|
5065
5070
|
# @!attribute [rw] global_write_forwarding_status
|
5066
5071
|
# Specifies whether a secondary cluster in an Aurora global database
|
5067
5072
|
# has write forwarding enabled, not enabled, or is in the process of
|
@@ -5132,6 +5137,7 @@ module Aws::RDS
|
|
5132
5137
|
:copy_tags_to_snapshot,
|
5133
5138
|
:cross_account_clone,
|
5134
5139
|
:domain_memberships,
|
5140
|
+
:tag_list,
|
5135
5141
|
:global_write_forwarding_status,
|
5136
5142
|
:global_write_forwarding_requested)
|
5137
5143
|
SENSITIVE = []
|
@@ -5740,6 +5746,15 @@ module Aws::RDS
|
|
5740
5746
|
# to database accounts is enabled, and otherwise false.
|
5741
5747
|
# @return [Boolean]
|
5742
5748
|
#
|
5749
|
+
# @!attribute [rw] tag_list
|
5750
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
5751
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
5752
|
+
#
|
5753
|
+
#
|
5754
|
+
#
|
5755
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
5756
|
+
# @return [Array<Types::Tag>]
|
5757
|
+
#
|
5743
5758
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterSnapshot AWS API Documentation
|
5744
5759
|
#
|
5745
5760
|
class DBClusterSnapshot < Struct.new(
|
@@ -5762,7 +5777,8 @@ module Aws::RDS
|
|
5762
5777
|
:kms_key_id,
|
5763
5778
|
:db_cluster_snapshot_arn,
|
5764
5779
|
:source_db_cluster_snapshot_arn,
|
5765
|
-
:iam_database_authentication_enabled
|
5780
|
+
:iam_database_authentication_enabled,
|
5781
|
+
:tag_list)
|
5766
5782
|
SENSITIVE = []
|
5767
5783
|
include Aws::Structure
|
5768
5784
|
end
|
@@ -5895,7 +5911,13 @@ module Aws::RDS
|
|
5895
5911
|
#
|
5896
5912
|
# @!attribute [rw] supported_character_sets
|
5897
5913
|
# A list of the character sets supported by this engine for the
|
5898
|
-
# `CharacterSetName` parameter of the `CreateDBInstance`
|
5914
|
+
# `CharacterSetName` parameter of the `CreateDBInstance` operation.
|
5915
|
+
# @return [Array<Types::CharacterSet>]
|
5916
|
+
#
|
5917
|
+
# @!attribute [rw] supported_nchar_character_sets
|
5918
|
+
# A list of the character sets supported by the Oracle DB engine for
|
5919
|
+
# the `NcharCharacterSetName` parameter of the `CreateDBInstance`
|
5920
|
+
# operation.
|
5899
5921
|
# @return [Array<Types::CharacterSet>]
|
5900
5922
|
#
|
5901
5923
|
# @!attribute [rw] valid_upgrade_target
|
@@ -5925,13 +5947,6 @@ module Aws::RDS
|
|
5925
5947
|
#
|
5926
5948
|
# @!attribute [rw] supported_engine_modes
|
5927
5949
|
# 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
5950
|
# @return [Array<String>]
|
5936
5951
|
#
|
5937
5952
|
# @!attribute [rw] supported_feature_names
|
@@ -5968,6 +5983,7 @@ module Aws::RDS
|
|
5968
5983
|
:db_engine_version_description,
|
5969
5984
|
:default_character_set,
|
5970
5985
|
:supported_character_sets,
|
5986
|
+
:supported_nchar_character_sets,
|
5971
5987
|
:valid_upgrade_target,
|
5972
5988
|
:supported_timezones,
|
5973
5989
|
:exportable_log_types,
|
@@ -6190,6 +6206,12 @@ module Aws::RDS
|
|
6190
6206
|
# instance is associated with.
|
6191
6207
|
# @return [String]
|
6192
6208
|
#
|
6209
|
+
# @!attribute [rw] nchar_character_set_name
|
6210
|
+
# The name of the NCHAR character set for the Oracle DB instance. This
|
6211
|
+
# character set specifies the Unicode encoding for data stored in
|
6212
|
+
# table columns of type NCHAR, NCLOB, or NVARCHAR2.
|
6213
|
+
# @return [String]
|
6214
|
+
#
|
6193
6215
|
# @!attribute [rw] secondary_availability_zone
|
6194
6216
|
# If present, specifies the name of the secondary Availability Zone
|
6195
6217
|
# for a DB instance with multi-AZ support.
|
@@ -6381,6 +6403,15 @@ module Aws::RDS
|
|
6381
6403
|
# storage of the DB instance.
|
6382
6404
|
# @return [Integer]
|
6383
6405
|
#
|
6406
|
+
# @!attribute [rw] tag_list
|
6407
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
6408
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
6409
|
+
#
|
6410
|
+
#
|
6411
|
+
#
|
6412
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
6413
|
+
# @return [Array<Types::Tag>]
|
6414
|
+
#
|
6384
6415
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
6385
6416
|
#
|
6386
6417
|
class DBInstance < Struct.new(
|
@@ -6414,6 +6445,7 @@ module Aws::RDS
|
|
6414
6445
|
:iops,
|
6415
6446
|
:option_group_memberships,
|
6416
6447
|
:character_set_name,
|
6448
|
+
:nchar_character_set_name,
|
6417
6449
|
:secondary_availability_zone,
|
6418
6450
|
:publicly_accessible,
|
6419
6451
|
:status_infos,
|
@@ -6442,7 +6474,8 @@ module Aws::RDS
|
|
6442
6474
|
:deletion_protection,
|
6443
6475
|
:associated_roles,
|
6444
6476
|
:listener_endpoint,
|
6445
|
-
:max_allocated_storage
|
6477
|
+
:max_allocated_storage,
|
6478
|
+
:tag_list)
|
6446
6479
|
SENSITIVE = []
|
6447
6480
|
include Aws::Structure
|
6448
6481
|
end
|
@@ -7028,7 +7061,7 @@ module Aws::RDS
|
|
7028
7061
|
class DBProxyAlreadyExistsFault < Aws::EmptyStructure; end
|
7029
7062
|
|
7030
7063
|
# The specified proxy name doesn't correspond to a proxy owned by your
|
7031
|
-
# AWS
|
7064
|
+
# AWS account in the specified AWS Region.
|
7032
7065
|
#
|
7033
7066
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyNotFoundFault AWS API Documentation
|
7034
7067
|
#
|
@@ -7318,7 +7351,7 @@ module Aws::RDS
|
|
7318
7351
|
# @return [String]
|
7319
7352
|
#
|
7320
7353
|
# @!attribute [rw] snapshot_create_time
|
7321
|
-
# Specifies when the snapshot was taken in
|
7354
|
+
# Specifies when the snapshot was taken in Coordinated Universal Time
|
7322
7355
|
# (UTC).
|
7323
7356
|
# @return [Time]
|
7324
7357
|
#
|
@@ -7437,6 +7470,15 @@ module Aws::RDS
|
|
7437
7470
|
# and which is unique to an AWS Region.
|
7438
7471
|
# @return [String]
|
7439
7472
|
#
|
7473
|
+
# @!attribute [rw] tag_list
|
7474
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
7475
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
7476
|
+
#
|
7477
|
+
#
|
7478
|
+
#
|
7479
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
7480
|
+
# @return [Array<Types::Tag>]
|
7481
|
+
#
|
7440
7482
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
|
7441
7483
|
#
|
7442
7484
|
class DBSnapshot < Struct.new(
|
@@ -7467,7 +7509,8 @@ module Aws::RDS
|
|
7467
7509
|
:timezone,
|
7468
7510
|
:iam_database_authentication_enabled,
|
7469
7511
|
:processor_features,
|
7470
|
-
:dbi_resource_id
|
7512
|
+
:dbi_resource_id,
|
7513
|
+
:tag_list)
|
7471
7514
|
SENSITIVE = []
|
7472
7515
|
include Aws::Structure
|
7473
7516
|
end
|
@@ -12076,12 +12119,12 @@ module Aws::RDS
|
|
12076
12119
|
#
|
12077
12120
|
# **Microsoft SQL Server**
|
12078
12121
|
#
|
12079
|
-
# See [
|
12122
|
+
# See [ Microsoft SQL Server Versions on Amazon RDS][1] in the *Amazon
|
12080
12123
|
# RDS User Guide.*
|
12081
12124
|
#
|
12082
12125
|
#
|
12083
12126
|
#
|
12084
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.
|
12127
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
12085
12128
|
# @return [String]
|
12086
12129
|
#
|
12087
12130
|
# @!attribute [rw] engine_installation_media_path
|
@@ -13432,7 +13475,7 @@ module Aws::RDS
|
|
13432
13475
|
# The version number of the database engine to upgrade to. Changing
|
13433
13476
|
# this parameter results in an outage and the change is applied during
|
13434
13477
|
# the next maintenance window unless the `ApplyImmediately` parameter
|
13435
|
-
# is
|
13478
|
+
# is enabled for this request.
|
13436
13479
|
#
|
13437
13480
|
# For major version upgrades, if a nondefault DB parameter group is
|
13438
13481
|
# currently in use, a new DB parameter group in the DB parameter group
|
@@ -13731,8 +13774,10 @@ module Aws::RDS
|
|
13731
13774
|
# @!attribute [rw] enable_iam_database_authentication
|
13732
13775
|
# A value that indicates whether to enable mapping of AWS Identity and
|
13733
13776
|
# Access Management (IAM) accounts to database accounts. By default,
|
13734
|
-
# mapping is disabled.
|
13735
|
-
#
|
13777
|
+
# mapping is disabled.
|
13778
|
+
#
|
13779
|
+
# This setting doesn't apply to Amazon Aurora. Mapping AWS IAM
|
13780
|
+
# accounts to database accounts is managed by the DB cluster.
|
13736
13781
|
#
|
13737
13782
|
# For more information about IAM database authentication, see [ IAM
|
13738
13783
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -15168,13 +15213,6 @@ module Aws::RDS
|
|
15168
15213
|
#
|
15169
15214
|
# @!attribute [rw] supported_engine_modes
|
15170
15215
|
# 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
15216
|
# @return [Array<String>]
|
15179
15217
|
#
|
15180
15218
|
# @!attribute [rw] supports_storage_autoscaling
|
@@ -17201,6 +17239,12 @@ module Aws::RDS
|
|
17201
17239
|
# @!attribute [rw] engine_mode
|
17202
17240
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
17203
17241
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
17242
|
+
#
|
17243
|
+
# For more information, see [ CreateDBCluster][1].
|
17244
|
+
#
|
17245
|
+
#
|
17246
|
+
#
|
17247
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
|
17204
17248
|
# @return [String]
|
17205
17249
|
#
|
17206
17250
|
# @!attribute [rw] scaling_configuration
|
@@ -17884,8 +17928,7 @@ module Aws::RDS
|
|
17884
17928
|
# @!attribute [rw] enable_iam_database_authentication
|
17885
17929
|
# A value that indicates whether to enable mapping of AWS Identity and
|
17886
17930
|
# Access Management (IAM) accounts to database accounts. By default,
|
17887
|
-
# mapping is disabled.
|
17888
|
-
# see CreateDBInstance.
|
17931
|
+
# mapping is disabled.
|
17889
17932
|
#
|
17890
17933
|
# For more information about IAM database authentication, see [ IAM
|
17891
17934
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -17900,11 +17943,11 @@ module Aws::RDS
|
|
17900
17943
|
# The list of logs that the restored DB instance is to export to
|
17901
17944
|
# CloudWatch Logs. The values in the list depend on the DB engine
|
17902
17945
|
# being used. For more information, see [Publishing Database Logs to
|
17903
|
-
# Amazon CloudWatch Logs][1] in the *Amazon
|
17946
|
+
# Amazon CloudWatch Logs][1] in the *Amazon RDS User Guide*.
|
17904
17947
|
#
|
17905
17948
|
#
|
17906
17949
|
#
|
17907
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
17950
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
17908
17951
|
# @return [Array<String>]
|
17909
17952
|
#
|
17910
17953
|
# @!attribute [rw] processor_features
|
@@ -18053,6 +18096,7 @@ module Aws::RDS
|
|
18053
18096
|
# ],
|
18054
18097
|
# use_default_processor_features: false,
|
18055
18098
|
# deletion_protection: false,
|
18099
|
+
# max_allocated_storage: 1,
|
18056
18100
|
# }
|
18057
18101
|
#
|
18058
18102
|
# @!attribute [rw] db_name
|
@@ -18362,8 +18406,7 @@ module Aws::RDS
|
|
18362
18406
|
# @!attribute [rw] enable_iam_database_authentication
|
18363
18407
|
# A value that indicates whether to enable mapping of AWS Identity and
|
18364
18408
|
# Access Management (IAM) accounts to database accounts. By default,
|
18365
|
-
# mapping is disabled.
|
18366
|
-
# see CreateDBInstance.
|
18409
|
+
# mapping is disabled.
|
18367
18410
|
#
|
18368
18411
|
# For more information about IAM database authentication, see [ IAM
|
18369
18412
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -18462,6 +18505,11 @@ module Aws::RDS
|
|
18462
18505
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
18463
18506
|
# @return [Boolean]
|
18464
18507
|
#
|
18508
|
+
# @!attribute [rw] max_allocated_storage
|
18509
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
18510
|
+
# storage of the DB instance.
|
18511
|
+
# @return [Integer]
|
18512
|
+
#
|
18465
18513
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3Message AWS API Documentation
|
18466
18514
|
#
|
18467
18515
|
class RestoreDBInstanceFromS3Message < Struct.new(
|
@@ -18507,7 +18555,8 @@ module Aws::RDS
|
|
18507
18555
|
:enable_cloudwatch_logs_exports,
|
18508
18556
|
:processor_features,
|
18509
18557
|
:use_default_processor_features,
|
18510
|
-
:deletion_protection
|
18558
|
+
:deletion_protection,
|
18559
|
+
:max_allocated_storage)
|
18511
18560
|
SENSITIVE = []
|
18512
18561
|
include Aws::Structure
|
18513
18562
|
end
|
@@ -18572,6 +18621,7 @@ module Aws::RDS
|
|
18572
18621
|
# db_parameter_group_name: "String",
|
18573
18622
|
# deletion_protection: false,
|
18574
18623
|
# source_dbi_resource_id: "String",
|
18624
|
+
# max_allocated_storage: 1,
|
18575
18625
|
# }
|
18576
18626
|
#
|
18577
18627
|
# @!attribute [rw] source_db_instance_identifier
|
@@ -18830,8 +18880,7 @@ module Aws::RDS
|
|
18830
18880
|
# @!attribute [rw] enable_iam_database_authentication
|
18831
18881
|
# A value that indicates whether to enable mapping of AWS Identity and
|
18832
18882
|
# Access Management (IAM) accounts to database accounts. By default,
|
18833
|
-
# mapping is disabled.
|
18834
|
-
# see CreateDBInstance.
|
18883
|
+
# mapping is disabled.
|
18835
18884
|
#
|
18836
18885
|
# For more information about IAM database authentication, see [ IAM
|
18837
18886
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -18896,6 +18945,11 @@ module Aws::RDS
|
|
18896
18945
|
# The resource ID of the source DB instance from which to restore.
|
18897
18946
|
# @return [String]
|
18898
18947
|
#
|
18948
|
+
# @!attribute [rw] max_allocated_storage
|
18949
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
18950
|
+
# storage of the DB instance.
|
18951
|
+
# @return [Integer]
|
18952
|
+
#
|
18899
18953
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
|
18900
18954
|
#
|
18901
18955
|
class RestoreDBInstanceToPointInTimeMessage < Struct.new(
|
@@ -18929,7 +18983,8 @@ module Aws::RDS
|
|
18929
18983
|
:use_default_processor_features,
|
18930
18984
|
:db_parameter_group_name,
|
18931
18985
|
:deletion_protection,
|
18932
|
-
:source_dbi_resource_id
|
18986
|
+
:source_dbi_resource_id,
|
18987
|
+
:max_allocated_storage)
|
18933
18988
|
SENSITIVE = []
|
18934
18989
|
include Aws::Structure
|
18935
18990
|
end
|