aws-sdk-rds 1.296.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 +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +560 -72
- data/lib/aws-sdk-rds/client_api.rb +104 -0
- data/lib/aws-sdk-rds/db_cluster.rb +30 -25
- data/lib/aws-sdk-rds/db_engine_version.rb +16 -0
- data/lib/aws-sdk-rds/db_instance.rb +110 -23
- data/lib/aws-sdk-rds/db_snapshot.rb +24 -0
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/resource.rb +47 -47
- data/lib/aws-sdk-rds/types.rb +559 -76
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +75 -7
- data/sig/db_cluster.rbs +5 -2
- data/sig/db_engine_version.rbs +6 -0
- data/sig/db_instance.rbs +53 -3
- data/sig/db_snapshot.rbs +14 -1
- data/sig/errors.rbs +2 -0
- data/sig/resource.rbs +12 -2
- data/sig/types.rbs +84 -2
- metadata +3 -3
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
|
|
@@ -2790,40 +3005,31 @@ module Aws::RDS
|
|
|
2790
3005
|
# @!attribute [rw] publicly_accessible
|
|
2791
3006
|
# Specifies whether the DB cluster is publicly accessible.
|
|
2792
3007
|
#
|
|
3008
|
+
# Valid for Cluster Type: Multi-AZ DB clusters only
|
|
3009
|
+
#
|
|
2793
3010
|
# When the DB cluster is publicly accessible and you connect from
|
|
2794
|
-
# outside of the DB cluster's virtual private cloud (VPC), its
|
|
2795
|
-
#
|
|
3011
|
+
# outside of the DB cluster's virtual private cloud (VPC), its domain
|
|
3012
|
+
# name system (DNS) endpoint resolves to the public IP address. When
|
|
2796
3013
|
# you connect from within the same VPC as the DB cluster, the endpoint
|
|
2797
3014
|
# resolves to the private IP address. Access to the DB cluster is
|
|
2798
|
-
#
|
|
2799
|
-
# access isn't permitted if the security group assigned to the DB
|
|
2800
|
-
# cluster doesn't permit it.
|
|
3015
|
+
# controlled by its security group settings.
|
|
2801
3016
|
#
|
|
2802
3017
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
|
2803
3018
|
# cluster with a DNS name that resolves to a private IP address.
|
|
2804
3019
|
#
|
|
2805
|
-
#
|
|
2806
|
-
#
|
|
2807
|
-
# Default: The default behavior varies depending on whether
|
|
2808
|
-
# `DBSubnetGroupName` is specified.
|
|
2809
|
-
#
|
|
2810
|
-
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
|
2811
|
-
# isn't specified, the following applies:
|
|
2812
|
-
#
|
|
2813
|
-
# * If the default VPC in the target Region doesn’t have an internet
|
|
2814
|
-
# gateway attached to it, the DB cluster is private.
|
|
3020
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
|
3021
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
|
2815
3022
|
#
|
|
2816
|
-
#
|
|
2817
|
-
#
|
|
3023
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults
|
|
3024
|
+
# to `true`.
|
|
2818
3025
|
#
|
|
2819
|
-
# If `
|
|
2820
|
-
#
|
|
3026
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
|
3027
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
|
3028
|
+
# case `PubliclyAccessible` defaults to `true`.
|
|
2821
3029
|
#
|
|
2822
|
-
#
|
|
2823
|
-
#
|
|
2824
|
-
#
|
|
2825
|
-
# * If the subnets are part of a VPC that has an internet gateway
|
|
2826
|
-
# attached to it, the DB cluster is public.
|
|
3030
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
|
3031
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
|
3032
|
+
# returns an error.
|
|
2827
3033
|
# @return [Boolean]
|
|
2828
3034
|
#
|
|
2829
3035
|
# @!attribute [rw] auto_minor_version_upgrade
|
|
@@ -3799,6 +4005,8 @@ module Aws::RDS
|
|
|
3799
4005
|
#
|
|
3800
4006
|
# * `postgres`
|
|
3801
4007
|
#
|
|
4008
|
+
# * `sqlserver-dev-ee`
|
|
4009
|
+
#
|
|
3802
4010
|
# * `sqlserver-ee`
|
|
3803
4011
|
#
|
|
3804
4012
|
# * `sqlserver-se`
|
|
@@ -4235,36 +4443,27 @@ module Aws::RDS
|
|
|
4235
4443
|
#
|
|
4236
4444
|
# When the DB instance is publicly accessible and you connect from
|
|
4237
4445
|
# outside of the DB instance's virtual private cloud (VPC), its
|
|
4238
|
-
#
|
|
4446
|
+
# domain name system (DNS) endpoint resolves to the public IP address.
|
|
4239
4447
|
# When you connect from within the same VPC as the DB instance, the
|
|
4240
4448
|
# endpoint resolves to the private IP address. Access to the DB
|
|
4241
|
-
# instance is
|
|
4242
|
-
# That public access is not permitted if the security group assigned
|
|
4243
|
-
# to the DB instance doesn't permit it.
|
|
4449
|
+
# instance is controlled by its security group settings.
|
|
4244
4450
|
#
|
|
4245
4451
|
# When the DB instance isn't publicly accessible, it is an internal
|
|
4246
4452
|
# DB instance with a DNS name that resolves to a private IP address.
|
|
4247
4453
|
#
|
|
4248
|
-
#
|
|
4249
|
-
# `
|
|
4454
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
|
4455
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
|
4250
4456
|
#
|
|
4251
|
-
# If `
|
|
4252
|
-
#
|
|
4457
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults
|
|
4458
|
+
# to `false` for Aurora instances and `true` for non-Aurora instances.
|
|
4253
4459
|
#
|
|
4254
|
-
#
|
|
4255
|
-
#
|
|
4256
|
-
#
|
|
4257
|
-
# * If the default VPC in the target Region has an internet gateway
|
|
4258
|
-
# attached to it, the DB instance is public.
|
|
4460
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
|
4461
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
|
4462
|
+
# case `PubliclyAccessible` defaults to `true`.
|
|
4259
4463
|
#
|
|
4260
|
-
# If `
|
|
4261
|
-
#
|
|
4262
|
-
#
|
|
4263
|
-
# * If the subnets are part of a VPC that doesn’t have an internet
|
|
4264
|
-
# gateway attached to it, the DB instance is private.
|
|
4265
|
-
#
|
|
4266
|
-
# * If the subnets are part of a VPC that has an internet gateway
|
|
4267
|
-
# attached to it, the DB instance is public.
|
|
4464
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
|
4465
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
|
4466
|
+
# returns an error.
|
|
4268
4467
|
# @return [Boolean]
|
|
4269
4468
|
#
|
|
4270
4469
|
# @!attribute [rw] tags
|
|
@@ -4875,6 +5074,14 @@ module Aws::RDS
|
|
|
4875
5074
|
# PostgreSQL engines.
|
|
4876
5075
|
# @return [String]
|
|
4877
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
|
+
#
|
|
4878
5085
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
|
4879
5086
|
#
|
|
4880
5087
|
class CreateDBInstanceMessage < Struct.new(
|
|
@@ -4942,7 +5149,8 @@ module Aws::RDS
|
|
|
4942
5149
|
:multi_tenant,
|
|
4943
5150
|
:dedicated_log_volume,
|
|
4944
5151
|
:engine_lifecycle_support,
|
|
4945
|
-
:master_user_authentication_type
|
|
5152
|
+
:master_user_authentication_type,
|
|
5153
|
+
:additional_storage_volumes)
|
|
4946
5154
|
SENSITIVE = [:master_user_password, :tde_credential_password]
|
|
4947
5155
|
include Aws::Structure
|
|
4948
5156
|
end
|
|
@@ -5730,6 +5938,14 @@ module Aws::RDS
|
|
|
5730
5938
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
|
5731
5939
|
# @return [String]
|
|
5732
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
|
+
#
|
|
5733
5949
|
# @!attribute [rw] source_region
|
|
5734
5950
|
# The source region of the snapshot. This is only needed when the
|
|
5735
5951
|
# shapshot is encrypted and in a different region.
|
|
@@ -5785,6 +6001,7 @@ module Aws::RDS
|
|
|
5785
6001
|
:dedicated_log_volume,
|
|
5786
6002
|
:upgrade_storage_config,
|
|
5787
6003
|
:ca_certificate_identifier,
|
|
6004
|
+
:additional_storage_volumes,
|
|
5788
6005
|
:source_region)
|
|
5789
6006
|
SENSITIVE = [:pre_signed_url]
|
|
5790
6007
|
include Aws::Structure
|
|
@@ -7197,6 +7414,19 @@ module Aws::RDS
|
|
|
7197
7414
|
# Universal Coordinated Time (UTC).
|
|
7198
7415
|
# @return [String]
|
|
7199
7416
|
#
|
|
7417
|
+
# @!attribute [rw] upgrade_rollout_order
|
|
7418
|
+
# This data type represents the order in which the clusters are
|
|
7419
|
+
# upgraded.
|
|
7420
|
+
#
|
|
7421
|
+
# * \[first\] - Typically used for development or testing
|
|
7422
|
+
# environments.
|
|
7423
|
+
#
|
|
7424
|
+
# * \[second\] - Default order for resources not specifically
|
|
7425
|
+
# configured.
|
|
7426
|
+
#
|
|
7427
|
+
# * \[last\] - Usually reserved for production environments.
|
|
7428
|
+
# @return [String]
|
|
7429
|
+
#
|
|
7200
7430
|
# @!attribute [rw] replication_source_identifier
|
|
7201
7431
|
# The identifier of the source DB cluster if this DB cluster is a read
|
|
7202
7432
|
# replica.
|
|
@@ -7698,6 +7928,7 @@ module Aws::RDS
|
|
|
7698
7928
|
:db_cluster_option_group_memberships,
|
|
7699
7929
|
:preferred_backup_window,
|
|
7700
7930
|
:preferred_maintenance_window,
|
|
7931
|
+
:upgrade_rollout_order,
|
|
7701
7932
|
:replication_source_identifier,
|
|
7702
7933
|
:read_replica_identifiers,
|
|
7703
7934
|
:status_infos,
|
|
@@ -9001,6 +9232,18 @@ module Aws::RDS
|
|
|
9001
9232
|
# features.
|
|
9002
9233
|
# @return [Types::ServerlessV2FeaturesSupport]
|
|
9003
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
|
+
#
|
|
9004
9247
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBEngineVersion AWS API Documentation
|
|
9005
9248
|
#
|
|
9006
9249
|
class DBEngineVersion < Struct.new(
|
|
@@ -9038,7 +9281,9 @@ module Aws::RDS
|
|
|
9038
9281
|
:supported_ca_certificate_identifiers,
|
|
9039
9282
|
:supports_local_write_forwarding,
|
|
9040
9283
|
:supports_integrations,
|
|
9041
|
-
:serverless_v2_features_support
|
|
9284
|
+
:serverless_v2_features_support,
|
|
9285
|
+
:database_installation_files,
|
|
9286
|
+
:failure_reason)
|
|
9042
9287
|
SENSITIVE = []
|
|
9043
9288
|
include Aws::Structure
|
|
9044
9289
|
end
|
|
@@ -9166,6 +9411,19 @@ module Aws::RDS
|
|
|
9166
9411
|
# Universal Coordinated Time (UTC).
|
|
9167
9412
|
# @return [String]
|
|
9168
9413
|
#
|
|
9414
|
+
# @!attribute [rw] upgrade_rollout_order
|
|
9415
|
+
# This data type represents the order in which the instances are
|
|
9416
|
+
# upgraded.
|
|
9417
|
+
#
|
|
9418
|
+
# * \[first\] - Typically used for development or testing
|
|
9419
|
+
# environments.
|
|
9420
|
+
#
|
|
9421
|
+
# * \[second\] - Default order for resources not specifically
|
|
9422
|
+
# configured.
|
|
9423
|
+
#
|
|
9424
|
+
# * \[last\] - Usually reserved for production environments.
|
|
9425
|
+
# @return [String]
|
|
9426
|
+
#
|
|
9169
9427
|
# @!attribute [rw] pending_modified_values
|
|
9170
9428
|
# Information about pending changes to the DB instance. This
|
|
9171
9429
|
# information is returned only when there are pending changes.
|
|
@@ -9693,6 +9951,18 @@ module Aws::RDS
|
|
|
9693
9951
|
# For more information, see CreateDBInstance.
|
|
9694
9952
|
# @return [String]
|
|
9695
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
|
+
#
|
|
9696
9966
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
|
9697
9967
|
#
|
|
9698
9968
|
class DBInstance < Struct.new(
|
|
@@ -9713,6 +9983,7 @@ module Aws::RDS
|
|
|
9713
9983
|
:availability_zone,
|
|
9714
9984
|
:db_subnet_group,
|
|
9715
9985
|
:preferred_maintenance_window,
|
|
9986
|
+
:upgrade_rollout_order,
|
|
9716
9987
|
:pending_modified_values,
|
|
9717
9988
|
:latest_restorable_time,
|
|
9718
9989
|
:multi_az,
|
|
@@ -9782,7 +10053,9 @@ module Aws::RDS
|
|
|
9782
10053
|
:multi_tenant,
|
|
9783
10054
|
:dedicated_log_volume,
|
|
9784
10055
|
:is_storage_config_upgrade_available,
|
|
9785
|
-
:engine_lifecycle_support
|
|
10056
|
+
:engine_lifecycle_support,
|
|
10057
|
+
:additional_storage_volumes,
|
|
10058
|
+
:storage_volume_status)
|
|
9786
10059
|
SENSITIVE = []
|
|
9787
10060
|
include Aws::Structure
|
|
9788
10061
|
end
|
|
@@ -9820,7 +10093,7 @@ module Aws::RDS
|
|
|
9820
10093
|
# @return [Types::RestoreWindow]
|
|
9821
10094
|
#
|
|
9822
10095
|
# @!attribute [rw] allocated_storage
|
|
9823
|
-
# The allocated storage size for the
|
|
10096
|
+
# The allocated storage size for the automated backup in gibibytes
|
|
9824
10097
|
# (GiB).
|
|
9825
10098
|
# @return [Integer]
|
|
9826
10099
|
#
|
|
@@ -9957,6 +10230,12 @@ module Aws::RDS
|
|
|
9957
10230
|
# enabled.
|
|
9958
10231
|
# @return [Boolean]
|
|
9959
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
|
+
#
|
|
9960
10239
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstanceAutomatedBackup AWS API Documentation
|
|
9961
10240
|
#
|
|
9962
10241
|
class DBInstanceAutomatedBackup < Struct.new(
|
|
@@ -9990,7 +10269,8 @@ module Aws::RDS
|
|
|
9990
10269
|
:backup_target,
|
|
9991
10270
|
:multi_tenant,
|
|
9992
10271
|
:aws_backup_recovery_point_arn,
|
|
9993
|
-
:dedicated_log_volume
|
|
10272
|
+
:dedicated_log_volume,
|
|
10273
|
+
:additional_storage_volumes)
|
|
9994
10274
|
SENSITIVE = []
|
|
9995
10275
|
include Aws::Structure
|
|
9996
10276
|
end
|
|
@@ -11441,6 +11721,12 @@ module Aws::RDS
|
|
|
11441
11721
|
# a Dedicated Local Zone.
|
|
11442
11722
|
# @return [String]
|
|
11443
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
|
+
#
|
|
11444
11730
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
|
|
11445
11731
|
#
|
|
11446
11732
|
class DBSnapshot < Struct.new(
|
|
@@ -11480,7 +11766,8 @@ module Aws::RDS
|
|
|
11480
11766
|
:db_system_id,
|
|
11481
11767
|
:multi_tenant,
|
|
11482
11768
|
:dedicated_log_volume,
|
|
11483
|
-
:snapshot_availability_zone
|
|
11769
|
+
:snapshot_availability_zone,
|
|
11770
|
+
:additional_storage_volumes)
|
|
11484
11771
|
SENSITIVE = []
|
|
11485
11772
|
include Aws::Structure
|
|
11486
11773
|
end
|
|
@@ -11878,8 +12165,9 @@ module Aws::RDS
|
|
|
11878
12165
|
end
|
|
11879
12166
|
|
|
11880
12167
|
# @!attribute [rw] engine
|
|
11881
|
-
# The database engine.
|
|
11882
|
-
#
|
|
12168
|
+
# The database engine.
|
|
12169
|
+
#
|
|
12170
|
+
# RDS Custom for Oracle supports the following values:
|
|
11883
12171
|
#
|
|
11884
12172
|
# * `custom-oracle-ee`
|
|
11885
12173
|
#
|
|
@@ -11888,6 +12176,18 @@ module Aws::RDS
|
|
|
11888
12176
|
# * `custom-oracle-se2`
|
|
11889
12177
|
#
|
|
11890
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`.
|
|
11891
12191
|
# @return [String]
|
|
11892
12192
|
#
|
|
11893
12193
|
# @!attribute [rw] engine_version
|
|
@@ -17625,6 +17925,66 @@ module Aws::RDS
|
|
|
17625
17925
|
include Aws::Structure
|
|
17626
17926
|
end
|
|
17627
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
|
+
|
|
17628
17988
|
# @!attribute [rw] certificate_identifier
|
|
17629
17989
|
# The new default certificate identifier to override the current one
|
|
17630
17990
|
# with.
|
|
@@ -17727,8 +18087,9 @@ module Aws::RDS
|
|
|
17727
18087
|
end
|
|
17728
18088
|
|
|
17729
18089
|
# @!attribute [rw] engine
|
|
17730
|
-
# The database engine.
|
|
17731
|
-
#
|
|
18090
|
+
# The database engine.
|
|
18091
|
+
#
|
|
18092
|
+
# RDS Custom for Oracle supports the following values:
|
|
17732
18093
|
#
|
|
17733
18094
|
# * `custom-oracle-ee`
|
|
17734
18095
|
#
|
|
@@ -17737,6 +18098,18 @@ module Aws::RDS
|
|
|
17737
18098
|
# * `custom-oracle-se2`
|
|
17738
18099
|
#
|
|
17739
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`.
|
|
17740
18113
|
# @return [String]
|
|
17741
18114
|
#
|
|
17742
18115
|
# @!attribute [rw] engine_version
|
|
@@ -19426,7 +19799,7 @@ module Aws::RDS
|
|
|
19426
19799
|
#
|
|
19427
19800
|
# * Must be in the distinguished name format.
|
|
19428
19801
|
#
|
|
19429
|
-
#
|
|
19802
|
+
# ^
|
|
19430
19803
|
#
|
|
19431
19804
|
# Example:
|
|
19432
19805
|
# `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
|
|
@@ -20054,6 +20427,13 @@ module Aws::RDS
|
|
|
20054
20427
|
# PostgreSQL engines.
|
|
20055
20428
|
# @return [String]
|
|
20056
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
|
+
#
|
|
20057
20437
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
|
20058
20438
|
#
|
|
20059
20439
|
class ModifyDBInstanceMessage < Struct.new(
|
|
@@ -20118,7 +20498,8 @@ module Aws::RDS
|
|
|
20118
20498
|
:multi_tenant,
|
|
20119
20499
|
:dedicated_log_volume,
|
|
20120
20500
|
:engine,
|
|
20121
|
-
:master_user_authentication_type
|
|
20501
|
+
:master_user_authentication_type,
|
|
20502
|
+
:additional_storage_volumes)
|
|
20122
20503
|
SENSITIVE = [:master_user_password, :tde_credential_password]
|
|
20123
20504
|
include Aws::Structure
|
|
20124
20505
|
end
|
|
@@ -21751,6 +22132,16 @@ module Aws::RDS
|
|
|
21751
22132
|
# Indicates whether a DB instance supports HTTP endpoints.
|
|
21752
22133
|
# @return [Boolean]
|
|
21753
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
|
+
#
|
|
21754
22145
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OrderableDBInstanceOption AWS API Documentation
|
|
21755
22146
|
#
|
|
21756
22147
|
class OrderableDBInstanceOption < Struct.new(
|
|
@@ -21790,7 +22181,9 @@ module Aws::RDS
|
|
|
21790
22181
|
:supported_network_types,
|
|
21791
22182
|
:supports_clusters,
|
|
21792
22183
|
:supports_dedicated_log_volume,
|
|
21793
|
-
:supports_http_endpoint
|
|
22184
|
+
:supports_http_endpoint,
|
|
22185
|
+
:supports_additional_storage_volumes,
|
|
22186
|
+
:available_additional_storage_volumes_options)
|
|
21794
22187
|
SENSITIVE = []
|
|
21795
22188
|
include Aws::Structure
|
|
21796
22189
|
end
|
|
@@ -22153,6 +22546,11 @@ module Aws::RDS
|
|
|
22153
22546
|
# The database engine of the DB instance.
|
|
22154
22547
|
# @return [String]
|
|
22155
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
|
+
#
|
|
22156
22554
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PendingModifiedValues AWS API Documentation
|
|
22157
22555
|
#
|
|
22158
22556
|
class PendingModifiedValues < Struct.new(
|
|
@@ -22177,7 +22575,8 @@ module Aws::RDS
|
|
|
22177
22575
|
:multi_tenant,
|
|
22178
22576
|
:iam_database_authentication_enabled,
|
|
22179
22577
|
:dedicated_log_volume,
|
|
22180
|
-
:engine
|
|
22578
|
+
:engine,
|
|
22579
|
+
:additional_storage_volumes)
|
|
22181
22580
|
SENSITIVE = [:master_user_password]
|
|
22182
22581
|
include Aws::Structure
|
|
22183
22582
|
end
|
|
@@ -22359,21 +22758,24 @@ module Aws::RDS
|
|
|
22359
22758
|
# If you call `DescribeDBInstances`, `ProcessorFeature` returns non-null
|
|
22360
22759
|
# values only if the following conditions are met:
|
|
22361
22760
|
#
|
|
22362
|
-
# * You are accessing an Oracle DB instance.
|
|
22761
|
+
# * You are accessing an Oracle or SQL Server DB instance.
|
|
22363
22762
|
#
|
|
22364
|
-
# * Your Oracle DB instance class supports configuring the
|
|
22365
|
-
# 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.
|
|
22366
22765
|
#
|
|
22367
22766
|
# * The current number CPU cores and threads is set to a non-default
|
|
22368
22767
|
# value.
|
|
22369
22768
|
#
|
|
22370
22769
|
# For more information, see [ Configuring the processor for a DB
|
|
22371
|
-
# instance class in RDS for Oracle][1]
|
|
22372
|
-
#
|
|
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>
|
|
22373
22773
|
#
|
|
22374
22774
|
#
|
|
22375
22775
|
#
|
|
22376
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
|
|
22377
22779
|
#
|
|
22378
22780
|
# @!attribute [rw] name
|
|
22379
22781
|
# The name of the processor feature. Valid names are `coreCount` and
|
|
@@ -25919,6 +26321,14 @@ module Aws::RDS
|
|
|
25919
26321
|
# each Amazon Web Services Region.
|
|
25920
26322
|
# @return [String]
|
|
25921
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
|
+
#
|
|
25922
26332
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshotMessage AWS API Documentation
|
|
25923
26333
|
#
|
|
25924
26334
|
class RestoreDBInstanceFromDBSnapshotMessage < Struct.new(
|
|
@@ -25965,7 +26375,8 @@ module Aws::RDS
|
|
|
25965
26375
|
:ca_certificate_identifier,
|
|
25966
26376
|
:engine_lifecycle_support,
|
|
25967
26377
|
:manage_master_user_password,
|
|
25968
|
-
:master_user_secret_kms_key_id
|
|
26378
|
+
:master_user_secret_kms_key_id,
|
|
26379
|
+
:additional_storage_volumes)
|
|
25969
26380
|
SENSITIVE = [:tde_credential_password]
|
|
25970
26381
|
include Aws::Structure
|
|
25971
26382
|
end
|
|
@@ -26610,6 +27021,14 @@ module Aws::RDS
|
|
|
26610
27021
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
26611
27022
|
# @return [String]
|
|
26612
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
|
+
#
|
|
26613
27032
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3Message AWS API Documentation
|
|
26614
27033
|
#
|
|
26615
27034
|
class RestoreDBInstanceFromS3Message < Struct.new(
|
|
@@ -26664,7 +27083,8 @@ module Aws::RDS
|
|
|
26664
27083
|
:master_user_secret_kms_key_id,
|
|
26665
27084
|
:dedicated_log_volume,
|
|
26666
27085
|
:ca_certificate_identifier,
|
|
26667
|
-
:engine_lifecycle_support
|
|
27086
|
+
:engine_lifecycle_support,
|
|
27087
|
+
:additional_storage_volumes)
|
|
26668
27088
|
SENSITIVE = [:master_user_password]
|
|
26669
27089
|
include Aws::Structure
|
|
26670
27090
|
end
|
|
@@ -27399,6 +27819,14 @@ module Aws::RDS
|
|
|
27399
27819
|
# each Amazon Web Services Region.
|
|
27400
27820
|
# @return [String]
|
|
27401
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
|
+
#
|
|
27402
27830
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
|
|
27403
27831
|
#
|
|
27404
27832
|
class RestoreDBInstanceToPointInTimeMessage < Struct.new(
|
|
@@ -27449,7 +27877,8 @@ module Aws::RDS
|
|
|
27449
27877
|
:ca_certificate_identifier,
|
|
27450
27878
|
:engine_lifecycle_support,
|
|
27451
27879
|
:manage_master_user_password,
|
|
27452
|
-
:master_user_secret_kms_key_id
|
|
27880
|
+
:master_user_secret_kms_key_id,
|
|
27881
|
+
:additional_storage_volumes)
|
|
27453
27882
|
SENSITIVE = [:tde_credential_password]
|
|
27454
27883
|
include Aws::Structure
|
|
27455
27884
|
end
|
|
@@ -29267,6 +29696,27 @@ module Aws::RDS
|
|
|
29267
29696
|
include Aws::Structure
|
|
29268
29697
|
end
|
|
29269
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
|
+
|
|
29270
29720
|
# Information about valid modifications that you can make to your DB
|
|
29271
29721
|
# instance. Contains the result of a successful call to the
|
|
29272
29722
|
# `DescribeValidDBInstanceModifications` action. You can use this
|
|
@@ -29285,12 +29735,17 @@ module Aws::RDS
|
|
|
29285
29735
|
# volume (DLV).
|
|
29286
29736
|
# @return [Boolean]
|
|
29287
29737
|
#
|
|
29738
|
+
# @!attribute [rw] additional_storage
|
|
29739
|
+
# The valid additional storage options for the DB instance.
|
|
29740
|
+
# @return [Types::ValidAdditionalStorageOptions]
|
|
29741
|
+
#
|
|
29288
29742
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ValidDBInstanceModificationsMessage AWS API Documentation
|
|
29289
29743
|
#
|
|
29290
29744
|
class ValidDBInstanceModificationsMessage < Struct.new(
|
|
29291
29745
|
:storage,
|
|
29292
29746
|
:valid_processor_features,
|
|
29293
|
-
:supports_dedicated_log_volume
|
|
29747
|
+
:supports_dedicated_log_volume,
|
|
29748
|
+
:additional_storage)
|
|
29294
29749
|
SENSITIVE = []
|
|
29295
29750
|
include Aws::Structure
|
|
29296
29751
|
end
|
|
@@ -29348,6 +29803,34 @@ module Aws::RDS
|
|
|
29348
29803
|
include Aws::Structure
|
|
29349
29804
|
end
|
|
29350
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
|
+
|
|
29825
|
+
# The operation violates VPC encryption control settings. Make sure that
|
|
29826
|
+
# your DB instance type supports the Nitro encryption-in-transit
|
|
29827
|
+
# capability, or modify your VPC's encryption controls to not enforce
|
|
29828
|
+
# encryption-in-transit.
|
|
29829
|
+
#
|
|
29830
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/VpcEncryptionControlViolationException AWS API Documentation
|
|
29831
|
+
#
|
|
29832
|
+
class VpcEncryptionControlViolationException < Aws::EmptyStructure; end
|
|
29833
|
+
|
|
29351
29834
|
# This data type is used as a response element for queries on VPC
|
|
29352
29835
|
# security group membership.
|
|
29353
29836
|
#
|