aws-sdk-rds 1.203.0 → 1.205.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: 8bf1b0eeb781742ffe8459a7e2e4d7728d9e646eca258684be03159c35762bf6
4
- data.tar.gz: a1b331283999c6a0023a198bba61abad68ec7d32336774a5187d9dde807460fa
3
+ metadata.gz: e3ca33f5c3317b1232a83f1cdb7cca9e885cd57eda7e59279a6553d4ddab8892
4
+ data.tar.gz: b56033155b1529e73ba282c7817a26c123cd5bd991657bf1a65b3e300861ab00
5
5
  SHA512:
6
- metadata.gz: 3f48fa0da57a46f3dcf2138d5b15b623574ffd82b1f3f8b6f4d3b2531b518cd31acd093659d74dc123a824c95b49837207557c5c865bd1e5c1c32f64f6f13907
7
- data.tar.gz: a691ff027c93bc3557a2bca3b44d717a30e8f8aad0bd0d906b95dbc8b8761a463e57699b132450b9f2fcd6dece986610fd579896797bdd65553a2ea0889705e7
6
+ metadata.gz: deffefa6ce6e4ce2d7f91ab8bd0d76a6cc07d73c267706d8d56b648e16a63eebc012d0ebad28155ed78ec35eacab73a1b66644e30a431b78edb2c1a3a2755112
7
+ data.tar.gz: 3d5d25ae167378f3334e403e4e0f55c81fb7f670f014ea09277aa5777b40bb9881024aec9430d6d346c7c085299a28362f4bbbd437d9a43b29fbf3470fd1d677
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.205.0 (2023-11-17)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for option groups and replica enhancements to Amazon RDS Custom.
8
+
9
+ 1.204.0 (2023-11-15)
10
+ ------------------
11
+
12
+ * Feature - Updates Amazon RDS documentation for support for upgrading RDS for MySQL snapshots from version 5.7 to version 8.0.
13
+
4
14
  1.203.0 (2023-11-10)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.203.0
1
+ 1.205.0
@@ -1037,6 +1037,13 @@ module Aws::RDS
1037
1037
 
1038
1038
  # Copies the specified DB cluster parameter group.
1039
1039
  #
1040
+ # <note markdown="1"> You can't copy a default DB cluster parameter group. Instead, create
1041
+ # a new custom DB cluster parameter group, which copies the default
1042
+ # parameters and values for the specified DB cluster parameter group
1043
+ # family.
1044
+ #
1045
+ # </note>
1046
+ #
1040
1047
  # @option params [required, String] :source_db_cluster_parameter_group_identifier
1041
1048
  # The identifier or Amazon Resource Name (ARN) for the source DB cluster
1042
1049
  # parameter group. For information about creating an ARN, see [
@@ -1422,6 +1429,12 @@ module Aws::RDS
1422
1429
 
1423
1430
  # Copies the specified DB parameter group.
1424
1431
  #
1432
+ # <note markdown="1"> You can't copy a default DB parameter group. Instead, create a new
1433
+ # custom DB parameter group, which copies the default parameters and
1434
+ # values for the specified DB parameter group family.
1435
+ #
1436
+ # </note>
1437
+ #
1425
1438
  # @option params [required, String] :source_db_parameter_group_identifier
1426
1439
  # The identifier or ARN for the source DB parameter group. For
1427
1440
  # information about creating an ARN, see [ Constructing an ARN for
@@ -3465,6 +3478,7 @@ module Aws::RDS
3465
3478
  # rds_custom_cluster_configuration: {
3466
3479
  # interconnect_subnet_id: "String",
3467
3480
  # transit_gateway_multicast_domain_id: "String",
3481
+ # replica_mode: "open-read-only", # accepts open-read-only, mounted
3468
3482
  # },
3469
3483
  # deletion_protection: false,
3470
3484
  # global_cluster_identifier: "String",
@@ -3529,6 +3543,11 @@ module Aws::RDS
3529
3543
  # resp.db_cluster.replication_source_identifier #=> String
3530
3544
  # resp.db_cluster.read_replica_identifiers #=> Array
3531
3545
  # resp.db_cluster.read_replica_identifiers[0] #=> String
3546
+ # resp.db_cluster.status_infos #=> Array
3547
+ # resp.db_cluster.status_infos[0].status_type #=> String
3548
+ # resp.db_cluster.status_infos[0].normal #=> Boolean
3549
+ # resp.db_cluster.status_infos[0].status #=> String
3550
+ # resp.db_cluster.status_infos[0].message #=> String
3532
3551
  # resp.db_cluster.db_cluster_members #=> Array
3533
3552
  # resp.db_cluster.db_cluster_members[0].db_instance_identifier #=> String
3534
3553
  # resp.db_cluster.db_cluster_members[0].is_cluster_writer #=> Boolean
@@ -3564,6 +3583,7 @@ module Aws::RDS
3564
3583
  # resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
3565
3584
  # resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
3566
3585
  # resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
3586
+ # resp.db_cluster.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
3567
3587
  # resp.db_cluster.deletion_protection #=> Boolean
3568
3588
  # resp.db_cluster.http_endpoint_enabled #=> Boolean
