aws-sdk-rds 1.218.0 → 1.220.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2f4f8ce66e1dabf20ddea2db6f8b09d8a10bd4c6acbd97d58e76da2619983e5f
4
- data.tar.gz: e10a3fce7e6b571e9eb5aa54c15d2a487296a4f466722aead59418b859ff0bdb
3
+ metadata.gz: eaf37db5144f0118605b8016ba8cb77453737f9ea4264f2f7d4ff75e90a97ad9
4
+ data.tar.gz: 6a08f9e88973da3f216b392ae086d54402fc35168b424384678c2f42f1e676fe
5
5
  SHA512:
6
- metadata.gz: 405727d5f6cc75602187fe13de4126753b7b17be7c5f363eb3b6b46ebfbc40ed2c92770f9aa4d92d4244cf08be51a0cbb7e09340346584a132a2ef68a905b57f
7
- data.tar.gz: 1408c4ef875e48b5018cbdefd15568b191a0f3f3188e6a4be690c1a4ab6e5903ee929f9413cf29d320688d796c97ab82886f7a643088aeac63923de6d0d18028
6
+ metadata.gz: edec2d6615d15bad15b0b1f46ac56f8b54d4c0c73bf5e904f3a77a94350fb9f346335dbe1ae9d9c4c57a453dd1c857e153403bd49d398dfd6c0c8e9e08d9f371
7
+ data.tar.gz: 17f84b6d4290acb1609e9d538b18b64df655418f561e3d5902c4ff6584c0bea14cc66c6eba03b0d74191cd3c2dd11ae61437a2f8ab681e4786eab51d9a9f64ca
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.219.0 (2024-02-26)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for gp3 data volumes for Multi-AZ DB Clusters.
13
+
4
14
  1.218.0 (2024-02-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.218.0
1
+ 1.220.0
@@ -1417,6 +1417,7 @@ module Aws::RDS
1417
1417
  # resp.db_cluster_snapshot.db_system_id #=> String
1418
1418
  # resp.db_cluster_snapshot.storage_type #=> String
1419
1419
  # resp.db_cluster_snapshot.db_cluster_resource_id #=> String
1420
+ # resp.db_cluster_snapshot.storage_throughput #=> Integer
1420
1421
  #
1421
1422
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBClusterSnapshot AWS API Documentation
1422
1423
  #
@@ -3318,6 +3319,12 @@ module Aws::RDS
3318
3319
  #
3319
3320
  # Valid for: Aurora DB clusters only
3320
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
+ #
3321
3328
  # @option params [String] :source_region
3322
3329
  # The source region of the snapshot. This is only needed when the
3323
3330
  # shapshot is encrypted and in a different region.
@@ -3528,6 +3535,7 @@ module Aws::RDS
3528
3535
  # manage_master_user_password: false,
3529
3536
  # master_user_secret_kms_key_id: "String",
3530
3537
  # enable_local_write_forwarding: false,
3538
+ # ca_certificate_identifier: "String",
3531
3539
  # source_region: "String",
3532
3540
  # })
3533
3541
  #
@@ -3642,6 +3650,8 @@ module Aws::RDS
3642
3650
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
3643
3651
  # resp.db_cluster.pending_modified_values.iops #=> Integer
3644
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
3645
3655
  # resp.db_cluster.db_cluster_instance_class #=> String
3646
3656
  # resp.db_cluster.storage_type #=> String
3647
3657
  # resp.db_cluster.iops #=> Integer
@@ -3664,6 +3674,9 @@ module Aws::RDS
3664
3674
  # resp.db_cluster.aws_backup_recovery_point_arn #=> String
3665
3675
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
3666
3676
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
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
3667
3680
  #
3668
3681
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
3669
3682
  #
@@ -4090,6 +4103,7 @@ module Aws::RDS
4090
4103
  # resp.db_cluster_snapshot.db_system_id #=> String
4091
4104
  # resp.db_cluster_snapshot.storage_type #=> String
4092
4105
  # resp.db_cluster_snapshot.db_cluster_resource_id #=> String
4106
+ # resp.db_cluster_snapshot.storage_throughput #=> Integer
4093
4107
  #
4094
4108
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterSnapshot AWS API Documentation
4095
4109
  #
@@ -4282,7 +4296,7 @@ module Aws::RDS
4282
4296
  # 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for
4283
4297
  # SQL Server.
4284
4298
  #
4285
- # * Provisioned IOPS storage (io1): Must be an integer from 40 to
4299
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 40 to
4286
4300
  # 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
4287
4301
  # Server.
4288
4302
  #
@@ -4292,10 +4306,10 @@ module Aws::RDS
4292
4306
  # following:
4293
4307
  #
4294
4308
  # * General Purpose (SSD) storage (gp3): Must be an integer from 20 to
4295
- # 64000.
4309
+ # 65536.
4296
4310
  #
4297
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
4298
- # 64000.
4311
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
4312
+ # to 65536.
4299
4313
  #
4300
4314
  # RDS for MariaDB
4301
4315
  #
@@ -4305,8 +4319,8 @@ module Aws::RDS
4305
4319
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
4306
4320
  # 20 to 65536.
4307
4321
  #
4308
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
4309
- # 65536.
4322
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
4323
+ # to 65536.
4310
4324
  #
4311
4325
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
4312
4326
  #
@@ -4318,8 +4332,8 @@ module Aws::RDS
4318
4332
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
4319
4333
  # 20 to 65536.
4320
4334
  #
4321
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
4322
- # 65536.
4335
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
4336
+ # to 65536.
4323
4337
  #
4324
4338
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
4325
4339
  #
@@ -4331,8 +4345,8 @@ module Aws::RDS
4331
4345
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
4332
4346
  # 20 to 65536.
4333
4347
  #
4334
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
4335
- # 65536.
4348
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
4349
+ # to 65536.
4336
4350
  #
4337
4351
  # * Magnetic storage (standard): Must be an integer from 10 to 3072.
4338
4352
  #
@@ -4344,8 +4358,8 @@ module Aws::RDS
4344
4358
  # * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
4345
4359
  # 20 to 65536.
4346
4360
  #
4347
- # * Provisioned IOPS storage (io1): Must be an integer from 100 to
4348
- # 65536.
4361
+ # * Provisioned IOPS storage (io1, io2): Must be an integer from 100
4362
+ # to 65536.
4349
4363
  #
4350
4364
  # * Magnetic storage (standard): Must be an integer from 5 to 3072.
4351
4365
  #
@@ -4361,7 +4375,7 @@ module Aws::RDS
4361
4375
  #
4362
4376
  # * Web and Express editions: Must be an integer from 20 to 16384.
4363
4377
  #
4364
- # * Provisioned IOPS storage (io1):
4378
+ # * Provisioned IOPS storage (io1, io2):
4365
4379
  #
4366
4380
  # * Enterprise and Standard editions: Must be an integer from 100 to
4367
4381
  # 16384.
@@ -4854,13 +4868,13 @@ module Aws::RDS
4854
4868
  # @option params [String] :storage_type
4855
4869
  # The storage type to associate with the DB instance.
4856
4870
  #
4857
- # If you specify `io1` or `gp3`, you must also include a value for the
4858
- # `Iops` parameter.
4871
+ # If you specify `io1`, `io2`, or `gp3`, you must also include a value
4872
+ # for the `Iops` parameter.
4859
4873
  #
4860
4874
  # This setting doesn't apply to Amazon Aurora DB instances. Storage is
4861
4875
  # managed by the DB cluster.
4862
4876
  #
4863
- # Valid Values: `gp2 | gp3 | io1 | standard`
4877
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
4864
4878
  #
4865
4879
  # Default: `io1`, if the `Iops` parameter is specified. Otherwise,
4866
4880
  # `gp2`.
@@ -5926,10 +5940,10 @@ module Aws::RDS
5926
5940
  # @option params [String] :storage_type
5927
5941
  # The storage type to associate with the read replica.
5928
5942
  #
5929
- # If you specify `io1` or `gp3`, you must also include a value for the
5930
- # `Iops` parameter.
5943
+ # If you specify `io1`, `io2`, or `gp3`, you must also include a value
5944
+ # for the `Iops` parameter.
5931
5945
  #
5932
- # Valid Values: `gp2 | gp3 | io1 | standard`
5946
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
5933
5947
  #
5934
5948
  # Default: `io1` if the `Iops` parameter is specified. Otherwise, `gp2`.
5935
5949
  #
@@ -8783,6 +8797,8 @@ module Aws::RDS
8783
8797
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
8784
8798
  # resp.db_cluster.pending_modified_values.iops #=> Integer
8785
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
8786
8802
  # resp.db_cluster.db_cluster_instance_class #=> String
8787
8803
  # resp.db_cluster.storage_type #=> String
8788
8804
  # resp.db_cluster.iops #=> Integer
@@ -8805,6 +8821,9 @@ module Aws::RDS
8805
8821
  # resp.db_cluster.aws_backup_recovery_point_arn #=> String
8806
8822
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
8807
8823
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
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
8808
8827
  #
8809
8828
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
8810
8829
  #
@@ -8861,6 +8880,7 @@ module Aws::RDS
8861
8880
  # resp.db_cluster_automated_backup.storage_type #=> String
8862
8881
  # resp.db_cluster_automated_backup.iops #=> Integer
8863
8882
  # resp.db_cluster_automated_backup.aws_backup_recovery_point_arn #=> String
8883
+ # resp.db_cluster_automated_backup.storage_throughput #=> Integer
8864
8884
  #
8865
8885
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterAutomatedBackup AWS API Documentation
8866
8886
  #
@@ -9106,6 +9126,7 @@ module Aws::RDS
9106
9126
  # resp.db_cluster_snapshot.db_system_id #=> String
9107
9127
  # resp.db_cluster_snapshot.storage_type #=> String
9108
9128
  # resp.db_cluster_snapshot.db_cluster_resource_id #=> String
9129
+ # resp.db_cluster_snapshot.storage_throughput #=> Integer
9109
9130
  #
9110
9131
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterSnapshot AWS API Documentation
9111
9132
  #
@@ -10972,6 +10993,7 @@ module Aws::RDS
10972
10993
  # resp.db_cluster_automated_backups[0].storage_type #=> String
10973
10994
  # resp.db_cluster_automated_backups[0].iops #=> Integer
10974
10995
  # resp.db_cluster_automated_backups[0].aws_backup_recovery_point_arn #=> String
10996
+ # resp.db_cluster_automated_backups[0].storage_throughput #=> Integer
10975
10997
  #
10976
10998
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterAutomatedBackups AWS API Documentation
10977
10999
  #
@@ -11876,6 +11898,7 @@ module Aws::RDS
11876
11898
  # resp.db_cluster_snapshots[0].db_system_id #=> String
11877
11899
  # resp.db_cluster_snapshots[0].storage_type #=> String
11878
11900
  # resp.db_cluster_snapshots[0].db_cluster_resource_id #=> String
11901
+ # resp.db_cluster_snapshots[0].storage_throughput #=> Integer
11879
11902
  #
11880
11903
  #
11881
11904
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -12198,6 +12221,8 @@ module Aws::RDS
12198
12221
  # resp.db_clusters[0].pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
12199
12222
  # resp.db_clusters[0].pending_modified_values.iops #=> Integer
12200
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
12201
12226
  # resp.db_clusters[0].db_cluster_instance_class #=> String
12202
12227
  # resp.db_clusters[0].storage_type #=> String
12203
12228
  # resp.db_clusters[0].iops #=> Integer
@@ -12220,6 +12245,9 @@ module Aws::RDS
12220
12245
  # resp.db_clusters[0].aws_backup_recovery_point_arn #=> String
12221
12246
  # resp.db_clusters[0].limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
12222
12247
  # resp.db_clusters[0].limitless_database.min_required_acu #=> Float
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
12223
12251
  #
12224
12252
  #
12225
12253
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -17466,6 +17494,8 @@ module Aws::RDS
17466
17494
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
17467
17495
  # resp.db_cluster.pending_modified_values.iops #=> Integer
17468
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
17469
17499
  # resp.db_cluster.db_cluster_instance_class #=> String
17470
17500
  # resp.db_cluster.storage_type #=> String
17471
17501
  # resp.db_cluster.iops #=> Integer
@@ -17488,6 +17518,9 @@ module Aws::RDS
17488
17518
  # resp.db_cluster.aws_backup_recovery_point_arn #=> String
17489
17519
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
17490
17520
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
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
17491
17524
  #
17492
17525
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
17493
17526
  #
@@ -18866,6 +18899,12 @@ module Aws::RDS
18866
18899
  #
18867
18900
  # Valid for: Aurora DB clusters only
18868
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
+ #
18869
18908
  # @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
18870
18909
  #
18871
18910
  # * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
@@ -19005,6 +19044,7 @@ module Aws::RDS
19005
19044
  # enable_local_write_forwarding: false,
19006
19045
  # aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
19007
19046
  # enable_limitless_database: false,
19047
+ # ca_certificate_identifier: "String",
19008
19048
  # })
19009
19049
  #
19010
19050
  # @example Response structure
@@ -19118,6 +19158,8 @@ module Aws::RDS
19118
19158
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
19119
19159
  # resp.db_cluster.pending_modified_values.iops #=> Integer
19120
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
19121
19163
  # resp.db_cluster.db_cluster_instance_class #=> String
19122
19164
  # resp.db_cluster.storage_type #=> String
19123
19165
  # resp.db_cluster.iops #=> Integer
@@ -19140,6 +19182,9 @@ module Aws::RDS
19140
19182
  # resp.db_cluster.aws_backup_recovery_point_arn #=> String
19141
19183
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
19142
19184
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
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
19143
19188
  #
19144
19189
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
19145
19190
  #
@@ -19966,7 +20011,7 @@ module Aws::RDS
19966
20011
  # @option params [String] :storage_type
19967
20012
  # The storage type to associate with the DB instance.
19968
20013
  #
19969
- # 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
19970
20015
  # for the `Iops` parameter.
19971
20016
  #
19972
20017
  # If you choose to migrate your DB instance from using standard storage
@@ -19984,7 +20029,7 @@ module Aws::RDS
19984
20029
  # rebooting the instance, deleting the instance, creating a read replica
19985
20030
  # for the instance, and creating a DB snapshot of the instance.
19986
20031
  #
19987
- # Valid Values: `gp2 | gp3 | io1 | standard`
20032
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
19988
20033
  #
19989
20034
  # Default: `io1`, if the `Iops` parameter is specified. Otherwise,
19990
20035
  # `gp2`.
@@ -22683,6 +22728,8 @@ module Aws::RDS
22683
22728
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
22684
22729
  # resp.db_cluster.pending_modified_values.iops #=> Integer
22685
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
22686
22733
  # resp.db_cluster.db_cluster_instance_class #=> String
22687
22734
  # resp.db_cluster.storage_type #=> String
22688
22735
  # resp.db_cluster.iops #=> Integer
@@ -22705,6 +22752,9 @@ module Aws::RDS
22705
22752
  # resp.db_cluster.aws_backup_recovery_point_arn #=> String
22706
22753
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
22707
22754
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
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
22708
22758
  #
22709
22759
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
22710
22760
  #
@@ -22973,6 +23023,8 @@ module Aws::RDS
22973
23023
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
22974
23024
  # resp.db_cluster.pending_modified_values.iops #=> Integer
22975
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
22976
23028
  # resp.db_cluster.db_cluster_instance_class #=> String
22977
23029
  # resp.db_cluster.storage_type #=> String
22978
23030
  # resp.db_cluster.iops #=> Integer
@@ -22995,6 +23047,9 @@ module Aws::RDS
22995
23047
  # resp.db_cluster.aws_backup_recovery_point_arn #=> String
22996
23048
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
22997
23049
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
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
22998
23053
  #
22999
23054
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBCluster AWS API Documentation
23000
23055
  #
@@ -24496,6 +24551,8 @@ module Aws::RDS
24496
24551
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
24497
24552
  # resp.db_cluster.pending_modified_values.iops #=> Integer
24498
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
24499
24556
  # resp.db_cluster.db_cluster_instance_class #=> String
24500
24557
  # resp.db_cluster.storage_type #=> String
24501
24558
  # resp.db_cluster.iops #=> Integer
@@ -24518,6 +24575,9 @@ module Aws::RDS
24518
24575
  # resp.db_cluster.aws_backup_recovery_point_arn #=> String
24519
24576
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
24520
24577
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
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
24521
24581
  #
24522
24582
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
24523
24583
  #
@@ -25210,6 +25270,8 @@ module Aws::RDS
25210
25270
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
25211
25271
  # resp.db_cluster.pending_modified_values.iops #=> Integer
25212
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
25213
25275
  # resp.db_cluster.db_cluster_instance_class #=> String
25214
25276
  # resp.db_cluster.storage_type #=> String
25215
25277
  # resp.db_cluster.iops #=> Integer
@@ -25232,6 +25294,9 @@ module Aws::RDS
25232
25294
  # resp.db_cluster.aws_backup_recovery_point_arn #=> String
25233
25295
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
25234
25296
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
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
25235
25300
  #
25236
25301
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
25237
25302
  #
@@ -25899,6 +25964,8 @@ module Aws::RDS
25899
25964
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
25900
25965
  # resp.db_cluster.pending_modified_values.iops #=> Integer
25901
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
25902
25969
  # resp.db_cluster.db_cluster_instance_class #=> String
25903
25970
  # resp.db_cluster.storage_type #=> String
25904
25971
  # resp.db_cluster.iops #=> Integer
@@ -25921,6 +25988,9 @@ module Aws::RDS
25921
25988
  # resp.db_cluster.aws_backup_recovery_point_arn #=> String
25922
25989
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
25923
25990
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
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
25924
25994
  #
25925
25995
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
25926
25996
  #
@@ -26154,10 +26224,10 @@ module Aws::RDS
26154
26224
  # @option params [String] :storage_type
26155
26225
  # Specifies the storage type to be associated with the DB instance.
26156
26226
  #
26157
- # Valid Values: `gp2 | gp3 | io1 | standard`
26227
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
26158
26228
  #
26159
- # If you specify `io1` or `gp3`, you must also include a value for the
26160
- # `Iops` parameter.
26229
+ # If you specify `io1`, `io2`, or `gp3`, you must also include a value
26230
+ # for the `Iops` parameter.
26161
26231
  #
26162
26232
  # Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
26163
26233
  #
@@ -26420,8 +26490,7 @@ module Aws::RDS
26420
26490
  # This setting doesn't apply to RDS Custom or Amazon Aurora.
26421
26491
  #
26422
26492
  # @option params [String] :db_cluster_snapshot_identifier
26423
- # The identifier for the RDS for MySQL Multi-AZ DB cluster snapshot to
26424
- # restore from.
26493
+ # The identifier for the Multi-AZ DB cluster snapshot to restore from.
26425
26494
  #
26426
26495
  # For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
26427
26496
  # cluster deployments][1] in the *Amazon RDS User Guide*.
@@ -26441,9 +26510,6 @@ module Aws::RDS
26441
26510
  #
26442
26511
  # * Can't be the identifier of an Aurora DB cluster snapshot.
26443
26512
  #
26444
- # * Can't be the identifier of an RDS for PostgreSQL Multi-AZ DB
26445
- # cluster snapshot.
26446
- #
26447
26513
  #
26448
26514
  #
26449
26515
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
@@ -26985,10 +27051,10 @@ module Aws::RDS
26985
27051
  # @option params [String] :storage_type
26986
27052
  # Specifies the storage type to be associated with the DB instance.
26987
27053
  #
26988
- # Valid Values: `gp2 | gp3 | io1 | standard`
27054
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
26989
27055
  #
26990
- # If you specify `io1` or `gp3`, you must also include a value for the
26991
- # `Iops` parameter.
27056
+ # If you specify `io1`, `io2`, or `gp3`, you must also include a value
27057
+ # for the `Iops` parameter.
26992
27058
  #
26993
27059
  # Default: `io1` if the `Iops` parameter is specified; otherwise `gp2`
26994
27060
  #
@@ -27719,15 +27785,15 @@ module Aws::RDS
27719
27785
  # @option params [String] :storage_type
27720
27786
  # The storage type to associate with the DB instance.
27721
27787
  #
27722
- # Valid Values: `gp2 | gp3 | io1 | standard`
27788
+ # Valid Values: `gp2 | gp3 | io1 | io2 | standard`
27723
27789
  #
27724
27790
  # Default: `io1`, if the `Iops` parameter is specified. Otherwise,
27725
27791
  # `gp2`.
27726
27792
  #
27727
27793
  # Constraints:
27728
27794
  #
27729
- # * If you specify `io1` or `gp3`, you must also include a value for the
27730
- # `Iops` parameter.
27795
+ # * If you specify `io1`, `io2`, or `gp3`, you must also include a value
27796
+ # for the `Iops` parameter.
27731
27797
  #
27732
27798
  # ^
27733
27799
  #
@@ -28709,6 +28775,8 @@ module Aws::RDS
28709
28775
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
28710
28776
  # resp.db_cluster.pending_modified_values.iops #=> Integer
28711
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
28712
28780
  # resp.db_cluster.db_cluster_instance_class #=> String
28713
28781
  # resp.db_cluster.storage_type #=> String
28714
28782
  # resp.db_cluster.iops #=> Integer
@@ -28731,6 +28799,9 @@ module Aws::RDS
28731
28799
  # resp.db_cluster.aws_backup_recovery_point_arn #=> String
28732
28800
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
28733
28801
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
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
28734
28805
  #
28735
28806
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
28736
28807
  #
@@ -29545,6 +29616,8 @@ module Aws::RDS
29545
29616
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
29546
29617
  # resp.db_cluster.pending_modified_values.iops #=> Integer
29547
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
29548
29621
  # resp.db_cluster.db_cluster_instance_class #=> String
29549
29622
  # resp.db_cluster.storage_type #=> String
29550
29623
  # resp.db_cluster.iops #=> Integer
@@ -29567,6 +29640,9 @@ module Aws::RDS
29567
29640
  # resp.db_cluster.aws_backup_recovery_point_arn #=> String
29568
29641
  # resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
29569
29642
  # resp.db_cluster.limitless_database.min_required_acu #=> Float
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
29570
29646
  #
29571
29647
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
29572
29648
  #
@@ -30414,7 +30490,7 @@ module Aws::RDS
30414
30490
  params: params,
30415
30491
  config: config)
