aws-sdk-rds 1.296.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.
@@ -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
@@ -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 Domain
2795
- # Name System (DNS) endpoint resolves to the public IP address. When
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
- # ultimately controlled by the security group it uses. That public
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
- # Valid for Cluster Type: Multi-AZ DB clusters only
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
- # * If the default VPC in the target Region has an internet gateway
2817
- # attached to it, the DB cluster is public.
3023
+ # If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults
3024
+ # to `true`.
2818
3025
  #
2819
- # If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
2820
- # specified, the following applies:
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
- # * If the subnets are part of a VPC that doesn’t have an internet
2823
- # gateway attached to it, the DB cluster is private.
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
@@ -3185,6 +3391,16 @@ module Aws::RDS
3185
3391
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
3186
3392
  # @return [String]
3187
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
+ #
3188
3404
  # @!attribute [rw] master_user_authentication_type
3189
3405
  # Specifies the authentication type for the master user. With IAM
3190
3406
  # master user authentication, you can configure the master DB user
@@ -3267,6 +3483,7 @@ module Aws::RDS
3267
3483
  :master_user_secret_kms_key_id,
3268
3484
  :ca_certificate_identifier,
3269
3485
  :engine_lifecycle_support,
3486
+ :tag_specifications,
3270
3487
  :master_user_authentication_type,
3271
3488
  :source_region)
3272
3489
  SENSITIVE = [:master_user_password, :pre_signed_url]
@@ -3799,6 +4016,8 @@ module Aws::RDS
3799
4016
  #
3800
4017
  # * `postgres`
3801
4018
  #
4019
+ # * `sqlserver-dev-ee`
4020
+ #
3802
4021
  # * `sqlserver-ee`
3803
4022
  #
3804
4023
  # * `sqlserver-se`
@@ -4235,36 +4454,27 @@ module Aws::RDS
4235
4454
  #
4236
4455
  # When the DB instance is publicly accessible and you connect from
4237
4456
  # outside of the DB instance's virtual private cloud (VPC), its
4238
- # Domain Name System (DNS) endpoint resolves to the public IP address.
4457
+ # domain name system (DNS) endpoint resolves to the public IP address.
4239
4458
  # When you connect from within the same VPC as the DB instance, the
4240
4459
  # endpoint resolves to the private IP address. Access to the DB
4241
- # instance is ultimately controlled by the security group it uses.
4242
- # That public access is not permitted if the security group assigned
4243
- # to the DB instance doesn't permit it.
4460
+ # instance is controlled by its security group settings.
4244
4461
  #
4245
4462
  # When the DB instance isn't publicly accessible, it is an internal
4246
4463
  # DB instance with a DNS name that resolves to a private IP address.
4247
4464
  #
4248
- # Default: The default behavior varies depending on whether
4249
- # `DBSubnetGroupName` is specified.
4250
- #
4251
- # If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
4252
- # isn't specified, the following applies:
4253
- #
4254
- # * If the default VPC in the target Region doesn’t have an internet
4255
- # gateway attached to it, the DB instance is private.
4465
+ # The default behavior when `PubliclyAccessible` is not specified
4466
+ # depends on whether a `DBSubnetGroup` is specified.
4256
4467
  #
4257
- # * If the default VPC in the target Region has an internet gateway
4258
- # attached to it, the DB instance is public.
4468
+ # If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults
4469
+ # to `false` for Aurora instances and `true` for non-Aurora instances.
4259
4470
  #
4260
- # If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
4261
- # specified, the following applies:
4471
+ # If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
4472
+ # `false` unless the value of `DBSubnetGroup` is `default`, in which
4473
+ # case `PubliclyAccessible` defaults to `true`.
4262
4474
  #
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.
4475
+ # If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
4476
+ # is in doesn't have an internet gateway attached to it, Amazon RDS
4477
+ # returns an error.
4268
4478
  # @return [Boolean]
4269
4479
  #
4270
4480
  # @!attribute [rw] tags
