aws-sdk-rds 1.99.0 → 1.104.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 +164 -32
- data/lib/aws-sdk-rds/client_api.rb +13 -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 +33 -3
- data/lib/aws-sdk-rds/db_snapshot.rb +13 -2
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/pending_maintenance_action.rb +6 -3
- data/lib/aws-sdk-rds/resource.rb +25 -9
- data/lib/aws-sdk-rds/types.rb +142 -59
- metadata +4 -4
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.
|
@@ -3320,6 +3328,11 @@ module Aws::RDS
|
|
3320
3328
|
# Amazon CloudWatch Logs ][1] in the *Amazon Relational Database
|
3321
3329
|
# Service User Guide*.
|
3322
3330
|
#
|
3331
|
+
# **Amazon Aurora**
|
3332
|
+
#
|
3333
|
+
# Not applicable. CloudWatch Logs exports are managed by the DB
|
3334
|
+
# cluster.
|
3335
|
+
#
|
3323
3336
|
# **MariaDB**
|
3324
3337
|
#
|
3325
3338
|
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
@@ -3399,6 +3412,7 @@ module Aws::RDS
|
|
3399
3412
|
:iops,
|
3400
3413
|
:option_group_name,
|
3401
3414
|
:character_set_name,
|
3415
|
+
:nchar_character_set_name,
|
3402
3416
|
:publicly_accessible,
|
3403
3417
|
:tags,
|
3404
3418
|
:db_cluster_identifier,
|
@@ -4982,14 +4996,11 @@ module Aws::RDS
|
|
4982
4996
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
4983
4997
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
4984
4998
|
#
|
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`.
|
4999
|
+
# For more information, see [ CreateDBCluster][1].
|
4991
5000
|
#
|
4992
|
-
#
|
5001
|
+
#
|
5002
|
+
#
|
5003
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
|
4993
5004
|
# @return [String]
|
4994
5005
|
#
|
4995
5006
|
# @!attribute [rw] scaling_configuration_info
|
@@ -5062,6 +5073,15 @@ module Aws::RDS
|
|
5062
5073
|
# DB cluster.
|
5063
5074
|
# @return [Array<Types::DomainMembership>]
|
5064
5075
|
#
|
5076
|
+
# @!attribute [rw] tag_list
|
5077
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
5078
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
5079
|
+
#
|
5080
|
+
#
|
5081
|
+
#
|
5082
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
5083
|
+
# @return [Array<Types::Tag>]
|
5084
|
+
#
|
5065
5085
|
# @!attribute [rw] global_write_forwarding_status
|
5066
5086
|
# Specifies whether a secondary cluster in an Aurora global database
|
5067
5087
|
# has write forwarding enabled, not enabled, or is in the process of
|
@@ -5132,6 +5152,7 @@ module Aws::RDS
|
|
5132
5152
|
:copy_tags_to_snapshot,
|
5133
5153
|
:cross_account_clone,
|
5134
5154
|
:domain_memberships,
|
5155
|
+
:tag_list,
|
5135
5156
|
:global_write_forwarding_status,
|
5136
5157
|
:global_write_forwarding_requested)
|
5137
5158
|
SENSITIVE = []
|
@@ -5740,6 +5761,15 @@ module Aws::RDS
|
|
5740
5761
|
# to database accounts is enabled, and otherwise false.
|
5741
5762
|
# @return [Boolean]
|
5742
5763
|
#
|
5764
|
+
# @!attribute [rw] tag_list
|
5765
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
5766
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
5767
|
+
#
|
5768
|
+
#
|
5769
|
+
#
|
5770
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
5771
|
+
# @return [Array<Types::Tag>]
|
5772
|
+
#
|
5743
5773
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterSnapshot AWS API Documentation
|
5744
5774
|
#
|
5745
5775
|
class DBClusterSnapshot < Struct.new(
|
@@ -5762,7 +5792,8 @@ module Aws::RDS
|
|
5762
5792
|
:kms_key_id,
|
5763
5793
|
:db_cluster_snapshot_arn,
|
5764
5794
|
:source_db_cluster_snapshot_arn,
|
5765
|
-
:iam_database_authentication_enabled
|
5795
|
+
:iam_database_authentication_enabled,
|
5796
|
+
:tag_list)
|
5766
5797
|
SENSITIVE = []
|
5767
5798
|
include Aws::Structure
|
5768
5799
|
end
|
@@ -5895,7 +5926,13 @@ module Aws::RDS
|
|
5895
5926
|
#
|
5896
5927
|
# @!attribute [rw] supported_character_sets
|
5897
5928
|
# A list of the character sets supported by this engine for the
|
5898
|
-
# `CharacterSetName` parameter of the `CreateDBInstance`
|
5929
|
+
# `CharacterSetName` parameter of the `CreateDBInstance` operation.
|
5930
|
+
# @return [Array<Types::CharacterSet>]
|
5931
|
+
#
|
5932
|
+
# @!attribute [rw] supported_nchar_character_sets
|
5933
|
+
# A list of the character sets supported by the Oracle DB engine for
|
5934
|
+
# the `NcharCharacterSetName` parameter of the `CreateDBInstance`
|
5935
|
+
# operation.
|
5899
5936
|
# @return [Array<Types::CharacterSet>]
|
5900
5937
|
#
|
5901
5938
|
# @!attribute [rw] valid_upgrade_target
|
@@ -5925,13 +5962,6 @@ module Aws::RDS
|
|
5925
5962
|
#
|
5926
5963
|
# @!attribute [rw] supported_engine_modes
|
5927
5964
|
# 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
5965
|
# @return [Array<String>]
|
5936
5966
|
#
|
5937
5967
|
# @!attribute [rw] supported_feature_names
|
@@ -5968,6 +5998,7 @@ module Aws::RDS
|
|
5968
5998
|
:db_engine_version_description,
|
5969
5999
|
:default_character_set,
|
5970
6000
|
:supported_character_sets,
|
6001
|
+
:supported_nchar_character_sets,
|
5971
6002
|
:valid_upgrade_target,
|
5972
6003
|
:supported_timezones,
|
5973
6004
|
:exportable_log_types,
|
@@ -6190,6 +6221,12 @@ module Aws::RDS
|
|
6190
6221
|
# instance is associated with.
|
6191
6222
|
# @return [String]
|
6192
6223
|
#
|
6224
|
+
# @!attribute [rw] nchar_character_set_name
|
6225
|
+
# The name of the NCHAR character set for the Oracle DB instance. This
|
6226
|
+
# character set specifies the Unicode encoding for data stored in
|
6227
|
+
# table columns of type NCHAR, NCLOB, or NVARCHAR2.
|
6228
|
+
# @return [String]
|
6229
|
+
#
|
6193
6230
|
# @!attribute [rw] secondary_availability_zone
|
6194
6231
|
# If present, specifies the name of the secondary Availability Zone
|
6195
6232
|
# for a DB instance with multi-AZ support.
|
@@ -6381,6 +6418,15 @@ module Aws::RDS
|
|
6381
6418
|
# storage of the DB instance.
|
6382
6419
|
# @return [Integer]
|
6383
6420
|
#
|
6421
|
+
# @!attribute [rw] tag_list
|
6422
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
6423
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
6424
|
+
#
|
6425
|
+
#
|
6426
|
+
#
|
6427
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
6428
|
+
# @return [Array<Types::Tag>]
|
6429
|
+
#
|
6384
6430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
6385
6431
|
#
|
6386
6432
|
class DBInstance < Struct.new(
|
@@ -6414,6 +6460,7 @@ module Aws::RDS
|
|
6414
6460
|
:iops,
|
6415
6461
|
:option_group_memberships,
|
6416
6462
|
:character_set_name,
|
6463
|
+
:nchar_character_set_name,
|
6417
6464
|
:secondary_availability_zone,
|
6418
6465
|
:publicly_accessible,
|
6419
6466
|
:status_infos,
|
@@ -6442,7 +6489,8 @@ module Aws::RDS
|
|
6442
6489
|
:deletion_protection,
|
6443
6490
|
:associated_roles,
|
6444
6491
|
:listener_endpoint,
|
6445
|
-
:max_allocated_storage
|
6492
|
+
:max_allocated_storage,
|
6493
|
+
:tag_list)
|
6446
6494
|
SENSITIVE = []
|
6447
6495
|
include Aws::Structure
|
6448
6496
|
end
|
@@ -7437,6 +7485,15 @@ module Aws::RDS
|
|
7437
7485
|
# and which is unique to an AWS Region.
|
7438
7486
|
# @return [String]
|
7439
7487
|
#
|
7488
|
+
# @!attribute [rw] tag_list
|
7489
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
7490
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
7491
|
+
#
|
7492
|
+
#
|
7493
|
+
#
|
7494
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
7495
|
+
# @return [Array<Types::Tag>]
|
7496
|
+
#
|
7440
7497
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
|
7441
7498
|
#
|
7442
7499
|
class DBSnapshot < Struct.new(
|
@@ -7467,7 +7524,8 @@ module Aws::RDS
|
|
7467
7524
|
:timezone,
|
7468
7525
|
:iam_database_authentication_enabled,
|
7469
7526
|
:processor_features,
|
7470
|
-
:dbi_resource_id
|
7527
|
+
:dbi_resource_id,
|
7528
|
+
:tag_list)
|
7471
7529
|
SENSITIVE = []
|
7472
7530
|
include Aws::Structure
|
7473
7531
|
end
|
@@ -12076,12 +12134,12 @@ module Aws::RDS
|
|
12076
12134
|
#
|
12077
12135
|
# **Microsoft SQL Server**
|
12078
12136
|
#
|
12079
|
-
# See [
|
12137
|
+
# See [ Microsoft SQL Server Versions on Amazon RDS][1] in the *Amazon
|
12080
12138
|
# RDS User Guide.*
|
12081
12139
|
#
|
12082
12140
|
#
|
12083
12141
|
#
|
12084
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.
|
12142
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
12085
12143
|
# @return [String]
|
12086
12144
|
#
|
12087
12145
|
# @!attribute [rw] engine_installation_media_path
|
@@ -12218,6 +12276,15 @@ module Aws::RDS
|
|
12218
12276
|
#
|
12219
12277
|
class InstanceQuotaExceededFault < Aws::EmptyStructure; end
|
12220
12278
|
|
12279
|
+
# The requested operation can't be performed because there aren't
|
12280
|
+
# enough available IP addresses in the proxy's subnets. Add more CIDR
|
12281
|
+
# blocks to the VPC or remove IP address that aren't required from the
|
12282
|
+
# subnets.
|
12283
|
+
#
|
12284
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InsufficientAvailableIPsInSubnetFault AWS API Documentation
|
12285
|
+
#
|
12286
|
+
class InsufficientAvailableIPsInSubnetFault < Aws::EmptyStructure; end
|
12287
|
+
|
12221
12288
|
# The DB cluster doesn't have enough capacity for the current
|
12222
12289
|
# operation.
|
12223
12290
|
#
|
@@ -15159,13 +15226,6 @@ module Aws::RDS
|
|
15159
15226
|
#
|
15160
15227
|
# @!attribute [rw] supported_engine_modes
|
15161
15228
|
# A list of the supported DB engine modes.
|
15162
|
-
#
|
15163
|
-
# <note markdown="1"> `global` engine mode only applies for global database clusters
|
15164
|
-
# created with Aurora MySQL version 5.6.10a. For higher Aurora MySQL
|
15165
|
-
# versions, the clusters in a global database use `provisioned` engine
|
15166
|
-
# mode.
|
15167
|
-
#
|
15168
|
-
# </note>
|
15169
15229
|
# @return [Array<String>]
|
15170
15230
|
#
|
15171
15231
|
# @!attribute [rw] supports_storage_autoscaling
|
@@ -15399,9 +15459,12 @@ module Aws::RDS
|
|
15399
15459
|
# @return [Time]
|
15400
15460
|
#
|
15401
15461
|
# @!attribute [rw] forced_apply_date
|
15402
|
-
# The date when the maintenance action is automatically applied.
|
15403
|
-
#
|
15404
|
-
#
|
15462
|
+
# The date when the maintenance action is automatically applied.
|
15463
|
+
#
|
15464
|
+
# On this date, the maintenance action is applied to the resource as
|
15465
|
+
# soon as possible, regardless of the maintenance window for the
|
15466
|
+
# resource. There might be a delay of one or more days from this date
|
15467
|
+
# before the maintenance action is applied.
|
15405
15468
|
# @return [Time]
|
15406
15469
|
#
|
15407
15470
|
# @!attribute [rw] opt_in_status
|
@@ -17189,6 +17252,12 @@ module Aws::RDS
|
|
17189
17252
|
# @!attribute [rw] engine_mode
|
17190
17253
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
17191
17254
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
17255
|
+
#
|
17256
|
+
# For more information, see [ CreateDBCluster][1].
|
17257
|
+
#
|
17258
|
+
#
|
17259
|
+
#
|
17260
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
|
17192
17261
|
# @return [String]
|
17193
17262
|
#
|
17194
17263
|
# @!attribute [rw] scaling_configuration
|
@@ -17888,11 +17957,11 @@ module Aws::RDS
|
|
17888
17957
|
# The list of logs that the restored DB instance is to export to
|
17889
17958
|
# CloudWatch Logs. The values in the list depend on the DB engine
|
17890
17959
|
# being used. For more information, see [Publishing Database Logs to
|
17891
|
-
# Amazon CloudWatch Logs][1] in the *Amazon
|
17960
|
+
# Amazon CloudWatch Logs][1] in the *Amazon RDS User Guide*.
|
17892
17961
|
#
|
17893
17962
|
#
|
17894
17963
|
#
|
17895
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
17964
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
17896
17965
|
# @return [Array<String>]
|
17897
17966
|
#
|
17898
17967
|
# @!attribute [rw] processor_features
|
@@ -18041,6 +18110,7 @@ module Aws::RDS
|
|
18041
18110
|
# ],
|
18042
18111
|
# use_default_processor_features: false,
|
18043
18112
|
# deletion_protection: false,
|
18113
|
+
# max_allocated_storage: 1,
|
18044
18114
|
# }
|
18045
18115
|
#
|
18046
18116
|
# @!attribute [rw] db_name
|
@@ -18450,6 +18520,11 @@ module Aws::RDS
|
|
18450
18520
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
18451
18521
|
# @return [Boolean]
|
18452
18522
|
#
|
18523
|
+
# @!attribute [rw] max_allocated_storage
|
18524
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
18525
|
+
# storage of the DB instance.
|
18526
|
+
# @return [Integer]
|
18527
|
+
#
|
18453
18528
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3Message AWS API Documentation
|
18454
18529
|
#
|
18455
18530
|
class RestoreDBInstanceFromS3Message < Struct.new(
|
@@ -18495,7 +18570,8 @@ module Aws::RDS
|
|
18495
18570
|
:enable_cloudwatch_logs_exports,
|
18496
18571
|
:processor_features,
|
18497
18572
|
:use_default_processor_features,
|
18498
|
-
:deletion_protection
|
18573
|
+
:deletion_protection,
|
18574
|
+
:max_allocated_storage)
|
18499
18575
|
SENSITIVE = []
|
18500
18576
|
include Aws::Structure
|
18501
18577
|
end
|
@@ -18560,6 +18636,7 @@ module Aws::RDS
|
|
18560
18636
|
# db_parameter_group_name: "String",
|
18561
18637
|
# deletion_protection: false,
|
18562
18638
|
# source_dbi_resource_id: "String",
|
18639
|
+
# max_allocated_storage: 1,
|
18563
18640
|
# }
|
18564
18641
|
#
|
18565
18642
|
# @!attribute [rw] source_db_instance_identifier
|
@@ -18884,6 +18961,11 @@ module Aws::RDS
|
|
18884
18961
|
# The resource ID of the source DB instance from which to restore.
|
18885
18962
|
# @return [String]
|
18886
18963
|
#
|
18964
|
+
# @!attribute [rw] max_allocated_storage
|
18965
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
18966
|
+
# storage of the DB instance.
|
18967
|
+
# @return [Integer]
|
18968
|
+
#
|
18887
18969
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
|
18888
18970
|
#
|
18889
18971
|
class RestoreDBInstanceToPointInTimeMessage < Struct.new(
|
@@ -18917,7 +18999,8 @@ module Aws::RDS
|
|
18917
18999
|
:use_default_processor_features,
|
18918
19000
|
:db_parameter_group_name,
|
18919
19001
|
:deletion_protection,
|
18920
|
-
:source_dbi_resource_id
|
19002
|
+
:source_dbi_resource_id,
|
19003
|
+
:max_allocated_storage)
|
18921
19004
|
SENSITIVE = []
|
18922
19005
|
include Aws::Structure
|
18923
19006
|
end
|