3569
3589
  # resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
@@ -3598,6 +3618,7 @@ module Aws::RDS
3598
3618
  # resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
3599
3619
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
3600
3620
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
3621
+ # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
3601
3622
  # resp.db_cluster.pending_modified_values.iops #=> Integer
3602
3623
  # resp.db_cluster.pending_modified_values.storage_type #=> String
3603
3624
  # resp.db_cluster.db_cluster_instance_class #=> String
@@ -8473,6 +8494,11 @@ module Aws::RDS
8473
8494
  # resp.db_cluster.replication_source_identifier #=> String
8474
8495
  # resp.db_cluster.read_replica_identifiers #=> Array
8475
8496
  # resp.db_cluster.read_replica_identifiers[0] #=> String
8497
+ # resp.db_cluster.status_infos #=> Array
8498
+ # resp.db_cluster.status_infos[0].status_type #=> String
8499
+ # resp.db_cluster.status_infos[0].normal #=> Boolean
8500
+ # resp.db_cluster.status_infos[0].status #=> String
8501
+ # resp.db_cluster.status_infos[0].message #=> String
8476
8502
  # resp.db_cluster.db_cluster_members #=> Array
8477
8503
  # resp.db_cluster.db_cluster_members[0].db_instance_identifier #=> String
8478
8504
  # resp.db_cluster.db_cluster_members[0].is_cluster_writer #=> Boolean
@@ -8508,6 +8534,7 @@ module Aws::RDS
8508
8534
  # resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
8509
8535
  # resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
8510
8536
  # resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
8537
+ # resp.db_cluster.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
8511
8538
  # resp.db_cluster.deletion_protection #=> Boolean
8512
8539
  # resp.db_cluster.http_endpoint_enabled #=> Boolean
8513
8540
  # resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
@@ -8542,6 +8569,7 @@ module Aws::RDS
8542
8569
  # resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
8543
8570
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
8544
8571
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
8572
+ # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
8545
8573
  # resp.db_cluster.pending_modified_values.iops #=> Integer
8546
8574
  # resp.db_cluster.pending_modified_values.storage_type #=> String
8547
8575
  # resp.db_cluster.db_cluster_instance_class #=> String
@@ -11816,6 +11844,11 @@ module Aws::RDS
11816
11844
  # resp.db_clusters[0].replication_source_identifier #=> String
11817
11845
  # resp.db_clusters[0].read_replica_identifiers #=> Array
11818
11846
  # resp.db_clusters[0].read_replica_identifiers[0] #=> String
11847
+ # resp.db_clusters[0].status_infos #=> Array
11848
+ # resp.db_clusters[0].status_infos[0].status_type #=> String
11849
+ # resp.db_clusters[0].status_infos[0].normal #=> Boolean
11850
+ # resp.db_clusters[0].status_infos[0].status #=> String
11851
+ # resp.db_clusters[0].status_infos[0].message #=> String
11819
11852
  # resp.db_clusters[0].db_cluster_members #=> Array
11820
11853
  # resp.db_clusters[0].db_cluster_members[0].db_instance_identifier #=> String
11821
11854
  # resp.db_clusters[0].db_cluster_members[0].is_cluster_writer #=> Boolean
@@ -11851,6 +11884,7 @@ module Aws::RDS
11851
11884
  # resp.db_clusters[0].scaling_configuration_info.seconds_before_timeout #=> Integer
11852
11885
  # resp.db_clusters[0].rds_custom_cluster_configuration.interconnect_subnet_id #=> String
11853
11886
  # resp.db_clusters[0].rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
11887
+ # resp.db_clusters[0].rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
11854
11888
  # resp.db_clusters[0].deletion_protection #=> Boolean
11855
11889
  # resp.db_clusters[0].http_endpoint_enabled #=> Boolean
11856
11890
  # resp.db_clusters[0].activity_stream_mode #=> String, one of "sync", "async"
@@ -11885,6 +11919,7 @@ module Aws::RDS
11885
11919
  # resp.db_clusters[0].pending_modified_values.allocated_storage #=> Integer
11886
11920
  # resp.db_clusters[0].pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
11887
11921
  # resp.db_clusters[0].pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
11922
+ # resp.db_clusters[0].pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
11888
11923
  # resp.db_clusters[0].pending_modified_values.iops #=> Integer
11889
11924
  # resp.db_clusters[0].pending_modified_values.storage_type #=> String
11890
11925
  # resp.db_clusters[0].db_cluster_instance_class #=> String
@@ -16651,6 +16686,11 @@ module Aws::RDS
16651
16686
  # resp.db_cluster.replication_source_identifier #=> String
16652
16687
  # resp.db_cluster.read_replica_identifiers #=> Array
16653
16688
  # resp.db_cluster.read_replica_identifiers[0] #=> String
16689
+ # resp.db_cluster.status_infos #=> Array
16690
+ # resp.db_cluster.status_infos[0].status_type #=> String
16691
+ # resp.db_cluster.status_infos[0].normal #=> Boolean
16692
+ # resp.db_cluster.status_infos[0].status #=> String
16693
+ # resp.db_cluster.status_infos[0].message #=> String
16654
16694
  # resp.db_cluster.db_cluster_members #=> Array