@@ -4859,6 +5069,16 @@ module Aws::RDS
4859
5069
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
4860
5070
  # @return [String]
4861
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
+ #
4862
5082
  # @!attribute [rw] master_user_authentication_type
4863
5083
  # Specifies the authentication type for the master user. With IAM
4864
5084
  # master user authentication, you can configure the master DB user
@@ -4875,6 +5095,14 @@ module Aws::RDS
4875
5095
  # PostgreSQL engines.
4876
5096
  # @return [String]
4877
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
+ #
4878
5106
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
4879
5107
  #
4880
5108
  class CreateDBInstanceMessage < Struct.new(
@@ -4942,7 +5170,9 @@ module Aws::RDS
4942
5170
  :multi_tenant,
4943
5171
  :dedicated_log_volume,
4944
5172
  :engine_lifecycle_support,
4945
- :master_user_authentication_type)
5173
+ :tag_specifications,
5174
+ :master_user_authentication_type,
5175
+ :additional_storage_volumes)
4946
5176
  SENSITIVE = [:master_user_password, :tde_credential_password]
4947
5177
  include Aws::Structure
4948
5178
  end
@@ -5730,6 +5960,24 @@ module Aws::RDS
5730
5960
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
5731
5961
  # @return [String]
5732
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
+ #
5733
5981
  # @!attribute [rw] source_region
5734
5982
  # The source region of the snapshot. This is only needed when the
5735
5983
  # shapshot is encrypted and in a different region.
@@ -5785,6 +6033,8 @@ module Aws::RDS
5785
6033
  :dedicated_log_volume,
5786
6034
  :upgrade_storage_config,
5787
6035
  :ca_certificate_identifier,
6036
+ :tag_specifications,
6037
+ :additional_storage_volumes,
5788
6038
  :source_region)
5789
6039
  SENSITIVE = [:pre_signed_url]
5790
6040
  include Aws::Structure
@@ -7197,6 +7447,19 @@ module Aws::RDS
7197
7447
  # Universal Coordinated Time (UTC).
7198
7448
  # @return [String]
7199
7449
  #
7450
+ # @!attribute [rw] upgrade_rollout_order
7451
+ # This data type represents the order in which the clusters are
7452
+ # upgraded.
7453
+ #
7454
+ # * \[first\] - Typically used for development or testing
7455
+ # environments.
7456
+ #
7457
+ # * \[second\] - Default order for resources not specifically
7458
+ # configured.
7459
+ #
7460
+ # * \[last\] - Usually reserved for production environments.
7461
+ # @return [String]
7462
+ #
7200
7463
  # @!attribute [rw] replication_source_identifier
7201
7464
  # The identifier of the source DB cluster if this DB cluster is a read
7202
7465
  # replica.
@@ -7698,6 +7961,7 @@ module Aws::RDS
7698
7961
  :db_cluster_option_group_memberships,
7699
7962
  :preferred_backup_window,
7700
7963
  :preferred_maintenance_window,
7964
+ :upgrade_rollout_order,
7701
7965
  :replication_source_identifier,
7702
7966
  :read_replica_identifiers,
7703
7967
  :status_infos,
@@ -7907,6 +8171,19 @@ module Aws::RDS
7907
8171
  # Services Backup.
7908
8172
  # @return [String]
7909
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
+ #
7910
8187
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterAutomatedBackup AWS API Documentation
7911
8188
  #
7912
8189
  class DBClusterAutomatedBackup < Struct.new(
@@ -7934,7 +8211,8 @@ module Aws::RDS
7934
8211
  :storage_type,
7935
8212
  :iops,
7936
8213
  :storage_throughput,
7937
- :aws_backup_recovery_point_arn)
8214
+ :aws_backup_recovery_point_arn,
8215
+ :tag_list)
7938
8216
  SENSITIVE = []
7939
8217
  include Aws::Structure
7940
8218
  end
@@ -9001,6 +9279,18 @@ module Aws::RDS
9001
9279
  # features.
9002
9280
  # @return [Types::ServerlessV2FeaturesSupport]
