aws-sdk-rds 1.299.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.
@@ -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. RDS Custom for Oracle supports the following
2004
- # values:
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 CEV. The name format is 19.*customized\_string*.
2017
- # For example, a valid CEV name is `19.my_cev1`. This setting is
2018
- # required for RDS Custom for Oracle, but optional for Amazon RDS. The
2019
- # combination of `Engine` and `EngineVersion` is unique per customer
2020
- # per Region.
2218
+ # The name of your custom engine version (CEV).
2219
+ #
2220
+ # For RDS Custom for Oracle, the name format is
2221
+ # `19.*customized_string*`. For example, a valid CEV name is
2222
+ # `19.my_cev1`.
2223
+ #
2224
+ # For RDS for SQL Server and RDS Custom for SQL Server, the name
2225
+ # format is `major
2226
+ # engine_version*.*minor_engine_version*.*customized_string*`. For
2227
+ # example, a valid CEV name is `16.00.4215.2.my_cev1`.
2228
+ #
2229
+ # The CEV name is unique per customer per Amazon Web Services Regions.
2021
2230
  # @return [String]
2022
2231
  #
2023
2232
  # @!attribute [rw] database_installation_files_s3_bucket_name
@@ -2135,6 +2344,11 @@ module Aws::RDS
2135
2344
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
2136
2345
  # @return [Array<Types::Tag>]
2137
2346
  #
2347
+ # @!attribute [rw] database_installation_files
2348
+ # The database installation files (ISO and EXE) uploaded to Amazon S3
2349
+ # for your database engine version to import to Amazon RDS.
2350
+ # @return [Array<String>]
2351
+ #
2138
2352
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersionMessage AWS API Documentation
2139
2353
  #
2140
2354
  class CreateCustomDBEngineVersionMessage < Struct.new(
@@ -2148,7 +2362,8 @@ module Aws::RDS
2148
2362
  :use_aws_provided_latest_image,
2149
2363
  :description,
2150
2364
  :manifest,
2151
- :tags)
2365
+ :tags,
2366
+ :database_installation_files)
2152
2367
  SENSITIVE = []
2153
2368
  include Aws::Structure
2154
2369
  end
@@ -3790,6 +4005,8 @@ module Aws::RDS
3790
4005
  #
3791
4006
  # * `postgres`
3792
4007
  #
4008
+ # * `sqlserver-dev-ee`
4009
+ #
3793
4010
  # * `sqlserver-ee`
3794
4011
  #
3795
4012
  # * `sqlserver-se`
@@ -4857,6 +5074,14 @@ module Aws::RDS
4857
5074
  # PostgreSQL engines.
4858
5075
  # @return [String]
4859
5076
  #
5077
+ # @!attribute [rw] additional_storage_volumes
5078
+ # A list of additional storage volumes to create for the DB instance.
5079
+ # You can create up to three additional storage volumes using the
5080
+ # names `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`. Additional
5081
+ # storage volumes are supported for RDS for Oracle and RDS for SQL
5082
+ # Server DB instances only.
5083
+ # @return [Array<Types::AdditionalStorageVolume>]
5084
+ #
4860
5085
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
4861
5086
  #
4862
5087
  class CreateDBInstanceMessage < Struct.new(
@@ -4924,7 +5149,8 @@ module Aws::RDS
4924
5149
  :multi_tenant,
4925
5150
  :dedicated_log_volume,
4926
5151
  :engine_lifecycle_support,
4927
- :master_user_authentication_type)
5152
+ :master_user_authentication_type,
5153
+ :additional_storage_volumes)
4928
5154
  SENSITIVE = [:master_user_password, :tde_credential_password]
4929
5155
  include Aws::Structure
4930
5156
  end
@@ -5712,6 +5938,14 @@ module Aws::RDS
5712
5938
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
5713
5939
  # @return [String]
5714
5940
  #
5941
+ # @!attribute [rw] additional_storage_volumes
5942
+ # A list of additional storage volumes to create for the DB instance.
5943
+ # You can create up to three additional storage volumes using the
5944
+ # names `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`. Additional
5945
+ # storage volumes are supported for RDS for Oracle and RDS for SQL
5946
+ # Server DB instances only.
5947
+ # @return [Array<Types::AdditionalStorageVolume>]
5948
+ #
5715
5949
  # @!attribute [rw] source_region
5716
5950
  # The source region of the snapshot. This is only needed when the
5717
5951
  # shapshot is encrypted and in a different region.
@@ -5767,6 +6001,7 @@ module Aws::RDS
5767
6001
  :dedicated_log_volume,
5768
6002
  :upgrade_storage_config,
5769
6003
  :ca_certificate_identifier,
6004
+ :additional_storage_volumes,
5770
6005
  :source_region)
