aws-sdk-rds 1.219.0 → 1.220.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8890799e77887887f9eb9507cc1155b59c907b0a26240048889f0d2fd538ef42
4
- data.tar.gz: dc767d37956fddd4c28ed65d484ea9cb5c31934305329120a6243cc50afc4fae
3
+ metadata.gz: eaf37db5144f0118605b8016ba8cb77453737f9ea4264f2f7d4ff75e90a97ad9
4
+ data.tar.gz: 6a08f9e88973da3f216b392ae086d54402fc35168b424384678c2f42f1e676fe
5
5
  SHA512:
6
- metadata.gz: 6b51748d257cabded8a14e12ba50363b6a2b3bce376a92f5a50120f795c5b565fb7c33914a66c34fbfdbff2c28efd1f77ce4c6a82855882e3891846e8d383f81
7
- data.tar.gz: 158645c2ae2e5dc08fec7bfe77a1063d80170942e78440f87cc0a67323d65d14bb2004916cfd5f02524008ac64508a6c343020cafd3cfdc6e8f3d637d4006ef7
6
+ metadata.gz: edec2d6615d15bad15b0b1f46ac56f8b54d4c0c73bf5e904f3a77a94350fb9f346335dbe1ae9d9c4c57a453dd1c857e153403bd49d398dfd6c0c8e9e08d9f371
7
+ data.tar.gz: 17f84b6d4290acb1609e9d538b18b64df655418f561e3d5902c4ff6584c0bea14cc66c6eba03b0d74191cd3c2dd11ae61437a2f8ab681e4786eab51d9a9f64ca
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.220.0 (2024-03-06)
5
+ ------------------
6
+
7
+ * Feature - Updated the input of CreateDBCluster and ModifyDBCluster to support setting CA certificates. Updated the output of DescribeDBCluster to show current CA certificate setting value.
8
+
4
9
  1.219.0 (2024-02-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.219.0
1
+ 1.220.0
@@ -3319,6 +3319,12 @@ module Aws::RDS
3319
3319
  #
3320
3320
  # Valid for: Aurora DB clusters only
3321
3321
  #
3322
+ # @option params [String] :ca_certificate_identifier
3323
+ # The CA certificate identifier to use for the DB cluster's server
3324
+ # certificate.
3325
+ #
3326
+ # Valid for Cluster Type: Multi-AZ DB clusters
3327
+ #
3322
3328
  # @option params [String] :source_region
3323
3329
  # The source region of the snapshot. This is only needed when the
3324
3330
  # shapshot is encrypted and in a different region.
@@ -3529,6 +3535,7 @@ module Aws::RDS
3529
3535
  # manage_master_user_password: false,
3530
3536
  # master_user_secret_kms_key_id: "String",
3531
3537
  # enable_local_write_forwarding: false,
3538
+ # ca_certificate_identifier: "String",
3532
3539
  # source_region: "String",
3533
3540
  # })
3534
3541
  #
@@ -3643,6 +3650,8 @@ module Aws::RDS
3643
3650
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
3644
3651
  # resp.db_cluster.pending_modified_values.iops #=> Integer
3645
3652
  # resp.db_cluster.pending_modified_values.storage_type #=> String
3653
+ # resp.db_cluster.pending_modified_values.certificate_details.ca_identifier #=> String
3654
+ # resp.db_cluster.pending_modified_values.certificate_details.valid_till #=> Time
3646
3655
  # resp.db_cluster.db_cluster_instance_class #=> String
3647
3656
  # resp.db_cluster.storage_type #=> String
3648
3657
  # resp.db_cluster.iops #=> Integer
@@ -3666,6 +3675,8 @@ module Aws::RDS
3666
3675
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
3667
3676
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
3668
3677
  # resp.db_cluster.storage_throughput #=> Integer
3678
+ # resp.db_cluster.certificate_details.ca_identifier #=> String
3679
+ # resp.db_cluster.certificate_details.valid_till #=> Time
3669
3680
  #
3670
3681
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
3671
3682
  #
@@ -4285,7 +4296,7 @@ module Aws::RDS
4285
4296
  # 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for
4286
4297
  # SQL Server.
4287
4298
  #
4288
- # * Provisioned IOPS storage (io1): Must be an integer from 40 to
4299
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 40 to
4289
4300
  # 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
4290
4301
  # Server.
4291
4302
  #
@@ -4295,10 +4306,10 @@ module Aws::RDS
4295
4306
  # following:
4296
4307
  #
4297
4308
  # * General Purpose (SSD) storage (gp3): Must be an integer from 20 to
4298
- # 64000.
4309
+ # 65536.
4299
4310
  #
4300
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
4301
- # 64000.
4311
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
4312
+ # to 65536.
4302
4313
  #
4303
4314
  # RDS for MariaDB
4304
4315
  #
@@ -4308,8 +4319,8 @@ module Aws::RDS
4308
4319
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
4309
4320
  # 20 to 65536.
4310
4321
  #
4311
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
4312
- # 65536.
4322
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
4323
+ # to 65536.
4313
4324
  #
4314
4325
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
4315
4326
  #
@@ -4321,8 +4332,8 @@ module Aws::RDS
4321
4332
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
4322
4333
  # 20 to 65536.
4323
4334
  #
4324
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
4325
- # 65536.
4335
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
4336
+ # to 65536.
4326
4337
  #
4327
4338
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
4328
4339
  #
@@ -4334,8 +4345,8 @@ module Aws::RDS
4334
4345
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
4335
4346
  # 20 to 65536.
4336
4347
  #
4337
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
4338
- # 65536.
4348
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
4349
+ # to 65536.
4339
4350
  #
4340
4351
  # * Magnetic storage (standard): Must be an integer from 10 to 3072.
4341
4352
  #
@@ -4347,8 +4358,8 @@ module Aws::RDS
4347
4358
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
4348
4359
  # 20 to 65536.
4349
4360
  #
4350
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
4351
- # 65536.
4361
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
4362
+ # to 65536.
4352
4363
  #
4353
4364
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
4354
4365
  #
@@ -4364,7 +4375,7 @@ module Aws::RDS
4364
4375
  #
4365
4376
  # * Web and Express editions: Must be an integer from 20 to 16384.
4366
4377
  #
4367
- # * Provisioned IOPS storage (io1):
4378
+ # * Provisioned IOPS storage (io1, io2):
4368
4379
  #
4369
4380
  # * Enterprise and Standard editions: Must be an integer from 100 to
4370
4381
  # 16384.
@@ -4857,13 +4868,13 @@ module Aws::RDS
4857
4868
  # @option params [String] :storage_type
4858
4869
  # The storage type to associate with the DB instance.
4859
4870
  #
4860
- # If you specify `io1` or `gp3`, you must also include a value for the
4861
- # `Iops` parameter.
4871
+ # If you specify `io1`, `io2`, or `gp3`, you must also include a value
4872
+ # for the `Iops` parameter.
4862
4873
  #
4863
4874
  # This setting doesn't apply to Amazon Aurora DB instances. Storage is
4864
4875
  # managed by the DB cluster.
4865
4876
  #
4866
- # Valid Values: `gp2 | gp3 | io1 | standard`
4877
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
4867
4878
  #
4868
4879
  # Default: `io1`, if the `Iops` parameter is specified. Otherwise,
4869
4880
  # `gp2`.
@@ -5929,10 +5940,10 @@ module Aws::RDS
5929
5940
  # @option params [String] :storage_type
5930
5941
  # The storage type to associate with the read replica.
5931
5942
  #
5932
- # If you specify `io1` or `gp3`, you must also include a value for the
5933
- # `Iops` parameter.
5943
+ # If you specify `io1`, `io2`, or `gp3`, you must also include a value
5944
+ # for the `Iops` parameter.
5934
5945
  #
5935
- # Valid Values: `gp2 | gp3 | io1 | standard`
5946
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
5936
5947
  #
5937
5948
  # Default: `io1` if the `Iops` parameter is specified. Otherwise, `gp2`.
5938
5949
  #
@@ -8786,6 +8797,8 @@ module Aws::RDS
8786
8797
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
8787
8798
  # resp.db_cluster.pending_modified_values.iops #=> Integer
8788
8799
  # resp.db_cluster.pending_modified_values.storage_type #=> String
8800
+ # resp.db_cluster.pending_modified_values.certificate_details.ca_identifier #=> String
8801
+ # resp.db_cluster.pending_modified_values.certificate_details.valid_till #=> Time
8789
8802
  # resp.db_cluster.db_cluster_instance_class #=> String
8790
8803
  # resp.db_cluster.storage_type #=> String
8791
8804
  # resp.db_cluster.iops #=> Integer
@@ -8809,6 +8822,8 @@ module Aws::RDS
8809
8822
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
8810
8823
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
8811
8824
  # resp.db_cluster.storage_throughput #=> Integer
8825
+ # resp.db_cluster.certificate_details.ca_identifier #=> String
8826
+ # resp.db_cluster.certificate_details.valid_till #=> Time
8812
8827
  #
8813
8828
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
8814
8829
  #
@@ -12206,6 +12221,8 @@ module Aws::RDS
12206
12221
  # resp.db_clusters[0].pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
12207
12222
  # resp.db_clusters[0].pending_modified_values.iops #=> Integer
12208
12223
  # resp.db_clusters[0].pending_modified_values.storage_type #=> String
12224
+ # resp.db_clusters[0].pending_modified_values.certificate_details.ca_identifier #=> String
12225
+ # resp.db_clusters[0].pending_modified_values.certificate_details.valid_till #=> Time
12209
12226
  # resp.db_clusters[0].db_cluster_instance_class #=> String
12210
12227
  # resp.db_clusters[0].storage_type #=> String
12211
12228
  # resp.db_clusters[0].iops #=> Integer
@@ -12229,6 +12246,8 @@ module Aws::RDS
12229
12246
  # resp.db_clusters[0].limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
12230
12247
  # resp.db_clusters[0].limitless_database.min_required_acu #=> Float
12231
12248
  # resp.db_clusters[0].storage_throughput #=> Integer
12249
+ # resp.db_clusters[0].certificate_details.ca_identifier #=> String
12250
+ # resp.db_clusters[0].certificate_details.valid_till #=> Time
12232
12251
  #
12233
12252
  #
12234
12253
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -17475,6 +17494,8 @@ module Aws::RDS
17475
17494
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
17476
17495
  # resp.db_cluster.pending_modified_values.iops #=> Integer
17477
17496
  # resp.db_cluster.pending_modified_values.storage_type #=> String
17497
+ # resp.db_cluster.pending_modified_values.certificate_details.ca_identifier #=> String
17498
+ # resp.db_cluster.pending_modified_values.certificate_details.valid_till #=> Time
17478
17499
  # resp.db_cluster.db_cluster_instance_class #=> String
17479
17500
  # resp.db_cluster.storage_type #=> String
17480
17501
  # resp.db_cluster.iops #=> Integer
@@ -17498,6 +17519,8 @@ module Aws::RDS
17498
17519
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
17499
17520
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
17500
17521
  # resp.db_cluster.storage_throughput #=> Integer
17522
+ # resp.db_cluster.certificate_details.ca_identifier #=> String
17523
+ # resp.db_cluster.certificate_details.valid_till #=> Time
17501
17524
  #
17502
17525
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
17503
17526
  #
@@ -18876,6 +18899,12 @@ module Aws::RDS
18876
18899
  #
18877
18900
  # Valid for: Aurora DB clusters only
18878
18901
  #
18902
+ # @option params [String] :ca_certificate_identifier
18903
+ # The CA certificate identifier to use for the DB cluster's server
18904
+ # certificate.
18905
+ #
18906
+ # Valid for Cluster Type: Multi-AZ DB clusters
18907
+ #
18879
18908
  # @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
18880
18909
  #
18881
18910
  # * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
@@ -19015,6 +19044,7 @@ module Aws::RDS
19015
19044
  # enable_local_write_forwarding: false,
19016
19045
  # aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
19017
19046
  # enable_limitless_database: false,
19047
+ # ca_certificate_identifier: "String",
19018
19048
  # })
19019
19049
  #
19020
19050
  # @example Response structure
@@ -19128,6 +19158,8 @@ module Aws::RDS
19128
19158
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
19129
19159
  # resp.db_cluster.pending_modified_values.iops #=> Integer
19130
19160
  # resp.db_cluster.pending_modified_values.storage_type #=> String
19161
+ # resp.db_cluster.pending_modified_values.certificate_details.ca_identifier #=> String
19162
+ # resp.db_cluster.pending_modified_values.certificate_details.valid_till #=> Time
19131
19163
  # resp.db_cluster.db_cluster_instance_class #=> String
19132
19164
  # resp.db_cluster.storage_type #=> String
19133
19165
  # resp.db_cluster.iops #=> Integer
@@ -19151,6 +19183,8 @@ module Aws::RDS
19151
19183
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
19152
19184
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
19153
19185
  # resp.db_cluster.storage_throughput #=> Integer
19186
+ # resp.db_cluster.certificate_details.ca_identifier #=> String
19187
+ # resp.db_cluster.certificate_details.valid_till #=> Time
19154
19188
  #
19155
19189
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
19156
19190
  #
@@ -19977,7 +20011,7 @@ module Aws::RDS
19977
20011
  # @option params [String] :storage_type
19978
20012
  # The storage type to associate with the DB instance.
19979
20013
  #
19980
- # If you specify Provisioned IOPS (`io1`), you must also include a value
20014
+ # If you specify `io1`), `io2`, or `gp3` you must also include a value
19981
20015
  # for the `Iops` parameter.
19982
20016
  #
19983
20017
  # If you choose to migrate your DB instance from using standard storage
@@ -19995,7 +20029,7 @@ module Aws::RDS
19995
20029
  # rebooting the instance, deleting the instance, creating a read replica
19996
20030
  # for the instance, and creating a DB snapshot of the instance.
19997
20031
  #
19998
- # Valid Values: `gp2 | gp3 | io1 | standard`
20032
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
19999
20033
  #
20000
20034
  # Default: `io1`, if the `Iops` parameter is specified. Otherwise,
20001
20035
  # `gp2`.
@@ -22694,6 +22728,8 @@ module Aws::RDS
22694
22728
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
22695
22729
  # resp.db_cluster.pending_modified_values.iops #=> Integer
22696
22730
  # resp.db_cluster.pending_modified_values.storage_type #=> String
22731
+ # resp.db_cluster.pending_modified_values.certificate_details.ca_identifier #=> String
22732
+ # resp.db_cluster.pending_modified_values.certificate_details.valid_till #=> Time
22697
22733
  # resp.db_cluster.db_cluster_instance_class #=> String
22698
22734
  # resp.db_cluster.storage_type #=> String
22699
22735
  # resp.db_cluster.iops #=> Integer
@@ -22717,6 +22753,8 @@ module Aws::RDS
22717
22753
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
22718
22754
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
22719
22755
  # resp.db_cluster.storage_throughput #=> Integer
22756
+ # resp.db_cluster.certificate_details.ca_identifier #=> String
22757
+ # resp.db_cluster.certificate_details.valid_till #=> Time
22720
22758
  #
22721
22759
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
22722
22760
  #
@@ -22985,6 +23023,8 @@ module Aws::RDS
22985
23023
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
22986
23024
  # resp.db_cluster.pending_modified_values.iops #=> Integer
22987
23025
  # resp.db_cluster.pending_modified_values.storage_type #=> String
23026
+ # resp.db_cluster.pending_modified_values.certificate_details.ca_identifier #=> String
23027
+ # resp.db_cluster.pending_modified_values.certificate_details.valid_till #=> Time
22988
23028
  # resp.db_cluster.db_cluster_instance_class #=> String
22989
23029
  # resp.db_cluster.storage_type #=> String
22990
23030
  # resp.db_cluster.iops #=> Integer
@@ -23008,6 +23048,8 @@ module Aws::RDS
23008
23048
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
23009
23049
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
23010
23050
  # resp.db_cluster.storage_throughput #=> Integer
23051
+ # resp.db_cluster.certificate_details.ca_identifier #=> String
23052
+ # resp.db_cluster.certificate_details.valid_till #=> Time
23011
23053
  #
23012
23054
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBCluster AWS API Documentation
23013
23055
  #
@@ -24509,6 +24551,8 @@ module Aws::RDS
24509
24551
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
24510
24552
  # resp.db_cluster.pending_modified_values.iops #=> Integer
24511
24553
  # resp.db_cluster.pending_modified_values.storage_type #=> String
24554
+ # resp.db_cluster.pending_modified_values.certificate_details.ca_identifier #=> String
24555
+ # resp.db_cluster.pending_modified_values.certificate_details.valid_till #=> Time
24512
24556
  # resp.db_cluster.db_cluster_instance_class #=> String
24513
24557
  # resp.db_cluster.storage_type #=> String
24514
24558
  # resp.db_cluster.iops #=> Integer
@@ -24532,6 +24576,8 @@ module Aws::RDS
24532
24576
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
24533
24577
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
24534
24578
  # resp.db_cluster.storage_throughput #=> Integer
24579
+ # resp.db_cluster.certificate_details.ca_identifier #=> String
24580
+ # resp.db_cluster.certificate_details.valid_till #=> Time
24535
24581
  #
24536
24582
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
24537
24583
  #
@@ -25224,6 +25270,8 @@ module Aws::RDS
25224
25270
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
25225
25271
  # resp.db_cluster.pending_modified_values.iops #=> Integer
25226
25272
  # resp.db_cluster.pending_modified_values.storage_type #=> String
25273
+ # resp.db_cluster.pending_modified_values.certificate_details.ca_identifier #=> String
25274
+ # resp.db_cluster.pending_modified_values.certificate_details.valid_till #=> Time
25227
25275
  # resp.db_cluster.db_cluster_instance_class #=> String
25228
25276
  # resp.db_cluster.storage_type #=> String
25229
25277
  # resp.db_cluster.iops #=> Integer
@@ -25247,6 +25295,8 @@ module Aws::RDS
25247
25295
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
25248
25296
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
25249
25297
  # resp.db_cluster.storage_throughput #=> Integer
25298
+ # resp.db_cluster.certificate_details.ca_identifier #=> String
25299
+ # resp.db_cluster.certificate_details.valid_till #=> Time
25250
25300
  #
25251
25301
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
25252
25302
  #
@@ -25914,6 +25964,8 @@ module Aws::RDS
25914
25964
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
25915
25965
  # resp.db_cluster.pending_modified_values.iops #=> Integer
25916
25966
  # resp.db_cluster.pending_modified_values.storage_type #=> String
25967
+ # resp.db_cluster.pending_modified_values.certificate_details.ca_identifier #=> String
25968
+ # resp.db_cluster.pending_modified_values.certificate_details.valid_till #=> Time
25917
25969
  # resp.db_cluster.db_cluster_instance_class #=> String
25918
25970
  # resp.db_cluster.storage_type #=> String
25919
25971
  # resp.db_cluster.iops #=> Integer
@@ -25937,6 +25989,8 @@ module Aws::RDS
25937
25989
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
25938
25990
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
25939
25991
  # resp.db_cluster.storage_throughput #=> Integer
25992
+ # resp.db_cluster.certificate_details.ca_identifier #=> String
25993
+ # resp.db_cluster.certificate_details.valid_till #=> Time
25940
25994
  #
25941
25995
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
25942
25996
  #
@@ -26170,10 +26224,10 @@ module Aws::RDS
26170
26224
  # @option params [String] :storage_type
26171
26225
  # Specifies the storage type to be associated with the DB instance.
26172
26226
  #
26173
- # Valid Values: `gp2 | gp3 | io1 | standard`
26227
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
26174
26228
  #
26175
- # If you specify `io1` or `gp3`, you must also include a value for the
26176
- # `Iops` parameter.
26229
+ # If you specify `io1`, `io2`, or `gp3`, you must also include a value
26230
+ # for the `Iops` parameter.
26177
26231
  #
26178
26232
  # Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
26179
26233
  #
@@ -26997,10 +27051,10 @@ module Aws::RDS
26997
27051
  # @option params [String] :storage_type
26998
27052
  # Specifies the storage type to be associated with the DB instance.
26999
27053
  #
27000
- # Valid Values: `gp2 | gp3 | io1 | standard`
27054
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
27001
27055
  #
27002
- # If you specify `io1` or `gp3`, you must also include a value for the
27003
- # `Iops` parameter.
27056
+ # If you specify `io1`, `io2`, or `gp3`, you must also include a value
27057
+ # for the `Iops` parameter.
27004
27058
  #
27005
27059
  # Default: `io1` if the `Iops` parameter is specified; otherwise `gp2`
27006
27060
  #
@@ -27731,15 +27785,15 @@ module Aws::RDS
27731
27785
  # @option params [String] :storage_type
27732
27786
  # The storage type to associate with the DB instance.
27733
27787
  #
27734
- # Valid Values: `gp2 | gp3 | io1 | standard`
27788
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
27735
27789
  #
27736
27790
  # Default: `io1`, if the `Iops` parameter is specified. Otherwise,
27737
27791
  # `gp2`.
27738
27792
  #
27739
27793
  # Constraints:
27740
27794
  #
27741
- # * If you specify `io1` or `gp3`, you must also include a value for the
27742
- # `Iops` parameter.
27795
+ # * If you specify `io1`, `io2`, or `gp3`, you must also include a value
27796
+ # for the `Iops` parameter.
27743
27797
  #
27744
27798
  # ^
27745
27799
  #
@@ -28721,6 +28775,8 @@ module Aws::RDS
28721
28775
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
28722
28776
  # resp.db_cluster.pending_modified_values.iops #=> Integer
28723
28777
  # resp.db_cluster.pending_modified_values.storage_type #=> String
28778
+ # resp.db_cluster.pending_modified_values.certificate_details.ca_identifier #=> String
28779
+ # resp.db_cluster.pending_modified_values.certificate_details.valid_till #=> Time
28724
28780
  # resp.db_cluster.db_cluster_instance_class #=> String
28725
28781
  # resp.db_cluster.storage_type #=> String
28726
28782
  # resp.db_cluster.iops #=> Integer
@@ -28744,6 +28800,8 @@ module Aws::RDS
28744
28800
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
28745
28801
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
28746
28802
  # resp.db_cluster.storage_throughput #=> Integer
28803
+ # resp.db_cluster.certificate_details.ca_identifier #=> String
28804
+ # resp.db_cluster.certificate_details.valid_till #=> Time
28747
28805
  #
28748
28806
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
28749
28807
  #
@@ -29558,6 +29616,8 @@ module Aws::RDS
29558
29616
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
29559
29617
  # resp.db_cluster.pending_modified_values.iops #=> Integer
29560
29618
  # resp.db_cluster.pending_modified_values.storage_type #=> String
29619
+ # resp.db_cluster.pending_modified_values.certificate_details.ca_identifier #=> String
29620
+ # resp.db_cluster.pending_modified_values.certificate_details.valid_till #=> Time
29561
29621
  # resp.db_cluster.db_cluster_instance_class #=> String
29562
29622
  # resp.db_cluster.storage_type #=> String
29563
29623
  # resp.db_cluster.iops #=> Integer
@@ -29581,6 +29641,8 @@ module Aws::RDS
29581
29641
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
29582
29642
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
29583
29643
  # resp.db_cluster.storage_throughput #=> Integer
29644
+ # resp.db_cluster.certificate_details.ca_identifier #=> String
29645
+ # resp.db_cluster.certificate_details.valid_till #=> Time
29584
29646
  #
29585
29647
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
29586
29648
  #
@@ -30428,7 +30490,7 @@ module Aws::RDS
30428
30490
  params: params,
30429
30491
  config: config)