30416
30492
  context[:gem_name] = 'aws-sdk-rds'
30417
- context[:gem_version] = '1.218.0'
30493
+ context[:gem_version] = '1.220.0'
30418
30494
  Seahorse::Client::Request.new(handlers, context)
30419
30495
  end
30420
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
 
@@ -1422,6 +1424,8 @@ module Aws::RDS
1422
1424
  DBCluster.add_member(:local_write_forwarding_status, Shapes::ShapeRef.new(shape: LocalWriteForwardingStatus, location_name: "LocalWriteForwardingStatus"))
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"))
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"))
1425
1429
  DBCluster.struct_class = Types::DBCluster
1426
1430
 
1427
1431
  DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
@@ -1450,6 +1454,7 @@ module Aws::RDS
1450
1454
  DBClusterAutomatedBackup.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
1451
1455
  DBClusterAutomatedBackup.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
1452
1456
  DBClusterAutomatedBackup.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: String, location_name: "AwsBackupRecoveryPointArn"))
1457
+ DBClusterAutomatedBackup.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
1453
1458
  DBClusterAutomatedBackup.struct_class = Types::DBClusterAutomatedBackup
1454
1459
 
1455
1460
  DBClusterAutomatedBackupList.member = Shapes::ShapeRef.new(shape: DBClusterAutomatedBackup, location_name: "DBClusterAutomatedBackup")