9003
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
+ #
9004
9294
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBEngineVersion AWS API Documentation
9005
9295
  #
9006
9296
  class DBEngineVersion < Struct.new(
@@ -9038,7 +9328,9 @@ module Aws::RDS
9038
9328
  :supported_ca_certificate_identifiers,
9039
9329
  :supports_local_write_forwarding,
9040
9330
  :supports_integrations,
9041
- :serverless_v2_features_support)
9331
+ :serverless_v2_features_support,
9332
+ :database_installation_files,
9333
+ :failure_reason)
9042
9334
  SENSITIVE = []
9043
9335
  include Aws::Structure
9044
9336
  end
@@ -9166,6 +9458,19 @@ module Aws::RDS
9166
9458
  # Universal Coordinated Time (UTC).
9167
9459
  # @return [String]
9168
9460
  #
9461
+ # @!attribute [rw] upgrade_rollout_order
9462
+ # This data type represents the order in which the instances are
9463
+ # upgraded.
9464
+ #
9465
+ # * \[first\] - Typically used for development or testing
9466
+ # environments.
9467
+ #
9468
+ # * \[second\] - Default order for resources not specifically
9469
+ # configured.
9470
+ #
9471
+ # * \[last\] - Usually reserved for production environments.
9472
+ # @return [String]
9473
+ #
9169
9474
  # @!attribute [rw] pending_modified_values
9170
9475
  # Information about pending changes to the DB instance. This
9171
9476
  # information is returned only when there are pending changes.
@@ -9693,6 +9998,18 @@ module Aws::RDS
9693
9998
  # For more information, see CreateDBInstance.
9694
9999
  # @return [String]
9695
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
+ #
9696
10013
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
9697
10014
  #
9698
10015
  class DBInstance < Struct.new(
@@ -9713,6 +10030,7 @@ module Aws::RDS
9713
10030
  :availability_zone,
9714
10031
  :db_subnet_group,
9715
10032
  :preferred_maintenance_window,
10033
+ :upgrade_rollout_order,
9716
10034
  :pending_modified_values,
9717
10035
  :latest_restorable_time,
9718
10036
  :multi_az,
@@ -9782,7 +10100,9 @@ module Aws::RDS
9782
10100
  :multi_tenant,
9783
10101
  :dedicated_log_volume,
9784
10102
  :is_storage_config_upgrade_available,
9785
- :engine_lifecycle_support)
10103
+ :engine_lifecycle_support,
10104
+ :additional_storage_volumes,
10105
+ :storage_volume_status)
9786
10106
  SENSITIVE = []
9787
10107
  include Aws::Structure
9788
10108
  end
@@ -9820,7 +10140,7 @@ module Aws::RDS
9820
10140
  # @return [Types::RestoreWindow]
9821
10141
  #
9822
10142
  # @!attribute [rw] allocated_storage
9823
- # The allocated storage size for the the automated backup in gibibytes
10143
+ # The allocated storage size for the automated backup in gibibytes
9824
10144
  # (GiB).
9825
10145
  # @return [Integer]
9826
10146
  #
@@ -9952,11 +10272,30 @@ module Aws::RDS
9952
10272
  # Services Backup.
9953
10273
  # @return [String]
9954
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
+ #
9955
10288
  # @!attribute [rw] dedicated_log_volume
9956
10289
  # Indicates whether the DB instance has a dedicated log volume (DLV)
9957
10290
  # enabled.
9958
10291
  # @return [Boolean]
9959
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
+ #
9960
10299
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstanceAutomatedBackup AWS API Documentation
9961
10300
  #
9962
10301
  class DBInstanceAutomatedBackup < Struct.new(
@@ -9990,7 +10329,9 @@ module Aws::RDS
9990
10329
  :backup_target,
9991
10330
  :multi_tenant,
9992
10331
  :aws_backup_recovery_point_arn,
9993
- :dedicated_log_volume)
10332
+ :tag_list,
10333
+ :dedicated_log_volume,
10334
+ :additional_storage_volumes)
9994
10335
  SENSITIVE = []