30430
30492
  context[:gem_name] = 'aws-sdk-rds'
30431
- context[:gem_version] = '1.219.0'
30493
+ context[:gem_version] = '1.220.0'
30432
30494
  Seahorse::Client::Request.new(handlers, context)
30433
30495
  end
30434
30496
 
@@ -908,6 +908,7 @@ module Aws::RDS
908
908
  ClusterPendingModifiedValues.add_member(:rds_custom_cluster_configuration, Shapes::ShapeRef.new(shape: RdsCustomClusterConfiguration, location_name: "RdsCustomClusterConfiguration"))
909
909
  ClusterPendingModifiedValues.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
910
910
  ClusterPendingModifiedValues.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
911
+ ClusterPendingModifiedValues.add_member(:certificate_details, Shapes::ShapeRef.new(shape: CertificateDetails, location_name: "CertificateDetails"))
911
912
  ClusterPendingModifiedValues.struct_class = Types::ClusterPendingModifiedValues
912
913
 
913
914
  ConnectionPoolConfiguration.add_member(:max_connections_percent, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxConnectionsPercent"))
@@ -1072,6 +1073,7 @@ module Aws::RDS
1072
1073
  CreateDBClusterMessage.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
1073
1074
  CreateDBClusterMessage.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
1074
1075
  CreateDBClusterMessage.add_member(:enable_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableLocalWriteForwarding"))
1076
+ CreateDBClusterMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
1075
1077
  CreateDBClusterMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
1076
1078
  CreateDBClusterMessage.struct_class = Types::CreateDBClusterMessage
1077
1079
 
@@ -1423,6 +1425,7 @@ module Aws::RDS
1423
1425
  DBCluster.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: String, location_name: "AwsBackupRecoveryPointArn"))