16655
16695
  # resp.db_cluster.db_cluster_members[0].db_instance_identifier #=> String
16656
16696
  # resp.db_cluster.db_cluster_members[0].is_cluster_writer #=> Boolean
@@ -16686,6 +16726,7 @@ module Aws::RDS
16686
16726
  # resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
16687
16727
  # resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
16688
16728
  # resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
16729
+ # resp.db_cluster.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
16689
16730
  # resp.db_cluster.deletion_protection #=> Boolean
16690
16731
  # resp.db_cluster.http_endpoint_enabled #=> Boolean
16691
16732
  # resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
@@ -16720,6 +16761,7 @@ module Aws::RDS
16720
16761
  # resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
16721
16762
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
16722
16763
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
16764
+ # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
16723
16765
  # resp.db_cluster.pending_modified_values.iops #=> Integer
16724
16766
  # resp.db_cluster.pending_modified_values.storage_type #=> String
16725
16767
  # resp.db_cluster.db_cluster_instance_class #=> String
@@ -18280,6 +18322,11 @@ module Aws::RDS
18280
18322
  # resp.db_cluster.replication_source_identifier #=> String
18281
18323
  # resp.db_cluster.read_replica_identifiers #=> Array
18282
18324
  # resp.db_cluster.read_replica_identifiers[0] #=> String
18325
+ # resp.db_cluster.status_infos #=> Array
18326
+ # resp.db_cluster.status_infos[0].status_type #=> String
18327
+ # resp.db_cluster.status_infos[0].normal #=> Boolean
18328
+ # resp.db_cluster.status_infos[0].status #=> String
18329
+ # resp.db_cluster.status_infos[0].message #=> String
18283
18330
  # resp.db_cluster.db_cluster_members #=> Array
18284
18331
  # resp.db_cluster.db_cluster_members[0].db_instance_identifier #=> String
18285
18332
  # resp.db_cluster.db_cluster_members[0].is_cluster_writer #=> Boolean
@@ -18315,6 +18362,7 @@ module Aws::RDS
18315
18362
  # resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
18316
18363
  # resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
18317
18364
  # resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
18365
+ # resp.db_cluster.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
18318
18366
  # resp.db_cluster.deletion_protection #=> Boolean
18319
18367
  # resp.db_cluster.http_endpoint_enabled #=> Boolean
18320
18368
  # resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
@@ -18349,6 +18397,7 @@ module Aws::RDS
18349
18397
  # resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
18350
18398
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
18351
18399
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
18400
+ # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
18352
18401
  # resp.db_cluster.pending_modified_values.iops #=> Integer
18353
18402
  # resp.db_cluster.pending_modified_values.storage_type #=> String
18354
18403
  # resp.db_cluster.db_cluster_instance_class #=> String
@@ -20449,9 +20498,9 @@ module Aws::RDS
20449
20498
  #
20450
20499
  # **MySQL**
20451
20500
  #
20452
- # * `5.5.46` (supported for 5.1 DB snapshots)
20453
- #
20454
- # ^
20501
+ # For the list of engine versions that are available for upgrading a DB
20502
+ # snapshot, see [ Upgrading a MySQL DB snapshot engine version][1] in
20503
+ # the *Amazon RDS User Guide.*
20455
20504
  #
20456
20505
  # **Oracle**
20457
20506
  #
@@ -20470,11 +20519,13 @@ module Aws::RDS
20470
20519
  # **PostgreSQL**
20471
20520
  #
20472
20521
  # For the list of engine versions that are available for upgrading a DB
20473
- # snapshot, see [ Upgrading the PostgreSQL DB Engine for Amazon RDS][1].
20522
+ # snapshot, see [ Upgrading a PostgreSQL DB snapshot engine version][2]
20523
+ # in the *Amazon RDS User Guide.*
20474
20524
  #
20475
20525
  #
20476
20526
  #
20477
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.PostgreSQL.html#USER_UpgradeDBInstance.PostgreSQL.MajorVersion
20527
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/mysql-upgrade-snapshot.html
20528
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBSnapshot.PostgreSQL.html
20478
20529
  #
20479
20530
  # @option params [String] :option_group_name
20480
20531
  # The option group to identify with the upgraded DB snapshot.
@@ -21664,6 +21715,11 @@ module Aws::RDS
21664
21715
  # resp.db_cluster.replication_source_identifier #=> String
21665
21716
  # resp.db_cluster.read_replica_identifiers #=> Array
21666
21717
  # resp.db_cluster.read_replica_identifiers[0] #=> String
21718
+ # resp.db_cluster.status_infos #=> Array
21719
+ # resp.db_cluster.status_infos[0].status_type #=> String
21720
+ # resp.db_cluster.status_infos[0].normal #=> Boolean
21721
+ # resp.db_cluster.status_infos[0].status #=> String
21722
+ # resp.db_cluster.status_infos[0].message #=> String
21667
21723
  # resp.db_cluster.db_cluster_members #=> Array
21668
21724
  # resp.db_cluster.db_cluster_members[0].db_instance_identifier #=> String
