aws-sdk-rds 1.300.0 → 1.301.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +493 -12
- data/lib/aws-sdk-rds/client_api.rb +86 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +16 -0
- data/lib/aws-sdk-rds/db_instance.rb +82 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +24 -0
- data/lib/aws-sdk-rds/resource.rb +18 -0
- data/lib/aws-sdk-rds/types.rb +494 -30
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +74 -6
- data/sig/db_engine_version.rbs +6 -0
- data/sig/db_instance.rbs +50 -3
- data/sig/db_snapshot.rbs +14 -1
- data/sig/resource.rbs +11 -1
- data/sig/types.rbs +77 -0
- metadata +1 -1
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -272,6 +272,112 @@ module Aws::RDS
|
|
|
272
272
|
include Aws::Structure
|
|
273
273
|
end
|
|
274
274
|
|
|
275
|
+
# Contains details about an additional storage volume for a DB instance.
|
|
276
|
+
# RDS support additional storage volumes for RDS for Oracle and RDS for
|
|
277
|
+
# SQL Server.
|
|
278
|
+
#
|
|
279
|
+
# @!attribute [rw] volume_name
|
|
280
|
+
# The name of the additional storage volume.
|
|
281
|
+
#
|
|
282
|
+
# Valid Values: `RDSDBDATA2 | RDSDBDATA3 | RDSDBDATA4`
|
|
283
|
+
# @return [String]
|
|
284
|
+
#
|
|
285
|
+
# @!attribute [rw] allocated_storage
|
|
286
|
+
# The amount of storage allocated for the additional storage volume,
|
|
287
|
+
# in gibibytes (GiB). The minimum is 20 GiB. The maximum is 65,536 GiB
|
|
288
|
+
# (64 TiB).
|
|
289
|
+
# @return [Integer]
|
|
290
|
+
#
|
|
291
|
+
# @!attribute [rw] iops
|
|
292
|
+
# The number of I/O operations per second (IOPS) provisioned for the
|
|
293
|
+
# additional storage volume.
|
|
294
|
+
# @return [Integer]
|
|
295
|
+
#
|
|
296
|
+
# @!attribute [rw] max_allocated_storage
|
|
297
|
+
# The upper limit in gibibytes (GiB) to which RDS can automatically
|
|
298
|
+
# scale the storage of the additional storage volume.
|
|
299
|
+
# @return [Integer]
|
|
300
|
+
#
|
|
301
|
+
# @!attribute [rw] storage_throughput
|
|
302
|
+
# The storage throughput value for the additional storage volume, in
|
|
303
|
+
# mebibytes per second (MiBps). This setting applies only to the
|
|
304
|
+
# General Purpose SSD (`gp3`) storage type.
|
|
305
|
+
# @return [Integer]
|
|
306
|
+
#
|
|
307
|
+
# @!attribute [rw] storage_type
|
|
308
|
+
# The storage type for the additional storage volume.
|
|
309
|
+
#
|
|
310
|
+
# Valid Values: `GP3 | IO2`
|
|
311
|
+
# @return [String]
|
|
312
|
+
#
|
|
313
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AdditionalStorageVolume AWS API Documentation
|
|
314
|
+
#
|
|
315
|
+
class AdditionalStorageVolume < Struct.new(
|
|
316
|
+
:volume_name,
|
|
317
|
+
:allocated_storage,
|
|
318
|
+
:iops,
|
|
319
|
+
:max_allocated_storage,
|
|
320
|
+
:storage_throughput,
|
|
321
|
+
:storage_type)
|
|
322
|
+
SENSITIVE = []
|
|
323
|
+
include Aws::Structure
|
|
324
|
+
end
|
|
325
|
+
|
|
326
|
+
# Contains information about an additional storage volume for a DB
|
|
327
|
+
# instance.
|
|
328
|
+
#
|
|
329
|
+
# @!attribute [rw] volume_name
|
|
330
|
+
# The name of the additional storage volume.
|
|
331
|
+
# @return [String]
|
|
332
|
+
#
|
|
333
|
+
# @!attribute [rw] storage_volume_status
|
|
334
|
+
# The status of the additional storage volume.
|
|
335
|
+
#
|
|
336
|
+
# Valid Values: `ACTIVE | CREATING | DELETING | MODIFYING | NOT-IN-USE
|
|
337
|
+
# | STORAGE-OPTIMIZATION | VOLUME-FULL`
|
|
338
|
+
# @return [String]
|
|
339
|
+
#
|
|
340
|
+
# @!attribute [rw] allocated_storage
|
|
341
|
+
# The amount of storage allocated for the additional storage volume,
|
|
342
|
+
# in gibibytes (GiB). The minimum is 20 GiB. The maximum is 65,536 GiB
|
|
343
|
+
# (64 TiB).
|
|
344
|
+
# @return [Integer]
|
|
345
|
+
#
|
|
346
|
+
# @!attribute [rw] iops
|
|
347
|
+
# The number of I/O operations per second (IOPS) provisioned for the
|
|
348
|
+
# additional storage volume.
|
|
349
|
+
# @return [Integer]
|
|
350
|
+
#
|
|
351
|
+
# @!attribute [rw] max_allocated_storage
|
|
352
|
+
# The upper limit in gibibytes (GiB) to which RDS can automatically
|
|
353
|
+
# scale the storage of the additional storage volume.
|
|
354
|
+
# @return [Integer]
|
|
355
|
+
#
|
|
356
|
+
# @!attribute [rw] storage_throughput
|
|
357
|
+
# The storage throughput value for the additional storage volume, in
|
|
358
|
+
# mebibytes per second (MiBps).
|
|
359
|
+
# @return [Integer]
|
|
360
|
+
#
|
|
361
|
+
# @!attribute [rw] storage_type
|
|
362
|
+
# The storage type for the additional storage volume.
|
|
363
|
+
#
|
|
364
|
+
# Valid Values: `GP3 | IO2`
|
|
365
|
+
# @return [String]
|
|
366
|
+
#
|
|
367
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AdditionalStorageVolumeOutput AWS API Documentation
|
|
368
|
+
#
|
|
369
|
+
class AdditionalStorageVolumeOutput < Struct.new(
|
|
370
|
+
:volume_name,
|
|
371
|
+
:storage_volume_status,
|
|
372
|
+
:allocated_storage,
|
|
373
|
+
:iops,
|
|
374
|
+
:max_allocated_storage,
|
|
375
|
+
:storage_throughput,
|
|
376
|
+
:storage_type)
|
|
377
|
+
SENSITIVE = []
|
|
378
|
+
include Aws::Structure
|
|
379
|
+
end
|
|
380
|
+
|
|
275
381
|
# @!attribute [rw] resource_identifier
|
|
276
382
|
# The RDS Amazon Resource Name (ARN) of the resource that the pending
|
|
277
383
|
# maintenance action applies to. For information about creating an
|
|
@@ -442,6 +548,89 @@ module Aws::RDS
|
|
|
442
548
|
include Aws::Structure
|
|
443
549
|
end
|
|
444
550
|
|
|
551
|
+
# Contains the available options for additional storage volumes for a DB
|
|
552
|
+
# instance class.
|
|
553
|
+
#
|
|
554
|
+
# @!attribute [rw] supports_storage_autoscaling
|
|
555
|
+
# Indicates whether the additional storage volume supports storage
|
|
556
|
+
# autoscaling.
|
|
557
|
+
# @return [Boolean]
|
|
558
|
+
#
|
|
559
|
+
# @!attribute [rw] supports_storage_throughput
|
|
560
|
+
# Indicates whether the additional storage volume supports
|
|
561
|
+
# configurable storage throughput.
|
|
562
|
+
# @return [Boolean]
|
|
563
|
+
#
|
|
564
|
+
# @!attribute [rw] supports_iops
|
|
565
|
+
# Indicates whether the additional storage volume supports provisioned
|
|
566
|
+
# IOPS.
|
|
567
|
+
# @return [Boolean]
|
|
568
|
+
#
|
|
569
|
+
# @!attribute [rw] storage_type
|
|
570
|
+
# The storage type for the additional storage volume.
|
|
571
|
+
#
|
|
572
|
+
# Valid Values: `GP3 | IO2`
|
|
573
|
+
# @return [String]
|
|
574
|
+
#
|
|
575
|
+
# @!attribute [rw] min_storage_size
|
|
576
|
+
# The minimum amount of storage that you can allocate for the
|
|
577
|
+
# additional storage volume, in gibibytes (GiB).
|
|
578
|
+
# @return [Integer]
|
|
579
|
+
#
|
|
580
|
+
# @!attribute [rw] max_storage_size
|
|
581
|
+
# The maximum amount of storage that you can allocate for the
|
|
582
|
+
# additional storage volume, in gibibytes (GiB).
|
|
583
|
+
# @return [Integer]
|
|
584
|
+
#
|
|
585
|
+
# @!attribute [rw] min_iops
|
|
586
|
+
# The minimum number of I/O operations per second (IOPS) that the
|
|
587
|
+
# additional storage volume supports.
|
|
588
|
+
# @return [Integer]
|
|
589
|
+
#
|
|
590
|
+
# @!attribute [rw] max_iops
|
|
591
|
+
# The maximum number of I/O operations per second (IOPS) that the
|
|
592
|
+
# additional storage volume supports.
|
|
593
|
+
# @return [Integer]
|
|
594
|
+
#
|
|
595
|
+
# @!attribute [rw] min_iops_per_gib
|
|
596
|
+
# The minimum ratio of I/O operations per second (IOPS) to gibibytes
|
|
597
|
+
# (GiB) of storage for the additional storage volume.
|
|
598
|
+
# @return [Float]
|
|
599
|
+
#
|
|
600
|
+
# @!attribute [rw] max_iops_per_gib
|
|
601
|
+
# The maximum ratio of I/O operations per second (IOPS) to gibibytes
|
|
602
|
+
# (GiB) of storage for the additional storage volume.
|
|
603
|
+
# @return [Float]
|
|
604
|
+
#
|
|
605
|
+
# @!attribute [rw] min_storage_throughput
|
|
606
|
+
# The minimum storage throughput that the additional storage volume
|
|
607
|
+
# supports, in mebibytes per second (MiBps).
|
|
608
|
+
# @return [Integer]
|
|
609
|
+
#
|
|
610
|
+
# @!attribute [rw] max_storage_throughput
|
|
611
|
+
# The maximum storage throughput that the additional storage volume
|
|
612
|
+
# supports, in mebibytes per second (MiBps).
|
|
613
|
+
# @return [Integer]
|
|
614
|
+
#
|
|
615
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AvailableAdditionalStorageVolumesOption AWS API Documentation
|
|
616
|
+
#
|
|
617
|
+
class AvailableAdditionalStorageVolumesOption < Struct.new(
|
|
618
|
+
:supports_storage_autoscaling,
|
|
619
|
+
:supports_storage_throughput,
|
|
620
|
+
:supports_iops,
|
|
621
|
+
:storage_type,
|
|
622
|
+
:min_storage_size,
|
|
623
|
+
:max_storage_size,
|
|
624
|
+
:min_iops,
|
|
625
|
+
:max_iops,
|
|
626
|
+
:min_iops_per_gib,
|
|
627
|
+
:max_iops_per_gib,
|
|
628
|
+
:min_storage_throughput,
|
|
629
|
+
:max_storage_throughput)
|
|
630
|
+
SENSITIVE = []
|
|
631
|
+
include Aws::Structure
|
|
632
|
+
end
|
|
633
|
+
|
|
445
634
|
# Contains the available processor feature information for the DB
|
|
446
635
|
# instance class of a DB instance.
|
|
447
636
|
#
|
|
@@ -2000,8 +2189,9 @@ module Aws::RDS
|
|
|
2000
2189
|
class CreateCustomDBEngineVersionFault < Aws::EmptyStructure; end
|
|
2001
2190
|
|
|
2002
2191
|
# @!attribute [rw] engine
|
|
2003
|
-
# The database engine.
|
|
2004
|
-
#
|
|
2192
|
+
# The database engine.
|
|
2193
|
+
#
|
|
2194
|
+
# RDS Custom for Oracle supports the following values:
|
|
2005
2195
|
#
|
|
2006
2196
|
# * `custom-oracle-ee`
|
|
2007
2197
|
#
|
|
@@ -2010,14 +2200,33 @@ module Aws::RDS
|
|
|
2010
2200
|
# * `custom-oracle-se2`
|
|
2011
2201
|
#
|
|
2012
2202
|
# * `custom-oracle-se2-cdb`
|
|
2203
|
+
#
|
|
2204
|
+
# RDS Custom for SQL Server supports the following values:
|
|
2205
|
+
#
|
|
2206
|
+
# * `custom-sqlserver-ee`
|
|
2207
|
+
#
|
|
2208
|
+
# * `custom-sqlserver-se`
|
|
2209
|
+
#
|
|
2210
|
+
# * `ccustom-sqlserver-web`
|
|
2211
|
+
#
|
|
2212
|
+
# * `custom-sqlserver-dev`
|
|
2213
|
+
#
|
|
2214
|
+
# RDS for SQL Server supports only `sqlserver-dev-ee`.
|
|
2013
2215
|
# @return [String]
|
|
2014
2216
|
#
|
|
2015
2217
|
# @!attribute [rw] engine_version
|
|
2016
|
-
# The name of your
|
|
2017
|
-
#
|
|
2018
|
-
#
|
|
2019
|
-
#
|
|
2020
|
-
#
|
|
2218
|
+
# The name of your custom engine version (CEV).
|
|
2219
|
+
#
|
|
2220
|
+
# For RDS Custom for Oracle, the name format is
|
|
2221
|
+
# `19.*customized_string*`. For example, a valid CEV name is
|
|
2222
|
+
# `19.my_cev1`.
|
|
2223
|
+
#
|
|
2224
|
+
# For RDS for SQL Server and RDS Custom for SQL Server, the name
|
|
2225
|
+
# format is `major
|
|
2226
|
+
# engine_version*.*minor_engine_version*.*customized_string*`. For
|
|
2227
|
+
# example, a valid CEV name is `16.00.4215.2.my_cev1`.
|
|
2228
|
+
#
|
|
2229
|
+
# The CEV name is unique per customer per Amazon Web Services Regions.
|
|
2021
2230
|
# @return [String]
|
|
2022
2231
|
#
|
|
2023
2232
|
# @!attribute [rw] database_installation_files_s3_bucket_name
|
|
@@ -2135,6 +2344,11 @@ module Aws::RDS
|
|
|
2135
2344
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
2136
2345
|
# @return [Array<Types::Tag>]
|
|
2137
2346
|
#
|
|
2347
|
+
# @!attribute [rw] database_installation_files
|
|
2348
|
+
# The database installation files (ISO and EXE) uploaded to Amazon S3
|
|
2349
|
+
# for your database engine version to import to Amazon RDS.
|
|
2350
|
+
# @return [Array<String>]
|
|
2351
|
+
#
|
|
2138
2352
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersionMessage AWS API Documentation
|
|
2139
2353
|
#
|
|
2140
2354
|
class CreateCustomDBEngineVersionMessage < Struct.new(
|
|
@@ -2148,7 +2362,8 @@ module Aws::RDS
|
|
|
2148
2362
|
:use_aws_provided_latest_image,
|
|
2149
2363
|
:description,
|
|
2150
2364
|
:manifest,
|
|
2151
|
-
:tags
|
|
2365
|
+
:tags,
|
|
2366
|
+
:database_installation_files)
|
|
2152
2367
|
SENSITIVE = []
|
|
2153
2368
|
include Aws::Structure
|
|
2154
2369
|
end
|
|
@@ -3790,6 +4005,8 @@ module Aws::RDS
|
|
|
3790
4005
|
#
|
|
3791
4006
|
# * `postgres`
|
|
3792
4007
|
#
|
|
4008
|
+
# * `sqlserver-dev-ee`
|
|
4009
|
+
#
|
|
3793
4010
|
# * `sqlserver-ee`
|
|
3794
4011
|
#
|
|
3795
4012
|
# * `sqlserver-se`
|
|
@@ -4857,6 +5074,14 @@ module Aws::RDS
|
|
|
4857
5074
|
# PostgreSQL engines.
|
|
4858
5075
|
# @return [String]
|
|
4859
5076
|
#
|
|
5077
|
+
# @!attribute [rw] additional_storage_volumes
|
|
5078
|
+
# A list of additional storage volumes to create for the DB instance.
|
|
5079
|
+
# You can create up to three additional storage volumes using the
|
|
5080
|
+
# names `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`. Additional
|
|
5081
|
+
# storage volumes are supported for RDS for Oracle and RDS for SQL
|
|
5082
|
+
# Server DB instances only.
|
|
5083
|
+
# @return [Array<Types::AdditionalStorageVolume>]
|
|
5084
|
+
#
|
|
4860
5085
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
|
4861
5086
|
#
|
|
4862
5087
|
class CreateDBInstanceMessage < Struct.new(
|
|
@@ -4924,7 +5149,8 @@ module Aws::RDS
|
|
|
4924
5149
|
:multi_tenant,
|
|
4925
5150
|
:dedicated_log_volume,
|
|
4926
5151
|
:engine_lifecycle_support,
|
|
4927
|
-
:master_user_authentication_type
|
|
5152
|
+
:master_user_authentication_type,
|
|
5153
|
+
:additional_storage_volumes)
|
|
4928
5154
|
SENSITIVE = [:master_user_password, :tde_credential_password]
|
|
4929
5155
|
include Aws::Structure
|
|
4930
5156
|
end
|
|
@@ -5712,6 +5938,14 @@ module Aws::RDS
|
|
|
5712
5938
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
|
5713
5939
|
# @return [String]
|
|
5714
5940
|
#
|
|
5941
|
+
# @!attribute [rw] additional_storage_volumes
|
|
5942
|
+
# A list of additional storage volumes to create for the DB instance.
|
|
5943
|
+
# You can create up to three additional storage volumes using the
|
|
5944
|
+
# names `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`. Additional
|
|
5945
|
+
# storage volumes are supported for RDS for Oracle and RDS for SQL
|
|
5946
|
+
# Server DB instances only.
|
|
5947
|
+
# @return [Array<Types::AdditionalStorageVolume>]
|
|
5948
|
+
#
|
|
5715
5949
|
# @!attribute [rw] source_region
|
|
5716
5950
|
# The source region of the snapshot. This is only needed when the
|
|
5717
5951
|
# shapshot is encrypted and in a different region.
|
|
@@ -5767,6 +6001,7 @@ module Aws::RDS
|
|
|
5767
6001
|
:dedicated_log_volume,
|
|
5768
6002
|
:upgrade_storage_config,
|
|
5769
6003
|
:ca_certificate_identifier,
|
|
6004
|
+
:additional_storage_volumes,
|
|
5770
6005
|
:source_region)
|
|
5771
6006
|
SENSITIVE = [:pre_signed_url]
|
|
5772
6007
|
include Aws::Structure
|
|
@@ -8997,6 +9232,18 @@ module Aws::RDS
|
|
|
8997
9232
|
# features.
|
|
8998
9233
|
# @return [Types::ServerlessV2FeaturesSupport]
|
|
8999
9234
|
#
|
|
9235
|
+
# @!attribute [rw] database_installation_files
|
|
9236
|
+
# The database installation files (ISO and EXE) uploaded to Amazon S3
|
|
9237
|
+
# for your database engine version to import to Amazon RDS. Required
|
|
9238
|
+
# for `sqlserver-dev-ee`.
|
|
9239
|
+
# @return [Array<String>]
|
|
9240
|
+
#
|
|
9241
|
+
# @!attribute [rw] failure_reason
|
|
9242
|
+
# The reason that the custom engine version creation for
|
|
9243
|
+
# `sqlserver-dev-ee` failed with an `incompatible-installation-media`
|
|
9244
|
+
# status.
|
|
9245
|
+
# @return [String]
|
|
9246
|
+
#
|
|
9000
9247
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBEngineVersion AWS API Documentation
|
|
9001
9248
|
#
|
|
9002
9249
|
class DBEngineVersion < Struct.new(
|
|
@@ -9034,7 +9281,9 @@ module Aws::RDS
|
|
|
9034
9281
|
:supported_ca_certificate_identifiers,
|
|
9035
9282
|
:supports_local_write_forwarding,
|
|
9036
9283
|
:supports_integrations,
|
|
9037
|
-
:serverless_v2_features_support
|
|
9284
|
+
:serverless_v2_features_support,
|
|
9285
|
+
:database_installation_files,
|
|
9286
|
+
:failure_reason)
|
|
9038
9287
|
SENSITIVE = []
|
|
9039
9288
|
include Aws::Structure
|
|
9040
9289
|
end
|
|
@@ -9702,6 +9951,18 @@ module Aws::RDS
|
|
|
9702
9951
|
# For more information, see CreateDBInstance.
|
|
9703
9952
|
# @return [String]
|
|
9704
9953
|
#
|
|
9954
|
+
# @!attribute [rw] additional_storage_volumes
|
|
9955
|
+
# The additional storage volumes associated with the DB instance. RDS
|
|
9956
|
+
# supports additional storage volumes for RDS for Oracle and RDS for
|
|
9957
|
+
# SQL Server.
|
|
9958
|
+
# @return [Array<Types::AdditionalStorageVolumeOutput>]
|
|
9959
|
+
#
|
|
9960
|
+
# @!attribute [rw] storage_volume_status
|
|
9961
|
+
# The detailed status information for storage volumes associated with
|
|
9962
|
+
# the DB instance. This information helps identify which specific
|
|
9963
|
+
# volume is causing the instance to be in a storage-full state.
|
|
9964
|
+
# @return [String]
|
|
9965
|
+
#
|
|
9705
9966
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
|
9706
9967
|
#
|
|
9707
9968
|
class DBInstance < Struct.new(
|
|
@@ -9792,7 +10053,9 @@ module Aws::RDS
|
|
|
9792
10053
|
:multi_tenant,
|
|
9793
10054
|
:dedicated_log_volume,
|
|
9794
10055
|
:is_storage_config_upgrade_available,
|
|
9795
|
-
:engine_lifecycle_support
|
|
10056
|
+
:engine_lifecycle_support,
|
|
10057
|
+
:additional_storage_volumes,
|
|
10058
|
+
:storage_volume_status)
|
|
9796
10059
|
SENSITIVE = []
|
|
9797
10060
|
include Aws::Structure
|
|
9798
10061
|
end
|
|
@@ -9830,7 +10093,7 @@ module Aws::RDS
|
|
|
9830
10093
|
# @return [Types::RestoreWindow]
|
|
9831
10094
|
#
|
|
9832
10095
|
# @!attribute [rw] allocated_storage
|
|
9833
|
-
# The allocated storage size for the
|
|
10096
|
+
# The allocated storage size for the automated backup in gibibytes
|
|
9834
10097
|
# (GiB).
|
|
9835
10098
|
# @return [Integer]
|
|
9836
10099
|
#
|
|
@@ -9967,6 +10230,12 @@ module Aws::RDS
|
|
|
9967
10230
|
# enabled.
|
|
9968
10231
|
# @return [Boolean]
|
|
9969
10232
|
#
|
|
10233
|
+
# @!attribute [rw] additional_storage_volumes
|
|
10234
|
+
# The additional storage volumes associated with the automated backup.
|
|
10235
|
+
#
|
|
10236
|
+
# Valid Values: `GP3 | IO2`
|
|
10237
|
+
# @return [Array<Types::AdditionalStorageVolume>]
|
|
10238
|
+
#
|
|
9970
10239
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstanceAutomatedBackup AWS API Documentation
|
|
9971
10240
|
#
|
|
9972
10241
|
class DBInstanceAutomatedBackup < Struct.new(
|
|
@@ -10000,7 +10269,8 @@ module Aws::RDS
|
|
|
10000
10269
|
:backup_target,
|
|
10001
10270
|
:multi_tenant,
|
|
10002
10271
|
:aws_backup_recovery_point_arn,
|
|
10003
|
-
:dedicated_log_volume
|
|
10272
|
+
:dedicated_log_volume,
|
|
10273
|
+
:additional_storage_volumes)
|
|
10004
10274
|
SENSITIVE = []
|
|
10005
10275
|
include Aws::Structure
|
|
10006
10276
|
end
|
|
@@ -11451,6 +11721,12 @@ module Aws::RDS
|
|
|
11451
11721
|
# a Dedicated Local Zone.
|
|
11452
11722
|
# @return [String]
|
|
11453
11723
|
#
|
|
11724
|
+
# @!attribute [rw] additional_storage_volumes
|
|
11725
|
+
# The additional storage volumes associated with the DB snapshot. RDS
|
|
11726
|
+
# supports additional storage volumes for RDS for Oracle and RDS for
|
|
11727
|
+
# SQL Server.
|
|
11728
|
+
# @return [Array<Types::AdditionalStorageVolume>]
|
|
11729
|
+
#
|
|
11454
11730
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
|
|
11455
11731
|
#
|
|
11456
11732
|
class DBSnapshot < Struct.new(
|
|
@@ -11490,7 +11766,8 @@ module Aws::RDS
|
|
|
11490
11766
|
:db_system_id,
|
|
11491
11767
|
:multi_tenant,
|
|
11492
11768
|
:dedicated_log_volume,
|
|
11493
|
-
:snapshot_availability_zone
|
|
11769
|
+
:snapshot_availability_zone,
|
|
11770
|
+
:additional_storage_volumes)
|
|
11494
11771
|
SENSITIVE = []
|
|
11495
11772
|
include Aws::Structure
|
|
11496
11773
|
end
|
|
@@ -11888,8 +12165,9 @@ module Aws::RDS
|
|
|
11888
12165
|
end
|
|
11889
12166
|
|
|
11890
12167
|
# @!attribute [rw] engine
|
|
11891
|
-
# The database engine.
|
|
11892
|
-
#
|
|
12168
|
+
# The database engine.
|
|
12169
|
+
#
|
|
12170
|
+
# RDS Custom for Oracle supports the following values:
|
|
11893
12171
|
#
|
|
11894
12172
|
# * `custom-oracle-ee`
|
|
11895
12173
|
#
|
|
@@ -11898,6 +12176,18 @@ module Aws::RDS
|
|
|
11898
12176
|
# * `custom-oracle-se2`
|
|
11899
12177
|
#
|
|
11900
12178
|
# * `custom-oracle-se2-cdb`
|
|
12179
|
+
#
|
|
12180
|
+
# RDS Custom for SQL Server supports the following values:
|
|
12181
|
+
#
|
|
12182
|
+
# * `custom-sqlserver-ee`
|
|
12183
|
+
#
|
|
12184
|
+
# * `custom-sqlserver-se`
|
|
12185
|
+
#
|
|
12186
|
+
# * `ccustom-sqlserver-web`
|
|
12187
|
+
#
|
|
12188
|
+
# * `custom-sqlserver-dev`
|
|
12189
|
+
#
|
|
12190
|
+
# RDS for SQL Server supports only `sqlserver-dev-ee`.
|
|
11901
12191
|
# @return [String]
|
|
11902
12192
|
#
|
|
11903
12193
|
# @!attribute [rw] engine_version
|
|
@@ -17635,6 +17925,66 @@ module Aws::RDS
|
|
|
17635
17925
|
include Aws::Structure
|
|
17636
17926
|
end
|
|
17637
17927
|
|
|
17928
|
+
# Contains details about the modification of an additional storage
|
|
17929
|
+
# volume.
|
|
17930
|
+
#
|
|
17931
|
+
# @!attribute [rw] volume_name
|
|
17932
|
+
# The name of the additional storage volume that you want to modify.
|
|
17933
|
+
#
|
|
17934
|
+
# Valid Values: `RDSDBDATA2 | RDSDBDATA3 | RDSDBDATA4`
|
|
17935
|
+
# @return [String]
|
|
17936
|
+
#
|
|
17937
|
+
# @!attribute [rw] allocated_storage
|
|
17938
|
+
# The amount of storage allocated for the additional storage volume,
|
|
17939
|
+
# in gibibytes (GiB). The minimum is 20 GiB. The maximum is 65,536 GiB
|
|
17940
|
+
# (64 TiB).
|
|
17941
|
+
# @return [Integer]
|
|
17942
|
+
#
|
|
17943
|
+
# @!attribute [rw] iops
|
|
17944
|
+
# The number of I/O operations per second (IOPS) provisioned for the
|
|
17945
|
+
# additional storage volume. This setting is only supported for
|
|
17946
|
+
# Provisioned IOPS SSD (`io1` and `io2`) storage types.
|
|
17947
|
+
# @return [Integer]
|
|
17948
|
+
#
|
|
17949
|
+
# @!attribute [rw] max_allocated_storage
|
|
17950
|
+
# The upper limit in gibibytes (GiB) to which RDS can automatically
|
|
17951
|
+
# scale the storage of the additional storage volume. You must provide
|
|
17952
|
+
# a value greater than or equal to `AllocatedStorage`.
|
|
17953
|
+
# @return [Integer]
|
|
17954
|
+
#
|
|
17955
|
+
# @!attribute [rw] storage_throughput
|
|
17956
|
+
# The storage throughput value for the additional storage volume, in
|
|
17957
|
+
# mebibytes per second (MiBps). This setting applies only to the
|
|
17958
|
+
# General Purpose SSD (`gp3`) storage type.
|
|
17959
|
+
# @return [Integer]
|
|
17960
|
+
#
|
|
17961
|
+
# @!attribute [rw] storage_type
|
|
17962
|
+
# The new storage type for the additional storage volume.
|
|
17963
|
+
#
|
|
17964
|
+
# Valid Values: `GP3 | IO2`
|
|
17965
|
+
# @return [String]
|
|
17966
|
+
#
|
|
17967
|
+
# @!attribute [rw] set_for_delete
|
|
17968
|
+
# Indicates whether to delete the additional storage volume. The value
|
|
17969
|
+
# `true` schedules the volume for deletion. You can delete an
|
|
17970
|
+
# additional storage volume only when it doesn't contain database
|
|
17971
|
+
# files or other data.
|
|
17972
|
+
# @return [Boolean]
|
|
17973
|
+
#
|
|
17974
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyAdditionalStorageVolume AWS API Documentation
|
|
17975
|
+
#
|
|
17976
|
+
class ModifyAdditionalStorageVolume < Struct.new(
|
|
17977
|
+
:volume_name,
|
|
17978
|
+
:allocated_storage,
|
|
17979
|
+
:iops,
|
|
17980
|
+
:max_allocated_storage,
|
|
17981
|
+
:storage_throughput,
|
|
17982
|
+
:storage_type,
|
|
17983
|
+
:set_for_delete)
|
|
17984
|
+
SENSITIVE = []
|
|
17985
|
+
include Aws::Structure
|
|
17986
|
+
end
|
|
17987
|
+
|
|
17638
17988
|
# @!attribute [rw] certificate_identifier
|
|
17639
17989
|
# The new default certificate identifier to override the current one
|
|
17640
17990
|
# with.
|
|
@@ -17737,8 +18087,9 @@ module Aws::RDS
|
|
|
17737
18087
|
end
|
|
17738
18088
|
|
|
17739
18089
|
# @!attribute [rw] engine
|
|
17740
|
-
# The database engine.
|
|
17741
|
-
#
|
|
18090
|
+
# The database engine.
|
|
18091
|
+
#
|
|
18092
|
+
# RDS Custom for Oracle supports the following values:
|
|
17742
18093
|
#
|
|
17743
18094
|
# * `custom-oracle-ee`
|
|
17744
18095
|
#
|
|
@@ -17747,6 +18098,18 @@ module Aws::RDS
|
|
|
17747
18098
|
# * `custom-oracle-se2`
|
|
17748
18099
|
#
|
|
17749
18100
|
# * `custom-oracle-se2-cdb`
|
|
18101
|
+
#
|
|
18102
|
+
# RDS Custom for SQL Server supports the following values:
|
|
18103
|
+
#
|
|
18104
|
+
# * `custom-sqlserver-ee`
|
|
18105
|
+
#
|
|
18106
|
+
# * `custom-sqlserver-se`
|
|
18107
|
+
#
|
|
18108
|
+
# * `ccustom-sqlserver-web`
|
|
18109
|
+
#
|
|
18110
|
+
# * `custom-sqlserver-dev`
|
|
18111
|
+
#
|
|
18112
|
+
# RDS for SQL Server supports only `sqlserver-dev-ee`.
|
|
17750
18113
|
# @return [String]
|
|
17751
18114
|
#
|
|
17752
18115
|
# @!attribute [rw] engine_version
|
|
@@ -20064,6 +20427,13 @@ module Aws::RDS
|
|
|
20064
20427
|
# PostgreSQL engines.
|
|
20065
20428
|
# @return [String]
|
|
20066
20429
|
#
|
|
20430
|
+
# @!attribute [rw] additional_storage_volumes
|
|
20431
|
+
# A list of additional storage volumes to modify or delete for the DB
|
|
20432
|
+
# instance. You can create up to 3 additional storage volumes.
|
|
20433
|
+
# Additional storage volumes are supported for RDS for Oracle and RDS
|
|
20434
|
+
# for SQL Server DB instances only.
|
|
20435
|
+
# @return [Array<Types::ModifyAdditionalStorageVolume>]
|
|
20436
|
+
#
|
|
20067
20437
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
|
20068
20438
|
#
|
|
20069
20439
|
class ModifyDBInstanceMessage < Struct.new(
|
|
@@ -20128,7 +20498,8 @@ module Aws::RDS
|
|
|
20128
20498
|
:multi_tenant,
|
|
20129
20499
|
:dedicated_log_volume,
|
|
20130
20500
|
:engine,
|
|
20131
|
-
:master_user_authentication_type
|
|
20501
|
+
:master_user_authentication_type,
|
|
20502
|
+
:additional_storage_volumes)
|
|
20132
20503
|
SENSITIVE = [:master_user_password, :tde_credential_password]
|
|
20133
20504
|
include Aws::Structure
|
|
20134
20505
|
end
|
|
@@ -21761,6 +22132,16 @@ module Aws::RDS
|
|
|
21761
22132
|
# Indicates whether a DB instance supports HTTP endpoints.
|
|
21762
22133
|
# @return [Boolean]
|
|
21763
22134
|
#
|
|
22135
|
+
# @!attribute [rw] supports_additional_storage_volumes
|
|
22136
|
+
# Indicates whether the DB instance class supports additional storage
|
|
22137
|
+
# volumes.
|
|
22138
|
+
# @return [Boolean]
|
|
22139
|
+
#
|
|
22140
|
+
# @!attribute [rw] available_additional_storage_volumes_options
|
|
22141
|
+
# The available options for additional storage volumes for the DB
|
|
22142
|
+
# instance class.
|
|
22143
|
+
# @return [Array<Types::AvailableAdditionalStorageVolumesOption>]
|
|
22144
|
+
#
|
|
21764
22145
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OrderableDBInstanceOption AWS API Documentation
|
|
21765
22146
|
#
|
|
21766
22147
|
class OrderableDBInstanceOption < Struct.new(
|
|
@@ -21800,7 +22181,9 @@ module Aws::RDS
|
|
|
21800
22181
|
:supported_network_types,
|
|
21801
22182
|
:supports_clusters,
|
|
21802
22183
|
:supports_dedicated_log_volume,
|
|
21803
|
-
:supports_http_endpoint
|
|
22184
|
+
:supports_http_endpoint,
|
|
22185
|
+
:supports_additional_storage_volumes,
|
|
22186
|
+
:available_additional_storage_volumes_options)
|
|
21804
22187
|
SENSITIVE = []
|
|
21805
22188
|
include Aws::Structure
|
|
21806
22189
|
end
|
|
@@ -22163,6 +22546,11 @@ module Aws::RDS
|
|
|
22163
22546
|
# The database engine of the DB instance.
|
|
22164
22547
|
# @return [String]
|
|
22165
22548
|
#
|
|
22549
|
+
# @!attribute [rw] additional_storage_volumes
|
|
22550
|
+
# The additional storage volume modifications that are pending for the
|
|
22551
|
+
# DB instance.
|
|
22552
|
+
# @return [Array<Types::AdditionalStorageVolume>]
|
|
22553
|
+
#
|
|
22166
22554
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PendingModifiedValues AWS API Documentation
|
|
22167
22555
|
#
|
|
22168
22556
|
class PendingModifiedValues < Struct.new(
|
|
@@ -22187,7 +22575,8 @@ module Aws::RDS
|
|
|
22187
22575
|
:multi_tenant,
|
|
22188
22576
|
:iam_database_authentication_enabled,
|
|
22189
22577
|
:dedicated_log_volume,
|
|
22190
|
-
:engine
|
|
22578
|
+
:engine,
|
|
22579
|
+
:additional_storage_volumes)
|
|
22191
22580
|
SENSITIVE = [:master_user_password]
|
|
22192
22581
|
include Aws::Structure
|
|
22193
22582
|
end
|
|
@@ -22369,21 +22758,24 @@ module Aws::RDS
|
|
|
22369
22758
|
# If you call `DescribeDBInstances`, `ProcessorFeature` returns non-null
|
|
22370
22759
|
# values only if the following conditions are met:
|
|
22371
22760
|
#
|
|
22372
|
-
# * You are accessing an Oracle DB instance.
|
|
22761
|
+
# * You are accessing an Oracle or SQL Server DB instance.
|
|
22373
22762
|
#
|
|
22374
|
-
# * Your Oracle DB instance class supports configuring the
|
|
22375
|
-
# cores and threads per core.
|
|
22763
|
+
# * Your Oracle or SQL Server DB instance class supports configuring the
|
|
22764
|
+
# number of CPU cores and threads per core.
|
|
22376
22765
|
#
|
|
22377
22766
|
# * The current number CPU cores and threads is set to a non-default
|
|
22378
22767
|
# value.
|
|
22379
22768
|
#
|
|
22380
22769
|
# For more information, see [ Configuring the processor for a DB
|
|
22381
|
-
# instance class in RDS for Oracle][1]
|
|
22382
|
-
#
|
|
22770
|
+
# instance class in RDS for Oracle][1], [ Optimizing your RDS for SQL
|
|
22771
|
+
# Server CPU][2], and [DB instance classes][3] in the <i>Amazon RDS User
|
|
22772
|
+
# Guide. </i>
|
|
22383
22773
|
#
|
|
22384
22774
|
#
|
|
22385
22775
|
#
|
|
22386
22776
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html#USER_ConfigureProcessor
|
|
22777
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/SQLServer.Concepts.General.OptimizeCPU.html
|
|
22778
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
|
22387
22779
|
#
|
|
22388
22780
|
# @!attribute [rw] name
|
|
22389
22781
|
# The name of the processor feature. Valid names are `coreCount` and
|
|
@@ -25929,6 +26321,14 @@ module Aws::RDS
|
|
|
25929
26321
|
# each Amazon Web Services Region.
|
|
25930
26322
|
# @return [String]
|
|
25931
26323
|
#
|
|
26324
|
+
# @!attribute [rw] additional_storage_volumes
|
|
26325
|
+
# A list of additional storage volumes to create for the DB instance.
|
|
26326
|
+
# You can create up to three additional storage volumes using the
|
|
26327
|
+
# names `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`. Additional
|
|
26328
|
+
# storage volumes are supported for RDS for Oracle and RDS for SQL
|
|
26329
|
+
# Server DB instances only.
|
|
26330
|
+
# @return [Array<Types::AdditionalStorageVolume>]
|
|
26331
|
+
#
|
|
25932
26332
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshotMessage AWS API Documentation
|
|
25933
26333
|
#
|
|
25934
26334
|
class RestoreDBInstanceFromDBSnapshotMessage < Struct.new(
|
|
@@ -25975,7 +26375,8 @@ module Aws::RDS
|
|
|
25975
26375
|
:ca_certificate_identifier,
|
|
25976
26376
|
:engine_lifecycle_support,
|
|
25977
26377
|
:manage_master_user_password,
|
|
25978
|
-
:master_user_secret_kms_key_id
|
|
26378
|
+
:master_user_secret_kms_key_id,
|
|
26379
|
+
:additional_storage_volumes)
|
|
25979
26380
|
SENSITIVE = [:tde_credential_password]
|
|
25980
26381
|
include Aws::Structure
|
|
25981
26382
|
end
|
|
@@ -26620,6 +27021,14 @@ module Aws::RDS
|
|
|
26620
27021
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
26621
27022
|
# @return [String]
|
|
26622
27023
|
#
|
|
27024
|
+
# @!attribute [rw] additional_storage_volumes
|
|
27025
|
+
# A list of additional storage volumes to modify or delete for the DB
|
|
27026
|
+
# instance. You can modify or delete up to three additional storage
|
|
27027
|
+
# volumes using the names `rdsdbdata2`, `rdsdbdata3`, and
|
|
27028
|
+
# `rdsdbdata4`. Additional storage volumes are supported for RDS for
|
|
27029
|
+
# Oracle and RDS for SQL Server DB instances only.
|
|
27030
|
+
# @return [Array<Types::AdditionalStorageVolume>]
|
|
27031
|
+
#
|
|
26623
27032
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3Message AWS API Documentation
|
|
26624
27033
|
#
|
|
26625
27034
|
class RestoreDBInstanceFromS3Message < Struct.new(
|
|
@@ -26674,7 +27083,8 @@ module Aws::RDS
|
|
|
26674
27083
|
:master_user_secret_kms_key_id,
|
|
26675
27084
|
:dedicated_log_volume,
|
|
26676
27085
|
:ca_certificate_identifier,
|
|
26677
|
-
:engine_lifecycle_support
|
|
27086
|
+
:engine_lifecycle_support,
|
|
27087
|
+
:additional_storage_volumes)
|
|
26678
27088
|
SENSITIVE = [:master_user_password]
|
|
26679
27089
|
include Aws::Structure
|
|
26680
27090
|
end
|
|
@@ -27409,6 +27819,14 @@ module Aws::RDS
|
|
|
27409
27819
|
# each Amazon Web Services Region.
|
|
27410
27820
|
# @return [String]
|
|
27411
27821
|
#
|
|
27822
|
+
# @!attribute [rw] additional_storage_volumes
|
|
27823
|
+
# A list of additional storage volumes to restore to the DB instance.
|
|
27824
|
+
# You can restore up to three additional storage volumes using the
|
|
27825
|
+
# names `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`. Additional
|
|
27826
|
+
# storage volumes are supported for RDS for Oracle and RDS for SQL
|
|
27827
|
+
# Server DB instances only.
|
|
27828
|
+
# @return [Array<Types::AdditionalStorageVolume>]
|
|
27829
|
+
#
|
|
27412
27830
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
|
|
27413
27831
|
#
|
|
27414
27832
|
class RestoreDBInstanceToPointInTimeMessage < Struct.new(
|
|
@@ -27459,7 +27877,8 @@ module Aws::RDS
|
|
|
27459
27877
|
:ca_certificate_identifier,
|
|
27460
27878
|
:engine_lifecycle_support,
|
|
27461
27879
|
:manage_master_user_password,
|
|
27462
|
-
:master_user_secret_kms_key_id
|
|
27880
|
+
:master_user_secret_kms_key_id,
|
|
27881
|
+
:additional_storage_volumes)
|
|
27463
27882
|
SENSITIVE = [:tde_credential_password]
|
|
27464
27883
|
include Aws::Structure
|
|
27465
27884
|
end
|
|
@@ -29277,6 +29696,27 @@ module Aws::RDS
|
|
|
29277
29696
|
include Aws::Structure
|
|
29278
29697
|
end
|
|
29279
29698
|
|
|
29699
|
+
# Contains the valid options for additional storage volumes for a DB
|
|
29700
|
+
# instance.
|
|
29701
|
+
#
|
|
29702
|
+
# @!attribute [rw] supports_additional_storage_volumes
|
|
29703
|
+
# Indicates whether the DB instance supports additional storage
|
|
29704
|
+
# volumes.
|
|
29705
|
+
# @return [Boolean]
|
|
29706
|
+
#
|
|
29707
|
+
# @!attribute [rw] volumes
|
|
29708
|
+
# The valid additional storage volume options for the DB instance.
|
|
29709
|
+
# @return [Array<Types::ValidVolumeOptions>]
|
|
29710
|
+
#
|
|
29711
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ValidAdditionalStorageOptions AWS API Documentation
|
|
29712
|
+
#
|
|
29713
|
+
class ValidAdditionalStorageOptions < Struct.new(
|
|
29714
|
+
:supports_additional_storage_volumes,
|
|
29715
|
+
:volumes)
|
|
29716
|
+
SENSITIVE = []
|
|
29717
|
+
include Aws::Structure
|
|
29718
|
+
end
|
|
29719
|
+
|
|
29280
29720
|
# Information about valid modifications that you can make to your DB
|
|
29281
29721
|
# instance. Contains the result of a successful call to the
|
|
29282
29722
|
# `DescribeValidDBInstanceModifications` action. You can use this
|
|
@@ -29295,12 +29735,17 @@ module Aws::RDS
|
|
|
29295
29735
|
# volume (DLV).
|
|
29296
29736
|
# @return [Boolean]
|
|
29297
29737
|
#
|
|
29738
|
+
# @!attribute [rw] additional_storage
|
|
29739
|
+
# The valid additional storage options for the DB instance.
|
|
29740
|
+
# @return [Types::ValidAdditionalStorageOptions]
|
|
29741
|
+
#
|
|
29298
29742
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ValidDBInstanceModificationsMessage AWS API Documentation
|
|
29299
29743
|
#
|
|
29300
29744
|
class ValidDBInstanceModificationsMessage < Struct.new(
|
|
29301
29745
|
:storage,
|
|
29302
29746
|
:valid_processor_features,
|
|
29303
|
-
:supports_dedicated_log_volume
|
|
29747
|
+
:supports_dedicated_log_volume,
|
|
29748
|
+
:additional_storage)
|
|
29304
29749
|
SENSITIVE = []
|
|
29305
29750
|
include Aws::Structure
|
|
29306
29751
|
end
|
|
@@ -29358,6 +29803,25 @@ module Aws::RDS
|
|
|
29358
29803
|
include Aws::Structure
|
|
29359
29804
|
end
|
|
29360
29805
|
|
|
29806
|
+
# Contains the valid options for an additional storage volume.
|
|
29807
|
+
#
|
|
29808
|
+
# @!attribute [rw] volume_name
|
|
29809
|
+
# The name of the additional storage volume.
|
|
29810
|
+
# @return [String]
|
|
29811
|
+
#
|
|
29812
|
+
# @!attribute [rw] storage
|
|
29813
|
+
# The valid storage options for the additional storage volume.
|
|
29814
|
+
# @return [Array<Types::ValidStorageOptions>]
|
|
29815
|
+
#
|
|
29816
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ValidVolumeOptions AWS API Documentation
|
|
29817
|
+
#
|
|
29818
|
+
class ValidVolumeOptions < Struct.new(
|
|
29819
|
+
:volume_name,
|
|
29820
|
+
:storage)
|
|
29821
|
+
SENSITIVE = []
|
|
29822
|
+
include Aws::Structure
|
|
29823
|
+
end
|
|
29824
|
+
|
|
29361
29825
|
# The operation violates VPC encryption control settings. Make sure that
|
|
29362
29826
|
# your DB instance type supports the Nitro encryption-in-transit
|
|
29363
29827
|
# capability, or modify your VPC's encryption controls to not enforce
|