1424
1426
  DBCluster.add_member(:limitless_database, Shapes::ShapeRef.new(shape: LimitlessDatabase, location_name: "LimitlessDatabase"))
1425
1427
  DBCluster.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
1428
+ DBCluster.add_member(:certificate_details, Shapes::ShapeRef.new(shape: CertificateDetails, location_name: "CertificateDetails"))
1426
1429
  DBCluster.struct_class = Types::DBCluster
1427
1430
 
1428
1431
  DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
@@ -3068,6 +3071,7 @@ module Aws::RDS
3068
3071
  ModifyDBClusterMessage.add_member(:enable_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableLocalWriteForwarding"))
3069
3072
  ModifyDBClusterMessage.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: AwsBackupRecoveryPointArn, location_name: "AwsBackupRecoveryPointArn"))
3070
3073
  ModifyDBClusterMessage.add_member(:enable_limitless_database, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableLimitlessDatabase"))
3074
+ ModifyDBClusterMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
3071
3075
  ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
3072
3076
 
3073
3077
  ModifyDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
@@ -696,6 +696,22 @@ module Aws::RDS
696
696
  data[:storage_throughput]
697
697
  end
698
698
 
699
+ # Returns the details of the DB instance’s server certificate.
700
+ #
701
+ # For more information, see [Using SSL/TLS to encrypt a connection to a
702
+ # DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
703
+ # encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
704
+ # Guide*.
705
+ #
706
+ #
707
+ #
708
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
709
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
710
+ # @return [Types::CertificateDetails]
711
+ def certificate_details
712
+ data[:certificate_details]
713
+ end
714
+
699
715
  # @!endgroup
700
716
 
701
717
  # @return [Client]
@@ -907,6 +923,7 @@ module Aws::RDS
907
923
  # manage_master_user_password: false,
908
924
  # master_user_secret_kms_key_id: "String",
909
925
  # enable_local_write_forwarding: false,
926
+ # ca_certificate_identifier: "String",
910
927
  # source_region: "String",
911
928
  # })
912
929
  # @param [Hash] options ({})
@@ -1659,6 +1676,11 @@ module Aws::RDS
1659
1676
  # aren't allowed on reader DB instances.
1660
1677
  #
1661
1678
  # Valid for: Aurora DB clusters only
1679
+ # @option options [String] :ca_certificate_identifier
1680
+ # The CA certificate identifier to use for the DB cluster's server
1681
+ # certificate.
1682
+ #
1683
+ # Valid for Cluster Type: Multi-AZ DB clusters
1662
1684
  # @option options [String] :source_region
1663
1685
  # The source region of the snapshot. This is only needed when the
1664
1686
  # shapshot is encrypted and in a different region.
@@ -1857,6 +1879,7 @@ module Aws::RDS
1857
1879
  # enable_local_write_forwarding: false,
1858
1880
  # aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
1859
1881
  # enable_limitless_database: false,
1882
+ # ca_certificate_identifier: "String",
1860
1883
  # })
1861
1884
  # @param [Hash] options ({})
1862
1885
  # @option options [String] :new_db_cluster_identifier
@@ -2486,6 +2509,11 @@ module Aws::RDS
2486
2509
  # Aurora Limitless Database to create a DB shard group.
2487
2510
  #
2488
2511
  # Valid for: Aurora DB clusters only
2512
+ # @option options [String] :ca_certificate_identifier
2513
+ # The CA certificate identifier to use for the DB cluster's server
2514
+ # certificate.
2515
+ #
2516
+ # Valid for Cluster Type: Multi-AZ DB clusters
2489
2517
  # @return [DBCluster]
2490
2518
  def modify(options = {})
2491
2519
  options = options.merge(db_cluster_identifier: @id)
@@ -1147,7 +1147,7 @@ module Aws::RDS
1147
1147
  # 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for
1148
1148
  # SQL Server.
1149
1149
  #
1150
- # * Provisioned IOPS storage (io1): Must be an integer from 40 to
1150
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 40 to
1151
1151
  # 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
1152
1152
  # Server.
1153
1153
  #
@@ -1157,10 +1157,10 @@ module Aws::RDS
1157
1157
  # following:
1158
1158
  #
1159
1159
  # * General Purpose (SSD) storage (gp3): Must be an integer from 20 to
1160
- # 64000.
1160
+ # 65536.
1161
1161
  #
1162
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
1163
- # 64000.
1162
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
1163
+ # to 65536.
1164
1164
  #
1165
1165
  # RDS for MariaDB
1166
1166
  #
@@ -1170,8 +1170,8 @@ module Aws::RDS
1170
1170
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
1171
1171
  # 20 to 65536.
1172
1172
  #
1173
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
1174
- # 65536.
1173
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
1174
+ # to 65536.
1175
1175
  #
1176
1176
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
1177
1177
  #
@@ -1183,8 +1183,8 @@ module Aws::RDS
1183
1183
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
1184
1184
  # 20 to 65536.
1185
1185
  #
1186
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
1187
- # 65536.
1186
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
1187
+ # to 65536.
1188
1188
  #
1189
1189
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
1190
1190
  #
@@ -1196,8 +1196,8 @@ module Aws::RDS
1196
1196
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
1197
1197
  # 20 to 65536.
1198
1198
  #
1199
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
1200
- # 65536.
1199
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
1200
+ # to 65536.
1201
1201
  #
1202
1202
  # * Magnetic storage (standard): Must be an integer from 10 to 3072.
1203
1203
  #
@@ -1209,8 +1209,8 @@ module Aws::RDS
1209
1209
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
1210
1210
  # 20 to 65536.
1211
1211
  #
1212
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
1213
- # 65536.
1212
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
1213
+ # to 65536.
1214
1214
  #
1215
1215
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
1216
1216
  #
@@ -1226,7 +1226,7 @@ module Aws::RDS
1226
1226
  #
1227
1227
  # * Web and Express editions: Must be an integer from 20 to 16384.
1228
1228
  #
1229
- # * Provisioned IOPS storage (io1):
1229
+ # * Provisioned IOPS storage (io1, io2):
1230
1230
  #
1231
1231
  # * Enterprise and Standard editions: Must be an integer from 100 to
1232
1232
  # 16384.
@@ -1694,13 +1694,13 @@ module Aws::RDS
1694
1694
  # @option options [String] :storage_type
1695
1695
  # The storage type to associate with the DB instance.
1696
1696
  #
1697
- # If you specify `io1` or `gp3`, you must also include a value for the
1698
- # `Iops` parameter.
1697
+ # If you specify `io1`, `io2`, or `gp3`, you must also include a value
1698
+ # for the `Iops` parameter.
1699
1699
  #
1700
1700
  # This setting doesn't apply to Amazon Aurora DB instances. Storage is
1701
1701
  # managed by the DB cluster.
1702
1702
  #
1703
- # Valid Values: `gp2 | gp3 | io1 | standard`
1703
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
1704
1704
  #
1705
1705
  # Default: `io1`, if the `Iops` parameter is specified. Otherwise,
1706
1706
  # `gp2`.
@@ -2365,10 +2365,10 @@ module Aws::RDS
2365
2365
  # @option options [String] :storage_type
2366
2366
  # The storage type to associate with the read replica.
2367
2367
  #
2368
- # If you specify `io1` or `gp3`, you must also include a value for the
2369
- # `Iops` parameter.
2368
+ # If you specify `io1`, `io2`, or `gp3`, you must also include a value
2369
+ # for the `Iops` parameter.
2370
2370
  #
2371
- # Valid Values: `gp2 | gp3 | io1 | standard`
2371
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
2372
2372
  #
2373
2373
  # Default: `io1` if the `Iops` parameter is specified. Otherwise, `gp2`.
2374
2374
  # @option options [Boolean] :copy_tags_to_snapshot
@@ -3420,7 +3420,7 @@ module Aws::RDS
3420
3420
  # @option options [String] :storage_type
3421
3421
  # The storage type to associate with the DB instance.
3422
3422
  #
3423
- # If you specify Provisioned IOPS (`io1`), you must also include a value
3423
+ # If you specify `io1`), `io2`, or `gp3` you must also include a value
3424
3424
  # for the `Iops` parameter.
3425
3425
  #
3426
3426
  # If you choose to migrate your DB instance from using standard storage
@@ -3438,7 +3438,7 @@ module Aws::RDS
3438
3438
  # rebooting the instance, deleting the instance, creating a read replica
3439
3439
  # for the instance, and creating a DB snapshot of the instance.
3440
3440
  #
3441
- # Valid Values: `gp2 | gp3 | io1 | standard`
3441
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
3442
3442
  #
3443
3443
  # Default: `io1`, if the `Iops` parameter is specified. Otherwise,
3444
3444
  # `gp2`.
@@ -4333,15 +4333,15 @@ module Aws::RDS
4333
4333
  # @option options [String] :storage_type
4334
4334
  # The storage type to associate with the DB instance.
4335
4335
  #
4336
- # Valid Values: `gp2 | gp3 | io1 | standard`
4336
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
4337
4337
  #
4338
4338
  # Default: `io1`, if the `Iops` parameter is specified. Otherwise,
4339
4339
  # `gp2`.
4340
4340
  #
4341
4341
  # Constraints:
4342
4342
  #
4343
- # * If you specify `io1` or `gp3`, you must also include a value for the
4344
- # `Iops` parameter.
4343
+ # * If you specify `io1`, `io2`, or `gp3`, you must also include a value
4344
+ # for the `Iops` parameter.
4345
4345
  #
4346
4346
  # ^
4347
4347
  # @option options [String] :tde_credential_arn
@@ -875,10 +875,10 @@ module Aws::RDS
875
875
  # @option options [String] :storage_type
876
876
  # Specifies the storage type to be associated with the DB instance.
877
877
  #
878
- # Valid Values: `gp2 | gp3 | io1 | standard`
878
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
879
879
  #
880
- # If you specify `io1` or `gp3`, you must also include a value for the
881
- # `Iops` parameter.
880
+ # If you specify `io1`, `io2`, or `gp3`, you must also include a value
881
+ # for the `Iops` parameter.
882
882
  #
883
883
  # Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
884
884
  # @option options [String] :tde_credential_arn
@@ -109,6 +109,7 @@ module Aws::RDS
109
109
  # manage_master_user_password: false,
110
110
  # master_user_secret_kms_key_id: "String",
111
111
  # enable_local_write_forwarding: false,
112
+ # ca_certificate_identifier: "String",
112
113
  # source_region: "String",
113
114
  # })
114
115
  # @param [Hash] options ({})
@@ -877,6 +878,11 @@ module Aws::RDS
877
878
  # aren't allowed on reader DB instances.
878
879
  #
879
880
  # Valid for: Aurora DB clusters only
881
+ # @option options [String] :ca_certificate_identifier
882
+ # The CA certificate identifier to use for the DB cluster's server
883
+ # certificate.
884
+ #
885
+ # Valid for Cluster Type: Multi-AZ DB clusters
880
886
  # @option options [String] :source_region
881
887
  # The source region of the snapshot. This is only needed when the
882
888
  # shapshot is encrypted and in a different region.
@@ -1221,7 +1227,7 @@ module Aws::RDS
1221
1227
  # 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for
1222
1228
  # SQL Server.
1223
1229
  #
1224
- # * Provisioned IOPS storage (io1): Must be an integer from 40 to
1230
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 40 to
1225
1231
  # 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
1226
1232
  # Server.
1227
1233
  #
@@ -1231,10 +1237,10 @@ module Aws::RDS
1231
1237
  # following:
1232
1238
  #
1233
1239
  # * General Purpose (SSD) storage (gp3): Must be an integer from 20 to
1234
- # 64000.
1240
+ # 65536.
1235
1241
  #
1236
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
1237
- # 64000.
1242
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
1243
+ # to 65536.
1238
1244
  #
1239
1245
  # RDS for MariaDB
1240
1246
  #
@@ -1244,8 +1250,8 @@ module Aws::RDS
1244
1250
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
1245
1251
  # 20 to 65536.
1246
1252
  #
1247
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
1248
- # 65536.
1253
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
1254
+ # to 65536.
1249
1255
  #
1250
1256
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
1251
1257
  #
@@ -1257,8 +1263,8 @@ module Aws::RDS
1257
1263
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
1258
1264
  # 20 to 65536.
1259
1265
  #
1260
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
1261
- # 65536.
1266
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
1267
+ # to 65536.
1262
1268
  #
1263
1269
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
1264
1270
  #
@@ -1270,8 +1276,8 @@ module Aws::RDS
1270
1276
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
1271
1277
  # 20 to 65536.
1272
1278
  #
1273
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
1274
- # 65536.
1279
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
1280
+ # to 65536.
1275
1281
  #
1276
1282
  # * Magnetic storage (standard): Must be an integer from 10 to 3072.
1277
1283
  #
@@ -1283,8 +1289,8 @@ module Aws::RDS
1283
1289
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
1284
1290
  # 20 to 65536.
1285
1291
  #
1286
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
1287
- # 65536.
1292
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
1293
+ # to 65536.
1288
1294
  #
1289
1295
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
1290
1296
  #
@@ -1300,7 +1306,7 @@ module Aws::RDS
1300
1306
  #
1301
1307
  # * Web and Express editions: Must be an integer from 20 to 16384.
1302
1308
  #
1303
- # * Provisioned IOPS storage (io1):
1309
+ # * Provisioned IOPS storage (io1, io2):
1304
1310
  #
1305
1311
  # * Enterprise and Standard editions: Must be an integer from 100 to
1306
1312
  # 16384.
@@ -1768,13 +1774,13 @@ module Aws::RDS
1768
1774
  # @option options [String] :storage_type
1769
1775
  # The storage type to associate with the DB instance.
1770
1776
  #
1771
- # If you specify `io1` or `gp3`, you must also include a value for the
1772
- # `Iops` parameter.
1777
+ # If you specify `io1`, `io2`, or `gp3`, you must also include a value
1778
+ # for the `Iops` parameter.
1773
1779
  #
1774
1780
  # This setting doesn't apply to Amazon Aurora DB instances. Storage is
1775
1781
  # managed by the DB cluster.
1776
1782
  #
1777
- # Valid Values: `gp2 | gp3 | io1 | standard`
1783
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
1778
1784
  #
1779
1785
  # Default: `io1`, if the `Iops` parameter is specified. Otherwise,
1780
1786
  # `gp2`.
@@ -939,6 +939,20 @@ module Aws::RDS
939
939
  # The storage type for the DB cluster.
940
940
  # @return [String]
941
941
  #
942
+ # @!attribute [rw] certificate_details
943
+ # Returns the details of the DB instance’s server certificate.
944
+ #
945
+ # For more information, see [Using SSL/TLS to encrypt a connection to
946
+ # a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
947
+ # to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
948
+ # User Guide*.
949
+ #
950
+ #
951
+ #
952
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
953
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
954
+ # @return [Types::CertificateDetails]
955
+ #
942
956
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ClusterPendingModifiedValues AWS API Documentation
943
957
  #
944
958
  class ClusterPendingModifiedValues < Struct.new(
@@ -951,7 +965,8 @@ module Aws::RDS
951
965
  :allocated_storage,
952
966
  :rds_custom_cluster_configuration,
953
967
  :iops,
954
- :storage_type)
968
+ :storage_type,
969
+ :certificate_details)
955
970
  SENSITIVE = []