21669
21725
  # resp.db_cluster.db_cluster_members[0].is_cluster_writer #=> Boolean
@@ -21699,6 +21755,7 @@ module Aws::RDS
21699
21755
  # resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
21700
21756
  # resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
21701
21757
  # resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
21758
+ # resp.db_cluster.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
21702
21759
  # resp.db_cluster.deletion_protection #=> Boolean
21703
21760
  # resp.db_cluster.http_endpoint_enabled #=> Boolean
21704
21761
  # resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
@@ -21733,6 +21790,7 @@ module Aws::RDS
21733
21790
  # resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
21734
21791
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
21735
21792
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
21793
+ # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
21736
21794
  # resp.db_cluster.pending_modified_values.iops #=> Integer
21737
21795
  # resp.db_cluster.pending_modified_values.storage_type #=> String
21738
21796
  # resp.db_cluster.db_cluster_instance_class #=> String
@@ -21945,6 +22003,11 @@ module Aws::RDS
21945
22003
  # resp.db_cluster.replication_source_identifier #=> String
21946
22004
  # resp.db_cluster.read_replica_identifiers #=> Array
21947
22005
  # resp.db_cluster.read_replica_identifiers[0] #=> String
22006
+ # resp.db_cluster.status_infos #=> Array
22007
+ # resp.db_cluster.status_infos[0].status_type #=> String
22008
+ # resp.db_cluster.status_infos[0].normal #=> Boolean
22009
+ # resp.db_cluster.status_infos[0].status #=> String
22010
+ # resp.db_cluster.status_infos[0].message #=> String
21948
22011
  # resp.db_cluster.db_cluster_members #=> Array
21949
22012
  # resp.db_cluster.db_cluster_members[0].db_instance_identifier #=> String
21950
22013
  # resp.db_cluster.db_cluster_members[0].is_cluster_writer #=> Boolean
@@ -21980,6 +22043,7 @@ module Aws::RDS
21980
22043
  # resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
21981
22044
  # resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
21982
22045
  # resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
22046
+ # resp.db_cluster.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
21983
22047
  # resp.db_cluster.deletion_protection #=> Boolean
21984
22048
  # resp.db_cluster.http_endpoint_enabled #=> Boolean
21985
22049
  # resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
@@ -22014,6 +22078,7 @@ module Aws::RDS
22014
22078
  # resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
22015
22079
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
22016
22080
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
22081
+ # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
22017
22082
  # resp.db_cluster.pending_modified_values.iops #=> Integer
22018
22083
  # resp.db_cluster.pending_modified_values.storage_type #=> String
22019
22084
  # resp.db_cluster.db_cluster_instance_class #=> String
@@ -23412,6 +23477,11 @@ module Aws::RDS
23412
23477
  # resp.db_cluster.replication_source_identifier #=> String
23413
23478
  # resp.db_cluster.read_replica_identifiers #=> Array
23414
23479
  # resp.db_cluster.read_replica_identifiers[0] #=> String
23480
+ # resp.db_cluster.status_infos #=> Array
23481
+ # resp.db_cluster.status_infos[0].status_type #=> String
23482
+ # resp.db_cluster.status_infos[0].normal #=> Boolean
23483
+ # resp.db_cluster.status_infos[0].status #=> String
23484
+ # resp.db_cluster.status_infos[0].message #=> String
23415
23485
  # resp.db_cluster.db_cluster_members #=> Array
23416
23486
  # resp.db_cluster.db_cluster_members[0].db_instance_identifier #=> String
23417
23487
  # resp.db_cluster.db_cluster_members[0].is_cluster_writer #=> Boolean
@@ -23447,6 +23517,7 @@ module Aws::RDS
23447
23517
  # resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
23448
23518
  # resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
23449
23519
  # resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
23520
+ # resp.db_cluster.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
23450
23521
  # resp.db_cluster.deletion_protection #=> Boolean
23451
23522
  # resp.db_cluster.http_endpoint_enabled #=> Boolean
23452
23523
  # resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
@@ -23481,6 +23552,7 @@ module Aws::RDS
23481
23552
  # resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
23482
23553
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
23483
23554
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
23555
+ # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
23484
23556
  # resp.db_cluster.pending_modified_values.iops #=> Integer
23485
23557
  # resp.db_cluster.pending_modified_values.storage_type #=> String
23486
23558
  # resp.db_cluster.db_cluster_instance_class #=> String
@@ -24080,6 +24152,7 @@ module Aws::RDS
24080
24152
  # rds_custom_cluster_configuration: {
24081
24153
  # interconnect_subnet_id: "String",
24082
24154
  # transit_gateway_multicast_domain_id: "String",
24155
+ # replica_mode: "open-read-only", # accepts open-read-only, mounted
24083
24156
  # },
24084
24157
  # })
24085
24158
  #
@@ -24116,6 +24189,11 @@ module Aws::RDS
24116
24189
  # resp.db_cluster.replication_source_identifier #=> String
24117
24190
  # resp.db_cluster.read_replica_identifiers #=> Array
24118
24191
  # resp.db_cluster.read_replica_identifiers[0] #=> String