@@ -1592,6 +1597,7 @@ module Aws::RDS
1592
1597
  DBClusterSnapshot.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
1593
1598
  DBClusterSnapshot.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
1594
1599
  DBClusterSnapshot.add_member(:db_cluster_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "DbClusterResourceId"))
1600
+ DBClusterSnapshot.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
1595
1601
  DBClusterSnapshot.struct_class = Types::DBClusterSnapshot
1596
1602
 
1597
1603
  DBClusterSnapshotAlreadyExistsFault.struct_class = Types::DBClusterSnapshotAlreadyExistsFault
@@ -3065,6 +3071,7 @@ module Aws::RDS
3065
3071
  ModifyDBClusterMessage.add_member(:enable_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableLocalWriteForwarding"))
3066
3072
  ModifyDBClusterMessage.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: AwsBackupRecoveryPointArn, location_name: "AwsBackupRecoveryPointArn"))
3067
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"))
3068
3075
  ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
3069
3076
 
3070
3077
  ModifyDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
@@ -686,6 +686,32 @@ module Aws::RDS
686
686
  data[:limitless_database]
687
687
  end
688
688
 
689
+ # The storage throughput for the DB cluster. The throughput is
690
+ # automatically set based on the IOPS that you provision, and is not
691
+ # configurable.
692
+ #
693
+ # This setting is only for non-Aurora Multi-AZ DB clusters.
694
+ # @return [Integer]
695
+ def storage_throughput
696
+ data[:storage_throughput]
697
+ end
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
+
689
715
  # @!endgroup