956
971
  include Aws::Structure
957
972
  end
@@ -2905,6 +2920,13 @@ module Aws::RDS
2905
2920
  # Valid for: Aurora DB clusters only
2906
2921
  # @return [Boolean]
2907
2922
  #
2923
+ # @!attribute [rw] ca_certificate_identifier
2924
+ # The CA certificate identifier to use for the DB cluster's server
2925
+ # certificate.
2926
+ #
2927
+ # Valid for Cluster Type: Multi-AZ DB clusters
2928
+ # @return [String]
2929
+ #
2908
2930
  # @!attribute [rw] source_region
2909
2931
  # The source region of the snapshot. This is only needed when the
2910
2932
  # shapshot is encrypted and in a different region.
@@ -2965,6 +2987,7 @@ module Aws::RDS
2965
2987
  :manage_master_user_password,
2966
2988
  :master_user_secret_kms_key_id,
2967
2989
  :enable_local_write_forwarding,
2990
+ :ca_certificate_identifier,
2968
2991
  :source_region)
2969
2992
  SENSITIVE = []
2970
2993
  include Aws::Structure
@@ -3331,8 +3354,8 @@ module Aws::RDS
3331
3354
  # from 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom
3332
3355
  # for SQL Server.
3333
3356
  #
3334
- # * Provisioned IOPS storage (io1): Must be an integer from 40 to
3335
- # 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
3357
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 40
3358
+ # to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
3336
3359
  # Server.