24192
+ # resp.db_cluster.status_infos #=> Array
24193
+ # resp.db_cluster.status_infos[0].status_type #=> String
24194
+ # resp.db_cluster.status_infos[0].normal #=> Boolean
24195
+ # resp.db_cluster.status_infos[0].status #=> String
24196
+ # resp.db_cluster.status_infos[0].message #=> String
24119
24197
  # resp.db_cluster.db_cluster_members #=> Array
24120
24198
  # resp.db_cluster.db_cluster_members[0].db_instance_identifier #=> String
24121
24199
  # resp.db_cluster.db_cluster_members[0].is_cluster_writer #=> Boolean
@@ -24151,6 +24229,7 @@ module Aws::RDS
24151
24229
  # resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
24152
24230
  # resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
24153
24231
  # resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
24232
+ # resp.db_cluster.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
24154
24233
  # resp.db_cluster.deletion_protection #=> Boolean
24155
24234
  # resp.db_cluster.http_endpoint_enabled #=> Boolean
24156
24235
  # resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
@@ -24185,6 +24264,7 @@ module Aws::RDS
24185
24264
  # resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
24186
24265
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
24187
24266
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
24267
+ # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
24188
24268
  # resp.db_cluster.pending_modified_values.iops #=> Integer
24189
24269
  # resp.db_cluster.pending_modified_values.storage_type #=> String
24190
24270
  # resp.db_cluster.db_cluster_instance_class #=> String
@@ -24759,6 +24839,7 @@ module Aws::RDS
24759
24839
  # rds_custom_cluster_configuration: {
24760
24840
  # interconnect_subnet_id: "String",
24761
24841
  # transit_gateway_multicast_domain_id: "String",
24842
+ # replica_mode: "open-read-only", # accepts open-read-only, mounted
24762
24843
  # },
24763
24844
  # })
24764
24845
  #
@@ -24795,6 +24876,11 @@ module Aws::RDS
24795
24876
  # resp.db_cluster.replication_source_identifier #=> String
24796
24877
  # resp.db_cluster.read_replica_identifiers #=> Array
24797
24878
  # resp.db_cluster.read_replica_identifiers[0] #=> String
24879
+ # resp.db_cluster.status_infos #=> Array
24880
+ # resp.db_cluster.status_infos[0].status_type #=> String
24881
+ # resp.db_cluster.status_infos[0].normal #=> Boolean
24882
+ # resp.db_cluster.status_infos[0].status #=> String
24883
+ # resp.db_cluster.status_infos[0].message #=> String
24798
24884
  # resp.db_cluster.db_cluster_members #=> Array
24799
24885
  # resp.db_cluster.db_cluster_members[0].db_instance_identifier #=> String
24800
24886
  # resp.db_cluster.db_cluster_members[0].is_cluster_writer #=> Boolean
@@ -24830,6 +24916,7 @@ module Aws::RDS
24830
24916
  # resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
24831
24917
  # resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
24832
24918
  # resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
24919
+ # resp.db_cluster.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
24833
24920
  # resp.db_cluster.deletion_protection #=> Boolean
24834
24921
  # resp.db_cluster.http_endpoint_enabled #=> Boolean
24835
24922
  # resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
@@ -24864,6 +24951,7 @@ module Aws::RDS
24864
24951
  # resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
24865
24952
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
24866
24953
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
24954
+ # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
24867
24955
  # resp.db_cluster.pending_modified_values.iops #=> Integer
24868
24956
  # resp.db_cluster.pending_modified_values.storage_type #=> String
24869
24957
  # resp.db_cluster.db_cluster_instance_class #=> String
@@ -27575,6 +27663,11 @@ module Aws::RDS
27575
27663
  # resp.db_cluster.replication_source_identifier #=> String
27576
27664
  # resp.db_cluster.read_replica_identifiers #=> Array
27577
27665
  # resp.db_cluster.read_replica_identifiers[0] #=> String
27666
+ # resp.db_cluster.status_infos #=> Array
27667
+ # resp.db_cluster.status_infos[0].status_type #=> String
27668
+ # resp.db_cluster.status_infos[0].normal #=> Boolean
27669
+ # resp.db_cluster.status_infos[0].status #=> String
27670
+ # resp.db_cluster.status_infos[0].message #=> String
27578
27671
  # resp.db_cluster.db_cluster_members #=> Array
27579
27672
  # resp.db_cluster.db_cluster_members[0].db_instance_identifier #=> String
27580
27673
  # resp.db_cluster.db_cluster_members[0].is_cluster_writer #=> Boolean
@@ -27610,6 +27703,7 @@ module Aws::RDS
27610
27703
  # resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
27611
27704
  # resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
27612
27705
  # resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
27706
+ # resp.db_cluster.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
27613
27707
  # resp.db_cluster.deletion_protection #=> Boolean
27614
27708
  # resp.db_cluster.http_endpoint_enabled #=> Boolean
27615
27709
  # resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
@@ -27644,6 +27738,7 @@ module Aws::RDS
27644
27738
  # resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
27645
27739
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
27646
27740
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
27741
+ # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
27647
27742
  # resp.db_cluster.pending_modified_values.iops #=> Integer