9995
10336
  include Aws::Structure
9996
10337
  end
@@ -11441,6 +11782,12 @@ module Aws::RDS
11441
11782
  # a Dedicated Local Zone.
11442
11783
  # @return [String]
11443
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
+ #
11444
11791
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
11445
11792
  #
11446
11793
  class DBSnapshot < Struct.new(
@@ -11480,7 +11827,8 @@ module Aws::RDS
11480
11827
  :db_system_id,
11481
11828
  :multi_tenant,
11482
11829
  :dedicated_log_volume,
11483
- :snapshot_availability_zone)
11830
+ :snapshot_availability_zone,
11831
+ :additional_storage_volumes)
11484
11832
  SENSITIVE = []
11485
11833
  include Aws::Structure
11486
11834
  end
@@ -11878,8 +12226,9 @@ module Aws::RDS
11878
12226
  end
11879
12227
 
11880
12228
  # @!attribute [rw] engine
11881
- # The database engine. RDS Custom for Oracle supports the following
11882
- # values:
12229
+ # The database engine.
12230
+ #
12231
+ # RDS Custom for Oracle supports the following values:
11883
12232
  #
11884
12233
  # * `custom-oracle-ee`
11885
12234
  #
@@ -11888,6 +12237,18 @@ module Aws::RDS
11888
12237
  # * `custom-oracle-se2`
11889
12238
  #
11890
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`.
11891
12252
  # @return [String]
11892
12253
  #
11893
12254
  # @!attribute [rw] engine_version
@@ -17625,6 +17986,66 @@ module Aws::RDS
17625
17986
  include Aws::Structure
17626
17987
  end
17627
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
+
17628
18049
  # @!attribute [rw] certificate_identifier
17629
18050
  # The new default certificate identifier to override the current one
17630
18051
  # with.
@@ -17727,8 +18148,9 @@ module Aws::RDS
17727
18148
  end
17728
18149
 
17729
18150
  # @!attribute [rw] engine
17730
- # The database engine. RDS Custom for Oracle supports the following
17731
- # values:
18151
+ # The database engine.
18152
+ #
18153
+ # RDS Custom for Oracle supports the following values:
17732
18154
  #
17733
18155
  # * `custom-oracle-ee`
17734
18156
  #
@@ -17737,6 +18159,18 @@ module Aws::RDS
17737
18159
  # * `custom-oracle-se2`
17738
18160
  #
17739
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`.
17740
18174
  # @return [String]
17741
18175
  #
17742
18176
  # @!attribute [rw] engine_version
@@ -19426,7 +19860,7 @@ module Aws::RDS
19426
19860
  #
19427
19861
  # * Must be in the distinguished name format.
19428
19862
  #
19429
- # * Can't be longer than 64 characters.
19863
+ # ^
19430
19864
  #
19431
19865
  # Example:
19432
19866
  # `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
@@ -20038,6 +20472,16 @@ module Aws::RDS
20038
20472
  # `--option-group-name`.
20039
20473
  # @return [String]
20040
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
+ #
20041
20485
  # @!attribute [rw] master_user_authentication_type
20042
20486
  # Specifies the authentication type for the master user. With IAM
20043
20487
  # master user authentication, you can change the master DB user to use
@@ -20054,6 +20498,13 @@ module Aws::RDS
20054
20498
  # PostgreSQL engines.
20055
20499
  # @return [String]
20056
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
+ #
20057
20508
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
20058
20509
  #
20059
20510
  class ModifyDBInstanceMessage < Struct.new(
@@ -20118,7 +20569,9 @@ module Aws::RDS
20118
20569
  :multi_tenant,
20119
20570
  :dedicated_log_volume,
20120
20571
  :engine,
20121
- :master_user_authentication_type)
20572
+ :tag_specifications,
20573
+ :master_user_authentication_type,
20574
+ :additional_storage_volumes)
20122
20575
  SENSITIVE = [:master_user_password, :tde_credential_password]