3337
3360
  #
3338
3361
  # RDS for Db2
@@ -3341,10 +3364,10 @@ module Aws::RDS
3341
3364
  # following:
3342
3365
  #
3343
3366
  # * General Purpose (SSD) storage (gp3): Must be an integer from 20
3344
- # to 64000.
3367
+ # to 65536.
3345
3368
  #
3346
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
3347
- # 64000.
3369
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
3370
+ # to 65536.
3348
3371
  #
3349
3372
  # RDS for MariaDB
3350
3373
  #
@@ -3354,8 +3377,8 @@ module Aws::RDS
3354
3377
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer
3355
3378
  # from 20 to 65536.
3356
3379
  #
3357
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
3358
- # 65536.
3380
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
3381
+ # to 65536.
3359
3382
  #
3360
3383
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
3361
3384
  #
@@ -3367,8 +3390,8 @@ module Aws::RDS
3367
3390
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer
3368
3391
  # from 20 to 65536.
3369
3392
  #
3370
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
3371
- # 65536.
3393
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
3394
+ # to 65536.
3372
3395
  #
3373
3396
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
3374
3397
  #
@@ -3380,8 +3403,8 @@ module Aws::RDS
3380
3403
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer
3381
3404
  # from 20 to 65536.
3382
3405
  #