27648
27743
  # resp.db_cluster.pending_modified_values.storage_type #=> String
27649
27744
  # resp.db_cluster.db_cluster_instance_class #=> String
@@ -28402,6 +28497,11 @@ module Aws::RDS
28402
28497
  # resp.db_cluster.replication_source_identifier #=> String
28403
28498
  # resp.db_cluster.read_replica_identifiers #=> Array
28404
28499
  # resp.db_cluster.read_replica_identifiers[0] #=> String
28500
+ # resp.db_cluster.status_infos #=> Array
28501
+ # resp.db_cluster.status_infos[0].status_type #=> String
28502
+ # resp.db_cluster.status_infos[0].normal #=> Boolean
28503
+ # resp.db_cluster.status_infos[0].status #=> String
28504
+ # resp.db_cluster.status_infos[0].message #=> String
28405
28505
  # resp.db_cluster.db_cluster_members #=> Array
28406
28506
  # resp.db_cluster.db_cluster_members[0].db_instance_identifier #=> String
28407
28507
  # resp.db_cluster.db_cluster_members[0].is_cluster_writer #=> Boolean
@@ -28437,6 +28537,7 @@ module Aws::RDS
28437
28537
  # resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
28438
28538
  # resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
28439
28539
  # resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
28540
+ # resp.db_cluster.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
28440
28541
  # resp.db_cluster.deletion_protection #=> Boolean
28441
28542
  # resp.db_cluster.http_endpoint_enabled #=> Boolean
28442
28543
  # resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
@@ -28471,6 +28572,7 @@ module Aws::RDS
28471
28572
  # resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
28472
28573
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
28473
28574
  # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
28575
+ # resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.replica_mode #=> String, one of "open-read-only", "mounted"
28474
28576
  # resp.db_cluster.pending_modified_values.iops #=> Integer
28475
28577
  # resp.db_cluster.pending_modified_values.storage_type #=> String
28476
28578
  # resp.db_cluster.db_cluster_instance_class #=> String
@@ -29340,7 +29442,7 @@ module Aws::RDS
29340
29442
  params: params,
29341
29443
  config: config)
29342
29444
  context[:gem_name] = 'aws-sdk-rds'
29343
- context[:gem_version] = '1.203.0'
29445
+ context[:gem_version] = '1.205.0'
29344
29446
  Seahorse::Client::Request.new(handlers, context)
29345
29447
  end
29346
29448
 
@@ -175,6 +175,8 @@ module Aws::RDS
175
175
  DBClusterSnapshotList = Shapes::ListShape.new(name: 'DBClusterSnapshotList')
176
176
  DBClusterSnapshotMessage = Shapes::StructureShape.new(name: 'DBClusterSnapshotMessage')
177
177
  DBClusterSnapshotNotFoundFault = Shapes::StructureShape.new(name: 'DBClusterSnapshotNotFoundFault')
178
+ DBClusterStatusInfo = Shapes::StructureShape.new(name: 'DBClusterStatusInfo')
179
+ DBClusterStatusInfoList = Shapes::ListShape.new(name: 'DBClusterStatusInfoList')
178
180
  DBEngineVersion = Shapes::StructureShape.new(name: 'DBEngineVersion')
179
181
  DBEngineVersionList = Shapes::ListShape.new(name: 'DBEngineVersionList')
180
182
  DBEngineVersionMessage = Shapes::StructureShape.new(name: 'DBEngineVersionMessage')
@@ -1306,6 +1308,7 @@ module Aws::RDS
1306
1308
  DBCluster.add_member(:preferred_maintenance_window, Shapes::ShapeRef.new(shape: String, location_name: "PreferredMaintenanceWindow"))
1307
1309
  DBCluster.add_member(:replication_source_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationSourceIdentifier"))
1308
1310
  DBCluster.add_member(:read_replica_identifiers, Shapes::ShapeRef.new(shape: ReadReplicaIdentifierList, location_name: "ReadReplicaIdentifiers"))
1311
+ DBCluster.add_member(:status_infos, Shapes::ShapeRef.new(shape: DBClusterStatusInfoList, location_name: "StatusInfos"))
1309
1312
  DBCluster.add_member(:db_cluster_members, Shapes::ShapeRef.new(shape: DBClusterMemberList, location_name: "DBClusterMembers"))
1310
1313
  DBCluster.add_member(:vpc_security_groups, Shapes::ShapeRef.new(shape: VpcSecurityGroupMembershipList, location_name: "VpcSecurityGroups"))
1311
1314
  DBCluster.add_member(:hosted_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "HostedZoneId"))
@@ -1547,6 +1550,14 @@ module Aws::RDS
1547
1550
 
1548
1551
  DBClusterSnapshotNotFoundFault.struct_class = Types::DBClusterSnapshotNotFoundFault
1549
1552
 
