aws-sdk-rds 1.300.0 → 1.302.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +740 -12
- data/lib/aws-sdk-rds/client_api.rb +108 -0
- data/lib/aws-sdk-rds/db_cluster.rb +38 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +19 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +16 -0
- data/lib/aws-sdk-rds/db_instance.rb +177 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +43 -0
- data/lib/aws-sdk-rds/resource.rb +56 -0
- data/lib/aws-sdk-rds/types.rb +689 -35
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +205 -10
- data/sig/db_cluster.rbs +23 -1
- data/sig/db_cluster_snapshot.rbs +12 -1
- data/sig/db_engine_version.rbs +6 -0
- data/sig/db_instance.rbs +106 -4
- data/sig/db_snapshot.rbs +25 -1
- data/sig/resource.rbs +33 -1
- data/sig/types.rbs +97 -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
|
|
@@ -3176,6 +3391,16 @@ module Aws::RDS
|
|
|
3176
3391
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
3177
3392
|
# @return [String]
|
|
3178
3393
|
#
|
|
3394
|
+
# @!attribute [rw] tag_specifications
|
|
3395
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
3396
|
+
#
|
|
3397
|
+
# Valid Values:
|
|
3398
|
+
#
|
|
3399
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
3400
|
+
#
|
|
3401
|
+
# ^
|
|
3402
|
+
# @return [Array<Types::TagSpecification>]
|
|
3403
|
+
#
|
|
3179
3404
|
# @!attribute [rw] master_user_authentication_type
|
|
3180
3405
|
# Specifies the authentication type for the master user. With IAM
|
|
3181
3406
|
# master user authentication, you can configure the master DB user
|
|
@@ -3258,6 +3483,7 @@ module Aws::RDS
|
|
|
3258
3483
|
:master_user_secret_kms_key_id,
|
|
3259
3484
|
:ca_certificate_identifier,
|
|
3260
3485
|
:engine_lifecycle_support,
|
|
3486
|
+
:tag_specifications,
|
|
3261
3487
|
:master_user_authentication_type,
|
|
3262
3488
|
:source_region)
|
|
3263
3489
|
SENSITIVE = [:master_user_password, :pre_signed_url]
|
|
@@ -3790,6 +4016,8 @@ module Aws::RDS
|
|
|
3790
4016
|
#
|
|
3791
4017
|
# * `postgres`
|
|
3792
4018
|
#
|
|
4019
|
+
# * `sqlserver-dev-ee`
|
|
4020
|
+
#
|
|
3793
4021
|
# * `sqlserver-ee`
|
|
3794
4022
|
#
|
|
3795
4023
|
# * `sqlserver-se`
|
|
@@ -4841,6 +5069,16 @@ module Aws::RDS
|
|
|
4841
5069
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
4842
5070
|
# @return [String]
|
|
4843
5071
|
#
|
|
5072
|
+
# @!attribute [rw] tag_specifications
|
|
5073
|
+
# Tags to assign to resources associated with the DB instance.
|
|
5074
|
+
#
|
|
5075
|
+
# Valid Values:
|
|
5076
|
+
#
|
|
5077
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
5078
|
+
#
|
|
5079
|
+
# ^
|
|
5080
|
+
# @return [Array<Types::TagSpecification>]
|
|
5081
|
+
#
|
|
4844
5082
|
# @!attribute [rw] master_user_authentication_type
|
|
4845
5083
|
# Specifies the authentication type for the master user. With IAM
|
|
4846
5084
|
# master user authentication, you can configure the master DB user
|
|
@@ -4857,6 +5095,14 @@ module Aws::RDS
|
|
|
4857
5095
|
# PostgreSQL engines.
|
|
4858
5096
|
# @return [String]
|
|
4859
5097
|
#
|
|
5098
|
+
# @!attribute [rw] additional_storage_volumes
|
|
5099
|
+
# A list of additional storage volumes to create for the DB instance.
|
|
5100
|
+
# You can create up to three additional storage volumes using the
|
|
5101
|
+
# names `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`. Additional
|
|
5102
|
+
# storage volumes are supported for RDS for Oracle and RDS for SQL
|
|
5103
|
+
# Server DB instances only.
|
|
5104
|
+
# @return [Array<Types::AdditionalStorageVolume>]
|
|
5105
|
+
#
|
|
4860
5106
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
|
4861
5107
|
#
|
|
4862
5108
|
class CreateDBInstanceMessage < Struct.new(
|
|
@@ -4924,7 +5170,9 @@ module Aws::RDS
|
|
|
4924
5170
|
:multi_tenant,
|
|
4925
5171
|
:dedicated_log_volume,
|
|
4926
5172
|
:engine_lifecycle_support,
|
|
4927
|
-
:
|
|
5173
|
+
:tag_specifications,
|
|
5174
|
+
:master_user_authentication_type,
|
|
5175
|
+
:additional_storage_volumes)
|
|
4928
5176
|
SENSITIVE = [:master_user_password, :tde_credential_password]
|
|
4929
5177
|
include Aws::Structure
|
|
4930
5178
|
end
|
|
@@ -5712,6 +5960,24 @@ module Aws::RDS
|
|
|
5712
5960
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
|
5713
5961
|
# @return [String]
|
|
5714
5962
|
#
|
|
5963
|
+
# @!attribute [rw] tag_specifications
|
|
5964
|
+
# Tags to assign to resources associated with the DB instance.
|
|
5965
|
+
#
|
|
5966
|
+
# Valid Values:
|
|
5967
|
+
#
|
|
5968
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
5969
|
+
#
|
|
5970
|
+
# ^
|
|
5971
|
+
# @return [Array<Types::TagSpecification>]
|
|
5972
|
+
#
|
|
5973
|
+
# @!attribute [rw] additional_storage_volumes
|
|
5974
|
+
# A list of additional storage volumes to create for the DB instance.
|
|
5975
|
+
# You can create up to three additional storage volumes using the
|
|
5976
|
+
# names `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`. Additional
|
|
5977
|
+
# storage volumes are supported for RDS for Oracle and RDS for SQL
|
|
5978
|
+
# Server DB instances only.
|
|
5979
|
+
# @return [Array<Types::AdditionalStorageVolume>]
|
|
5980
|
+
#
|
|
5715
5981
|
# @!attribute [rw] source_region
|
|
5716
5982
|
# The source region of the snapshot. This is only needed when the
|
|
5717
5983
|
# shapshot is encrypted and in a different region.
|
|
@@ -5767,6 +6033,8 @@ module Aws::RDS
|
|
|
5767
6033
|
:dedicated_log_volume,
|
|
5768
6034
|
:upgrade_storage_config,
|
|
5769
6035
|
:ca_certificate_identifier,
|
|
6036
|
+
:tag_specifications,
|
|
6037
|
+
:additional_storage_volumes,
|
|
5770
6038
|
:source_region)
|
|
5771
6039
|
SENSITIVE = [:pre_signed_url]
|
|
5772
6040
|
include Aws::Structure
|
|
@@ -7903,6 +8171,19 @@ module Aws::RDS
|
|
|
7903
8171
|
# Services Backup.
|
|
7904
8172
|
# @return [String]
|
|
7905
8173
|
#
|
|
8174
|
+
# @!attribute [rw] tag_list
|
|
8175
|
+
# A list of tags.
|
|
8176
|
+
#
|
|
8177
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
|
8178
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
|
8179
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
|
8180
|
+
#
|
|
8181
|
+
#
|
|
8182
|
+
#
|
|
8183
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
|
8184
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
8185
|
+
# @return [Array<Types::Tag>]
|
|
8186
|
+
#
|
|
7906
8187
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterAutomatedBackup AWS API Documentation
|
|
7907
8188
|
#
|
|
7908
8189
|
class DBClusterAutomatedBackup < Struct.new(
|
|
@@ -7930,7 +8211,8 @@ module Aws::RDS
|
|
|
7930
8211
|
:storage_type,
|
|
7931
8212
|
:iops,
|
|
7932
8213
|
:storage_throughput,
|
|
7933
|
-
:aws_backup_recovery_point_arn
|
|
8214
|
+
:aws_backup_recovery_point_arn,
|
|
8215
|
+
:tag_list)
|
|
7934
8216
|
SENSITIVE = []
|
|
7935
8217
|
include Aws::Structure
|
|
7936
8218
|
end
|
|
@@ -8997,6 +9279,18 @@ module Aws::RDS
|
|
|
8997
9279
|
# features.
|
|
8998
9280
|
# @return [Types::ServerlessV2FeaturesSupport]
|
|
8999
9281
|
#
|
|
9282
|
+
# @!attribute [rw] database_installation_files
|
|
9283
|
+
# The database installation files (ISO and EXE) uploaded to Amazon S3
|
|
9284
|
+
# for your database engine version to import to Amazon RDS. Required
|
|
9285
|
+
# for `sqlserver-dev-ee`.
|
|
9286
|
+
# @return [Array<String>]
|
|
9287
|
+
#
|
|
9288
|
+
# @!attribute [rw] failure_reason
|
|
9289
|
+
# The reason that the custom engine version creation for
|
|
9290
|
+
# `sqlserver-dev-ee` failed with an `incompatible-installation-media`
|
|
9291
|
+
# status.
|
|
9292
|
+
# @return [String]
|
|
9293
|
+
#
|
|
9000
9294
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBEngineVersion AWS API Documentation
|
|
9001
9295
|
#
|
|
9002
9296
|
class DBEngineVersion < Struct.new(
|
|
@@ -9034,7 +9328,9 @@ module Aws::RDS
|
|
|
9034
9328
|
:supported_ca_certificate_identifiers,
|
|
9035
9329
|
:supports_local_write_forwarding,
|
|
9036
9330
|
:supports_integrations,
|
|
9037
|
-
:serverless_v2_features_support
|
|
9331
|
+
:serverless_v2_features_support,
|
|
9332
|
+
:database_installation_files,
|
|
9333
|
+
:failure_reason)
|
|
9038
9334
|
SENSITIVE = []
|
|
9039
9335
|
include Aws::Structure
|
|
9040
9336
|
end
|
|
@@ -9702,6 +9998,18 @@ module Aws::RDS
|
|
|
9702
9998
|
# For more information, see CreateDBInstance.
|
|
9703
9999
|
# @return [String]
|
|
9704
10000
|
#
|
|
10001
|
+
# @!attribute [rw] additional_storage_volumes
|
|
10002
|
+
# The additional storage volumes associated with the DB instance. RDS
|
|
10003
|
+
# supports additional storage volumes for RDS for Oracle and RDS for
|
|
10004
|
+
# SQL Server.
|
|
10005
|
+
# @return [Array<Types::AdditionalStorageVolumeOutput>]
|
|
10006
|
+
#
|
|
10007
|
+
# @!attribute [rw] storage_volume_status
|
|
10008
|
+
# The detailed status information for storage volumes associated with
|
|
10009
|
+
# the DB instance. This information helps identify which specific
|
|
10010
|
+
# volume is causing the instance to be in a storage-full state.
|
|
10011
|
+
# @return [String]
|
|
10012
|
+
#
|
|
9705
10013
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
|
9706
10014
|
#
|
|
9707
10015
|
class DBInstance < Struct.new(
|
|
@@ -9792,7 +10100,9 @@ module Aws::RDS
|
|
|
9792
10100
|
:multi_tenant,
|
|
9793
10101
|
:dedicated_log_volume,
|
|
9794
10102
|
:is_storage_config_upgrade_available,
|
|
9795
|
-
:engine_lifecycle_support
|
|
10103
|
+
:engine_lifecycle_support,
|
|
10104
|
+
:additional_storage_volumes,
|
|
10105
|
+
:storage_volume_status)
|
|
9796
10106
|
SENSITIVE = []
|
|
9797
10107
|
include Aws::Structure
|
|
9798
10108
|
end
|
|
@@ -9830,7 +10140,7 @@ module Aws::RDS
|
|
|
9830
10140
|
# @return [Types::RestoreWindow]
|
|
9831
10141
|
#
|
|
9832
10142
|
# @!attribute [rw] allocated_storage
|
|
9833
|
-
# The allocated storage size for the
|
|
10143
|
+
# The allocated storage size for the automated backup in gibibytes
|
|
9834
10144
|
# (GiB).
|
|
9835
10145
|
# @return [Integer]
|
|
9836
10146
|
#
|
|
@@ -9962,11 +10272,30 @@ module Aws::RDS
|
|
|
9962
10272
|
# Services Backup.
|
|
9963
10273
|
# @return [String]
|
|
9964
10274
|
#
|
|
10275
|
+
# @!attribute [rw] tag_list
|
|
10276
|
+
# A list of tags.
|
|
10277
|
+
#
|
|
10278
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
|
10279
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
|
10280
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
|
10281
|
+
#
|
|
10282
|
+
#
|
|
10283
|
+
#
|
|
10284
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
|
10285
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
10286
|
+
# @return [Array<Types::Tag>]
|
|
10287
|
+
#
|
|
9965
10288
|
# @!attribute [rw] dedicated_log_volume
|
|
9966
10289
|
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
|
9967
10290
|
# enabled.
|
|
9968
10291
|
# @return [Boolean]
|
|
9969
10292
|
#
|
|
10293
|
+
# @!attribute [rw] additional_storage_volumes
|
|
10294
|
+
# The additional storage volumes associated with the automated backup.
|
|
10295
|
+
#
|
|
10296
|
+
# Valid Values: `GP3 | IO2`
|
|
10297
|
+
# @return [Array<Types::AdditionalStorageVolume>]
|
|
10298
|
+
#
|
|
9970
10299
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstanceAutomatedBackup AWS API Documentation
|
|
9971
10300
|
#
|
|
9972
10301
|
class DBInstanceAutomatedBackup < Struct.new(
|
|
@@ -10000,7 +10329,9 @@ module Aws::RDS
|
|
|
10000
10329
|
:backup_target,
|
|
10001
10330
|
:multi_tenant,
|
|
10002
10331
|
:aws_backup_recovery_point_arn,
|
|
10003
|
-
:
|
|
10332
|
+
:tag_list,
|
|
10333
|
+
:dedicated_log_volume,
|
|
10334
|
+
:additional_storage_volumes)
|
|
10004
10335
|
SENSITIVE = []
|
|
10005
10336
|
include Aws::Structure
|
|
10006
10337
|
end
|
|
@@ -11451,6 +11782,12 @@ module Aws::RDS
|
|
|
11451
11782
|
# a Dedicated Local Zone.
|
|
11452
11783
|
# @return [String]
|
|
11453
11784
|
#
|
|
11785
|
+
# @!attribute [rw] additional_storage_volumes
|
|
11786
|
+
# The additional storage volumes associated with the DB snapshot. RDS
|
|
11787
|
+
# supports additional storage volumes for RDS for Oracle and RDS for
|
|
11788
|
+
# SQL Server.
|
|
11789
|
+
# @return [Array<Types::AdditionalStorageVolume>]
|
|
11790
|
+
#
|
|
11454
11791
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
|
|
11455
11792
|
#
|
|
11456
11793
|
class DBSnapshot < Struct.new(
|
|
@@ -11490,7 +11827,8 @@ module Aws::RDS
|
|
|
11490
11827
|
:db_system_id,
|
|
11491
11828
|
:multi_tenant,
|
|
11492
11829
|
:dedicated_log_volume,
|
|
11493
|
-
:snapshot_availability_zone
|
|
11830
|
+
:snapshot_availability_zone,
|
|
11831
|
+
:additional_storage_volumes)
|
|
11494
11832
|
SENSITIVE = []
|
|
11495
11833
|
include Aws::Structure
|
|
11496
11834
|
end
|
|
@@ -11888,8 +12226,9 @@ module Aws::RDS
|
|
|
11888
12226
|
end
|
|
11889
12227
|
|
|
11890
12228
|
# @!attribute [rw] engine
|
|
11891
|
-
# The database engine.
|
|
11892
|
-
#
|
|
12229
|
+
# The database engine.
|
|
12230
|
+
#
|
|
12231
|
+
# RDS Custom for Oracle supports the following values:
|
|
11893
12232
|
#
|
|
11894
12233
|
# * `custom-oracle-ee`
|
|
11895
12234
|
#
|
|
@@ -11898,6 +12237,18 @@ module Aws::RDS
|
|
|
11898
12237
|
# * `custom-oracle-se2`
|
|
11899
12238
|
#
|
|
11900
12239
|
# * `custom-oracle-se2-cdb`
|
|
12240
|
+
#
|
|
12241
|
+
# RDS Custom for SQL Server supports the following values:
|
|
12242
|
+
#
|
|
12243
|
+
# * `custom-sqlserver-ee`
|
|
12244
|
+
#
|
|
12245
|
+
# * `custom-sqlserver-se`
|
|
12246
|
+
#
|
|
12247
|
+
# * `ccustom-sqlserver-web`
|
|
12248
|
+
#
|
|
12249
|
+
# * `custom-sqlserver-dev`
|
|
12250
|
+
#
|
|
12251
|
+
# RDS for SQL Server supports only `sqlserver-dev-ee`.
|
|
11901
12252
|
# @return [String]
|
|
11902
12253
|
#
|
|
11903
12254
|
# @!attribute [rw] engine_version
|
|
@@ -17635,6 +17986,66 @@ module Aws::RDS
|
|
|
17635
17986
|
include Aws::Structure
|
|
17636
17987
|
end
|
|
17637
17988
|
|
|
17989
|
+
# Contains details about the modification of an additional storage
|
|
17990
|
+
# volume.
|
|
17991
|
+
#
|
|
17992
|
+
# @!attribute [rw] volume_name
|
|
17993
|
+
# The name of the additional storage volume that you want to modify.
|
|
17994
|
+
#
|
|
17995
|
+
# Valid Values: `RDSDBDATA2 | RDSDBDATA3 | RDSDBDATA4`
|
|
17996
|
+
# @return [String]
|
|
17997
|
+
#
|
|
17998
|
+
# @!attribute [rw] allocated_storage
|
|
17999
|
+
# The amount of storage allocated for the additional storage volume,
|
|
18000
|
+
# in gibibytes (GiB). The minimum is 20 GiB. The maximum is 65,536 GiB
|
|
18001
|
+
# (64 TiB).
|
|
18002
|
+
# @return [Integer]
|
|
18003
|
+
#
|
|
18004
|
+
# @!attribute [rw] iops
|
|
18005
|
+
# The number of I/O operations per second (IOPS) provisioned for the
|
|
18006
|
+
# additional storage volume. This setting is only supported for
|
|
18007
|
+
# Provisioned IOPS SSD (`io1` and `io2`) storage types.
|
|
18008
|
+
# @return [Integer]
|
|
18009
|
+
#
|
|
18010
|
+
# @!attribute [rw] max_allocated_storage
|
|
18011
|
+
# The upper limit in gibibytes (GiB) to which RDS can automatically
|
|
18012
|
+
# scale the storage of the additional storage volume. You must provide
|
|
18013
|
+
# a value greater than or equal to `AllocatedStorage`.
|
|
18014
|
+
# @return [Integer]
|
|
18015
|
+
#
|
|
18016
|
+
# @!attribute [rw] storage_throughput
|
|
18017
|
+
# The storage throughput value for the additional storage volume, in
|
|
18018
|
+
# mebibytes per second (MiBps). This setting applies only to the
|
|
18019
|
+
# General Purpose SSD (`gp3`) storage type.
|
|
18020
|
+
# @return [Integer]
|
|
18021
|
+
#
|
|
18022
|
+
# @!attribute [rw] storage_type
|
|
18023
|
+
# The new storage type for the additional storage volume.
|
|
18024
|
+
#
|
|
18025
|
+
# Valid Values: `GP3 | IO2`
|
|
18026
|
+
# @return [String]
|
|
18027
|
+
#
|
|
18028
|
+
# @!attribute [rw] set_for_delete
|
|
18029
|
+
# Indicates whether to delete the additional storage volume. The value
|
|
18030
|
+
# `true` schedules the volume for deletion. You can delete an
|
|
18031
|
+
# additional storage volume only when it doesn't contain database
|
|
18032
|
+
# files or other data.
|
|
18033
|
+
# @return [Boolean]
|
|
18034
|
+
#
|
|
18035
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyAdditionalStorageVolume AWS API Documentation
|
|
18036
|
+
#
|
|
18037
|
+
class ModifyAdditionalStorageVolume < Struct.new(
|
|
18038
|
+
:volume_name,
|
|
18039
|
+
:allocated_storage,
|
|
18040
|
+
:iops,
|
|
18041
|
+
:max_allocated_storage,
|
|
18042
|
+
:storage_throughput,
|
|
18043
|
+
:storage_type,
|
|
18044
|
+
:set_for_delete)
|
|
18045
|
+
SENSITIVE = []
|
|
18046
|
+
include Aws::Structure
|
|
18047
|
+
end
|
|
18048
|
+
|
|
17638
18049
|
# @!attribute [rw] certificate_identifier
|
|
17639
18050
|
# The new default certificate identifier to override the current one
|
|
17640
18051
|
# with.
|
|
@@ -17737,8 +18148,9 @@ module Aws::RDS
|
|
|
17737
18148
|
end
|
|
17738
18149
|
|
|
17739
18150
|
# @!attribute [rw] engine
|
|
17740
|
-
# The database engine.
|
|
17741
|
-
#
|
|
18151
|
+
# The database engine.
|
|
18152
|
+
#
|
|
18153
|
+
# RDS Custom for Oracle supports the following values:
|
|
17742
18154
|
#
|
|
17743
18155
|
# * `custom-oracle-ee`
|
|
17744
18156
|
#
|
|
@@ -17747,6 +18159,18 @@ module Aws::RDS
|
|
|
17747
18159
|
# * `custom-oracle-se2`
|
|
17748
18160
|
#
|
|
17749
18161
|
# * `custom-oracle-se2-cdb`
|
|
18162
|
+
#
|
|
18163
|
+
# RDS Custom for SQL Server supports the following values:
|
|
18164
|
+
#
|
|
18165
|
+
# * `custom-sqlserver-ee`
|
|
18166
|
+
#
|
|
18167
|
+
# * `custom-sqlserver-se`
|
|
18168
|
+
#
|
|
18169
|
+
# * `ccustom-sqlserver-web`
|
|
18170
|
+
#
|
|
18171
|
+
# * `custom-sqlserver-dev`
|
|
18172
|
+
#
|
|
18173
|
+
# RDS for SQL Server supports only `sqlserver-dev-ee`.
|
|
17750
18174
|
# @return [String]
|
|
17751
18175
|
#
|
|
17752
18176
|
# @!attribute [rw] engine_version
|
|
@@ -20048,6 +20472,16 @@ module Aws::RDS
|
|
|
20048
20472
|
# `--option-group-name`.
|
|
20049
20473
|
# @return [String]
|
|
20050
20474
|
#
|
|
20475
|
+
# @!attribute [rw] tag_specifications
|
|
20476
|
+
# Tags to assign to resources associated with the DB instance.
|
|
20477
|
+
#
|
|
20478
|
+
# Valid Values:
|
|
20479
|
+
#
|
|
20480
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
20481
|
+
#
|
|
20482
|
+
# ^
|
|
20483
|
+
# @return [Array<Types::TagSpecification>]
|
|
20484
|
+
#
|
|
20051
20485
|
# @!attribute [rw] master_user_authentication_type
|
|
20052
20486
|
# Specifies the authentication type for the master user. With IAM
|
|
20053
20487
|
# master user authentication, you can change the master DB user to use
|
|
@@ -20064,6 +20498,13 @@ module Aws::RDS
|
|
|
20064
20498
|
# PostgreSQL engines.
|
|
20065
20499
|
# @return [String]
|
|
20066
20500
|
#
|
|
20501
|
+
# @!attribute [rw] additional_storage_volumes
|
|
20502
|
+
# A list of additional storage volumes to modify or delete for the DB
|
|
20503
|
+
# instance. You can create up to 3 additional storage volumes.
|
|
20504
|
+
# Additional storage volumes are supported for RDS for Oracle and RDS
|
|
20505
|
+
# for SQL Server DB instances only.
|
|
20506
|
+
# @return [Array<Types::ModifyAdditionalStorageVolume>]
|
|
20507
|
+
#
|
|
20067
20508
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
|
20068
20509
|
#
|
|
20069
20510
|
class ModifyDBInstanceMessage < Struct.new(
|
|
@@ -20128,7 +20569,9 @@ module Aws::RDS
|
|
|
20128
20569
|
:multi_tenant,
|
|
20129
20570
|
:dedicated_log_volume,
|
|
20130
20571
|
:engine,
|
|
20131
|
-
:
|
|
20572
|
+
:tag_specifications,
|
|
20573
|
+
:master_user_authentication_type,
|
|
20574
|
+
:additional_storage_volumes)
|
|
20132
20575
|
SENSITIVE = [:master_user_password, :tde_credential_password]
|
|
20133
20576
|
include Aws::Structure
|
|
20134
20577
|
end
|
|
@@ -21761,6 +22204,16 @@ module Aws::RDS
|
|
|
21761
22204
|
# Indicates whether a DB instance supports HTTP endpoints.
|
|
21762
22205
|
# @return [Boolean]
|
|
21763
22206
|
#
|
|
22207
|
+
# @!attribute [rw] supports_additional_storage_volumes
|
|
22208
|
+
# Indicates whether the DB instance class supports additional storage
|
|
22209
|
+
# volumes.
|
|
22210
|
+
# @return [Boolean]
|
|
22211
|
+
#
|
|
22212
|
+
# @!attribute [rw] available_additional_storage_volumes_options
|
|
22213
|
+
# The available options for additional storage volumes for the DB
|
|
22214
|
+
# instance class.
|
|
22215
|
+
# @return [Array<Types::AvailableAdditionalStorageVolumesOption>]
|
|
22216
|
+
#
|
|
21764
22217
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OrderableDBInstanceOption AWS API Documentation
|
|
21765
22218
|
#
|
|
21766
22219
|
class OrderableDBInstanceOption < Struct.new(
|
|
@@ -21800,7 +22253,9 @@ module Aws::RDS
|
|
|
21800
22253
|
:supported_network_types,
|
|
21801
22254
|
:supports_clusters,
|
|
21802
22255
|
:supports_dedicated_log_volume,
|
|
21803
|
-
:supports_http_endpoint
|
|
22256
|
+
:supports_http_endpoint,
|
|
22257
|
+
:supports_additional_storage_volumes,
|
|
22258
|
+
:available_additional_storage_volumes_options)
|
|
21804
22259
|
SENSITIVE = []
|
|
21805
22260
|
include Aws::Structure
|
|
21806
22261
|
end
|
|
@@ -22163,6 +22618,11 @@ module Aws::RDS
|
|
|
22163
22618
|
# The database engine of the DB instance.
|
|
22164
22619
|
# @return [String]
|
|
22165
22620
|
#
|
|
22621
|
+
# @!attribute [rw] additional_storage_volumes
|
|
22622
|
+
# The additional storage volume modifications that are pending for the
|
|
22623
|
+
# DB instance.
|
|
22624
|
+
# @return [Array<Types::AdditionalStorageVolume>]
|
|
22625
|
+
#
|
|
22166
22626
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PendingModifiedValues AWS API Documentation
|
|
22167
22627
|
#
|
|
22168
22628
|
class PendingModifiedValues < Struct.new(
|
|
@@ -22187,7 +22647,8 @@ module Aws::RDS
|
|
|
22187
22647
|
:multi_tenant,
|
|
22188
22648
|
:iam_database_authentication_enabled,
|
|
22189
22649
|
:dedicated_log_volume,
|
|
22190
|
-
:engine
|
|
22650
|
+
:engine,
|
|
22651
|
+
:additional_storage_volumes)
|
|
22191
22652
|
SENSITIVE = [:master_user_password]
|
|
22192
22653
|
include Aws::Structure
|
|
22193
22654
|
end
|
|
@@ -22369,21 +22830,24 @@ module Aws::RDS
|
|
|
22369
22830
|
# If you call `DescribeDBInstances`, `ProcessorFeature` returns non-null
|
|
22370
22831
|
# values only if the following conditions are met:
|
|
22371
22832
|
#
|
|
22372
|
-
# * You are accessing an Oracle DB instance.
|
|
22833
|
+
# * You are accessing an Oracle or SQL Server DB instance.
|
|
22373
22834
|
#
|
|
22374
|
-
# * Your Oracle DB instance class supports configuring the
|
|
22375
|
-
# cores and threads per core.
|
|
22835
|
+
# * Your Oracle or SQL Server DB instance class supports configuring the
|
|
22836
|
+
# number of CPU cores and threads per core.
|
|
22376
22837
|
#
|
|
22377
22838
|
# * The current number CPU cores and threads is set to a non-default
|
|
22378
22839
|
# value.
|
|
22379
22840
|
#
|
|
22380
22841
|
# For more information, see [ Configuring the processor for a DB
|
|
22381
|
-
# instance class in RDS for Oracle][1]
|
|
22382
|
-
#
|
|
22842
|
+
# instance class in RDS for Oracle][1], [ Optimizing your RDS for SQL
|
|
22843
|
+
# Server CPU][2], and [DB instance classes][3] in the <i>Amazon RDS User
|
|
22844
|
+
# Guide. </i>
|
|
22383
22845
|
#
|
|
22384
22846
|
#
|
|
22385
22847
|
#
|
|
22386
22848
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html#USER_ConfigureProcessor
|
|
22849
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/SQLServer.Concepts.General.OptimizeCPU.html
|
|
22850
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
|
22387
22851
|
#
|
|
22388
22852
|
# @!attribute [rw] name
|
|
22389
22853
|
# The name of the processor feature. Valid names are `coreCount` and
|
|
@@ -22516,12 +22980,23 @@ module Aws::RDS
|
|
|
22516
22980
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
|
|
22517
22981
|
# @return [String]
|
|
22518
22982
|
#
|
|
22983
|
+
# @!attribute [rw] tag_specifications
|
|
22984
|
+
# Tags to assign to resources associated with the DB instance.
|
|
22985
|
+
#
|
|
22986
|
+
# Valid Values:
|
|
22987
|
+
#
|
|
22988
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
22989
|
+
#
|
|
22990
|
+
# ^
|
|
22991
|
+
# @return [Array<Types::TagSpecification>]
|
|
22992
|
+
#
|
|
22519
22993
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaMessage AWS API Documentation
|
|
22520
22994
|
#
|
|
22521
22995
|
class PromoteReadReplicaMessage < Struct.new(
|
|
22522
22996
|
:db_instance_identifier,
|
|
22523
22997
|
:backup_retention_period,
|
|
22524
|
-
:preferred_backup_window
|
|
22998
|
+
:preferred_backup_window,
|
|
22999
|
+
:tag_specifications)
|
|
22525
23000
|
SENSITIVE = []
|
|
22526
23001
|
include Aws::Structure
|
|
22527
23002
|
end
|
|
@@ -23906,6 +24381,16 @@ module Aws::RDS
|
|
|
23906
24381
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
23907
24382
|
# @return [String]
|
|
23908
24383
|
#
|
|
24384
|
+
# @!attribute [rw] tag_specifications
|
|
24385
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
24386
|
+
#
|
|
24387
|
+
# Valid Values:
|
|
24388
|
+
#
|
|
24389
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
24390
|
+
#
|
|
24391
|
+
# ^
|
|
24392
|
+
# @return [Array<Types::TagSpecification>]
|
|
24393
|
+
#
|
|
23909
24394
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3Message AWS API Documentation
|
|
23910
24395
|
#
|
|
23911
24396
|
class RestoreDBClusterFromS3Message < Struct.new(
|
|
@@ -23945,7 +24430,8 @@ module Aws::RDS
|
|
|
23945
24430
|
:serverless_v2_scaling_configuration,
|
|
23946
24431
|
:manage_master_user_password,
|
|
23947
24432
|
:master_user_secret_kms_key_id,
|
|
23948
|
-
:engine_lifecycle_support
|
|
24433
|
+
:engine_lifecycle_support,
|
|
24434
|
+
:tag_specifications)
|
|
23949
24435
|
SENSITIVE = [:master_user_password]
|
|
23950
24436
|
include Aws::Structure
|
|
23951
24437
|
end
|
|
@@ -24548,6 +25034,16 @@ module Aws::RDS
|
|
|
24548
25034
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
24549
25035
|
# @return [String]
|
|
24550
25036
|
#
|
|
25037
|
+
# @!attribute [rw] tag_specifications
|
|
25038
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
25039
|
+
#
|
|
25040
|
+
# Valid Values:
|
|
25041
|
+
#
|
|
25042
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
25043
|
+
#
|
|
25044
|
+
# ^
|
|
25045
|
+
# @return [Array<Types::TagSpecification>]
|
|
25046
|
+
#
|
|
24551
25047
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
|
24552
25048
|
#
|
|
24553
25049
|
class RestoreDBClusterFromSnapshotMessage < Struct.new(
|
|
@@ -24585,7 +25081,8 @@ module Aws::RDS
|
|
|
24585
25081
|
:enable_performance_insights,
|
|
24586
25082
|
:performance_insights_kms_key_id,
|
|
24587
25083
|
:performance_insights_retention_period,
|
|
24588
|
-
:engine_lifecycle_support
|
|
25084
|
+
:engine_lifecycle_support,
|
|
25085
|
+
:tag_specifications)
|
|
24589
25086
|
SENSITIVE = []
|
|
24590
25087
|
include Aws::Structure
|
|
24591
25088
|
end
|
|
@@ -25165,6 +25662,16 @@ module Aws::RDS
|
|
|
25165
25662
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
25166
25663
|
# @return [String]
|
|
25167
25664
|
#
|
|
25665
|
+
# @!attribute [rw] tag_specifications
|
|
25666
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
25667
|
+
#
|
|
25668
|
+
# Valid Values:
|
|
25669
|
+
#
|
|
25670
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
25671
|
+
#
|
|
25672
|
+
# ^
|
|
25673
|
+
# @return [Array<Types::TagSpecification>]
|
|
25674
|
+
#
|
|
25168
25675
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
|
25169
25676
|
#
|
|
25170
25677
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
|
@@ -25202,7 +25709,8 @@ module Aws::RDS
|
|
|
25202
25709
|
:enable_performance_insights,
|
|
25203
25710
|
:performance_insights_kms_key_id,
|
|
25204
25711
|
:performance_insights_retention_period,
|
|
25205
|
-
:engine_lifecycle_support
|
|
25712
|
+
:engine_lifecycle_support,
|
|
25713
|
+
:tag_specifications)
|
|
25206
25714
|
SENSITIVE = []
|
|
25207
25715
|
include Aws::Structure
|
|
25208
25716
|
end
|
|
@@ -25887,6 +26395,16 @@ module Aws::RDS
|
|
|
25887
26395
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
25888
26396
|
# @return [String]
|
|
25889
26397
|
#
|
|
26398
|
+
# @!attribute [rw] tag_specifications
|
|
26399
|
+
# Tags to assign to resources associated with the DB instance.
|
|
26400
|
+
#
|
|
26401
|
+
# Valid Values:
|
|
26402
|
+
#
|
|
26403
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
26404
|
+
#
|
|
26405
|
+
# ^
|
|
26406
|
+
# @return [Array<Types::TagSpecification>]
|
|
26407
|
+
#
|
|
25890
26408
|
# @!attribute [rw] manage_master_user_password
|
|
25891
26409
|
# Specifies whether to manage the master user password with Amazon Web
|
|
25892
26410
|
# Services Secrets Manager in the restored DB instance.
|
|
@@ -25929,6 +26447,14 @@ module Aws::RDS
|
|
|
25929
26447
|
# each Amazon Web Services Region.
|
|
25930
26448
|
# @return [String]
|
|
25931
26449
|
#
|
|
26450
|
+
# @!attribute [rw] additional_storage_volumes
|
|
26451
|
+
# A list of additional storage volumes to create for the DB instance.
|
|
26452
|
+
# You can create up to three additional storage volumes using the
|
|
26453
|
+
# names `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`. Additional
|
|
26454
|
+
# storage volumes are supported for RDS for Oracle and RDS for SQL
|
|
26455
|
+
# Server DB instances only.
|
|
26456
|
+
# @return [Array<Types::AdditionalStorageVolume>]
|
|
26457
|
+
#
|
|
25932
26458
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshotMessage AWS API Documentation
|
|
25933
26459
|
#
|
|
25934
26460
|
class RestoreDBInstanceFromDBSnapshotMessage < Struct.new(
|
|
@@ -25974,8 +26500,10 @@ module Aws::RDS
|
|
|
25974
26500
|
:dedicated_log_volume,
|
|
25975
26501
|
:ca_certificate_identifier,
|
|
25976
26502
|
:engine_lifecycle_support,
|
|
26503
|
+
:tag_specifications,
|
|
25977
26504
|
:manage_master_user_password,
|
|
25978
|
-
:master_user_secret_kms_key_id
|
|
26505
|
+
:master_user_secret_kms_key_id,
|
|
26506
|
+
:additional_storage_volumes)
|
|
25979
26507
|
SENSITIVE = [:tde_credential_password]
|
|
25980
26508
|
include Aws::Structure
|
|
25981
26509
|
end
|
|
@@ -26620,6 +27148,24 @@ module Aws::RDS
|
|
|
26620
27148
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
26621
27149
|
# @return [String]
|
|
26622
27150
|
#
|
|
27151
|
+
# @!attribute [rw] tag_specifications
|
|
27152
|
+
# Tags to assign to resources associated with the DB instance.
|
|
27153
|
+
#
|
|
27154
|
+
# Valid Values:
|
|
27155
|
+
#
|
|
27156
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
27157
|
+
#
|
|
27158
|
+
# ^
|
|
27159
|
+
# @return [Array<Types::TagSpecification>]
|
|
27160
|
+
#
|
|
27161
|
+
# @!attribute [rw] additional_storage_volumes
|
|
27162
|
+
# A list of additional storage volumes to modify or delete for the DB
|
|
27163
|
+
# instance. You can modify or delete up to three additional storage
|
|
27164
|
+
# volumes using the names `rdsdbdata2`, `rdsdbdata3`, and
|
|
27165
|
+
# `rdsdbdata4`. Additional storage volumes are supported for RDS for
|
|
27166
|
+
# Oracle and RDS for SQL Server DB instances only.
|
|
27167
|
+
# @return [Array<Types::AdditionalStorageVolume>]
|
|
27168
|
+
#
|
|
26623
27169
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3Message AWS API Documentation
|
|
26624
27170
|
#
|
|
26625
27171
|
class RestoreDBInstanceFromS3Message < Struct.new(
|
|
@@ -26674,7 +27220,9 @@ module Aws::RDS
|
|
|
26674
27220
|
:master_user_secret_kms_key_id,
|
|
26675
27221
|
:dedicated_log_volume,
|
|
26676
27222
|
:ca_certificate_identifier,
|
|
26677
|
-
:engine_lifecycle_support
|
|
27223
|
+
:engine_lifecycle_support,
|
|
27224
|
+
:tag_specifications,
|
|
27225
|
+
:additional_storage_volumes)
|
|
26678
27226
|
SENSITIVE = [:master_user_password]
|
|
26679
27227
|
include Aws::Structure
|
|
26680
27228
|
end
|
|
@@ -27367,6 +27915,16 @@ module Aws::RDS
|
|
|
27367
27915
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
27368
27916
|
# @return [String]
|
|
27369
27917
|
#
|
|
27918
|
+
# @!attribute [rw] tag_specifications
|
|
27919
|
+
# Tags to assign to resources associated with the DB instance.
|
|
27920
|
+
#
|
|
27921
|
+
# Valid Values:
|
|
27922
|
+
#
|
|
27923
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
27924
|
+
#
|
|
27925
|
+
# ^
|
|
27926
|
+
# @return [Array<Types::TagSpecification>]
|
|
27927
|
+
#
|
|
27370
27928
|
# @!attribute [rw] manage_master_user_password
|
|
27371
27929
|
# Specifies whether to manage the master user password with Amazon Web
|
|
27372
27930
|
# Services Secrets Manager in the restored DB instance.
|
|
@@ -27409,6 +27967,14 @@ module Aws::RDS
|
|
|
27409
27967
|
# each Amazon Web Services Region.
|
|
27410
27968
|
# @return [String]
|
|
27411
27969
|
#
|
|
27970
|
+
# @!attribute [rw] additional_storage_volumes
|
|
27971
|
+
# A list of additional storage volumes to restore to the DB instance.
|
|
27972
|
+
# You can restore up to three additional storage volumes using the
|
|
27973
|
+
# names `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`. Additional
|
|
27974
|
+
# storage volumes are supported for RDS for Oracle and RDS for SQL
|
|
27975
|
+
# Server DB instances only.
|
|
27976
|
+
# @return [Array<Types::AdditionalStorageVolume>]
|
|
27977
|
+
#
|
|
27412
27978
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
|
|
27413
27979
|
#
|
|
27414
27980
|
class RestoreDBInstanceToPointInTimeMessage < Struct.new(
|
|
@@ -27458,8 +28024,10 @@ module Aws::RDS
|
|
|
27458
28024
|
:dedicated_log_volume,
|
|
27459
28025
|
:ca_certificate_identifier,
|
|
27460
28026
|
:engine_lifecycle_support,
|
|
28027
|
+
:tag_specifications,
|
|
27461
28028
|
:manage_master_user_password,
|
|
27462
|
-
:master_user_secret_kms_key_id
|
|
28029
|
+
:master_user_secret_kms_key_id,
|
|
28030
|
+
:additional_storage_volumes)
|
|
27463
28031
|
SENSITIVE = [:tde_credential_password]
|
|
27464
28032
|
include Aws::Structure
|
|
27465
28033
|
end
|
|
@@ -28166,6 +28734,10 @@ module Aws::RDS
|
|
|
28166
28734
|
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
|
28167
28735
|
# @return [String]
|
|
28168
28736
|
#
|
|
28737
|
+
# @!attribute [rw] tags
|
|
28738
|
+
# A list of tags to associate with the replicated automated backups.
|
|
28739
|
+
# @return [Array<Types::Tag>]
|
|
28740
|
+
#
|
|
28169
28741
|
# @!attribute [rw] source_region
|
|
28170
28742
|
# The source region of the snapshot. This is only needed when the
|
|
28171
28743
|
# shapshot is encrypted and in a different region.
|
|
@@ -28178,6 +28750,7 @@ module Aws::RDS
|
|
|
28178
28750
|
:backup_retention_period,
|
|
28179
28751
|
:kms_key_id,
|
|
28180
28752
|
:pre_signed_url,
|
|
28753
|
+
:tags,
|
|
28181
28754
|
:source_region)
|
|
28182
28755
|
SENSITIVE = [:pre_signed_url]
|
|
28183
28756
|
include Aws::Structure
|
|
@@ -28871,6 +29444,42 @@ module Aws::RDS
|
|
|
28871
29444
|
include Aws::Structure
|
|
28872
29445
|
end
|
|
28873
29446
|
|
|
29447
|
+
# The tags to apply to resources when creating or modifying a DB
|
|
29448
|
+
# instance or DB cluster. When you specify a tag, you must specify the
|
|
29449
|
+
# resource type to tag, otherwise the request will fail.
|
|
29450
|
+
#
|
|
29451
|
+
# @!attribute [rw] resource_type
|
|
29452
|
+
# The type of resource to tag on creation.
|
|
29453
|
+
#
|
|
29454
|
+
# Valid Values:
|
|
29455
|
+
#
|
|
29456
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
29457
|
+
#
|
|
29458
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
29459
|
+
# @return [String]
|
|
29460
|
+
#
|
|
29461
|
+
# @!attribute [rw] tags
|
|
29462
|
+
# A list of tags.
|
|
29463
|
+
#
|
|
29464
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
|
29465
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
|
29466
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
|
29467
|
+
#
|
|
29468
|
+
#
|
|
29469
|
+
#
|
|
29470
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
|
29471
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
29472
|
+
# @return [Array<Types::Tag>]
|
|
29473
|
+
#
|
|
29474
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/TagSpecification AWS API Documentation
|
|
29475
|
+
#
|
|
29476
|
+
class TagSpecification < Struct.new(
|
|
29477
|
+
:resource_type,
|
|
29478
|
+
:tags)
|
|
29479
|
+
SENSITIVE = []
|
|
29480
|
+
include Aws::Structure
|
|
29481
|
+
end
|
|
29482
|
+
|
|
28874
29483
|
# Information about the connection health of an RDS Proxy target.
|
|
28875
29484
|
#
|
|
28876
29485
|
# @!attribute [rw] state
|
|
@@ -29277,6 +29886,27 @@ module Aws::RDS
|
|
|
29277
29886
|
include Aws::Structure
|
|
29278
29887
|
end
|
|
29279
29888
|
|
|
29889
|
+
# Contains the valid options for additional storage volumes for a DB
|
|
29890
|
+
# instance.
|
|
29891
|
+
#
|
|
29892
|
+
# @!attribute [rw] supports_additional_storage_volumes
|
|
29893
|
+
# Indicates whether the DB instance supports additional storage
|
|
29894
|
+
# volumes.
|
|
29895
|
+
# @return [Boolean]
|
|
29896
|
+
#
|
|
29897
|
+
# @!attribute [rw] volumes
|
|
29898
|
+
# The valid additional storage volume options for the DB instance.
|
|
29899
|
+
# @return [Array<Types::ValidVolumeOptions>]
|
|
29900
|
+
#
|
|
29901
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ValidAdditionalStorageOptions AWS API Documentation
|
|
29902
|
+
#
|
|
29903
|
+
class ValidAdditionalStorageOptions < Struct.new(
|
|
29904
|
+
:supports_additional_storage_volumes,
|
|
29905
|
+
:volumes)
|
|
29906
|
+
SENSITIVE = []
|
|
29907
|
+
include Aws::Structure
|
|
29908
|
+
end
|
|
29909
|
+
|
|
29280
29910
|
# Information about valid modifications that you can make to your DB
|
|
29281
29911
|
# instance. Contains the result of a successful call to the
|
|
29282
29912
|
# `DescribeValidDBInstanceModifications` action. You can use this
|
|
@@ -29295,12 +29925,17 @@ module Aws::RDS
|
|
|
29295
29925
|
# volume (DLV).
|
|
29296
29926
|
# @return [Boolean]
|
|
29297
29927
|
#
|
|
29928
|
+
# @!attribute [rw] additional_storage
|
|
29929
|
+
# The valid additional storage options for the DB instance.
|
|
29930
|
+
# @return [Types::ValidAdditionalStorageOptions]
|
|
29931
|
+
#
|
|
29298
29932
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ValidDBInstanceModificationsMessage AWS API Documentation
|
|
29299
29933
|
#
|
|
29300
29934
|
class ValidDBInstanceModificationsMessage < Struct.new(
|
|
29301
29935
|
:storage,
|
|
29302
29936
|
:valid_processor_features,
|
|
29303
|
-
:supports_dedicated_log_volume
|
|
29937
|
+
:supports_dedicated_log_volume,
|
|
29938
|
+
:additional_storage)
|
|
29304
29939
|
SENSITIVE = []
|
|
29305
29940
|
include Aws::Structure
|
|
29306
29941
|
end
|
|
@@ -29358,6 +29993,25 @@ module Aws::RDS
|
|
|
29358
29993
|
include Aws::Structure
|
|
29359
29994
|
end
|
|
29360
29995
|
|
|
29996
|
+
# Contains the valid options for an additional storage volume.
|
|
29997
|
+
#
|
|
29998
|
+
# @!attribute [rw] volume_name
|
|
29999
|
+
# The name of the additional storage volume.
|
|
30000
|
+
# @return [String]
|
|
30001
|
+
#
|
|
30002
|
+
# @!attribute [rw] storage
|
|
30003
|
+
# The valid storage options for the additional storage volume.
|
|
30004
|
+
# @return [Array<Types::ValidStorageOptions>]
|
|
30005
|
+
#
|
|
30006
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ValidVolumeOptions AWS API Documentation
|
|
30007
|
+
#
|
|
30008
|
+
class ValidVolumeOptions < Struct.new(
|
|
30009
|
+
:volume_name,
|
|
30010
|
+
:storage)
|
|
30011
|
+
SENSITIVE = []
|
|
30012
|
+
include Aws::Structure
|
|
30013
|
+
end
|
|
30014
|
+
|
|
29361
30015
|
# The operation violates VPC encryption control settings. Make sure that
|
|
29362
30016
|
# your DB instance type supports the Nitro encryption-in-transit
|
|
29363
30017
|
# capability, or modify your VPC's encryption controls to not enforce
|