20123
20576
  include Aws::Structure
20124
20577
  end
@@ -21751,6 +22204,16 @@ module Aws::RDS
21751
22204
  # Indicates whether a DB instance supports HTTP endpoints.
21752
22205
  # @return [Boolean]
21753
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
+ #
21754
22217
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OrderableDBInstanceOption AWS API Documentation
21755
22218
  #
21756
22219
  class OrderableDBInstanceOption < Struct.new(
@@ -21790,7 +22253,9 @@ module Aws::RDS
21790
22253
  :supported_network_types,
21791
22254
  :supports_clusters,
21792
22255
  :supports_dedicated_log_volume,
21793
- :supports_http_endpoint)
22256
+ :supports_http_endpoint,
22257
+ :supports_additional_storage_volumes,
22258
+ :available_additional_storage_volumes_options)
21794
22259
  SENSITIVE = []
21795
22260
  include Aws::Structure
21796
22261
  end
@@ -22153,6 +22618,11 @@ module Aws::RDS
22153
22618
  # The database engine of the DB instance.
22154
22619
  # @return [String]
22155
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
+ #
22156
22626
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PendingModifiedValues AWS API Documentation
22157
22627
  #
22158
22628
  class PendingModifiedValues < Struct.new(
@@ -22177,7 +22647,8 @@ module Aws::RDS
22177
22647
  :multi_tenant,
22178
22648
  :iam_database_authentication_enabled,
22179
22649
  :dedicated_log_volume,
22180
- :engine)
22650
+ :engine,
22651
+ :additional_storage_volumes)
22181
22652
  SENSITIVE = [:master_user_password]
22182
22653
  include Aws::Structure
22183
22654
  end
@@ -22359,21 +22830,24 @@ module Aws::RDS
22359
22830
  # If you call `DescribeDBInstances`, `ProcessorFeature` returns non-null
22360
22831
  # values only if the following conditions are met:
22361
22832
  #
22362
- # * You are accessing an Oracle DB instance.
22833
+ # * You are accessing an Oracle or SQL Server DB instance.
22363
22834
  #
22364
- # * Your Oracle DB instance class supports configuring the number of CPU
22365
- # 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.
22366
22837
  #
22367
22838
  # * The current number CPU cores and threads is set to a non-default
22368
22839
  # value.
22369
22840
  #
22370
22841
  # For more information, see [ Configuring the processor for a DB
22371
- # instance class in RDS for Oracle][1] in the <i>Amazon RDS User Guide.
22372
- # </i>
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>
22373
22845
  #
22374
22846
  #
22375
22847
  #
22376
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
22377
22851
  #
22378
22852
  # @!attribute [rw] name
22379
22853
  # The name of the processor feature. Valid names are `coreCount` and
@@ -22506,12 +22980,23 @@ module Aws::RDS
22506
22980
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
22507
22981
  # @return [String]
22508
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
+ #
22509
22993
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaMessage AWS API Documentation
22510
22994
  #
22511
22995
  class PromoteReadReplicaMessage < Struct.new(
22512
22996
  :db_instance_identifier,
22513
22997
  :backup_retention_period,
22514
- :preferred_backup_window)
22998
+ :preferred_backup_window,
22999
+ :tag_specifications)
22515
23000
  SENSITIVE = []
22516
23001
  include Aws::Structure
22517
23002
  end
@@ -23896,6 +24381,16 @@ module Aws::RDS
23896
24381
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
23897
24382
  # @return [String]
23898
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
+ #
23899
24394
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3Message AWS API Documentation
23900
24395
  #
23901
24396
  class RestoreDBClusterFromS3Message < Struct.new(
@@ -23935,7 +24430,8 @@ module Aws::RDS
23935
24430
  :serverless_v2_scaling_configuration,
23936
24431
  :manage_master_user_password,
23937
24432
  :master_user_secret_kms_key_id,
23938
- :engine_lifecycle_support)
24433
+ :engine_lifecycle_support,
24434
+ :tag_specifications)
23939
24435
  SENSITIVE = [:master_user_password]