3383
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
3384
- # 65536.
3406
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
3407
+ # to 65536.
3385
3408
  #
3386
3409
  # * Magnetic storage (standard): Must be an integer from 10 to 3072.
3387
3410
  #
@@ -3393,8 +3416,8 @@ module Aws::RDS
3393
3416
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer
3394
3417
  # from 20 to 65536.
3395
3418
  #
3396
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
3397
- # 65536.
3419
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
3420
+ # to 65536.
3398
3421
  #
3399
3422
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
3400
3423
  #
@@ -3410,7 +3433,7 @@ module Aws::RDS
3410
3433
  #
3411
3434
  # * Web and Express editions: Must be an integer from 20 to 16384.
3412
3435
  #
3413
- # * Provisioned IOPS storage (io1):
3436
+ # * Provisioned IOPS storage (io1, io2):
3414
3437
  #
3415
3438
  # * Enterprise and Standard editions: Must be an integer from 100
3416
3439
  # to 16384.
@@ -3933,13 +3956,13 @@ module Aws::RDS
3933
3956
  # @!attribute [rw] storage_type
3934
3957
  # The storage type to associate with the DB instance.
3935
3958
  #
3936
- # If you specify `io1` or `gp3`, you must also include a value for the
3937
- # `Iops` parameter.
3959
+ # If you specify `io1`, `io2`, or `gp3`, you must also include a value
3960
+ # for the `Iops` parameter.
3938
3961
  #