690
716
 
691
717
  # @return [Client]
@@ -897,6 +923,7 @@ module Aws::RDS
897
923
  # manage_master_user_password: false,
898
924
  # master_user_secret_kms_key_id: "String",
899
925
  # enable_local_write_forwarding: false,
926
+ # ca_certificate_identifier: "String",
900
927
  # source_region: "String",
901
928
  # })
902
929
  # @param [Hash] options ({})
@@ -1649,6 +1676,11 @@ module Aws::RDS
1649
1676
  # aren't allowed on reader DB instances.
1650
1677
  #
1651
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
1652
1684
  # @option options [String] :source_region
1653
1685
  # The source region of the snapshot. This is only needed when the
1654
1686
  # shapshot is encrypted and in a different region.
@@ -1847,6 +1879,7 @@ module Aws::RDS
1847
1879
  # enable_local_write_forwarding: false,
1848
1880
  # aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
1849
1881
  # enable_limitless_database: false,
1882
+ # ca_certificate_identifier: "String",
1850
1883
  # })
1851
1884
  # @param [Hash] options ({})
1852
1885
  # @option options [String] :new_db_cluster_identifier
@@ -2476,6 +2509,11 @@ module Aws::RDS
2476
2509
  # Aurora Limitless Database to create a DB shard group.
2477
2510
  #
2478
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
2479
2517
  # @return [DBCluster]
2480
2518
  def modify(options = {})
2481
2519
  options = options.merge(db_cluster_identifier: @id)