23940
24436
  include Aws::Structure
23941
24437
  end
@@ -24538,6 +25034,16 @@ module Aws::RDS
24538
25034
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
24539
25035
  # @return [String]
24540
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
+ #
24541
25047
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
24542
25048
  #
24543
25049
  class RestoreDBClusterFromSnapshotMessage < Struct.new(
@@ -24575,7 +25081,8 @@ module Aws::RDS
24575
25081
  :enable_performance_insights,
24576
25082
  :performance_insights_kms_key_id,
24577
25083
  :performance_insights_retention_period,
24578
- :engine_lifecycle_support)
25084
+ :engine_lifecycle_support,
25085
+ :tag_specifications)
24579
25086
  SENSITIVE = []
24580
25087
  include Aws::Structure
24581
25088
  end
@@ -25155,6 +25662,16 @@ module Aws::RDS
25155
25662
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
25156
25663
  # @return [String]
25157
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
+ #
25158
25675
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
25159
25676
  #
25160
25677
  class RestoreDBClusterToPointInTimeMessage < Struct.new(
@@ -25192,7 +25709,8 @@ module Aws::RDS
25192
25709
  :enable_performance_insights,
25193
25710
  :performance_insights_kms_key_id,
25194
25711
  :performance_insights_retention_period,
25195
- :engine_lifecycle_support)
25712
+ :engine_lifecycle_support,
25713
+ :tag_specifications)
25196
25714
  SENSITIVE = []
25197
25715
  include Aws::Structure
25198
25716
  end
@@ -25877,6 +26395,16 @@ module Aws::RDS
25877
26395
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
25878
26396
  # @return [String]
25879
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
+ #
25880
26408
  # @!attribute [rw] manage_master_user_password
25881
26409
  # Specifies whether to manage the master user password with Amazon Web
25882
26410
  # Services Secrets Manager in the restored DB instance.
@@ -25919,6 +26447,14 @@ module Aws::RDS
25919
26447
  # each Amazon Web Services Region.
25920
26448
  # @return [String]
25921
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
+ #
25922
26458
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshotMessage AWS API Documentation
25923
26459
  #
25924
26460
  class RestoreDBInstanceFromDBSnapshotMessage < Struct.new(
@@ -25964,8 +26500,10 @@ module Aws::RDS
25964
26500
  :dedicated_log_volume,
25965
26501
  :ca_certificate_identifier,
25966
26502
  :engine_lifecycle_support,
26503
+ :tag_specifications,
25967
26504
  :manage_master_user_password,
25968
- :master_user_secret_kms_key_id)
26505
+ :master_user_secret_kms_key_id,
26506
+ :additional_storage_volumes)
25969
26507
  SENSITIVE = [:tde_credential_password]
25970
26508
  include Aws::Structure
25971
26509
  end
@@ -26610,6 +27148,24 @@ module Aws::RDS
26610
27148
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
26611
27149
  # @return [String]
26612
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
+ #
26613
27169
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3Message AWS API Documentation
26614
27170
  #
26615
27171
  class RestoreDBInstanceFromS3Message < Struct.new(
@@ -26664,7 +27220,9 @@ module Aws::RDS
26664
27220
  :master_user_secret_kms_key_id,
26665
27221
  :dedicated_log_volume,
26666
27222
  :ca_certificate_identifier,
26667
- :engine_lifecycle_support)
27223
+ :engine_lifecycle_support,
27224
+ :tag_specifications,
27225
+ :additional_storage_volumes)
26668
27226
  SENSITIVE = [:master_user_password]
26669
27227
  include Aws::Structure
26670
27228
  end
@@ -27357,6 +27915,16 @@ module Aws::RDS
27357
27915
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
27358
27916
  # @return [String]
27359
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
+ #
27360
27928
  # @!attribute [rw] manage_master_user_password
27361
27929
  # Specifies whether to manage the master user password with Amazon Web
27362
27930
  # Services Secrets Manager in the restored DB instance.