3939
3962
  # This setting doesn't apply to Amazon Aurora DB instances. Storage
3940
3963
  # is managed by the DB cluster.
3941
3964
  #
3942
- # Valid Values: `gp2 | gp3 | io1 | standard`
3965
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
3943
3966
  #
3944
3967
  # Default: `io1`, if the `Iops` parameter is specified. Otherwise,
3945
3968
  # `gp2`.
@@ -4744,10 +4767,10 @@ module Aws::RDS
4744
4767
  # @!attribute [rw] storage_type
4745
4768
  # The storage type to associate with the read replica.
4746
4769
  #
4747
- # If you specify `io1` or `gp3`, you must also include a value for the
4748
- # `Iops` parameter.
4770
+ # If you specify `io1`, `io2`, or `gp3`, you must also include a value
4771
+ # for the `Iops` parameter.
4749
4772
  #
4750
- # Valid Values: `gp2 | gp3 | io1 | standard`
4773
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
4751
4774
  #
4752
4775
  # Default: `io1` if the `Iops` parameter is specified. Otherwise,
4753
4776
  # `gp2`.
@@ -6877,6 +6900,20 @@ module Aws::RDS
6877
6900
  # This setting is only for non-Aurora Multi-AZ DB clusters.
6878
6901
  # @return [Integer]
6879
6902
  #
6903
+ # @!attribute [rw] certificate_details
6904
+ # Returns the details of the DB instance’s server certificate.
6905
+ #
6906
+ # For more information, see [Using SSL/TLS to encrypt a connection to
6907
+ # a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
6908
+ # to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
6909
+ # User Guide*.
6910
+ #
6911
+ #
6912
+ #
6913
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
6914
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
6915
+ # @return [Types::CertificateDetails]
6916
+ #
6880
6917
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBCluster AWS API Documentation
6881
6918
  #
6882
6919
  class DBCluster < Struct.new(
@@ -6957,7 +6994,8 @@ module Aws::RDS
6957
6994
  :local_write_forwarding_status,
6958
6995
  :aws_backup_recovery_point_arn,
6959
6996
  :limitless_database,
6960
- :storage_throughput)
6997
+ :storage_throughput,
6998
+ :certificate_details)
6961
6999
  SENSITIVE = []
6962
7000
  include Aws::Structure
6963
7001
  end
@@ -17376,6 +17414,13 @@ module Aws::RDS
17376
17414
  # Valid for: Aurora DB clusters only
17377
17415
  # @return [Boolean]
17378
17416
  #
17417
+ # @!attribute [rw] ca_certificate_identifier
17418
+ # The CA certificate identifier to use for the DB cluster's server
17419
+ # certificate.
17420
+ #
17421
+ # Valid for Cluster Type: Multi-AZ DB clusters
17422
+ # @return [String]
17423
+ #
17379
17424
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
17380
17425
  #
17381
17426
  class ModifyDBClusterMessage < Struct.new(
@@ -17422,7 +17467,8 @@ module Aws::RDS
17422
17467
  :allow_engine_mode_change,
17423
17468
  :enable_local_write_forwarding,
17424
17469
  :aws_backup_recovery_point_arn,
17425
- :enable_limitless_database)
17470
+ :enable_limitless_database,
17471
+ :ca_certificate_identifier)
17426
17472
  SENSITIVE = []
17427
17473
  include Aws::Structure
17428
17474
  end
@@ -18061,8 +18107,8 @@ module Aws::RDS
18061
18107
  # @!attribute [rw] storage_type
18062
18108
  # The storage type to associate with the DB instance.
18063
18109
  #
18064
- # If you specify Provisioned IOPS (`io1`), you must also include a
18065
- # value for the `Iops` parameter.
18110
+ # If you specify `io1`), `io2`, or `gp3` you must also include a value
18111
+ # for the `Iops` parameter.
18066
18112
  #
18067
18113
  # If you choose to migrate your DB instance from using standard
18068
18114
  # storage to using Provisioned IOPS, or from using Provisioned IOPS to
@@ -18080,7 +18126,7 @@ module Aws::RDS
18080
18126
  # read replica for the instance, and creating a DB snapshot of the
18081
18127
  # instance.
18082
18128
  #
18083
- # Valid Values: `gp2 | gp3 | io1 | standard`
18129
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
18084
18130
  #
18085
18131
  # Default: `io1`, if the `Iops` parameter is specified. Otherwise,
18086
18132
  # `gp2`.
@@ -23605,10 +23651,10 @@ module Aws::RDS
23605
23651
  # @!attribute [rw] storage_type
23606
23652
  # Specifies the storage type to be associated with the DB instance.
23607
23653
  #
23608
- # Valid Values: `gp2 | gp3 | io1 | standard`
23654
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
23609
23655
  #