5771
6006
  SENSITIVE = [:pre_signed_url]
5772
6007
  include Aws::Structure
@@ -7179,6 +7414,19 @@ module Aws::RDS
7179
7414
  # Universal Coordinated Time (UTC).
7180
7415
  # @return [String]
7181
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
+ #
7182
7430
  # @!attribute [rw] replication_source_identifier
7183
7431
  # The identifier of the source DB cluster if this DB cluster is a read
7184
7432
  # replica.
@@ -7680,6 +7928,7 @@ module Aws::RDS
7680
7928
  :db_cluster_option_group_memberships,
7681
7929
  :preferred_backup_window,
7682
7930
  :preferred_maintenance_window,
7931
+ :upgrade_rollout_order,
7683
7932
  :replication_source_identifier,
7684
7933
  :read_replica_identifiers,
7685
7934
  :status_infos,
@@ -8983,6 +9232,18 @@ module Aws::RDS
8983
9232
  # features.
8984
9233
  # @return [Types::ServerlessV2FeaturesSupport]
8985
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
+ #
8986
9247
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBEngineVersion AWS API Documentation
8987
9248
  #
8988
9249
  class DBEngineVersion < Struct.new(
@@ -9020,7 +9281,9 @@ module Aws::RDS
9020
9281
  :supported_ca_certificate_identifiers,
9021
9282
  :supports_local_write_forwarding,
9022
9283
  :supports_integrations,
9023
- :serverless_v2_features_support)
9284
+ :serverless_v2_features_support,
9285
+ :database_installation_files,
9286
+ :failure_reason)
9024
9287
  SENSITIVE = []
9025
9288
  include Aws::Structure
9026
9289
  end
@@ -9148,6 +9411,19 @@ module Aws::RDS
9148
9411
  # Universal Coordinated Time (UTC).
9149
9412
  # @return [String]
9150
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
+ #
9151
9427
  # @!attribute [rw] pending_modified_values
9152
9428
  # Information about pending changes to the DB instance. This
9153
9429
  # information is returned only when there are pending changes.
@@ -9675,6 +9951,18 @@ module Aws::RDS
9675
9951
  # For more information, see CreateDBInstance.
9676
9952
  # @return [String]
9677
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
+ #
9678
9966
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
9679
9967
  #
9680
9968
  class DBInstance < Struct.new(
@@ -9695,6 +9983,7 @@ module Aws::RDS
9695
9983
  :availability_zone,
9696
9984
  :db_subnet_group,
9697
9985
  :preferred_maintenance_window,
9986
+ :upgrade_rollout_order,
9698
9987
  :pending_modified_values,
9699
9988
  :latest_restorable_time,
9700
9989
  :multi_az,
@@ -9764,7 +10053,9 @@ module Aws::RDS
9764
10053
  :multi_tenant,
9765
10054
  :dedicated_log_volume,
9766
10055
  :is_storage_config_upgrade_available,
9767
- :engine_lifecycle_support)
10056
+ :engine_lifecycle_support,
10057
+ :additional_storage_volumes,
10058
+ :storage_volume_status)
9768
10059
  SENSITIVE = []
9769
10060
  include Aws::Structure
9770
10061
  end
@@ -9802,7 +10093,7 @@ module Aws::RDS
9802
10093
  # @return [Types::RestoreWindow]
9803
10094
  #
9804
10095
  # @!attribute [rw] allocated_storage
9805
- # The allocated storage size for the the automated backup in gibibytes
10096
+ # The allocated storage size for the automated backup in gibibytes
9806
10097
  # (GiB).
9807
10098
  # @return [Integer]
9808
10099
  #
@@ -9939,6 +10230,12 @@ module Aws::RDS
9939
10230
  # enabled.
9940
10231
  # @return [Boolean]
9941
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
+ #
9942
10239
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstanceAutomatedBackup AWS API Documentation
9943
10240
  #
9944
10241
  class DBInstanceAutomatedBackup < Struct.new(
@@ -9972,7 +10269,8 @@ module Aws::RDS
9972
10269
  :backup_target,
9973
10270
  :multi_tenant,
9974
10271
  :aws_backup_recovery_point_arn,
9975
- :dedicated_log_volume)
10272
+ :dedicated_log_volume,
10273
+ :additional_storage_volumes)
9976
10274
  SENSITIVE = []
9977
10275
  include Aws::Structure
9978
10276
  end
@@ -11423,6 +11721,12 @@ module Aws::RDS
11423
11721
  # a Dedicated Local Zone.
11424
11722
  # @return [String]
11425
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
+ #
11426
11730
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
11427
11731
  #