@@ -27399,6 +27967,14 @@ module Aws::RDS
27399
27967
  # each Amazon Web Services Region.
27400
27968
  # @return [String]
27401
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
+ #
27402
27978
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
27403
27979
  #
27404
27980
  class RestoreDBInstanceToPointInTimeMessage < Struct.new(
@@ -27448,8 +28024,10 @@ module Aws::RDS
27448
28024
  :dedicated_log_volume,
27449
28025
  :ca_certificate_identifier,
27450
28026
  :engine_lifecycle_support,
28027
+ :tag_specifications,
27451
28028
  :manage_master_user_password,
27452
- :master_user_secret_kms_key_id)
28029
+ :master_user_secret_kms_key_id,
28030
+ :additional_storage_volumes)
27453
28031
  SENSITIVE = [:tde_credential_password]
27454
28032
  include Aws::Structure
27455
28033
  end
@@ -28156,6 +28734,10 @@ module Aws::RDS
28156
28734
  # [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
28157
28735
  # @return [String]
28158
28736
  #
28737
+ # @!attribute [rw] tags
28738
+ # A list of tags to associate with the replicated automated backups.
28739
+ # @return [Array<Types::Tag>]
28740
+ #
28159
28741
  # @!attribute [rw] source_region
28160
28742
  # The source region of the snapshot. This is only needed when the
28161
28743
  # shapshot is encrypted and in a different region.
@@ -28168,6 +28750,7 @@ module Aws::RDS
28168
28750
  :backup_retention_period,
28169
28751
  :kms_key_id,
28170
28752
  :pre_signed_url,
28753
+ :tags,
28171
28754
  :source_region)
28172
28755
  SENSITIVE = [:pre_signed_url]
28173
28756
  include Aws::Structure
@@ -28861,6 +29444,42 @@ module Aws::RDS
28861
29444
  include Aws::Structure
28862
29445
  end
28863
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
+
28864
29483
  # Information about the connection health of an RDS Proxy target.
28865
29484
  #
28866
29485
  # @!attribute [rw] state
@@ -29267,6 +29886,27 @@ module Aws::RDS
29267
29886
  include Aws::Structure
29268
29887
  end
29269
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
+
29270
29910
  # Information about valid modifications that you can make to your DB
29271
29911
  # instance. Contains the result of a successful call to the
29272
29912
  # `DescribeValidDBInstanceModifications` action. You can use this
@@ -29285,12 +29925,17 @@ module Aws::RDS
29285
29925
  # volume (DLV).
29286
29926
  # @return [Boolean]
29287
29927
  #
29928
+ # @!attribute [rw] additional_storage
29929
+ # The valid additional storage options for the DB instance.
29930
+ # @return [Types::ValidAdditionalStorageOptions]
29931
+ #
29288
29932
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ValidDBInstanceModificationsMessage AWS API Documentation
29289
29933
  #
29290
29934
  class ValidDBInstanceModificationsMessage < Struct.new(
29291
29935
  :storage,
29292
29936
  :valid_processor_features,
29293
- :supports_dedicated_log_volume)
29937
+ :supports_dedicated_log_volume,
29938
+ :additional_storage)
29294
29939
  SENSITIVE = []
29295
29940
  include Aws::Structure
29296
29941
  end
@@ -29348,6 +29993,34 @@ module Aws::RDS
29348
29993
  include Aws::Structure
29349
29994
  end
29350
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
+
30015
+ # The operation violates VPC encryption control settings. Make sure that
30016
+ # your DB instance type supports the Nitro encryption-in-transit
30017
+ # capability, or modify your VPC's encryption controls to not enforce
30018
+ # encryption-in-transit.
30019
+ #
30020
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/VpcEncryptionControlViolationException AWS API Documentation
30021
+ #
30022
+ class VpcEncryptionControlViolationException < Aws::EmptyStructure; end
30023
+
29351
30024
  # This data type is used as a response element for queries on VPC
29352
30025
  # security group membership.
29353
30026
  #