23610
- # If you specify `io1` or `gp3`, you must also include a value for the
23611
- # `Iops` parameter.
23656
+ # If you specify `io1`, `io2`, or `gp3`, you must also include a value
23657
+ # for the `Iops` parameter.
23612
23658
  #
23613
23659
  # Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
23614
23660
  # @return [String]
@@ -24277,10 +24323,10 @@ module Aws::RDS
24277
24323
  # @!attribute [rw] storage_type
24278
24324
  # Specifies the storage type to be associated with the DB instance.
24279
24325
  #
24280
- # Valid Values: `gp2 | gp3 | io1 | standard`
24326
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
24281
24327
  #
24282
- # If you specify `io1` or `gp3`, you must also include a value for the
24283
- # `Iops` parameter.
24328
+ # If you specify `io1`, `io2`, or `gp3`, you must also include a value
24329
+ # for the `Iops` parameter.
24284
24330
  #
24285
24331
  # Default: `io1` if the `Iops` parameter is specified; otherwise `gp2`
24286
24332
  # @return [String]
@@ -24873,15 +24919,15 @@ module Aws::RDS
24873
24919
  # @!attribute [rw] storage_type
24874
24920
  # The storage type to associate with the DB instance.
24875
24921
  #
24876
- # Valid Values: `gp2 | gp3 | io1 | standard`
24922
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
24877
24923
  #
24878
24924
  # Default: `io1`, if the `Iops` parameter is specified. Otherwise,
24879
24925
  # `gp2`.
24880
24926
  #
24881
24927
  # Constraints:
24882
24928
  #
24883
- # * If you specify `io1` or `gp3`, you must also include a value for
24884
- # the `Iops` parameter.
24929
+ # * If you specify `io1`, `io2`, or `gp3`, you must also include a
24930
+ # value for the `Iops` parameter.
24885
24931
  #
24886
24932
  # ^
24887
24933
  # @return [String]
@@ -26953,7 +26999,7 @@ module Aws::RDS
26953
26999
  #
26954
27000
  # @!attribute [rw] storage_type
26955
27001
  # The valid storage types for your DB instance. For example: gp2, gp3,
26956
- # io1.
27002
+ # io1, io2.
26957
27003
  # @return [String]
26958
27004
  #
26959
27005
  # @!attribute [rw] storage_size
data/lib/aws-sdk-rds.rb CHANGED
@@ -78,6 +78,6 @@ require_relative 'aws-sdk-rds/customizations'
78
78
  # @!group service
79
79
  module Aws::RDS
80
80
 
81
- GEM_VERSION = '1.219.0'
81
+ GEM_VERSION = '1.220.0'
82
82
 
83
83
  end
data/sig/client.rbs CHANGED
@@ -435,6 +435,7 @@ module Aws
435
435
  ?manage_master_user_password: bool,
436
436
  ?master_user_secret_kms_key_id: ::String,
437
437
  ?enable_local_write_forwarding: bool,
438
+ ?ca_certificate_identifier: ::String,
438
439
  ?source_region: ::String
439
440
  ) -> _CreateDBClusterResponseSuccess
440
441
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBClusterResponseSuccess
@@ -2274,7 +2275,8 @@ module Aws
2274
2275
  ?allow_engine_mode_change: bool,
2275
2276
  ?enable_local_write_forwarding: bool,
2276
2277
  ?aws_backup_recovery_point_arn: ::String,
2277
- ?enable_limitless_database: bool
2278
+ ?enable_limitless_database: bool,
2279
+ ?ca_certificate_identifier: ::String
2278
2280
  ) -> _ModifyDBClusterResponseSuccess
2279
2281
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBClusterResponseSuccess
2280
2282
 
data/sig/db_cluster.rbs CHANGED
@@ -249,6 +249,9 @@ module Aws
249
249
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#storage_throughput-instance_method
250
250
  def storage_throughput: () -> ::Integer
251
251
 
252
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#certificate_details-instance_method
253
+ def certificate_details: () -> Types::CertificateDetails
254
+
252
255
  def client: () -> Client
253
256
 
254
257
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#load-instance_method
@@ -334,6 +337,7 @@ module Aws
334
337
  ?manage_master_user_password: bool,
335
338
  ?master_user_secret_kms_key_id: ::String,
336
339
  ?enable_local_write_forwarding: bool,
340
+ ?ca_certificate_identifier: ::String,
337
341
  ?source_region: ::String
338
342
  ) -> DBCluster
339
343
  | (?Hash[Symbol, untyped]) -> DBCluster
@@ -421,7 +425,8 @@ module Aws
421
425
  ?allow_engine_mode_change: bool,
422
426
  ?enable_local_write_forwarding: bool,
423
427
  ?aws_backup_recovery_point_arn: ::String,
424
- ?enable_limitless_database: bool
428
+ ?enable_limitless_database: bool,
429
+ ?ca_certificate_identifier: ::String
425
430
  ) -> DBCluster
426
431
  | (?Hash[Symbol, untyped]) -> DBCluster
427
432
 
data/sig/resource.rbs CHANGED
@@ -147,6 +147,7 @@ module Aws
147
147
  ?manage_master_user_password: bool,
148
148
  ?master_user_secret_kms_key_id: ::String,
149
149
  ?enable_local_write_forwarding: bool,
150
+ ?ca_certificate_identifier: ::String,
150
151
  ?source_region: ::String
151
152
  ) -> DBCluster
152
153
  | (?Hash[Symbol, untyped]) -> DBCluster
data/sig/types.rbs CHANGED
@@ -192,6 +192,7 @@ module Aws::RDS
192
192
  attr_accessor rds_custom_cluster_configuration: Types::RdsCustomClusterConfiguration
193
193
  attr_accessor iops: ::Integer
194
194
  attr_accessor storage_type: ::String
195
+ attr_accessor certificate_details: Types::CertificateDetails
195
196
  SENSITIVE: []
196
197
  end
197
198
 
@@ -391,6 +392,7 @@ module Aws::RDS
391
392
  attr_accessor manage_master_user_password: bool
392
393
  attr_accessor master_user_secret_kms_key_id: ::String
393
394
  attr_accessor enable_local_write_forwarding: bool
395
+ attr_accessor ca_certificate_identifier: ::String
394
396
  attr_accessor source_region: ::String
395
397
  SENSITIVE: []
396
398
  end
@@ -812,6 +814,7 @@ module Aws::RDS
812
814
  attr_accessor aws_backup_recovery_point_arn: ::String
813
815
  attr_accessor limitless_database: Types::LimitlessDatabase
814
816
  attr_accessor storage_throughput: ::Integer
817
+ attr_accessor certificate_details: Types::CertificateDetails
815
818
  SENSITIVE: []
816
819
  end
817
820
 
@@ -2837,6 +2840,7 @@ module Aws::RDS
2837
2840
  attr_accessor enable_local_write_forwarding: bool
2838
2841
  attr_accessor aws_backup_recovery_point_arn: ::String
2839
2842
  attr_accessor enable_limitless_database: bool
2843
+ attr_accessor ca_certificate_identifier: ::String
2840
2844
  SENSITIVE: []
2841
2845
  end
2842
2846
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.219.0
4
+ version: 1.220.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-26 00:00:00.000000000 Z
11
+ date: 2024-03-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core