11428
11732
  class DBSnapshot < Struct.new(
@@ -11462,7 +11766,8 @@ module Aws::RDS
11462
11766
  :db_system_id,
11463
11767
  :multi_tenant,
11464
11768
  :dedicated_log_volume,
11465
- :snapshot_availability_zone)
11769
+ :snapshot_availability_zone,
11770
+ :additional_storage_volumes)
11466
11771
  SENSITIVE = []
11467
11772
  include Aws::Structure
11468
11773
  end
@@ -11860,8 +12165,9 @@ module Aws::RDS
11860
12165
  end
11861
12166
 
11862
12167
  # @!attribute [rw] engine
11863
- # The database engine. RDS Custom for Oracle supports the following
11864
- # values:
12168
+ # The database engine.
12169
+ #
12170
+ # RDS Custom for Oracle supports the following values:
11865
12171
  #
11866
12172
  # * `custom-oracle-ee`
11867
12173
  #
@@ -11870,6 +12176,18 @@ module Aws::RDS
11870
12176
  # * `custom-oracle-se2`
11871
12177
  #
11872
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`.
11873
12191
  # @return [String]
11874
12192
  #
11875
12193
  # @!attribute [rw] engine_version
@@ -17607,6 +17925,66 @@ module Aws::RDS
17607
17925
  include Aws::Structure
17608
17926
  end
17609
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
+
17610
17988
  # @!attribute [rw] certificate_identifier
17611
17989
  # The new default certificate identifier to override the current one
17612
17990
  # with.
@@ -17709,8 +18087,9 @@ module Aws::RDS
17709
18087
  end
17710
18088
 
17711
18089
  # @!attribute [rw] engine
17712
- # The database engine. RDS Custom for Oracle supports the following
17713
- # values:
18090
+ # The database engine.
18091
+ #
18092
+ # RDS Custom for Oracle supports the following values:
17714
18093
  #
17715
18094
  # * `custom-oracle-ee`
17716
18095
  #
@@ -17719,6 +18098,18 @@ module Aws::RDS
17719
18098
  # * `custom-oracle-se2`
17720
18099
  #
17721
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`.
17722
18113
  # @return [String]
17723
18114
  #
17724
18115
  # @!attribute [rw] engine_version
@@ -20036,6 +20427,13 @@ module Aws::RDS
20036
20427
  # PostgreSQL engines.
20037
20428
  # @return [String]
20038
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
+ #
20039
20437
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
20040
20438
  #
20041
20439
  class ModifyDBInstanceMessage < Struct.new(
@@ -20100,7 +20498,8 @@ module Aws::RDS
20100
20498
  :multi_tenant,
20101
20499
  :dedicated_log_volume,
20102
20500
  :engine,
20103
- :master_user_authentication_type)
20501
+ :master_user_authentication_type,
20502
+ :additional_storage_volumes)
20104
20503
  SENSITIVE = [:master_user_password, :tde_credential_password]
20105
20504
  include Aws::Structure
20106
20505
  end
@@ -21733,6 +22132,16 @@ module Aws::RDS
21733
22132
  # Indicates whether a DB instance supports HTTP endpoints.
21734
22133
  # @return [Boolean]
21735
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
+ #
21736
22145
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OrderableDBInstanceOption AWS API Documentation
21737
22146
  #
21738
22147
  class OrderableDBInstanceOption < Struct.new(
@@ -21772,7 +22181,9 @@ module Aws::RDS
21772
22181
  :supported_network_types,
21773
22182
  :supports_clusters,
21774
22183
  :supports_dedicated_log_volume,
21775
- :supports_http_endpoint)
22184
+ :supports_http_endpoint,
22185
+ :supports_additional_storage_volumes,
22186
+ :available_additional_storage_volumes_options)
21776
22187
  SENSITIVE = []
21777
22188
  include Aws::Structure
21778
22189
  end
@@ -22135,6 +22546,11 @@ module Aws::RDS
22135
22546
  # The database engine of the DB instance.
22136
22547
  # @return [String]
22137
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
+ #
22138
22554
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PendingModifiedValues AWS API Documentation
22139
22555
  #
22140
22556
  class PendingModifiedValues < Struct.new(
@@ -22159,7 +22575,8 @@ module Aws::RDS
22159
22575
  :multi_tenant,
22160
22576
  :iam_database_authentication_enabled,
22161
22577
  :dedicated_log_volume,
22162
- :engine)
22578
+ :engine,
22579
+ :additional_storage_volumes)
22163
22580
  SENSITIVE = [:master_user_password]
22164
22581
  include Aws::Structure
22165
22582
  end
@@ -22341,21 +22758,24 @@ module Aws::RDS
22341
22758
  # If you call `DescribeDBInstances`, `ProcessorFeature` returns non-null
22342
22759
  # values only if the following conditions are met:
22343
22760
  #