1553
+ DBClusterStatusInfo.add_member(:status_type, Shapes::ShapeRef.new(shape: String, location_name: "StatusType"))
1554
+ DBClusterStatusInfo.add_member(:normal, Shapes::ShapeRef.new(shape: Boolean, location_name: "Normal"))
1555
+ DBClusterStatusInfo.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
1556
+ DBClusterStatusInfo.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
1557
+ DBClusterStatusInfo.struct_class = Types::DBClusterStatusInfo
1558
+
1559
+ DBClusterStatusInfoList.member = Shapes::ShapeRef.new(shape: DBClusterStatusInfo, location_name: "DBClusterStatusInfo")
1560
+
1550
1561
  DBEngineVersion.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
1551
1562
  DBEngineVersion.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
1552
1563
  DBEngineVersion.add_member(:db_parameter_group_family, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupFamily"))
@@ -3317,6 +3328,7 @@ module Aws::RDS
3317
3328
 
3318
3329
  RdsCustomClusterConfiguration.add_member(:interconnect_subnet_id, Shapes::ShapeRef.new(shape: String, location_name: "InterconnectSubnetId"))
3319
3330
  RdsCustomClusterConfiguration.add_member(:transit_gateway_multicast_domain_id, Shapes::ShapeRef.new(shape: String, location_name: "TransitGatewayMulticastDomainId"))
3331
+ RdsCustomClusterConfiguration.add_member(:replica_mode, Shapes::ShapeRef.new(shape: ReplicaMode, location_name: "ReplicaMode"))
3320
3332
  RdsCustomClusterConfiguration.struct_class = Types::RdsCustomClusterConfiguration
3321
3333
 
3322
3334
  ReadReplicaDBClusterIdentifierList.member = Shapes::ShapeRef.new(shape: String, location_name: "ReadReplicaDBClusterIdentifier")
@@ -4234,6 +4246,7 @@ module Aws::RDS
4234
4246
  o.errors << Shapes::ShapeRef.new(shape: DBSubnetGroupNotFoundFault)
4235
4247
  o.errors << Shapes::ShapeRef.new(shape: InvalidVPCNetworkStateFault)
4236
4248
  o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
4249
+ o.errors << Shapes::ShapeRef.new(shape: InvalidDBSubnetGroupFault)
4237
4250
  o.errors << Shapes::ShapeRef.new(shape: InvalidDBSubnetGroupStateFault)
4238
4251
  o.errors << Shapes::ShapeRef.new(shape: InvalidSubnet)
4239
4252
  o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
@@ -4245,6 +4258,7 @@ module Aws::RDS
4245
4258
  o.errors << Shapes::ShapeRef.new(shape: GlobalClusterNotFoundFault)
4246
4259
  o.errors << Shapes::ShapeRef.new(shape: InvalidGlobalClusterStateFault)
4247
4260
  o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
4261
+ o.errors << Shapes::ShapeRef.new(shape: OptionGroupNotFoundFault)
4248
4262
  end)
4249
4263
 
4250
4264
  api.add_operation(:create_db_cluster_endpoint, Seahorse::Model::Operation.new.tap do |o|
@@ -5428,6 +5442,7 @@ module Aws::RDS
5428
5442
  o.errors << Shapes::ShapeRef.new(shape: DBInstanceAlreadyExistsFault)
5429
5443
  o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
5430
5444
  o.errors << Shapes::ShapeRef.new(shape: StorageTypeNotAvailableFault)
5445
+ o.errors << Shapes::ShapeRef.new(shape: OptionGroupNotFoundFault)
5431
5446
  end)
5432
5447
 