22344
- # * You are accessing an Oracle DB instance.
22761
+ # * You are accessing an Oracle or SQL Server DB instance.
22345
22762
  #
22346
- # * Your Oracle DB instance class supports configuring the number of CPU
22347
- # 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.
22348
22765
  #
22349
22766
  # * The current number CPU cores and threads is set to a non-default
22350
22767
  # value.
22351
22768
  #
22352
22769
  # For more information, see [ Configuring the processor for a DB
22353
- # instance class in RDS for Oracle][1] in the <i>Amazon RDS User Guide.
22354
- # </i>
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>
22355
22773
  #
22356
22774
  #
22357
22775
  #
22358
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
22359
22779
  #
22360
22780
  # @!attribute [rw] name
22361
22781
  # The name of the processor feature. Valid names are `coreCount` and
@@ -25901,6 +26321,14 @@ module Aws::RDS
25901
26321
  # each Amazon Web Services Region.
25902
26322
  # @return [String]
25903
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
+ #
25904
26332
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshotMessage AWS API Documentation
25905
26333
  #
25906
26334
  class RestoreDBInstanceFromDBSnapshotMessage < Struct.new(
@@ -25947,7 +26375,8 @@ module Aws::RDS
25947
26375
  :ca_certificate_identifier,
25948
26376
  :engine_lifecycle_support,
25949
26377
  :manage_master_user_password,
25950
- :master_user_secret_kms_key_id)
26378
+ :master_user_secret_kms_key_id,
26379
+ :additional_storage_volumes)
25951
26380
  SENSITIVE = [:tde_credential_password]
25952
26381
  include Aws::Structure
25953
26382
  end
@@ -26592,6 +27021,14 @@ module Aws::RDS
26592
27021
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
26593
27022
  # @return [String]
26594
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
+ #
26595
27032
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3Message AWS API Documentation
26596
27033
  #
26597
27034
  class RestoreDBInstanceFromS3Message < Struct.new(
@@ -26646,7 +27083,8 @@ module Aws::RDS
26646
27083
  :master_user_secret_kms_key_id,
26647
27084
  :dedicated_log_volume,
26648
27085
  :ca_certificate_identifier,
26649
- :engine_lifecycle_support)
27086
+ :engine_lifecycle_support,
27087
+ :additional_storage_volumes)
26650
27088
  SENSITIVE = [:master_user_password]
26651
27089
  include Aws::Structure
26652
27090
  end
@@ -27381,6 +27819,14 @@ module Aws::RDS
27381
27819
  # each Amazon Web Services Region.
27382
27820
  # @return [String]
27383
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
+ #
27384
27830
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
27385
27831
  #
27386
27832
  class RestoreDBInstanceToPointInTimeMessage < Struct.new(
@@ -27431,7 +27877,8 @@ module Aws::RDS
27431
27877
  :ca_certificate_identifier,
27432
27878
  :engine_lifecycle_support,
27433
27879
  :manage_master_user_password,
27434
- :master_user_secret_kms_key_id)
27880
+ :master_user_secret_kms_key_id,
27881
+ :additional_storage_volumes)
27435
27882
  SENSITIVE = [:tde_credential_password]
27436
27883
  include Aws::Structure
27437
27884
  end
@@ -29249,6 +29696,27 @@ module Aws::RDS
29249
29696
  include Aws::Structure
29250
29697
  end
29251
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
+
29252
29720
  # Information about valid modifications that you can make to your DB
29253
29721
  # instance. Contains the result of a successful call to the
29254
29722
  # `DescribeValidDBInstanceModifications` action. You can use this
@@ -29267,12 +29735,17 @@ module Aws::RDS
29267
29735
  # volume (DLV).
29268
29736
  # @return [Boolean]
29269
29737
  #
29738
+ # @!attribute [rw] additional_storage
29739
+ # The valid additional storage options for the DB instance.
29740
+ # @return [Types::ValidAdditionalStorageOptions]
29741
+ #
29270
29742
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ValidDBInstanceModificationsMessage AWS API Documentation
29271
29743
  #
29272
29744
  class ValidDBInstanceModificationsMessage < Struct.new(
29273
29745
  :storage,
29274
29746
  :valid_processor_features,
29275
- :supports_dedicated_log_volume)
29747
+ :supports_dedicated_log_volume,
29748
+ :additional_storage)
29276
29749
  SENSITIVE = []
29277
29750
  include Aws::Structure
29278
29751
  end
@@ -29330,6 +29803,25 @@ module Aws::RDS
29330
29803
  include Aws::Structure
29331
29804
  end
29332
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
+
29333
29825
  # The operation violates VPC encryption control settings. Make sure that
29334
29826
  # your DB instance type supports the Nitro encryption-in-transit
29335
29827
  # capability, or modify your VPC's encryption controls to not enforce