5433
5448
  api.add_operation(:modify_db_cluster_endpoint, Seahorse::Model::Operation.new.tap do |o|
@@ -211,6 +211,12 @@ module Aws::RDS
211
211
  data[:read_replica_identifiers]
212
212
  end
213
213
 
214
+ # Reserved for future use.
215
+ # @return [Array<Types::DBClusterStatusInfo>]
216
+ def status_infos
217
+ data[:status_infos]
218
+ end
219
+
214
220
  # The list of DB instances that make up the DB cluster.
215
221
  # @return [Array<Types::DBClusterMember>]
216
222
  def db_cluster_members
@@ -855,6 +861,7 @@ module Aws::RDS
855
861
  # rds_custom_cluster_configuration: {
856
862
  # interconnect_subnet_id: "String",
857
863
  # transit_gateway_multicast_domain_id: "String",
864
+ # replica_mode: "open-read-only", # accepts open-read-only, mounted
858
865
  # },
859
866
  # deletion_protection: false,
860
867
  # global_cluster_identifier: "String",
@@ -2499,6 +2506,7 @@ module Aws::RDS
2499
2506
  # rds_custom_cluster_configuration: {
2500
2507
  # interconnect_subnet_id: "String",
2501
2508
  # transit_gateway_multicast_domain_id: "String",
2509
+ # replica_mode: "open-read-only", # accepts open-read-only, mounted
2502
2510
  # },
2503
2511
  # })
2504
2512
  # @param [Hash] options ({})
@@ -579,6 +579,7 @@ module Aws::RDS
579
579
  # rds_custom_cluster_configuration: {
580
580
  # interconnect_subnet_id: "String",
581
581
  # transit_gateway_multicast_domain_id: "String",
582
+ # replica_mode: "open-read-only", # accepts open-read-only, mounted
582
583
  # },
583
584
  # })
584
585
  # @param [Hash] options ({})
@@ -79,6 +79,7 @@ module Aws::RDS
79
79
  # rds_custom_cluster_configuration: {
80
80
  # interconnect_subnet_id: "String",
81
81
  # transit_gateway_multicast_domain_id: "String",
82
+ # replica_mode: "open-read-only", # accepts open-read-only, mounted
82
83
  # },
83
84
  # deletion_protection: false,
84
85
  # global_cluster_identifier: "String",
@@ -6313,6 +6313,10 @@ module Aws::RDS
6313
6313
  # with this DB cluster.
6314
6314
  # @return [Array<String>]
6315
6315
  #
6316
+ # @!attribute [rw] status_infos
6317
+ # Reserved for future use.
6318
+ # @return [Array<Types::DBClusterStatusInfo>]
6319
+ #
6316
6320
  # @!attribute [rw] db_cluster_members
6317
6321
  # The list of DB instances that make up the DB cluster.
6318
6322
  # @return [Array<Types::DBClusterMember>]
@@ -6711,6 +6715,7 @@ module Aws::RDS
6711
6715
  :preferred_maintenance_window,
6712
6716
  :replication_source_identifier,
6713
6717
  :read_replica_identifiers,
6718
+ :status_infos,
6714
6719
  :db_cluster_members,
6715
6720
  :vpc_security_groups,
6716
6721
  :hosted_zone_id,
@@ -7729,6 +7734,35 @@ module Aws::RDS
7729
7734
  #
7730
7735
  class DBClusterSnapshotNotFoundFault < Aws::EmptyStructure; end
7731
7736
 
7737
+ # Reserved for future use.
7738
+ #
7739
+ # @!attribute [rw] status_type
7740
+ # Reserved for future use.
7741
+ # @return [String]
7742
+ #
7743
+ # @!attribute [rw] normal
7744
+ # Reserved for future use.
7745
+ # @return [Boolean]
7746
+ #
7747
+ # @!attribute [rw] status
7748
+ # Reserved for future use.
7749
+ # @return [String]
7750
+ #
7751
+ # @!attribute [rw] message
7752
+ # Reserved for future use.
7753
+ # @return [String]
7754
+ #
7755
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterStatusInfo AWS API Documentation
7756
+ #
7757
+ class DBClusterStatusInfo < Struct.new(
7758
+ :status_type,
7759
+ :normal,
7760
+ :status,
7761
+ :message)
7762
+ SENSITIVE = []
7763
+ include Aws::Structure
7764
+ end
7765
+
7732
7766
  # This data type is used as a response element in the action
7733
7767
  # `DescribeDBEngineVersions`.
7734
7768
  #
@@ -18109,9 +18143,9 @@ module Aws::RDS
18109
18143
  #
18110
18144
  # **MySQL**
18111
18145
  #
18112
- # * `5.5.46` (supported for 5.1 DB snapshots)
18113
- #
18114
- # ^
18146
+ # For the list of engine versions that are available for upgrading a
18147
+ # DB snapshot, see [ Upgrading a MySQL DB snapshot engine version][1]
18148
+ # in the *Amazon RDS User Guide.*
18115
18149
  #
18116
18150
  # **Oracle**
18117
18151
  #
@@ -18130,12 +18164,13 @@ module Aws::RDS
18130
18164
  # **PostgreSQL**
18131
18165
  #
18132
18166
  # For the list of engine versions that are available for upgrading a
18133
- # DB snapshot, see [ Upgrading the PostgreSQL DB Engine for Amazon
18134
- # RDS][1].
18167
+ # DB snapshot, see [ Upgrading a PostgreSQL DB snapshot engine
18168
+ # version][2] in the *Amazon RDS User Guide.*
18135
18169
  #
18136
18170
  #
18137
18171
  #
18138
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.PostgreSQL.html#USER_UpgradeDBInstance.PostgreSQL.MajorVersion
18172
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/mysql-upgrade-snapshot.html
18173
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBSnapshot.PostgreSQL.html
18139
18174
  # @return [String]
18140
18175
  #
18141
18176
  # @!attribute [rw] option_group_name
@@ -19905,11 +19940,16 @@ module Aws::RDS
19905
19940
  # Reserved for future use.
19906
19941
  # @return [String]
19907
19942
  #
19943
+ # @!attribute [rw] replica_mode
19944
+ # Reserved for future use.
19945
+ # @return [String]
19946
+ #
19908
19947
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RdsCustomClusterConfiguration AWS API Documentation
19909
19948
  #
19910
19949
  class RdsCustomClusterConfiguration < Struct.new(
19911
19950
  :interconnect_subnet_id,
19912
- :transit_gateway_multicast_domain_id)
19951
+ :transit_gateway_multicast_domain_id,
19952
+ :replica_mode)
19913
19953
  SENSITIVE = []
19914
19954
  include Aws::Structure
19915
19955
  end
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.203.0'
81
+ GEM_VERSION = '1.205.0'
82
82
 
83
83
  end
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.203.0
4
+ version: 1.205.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: 2023-11-10 00:00:00.000000000 Z
11
+ date: 2023-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4