aws-sdk-rds 1.187.0 → 1.189.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: e83c7f86f71a70525f984d1bd753680710f9a638a9e7721a657ac72d0dadbecb
4
- data.tar.gz: 1c60c4820f48876ae6ccf1c40b778c9c6c723840c454c7f31597c5c95c95dde3
3
+ metadata.gz: eb9e966f7e62628d895d5d096661b01a63557528cc37d8c3a50cd290e17ac3a9
4
+ data.tar.gz: 5c8c5ffcc4cba0508227b6ff9204d55f3e39a47016e81a639f69bb0bae9f7baf
5
5
  SHA512:
6
- metadata.gz: cb1c2ccecf11150fbc26d47308b3f08d96ef52c4d95d683b3dd2212b82fd4c2592818a33e2b7ff3012a6019d451492544dcd108b4b1f1d676655e6dae3491ec5
7
- data.tar.gz: d31accb17d1413caf37c78279fb1fb511aa49aaad2f426f502c8812e129533d2ff3852d2cc14b5f32f78b714128e1cc99d35fae771387e1a3eabf95ad9729d3f
6
+ metadata.gz: 71199d494672776b7c7f20199faca1684f0a6781a50c838237972b2ff779b075e7d3540c32253619d371bbb8e144bb3c8b163ddd1759bf010fad9c07ad9a56a4
7
+ data.tar.gz: 1455d70144f0f87b37705cc7c37561764f78aaa0f5a7ea6960d7cd44ff3211046b50f4e762e9284494184682560ac96a1b3926eed08a31f7e35769bc85c2895d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.189.0 (2023-08-01)
5
+ ------------------
6
+
7
+ * Feature - Added support for deleted clusters PiTR.
8
+
9
+ 1.188.0 (2023-07-31)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for Aurora MySQL local write forwarding, which allows for forwarding of write operations from reader DB instances to the writer DB instance.
13
+
4
14
  1.187.0 (2023-07-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.187.0
1
+ 1.189.0
@@ -1410,6 +1410,7 @@ module Aws::RDS
1410
1410
  # resp.db_cluster_snapshot.tag_list[0].value #=> String
1411
1411
  # resp.db_cluster_snapshot.db_system_id #=> String
1412
1412
  # resp.db_cluster_snapshot.storage_type #=> String
1413
+ # resp.db_cluster_snapshot.db_cluster_resource_id #=> String
1413
1414
  #
1414
1415
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBClusterSnapshot AWS API Documentation
1415
1416
  #
@@ -2330,6 +2331,7 @@ module Aws::RDS
2330
2331
  # * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
2331
2332
  # * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
2332
2333
  # * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
2334
+ # * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
2333
2335
  #
2334
2336
  # @example Request syntax with placeholder values
2335
2337
  #
@@ -2379,6 +2381,7 @@ module Aws::RDS
2379
2381
  # resp.valid_upgrade_target[0].supports_parallel_query #=> Boolean
2380
2382
  # resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
2381
2383
  # resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
2384
+ # resp.valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
2382
2385
  # resp.supported_timezones #=> Array
2383
2386
  # resp.supported_timezones[0].timezone_name #=> String
2384
2387
  # resp.exportable_log_types #=> Array
@@ -2406,6 +2409,7 @@ module Aws::RDS
2406
2409
  # resp.supports_certificate_rotation_without_restart #=> Boolean
2407
2410
  # resp.supported_ca_certificate_identifiers #=> Array
2408
2411
  # resp.supported_ca_certificate_identifiers[0] #=> String
2412
+ # resp.supports_local_write_forwarding #=> Boolean
2409
2413
  #
2410
2414
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersion AWS API Documentation
2411
2415
  #
@@ -3230,6 +3234,13 @@ module Aws::RDS
3230
3234
  #
3231
3235
  # Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
3232
3236
  #
3237
+ # @option params [Boolean] :enable_local_write_forwarding
3238
+ # Specifies whether read replicas can forward write operations to the
3239
+ # writer DB instance in the DB cluster. By default, write operations
3240
+ # aren't allowed on reader DB instances.
3241
+ #
3242
+ # Valid for: Aurora DB clusters only
3243
+ #
3233
3244
  # @option params [String] :source_region
3234
3245
  # The source region of the snapshot. This is only needed when the
3235
3246
  # shapshot is encrypted and in a different region.
@@ -3433,6 +3444,7 @@ module Aws::RDS
3433
3444
  # db_system_id: "String",
3434
3445
  # manage_master_user_password: false,
3435
3446
  # master_user_secret_kms_key_id: "String",
3447
+ # enable_local_write_forwarding: false,
3436
3448
  # source_region: "String",
3437
3449
  # })
3438
3450
  #
@@ -3554,6 +3566,7 @@ module Aws::RDS
3554
3566
  # resp.db_cluster.master_user_secret.secret_status #=> String
3555
3567
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
3556
3568
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
3569
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
3557
3570
  #
3558
3571
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
3559
3572
  #
@@ -3979,6 +3992,7 @@ module Aws::RDS
3979
3992
  # resp.db_cluster_snapshot.tag_list[0].value #=> String
3980
3993
  # resp.db_cluster_snapshot.db_system_id #=> String
3981
3994
  # resp.db_cluster_snapshot.storage_type #=> String
3995
+ # resp.db_cluster_snapshot.db_cluster_resource_id #=> String
3982
3996
  #
3983
3997
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterSnapshot AWS API Documentation
3984
3998
  #
@@ -7940,6 +7954,7 @@ module Aws::RDS
7940
7954
  # * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
7941
7955
  # * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
7942
7956
  # * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
7957
+ # * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
7943
7958
  #
7944
7959
  # @example Request syntax with placeholder values
7945
7960
  #
@@ -7977,6 +7992,7 @@ module Aws::RDS
7977
7992
  # resp.valid_upgrade_target[0].supports_parallel_query #=> Boolean
7978
7993
  # resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
7979
7994
  # resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
7995
+ # resp.valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
7980
7996
  # resp.supported_timezones #=> Array
7981
7997
  # resp.supported_timezones[0].timezone_name #=> String
7982
7998
  # resp.exportable_log_types #=> Array
@@ -8004,6 +8020,7 @@ module Aws::RDS
8004
8020
  # resp.supports_certificate_rotation_without_restart #=> Boolean
8005
8021
  # resp.supported_ca_certificate_identifiers #=> Array
8006
8022
  # resp.supported_ca_certificate_identifiers[0] #=> String
8023
+ # resp.supports_local_write_forwarding #=> Boolean
8007
8024
  #
8008
8025
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomDBEngineVersion AWS API Documentation
8009
8026
  #
@@ -8075,6 +8092,12 @@ module Aws::RDS
8075
8092
  #
8076
8093
  # * Can't end with a hyphen or contain two consecutive hyphens
8077
8094
  #
8095
+ # @option params [Boolean] :delete_automated_backups
8096
+ # A value that indicates whether to remove automated backups immediately
8097
+ # after the DB cluster is deleted. This parameter isn't case-sensitive.
8098
+ # The default is to remove automated backups immediately after the DB
8099
+ # cluster is deleted.
8100
+ #
8078
8101
  # @return [Types::DeleteDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8079
8102
  #
8080
8103
  # * {Types::DeleteDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
@@ -8114,6 +8137,7 @@ module Aws::RDS
8114
8137
  # db_cluster_identifier: "String", # required
8115
8138
  # skip_final_snapshot: false,
8116
8139
  # final_db_snapshot_identifier: "String",
8140
+ # delete_automated_backups: false,
8117
8141
  # })
8118
8142
  #
8119
8143
  # @example Response structure
@@ -8234,6 +8258,7 @@ module Aws::RDS
8234
8258
  # resp.db_cluster.master_user_secret.secret_status #=> String
8235
8259
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
8236
8260
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
8261
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
8237
8262
  #
8238
8263
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
8239
8264
  #
@@ -8244,6 +8269,61 @@ module Aws::RDS
8244
8269
  req.send_request(options)
8245
8270
  end
8246
8271
 
8272
+ # Deletes automated backups using the `DbClusterResourceId` value of the
8273
+ # source DB cluster or the Amazon Resource Name (ARN) of the automated
8274
+ # backups.
8275
+ #
8276
+ # @option params [required, String] :db_cluster_resource_id
8277
+ # The identifier for the source DB cluster, which can't be changed and
8278
+ # which is unique to an Amazon Web Services Region.
8279
+ #
8280
+ # @return [Types::DeleteDBClusterAutomatedBackupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8281
+ #
8282
+ # * {Types::DeleteDBClusterAutomatedBackupResult#db_cluster_automated_backup #db_cluster_automated_backup} => Types::DBClusterAutomatedBackup
8283
+ #
8284
+ # @example Request syntax with placeholder values
8285
+ #
8286
+ # resp = client.delete_db_cluster_automated_backup({
8287
+ # db_cluster_resource_id: "String", # required
8288
+ # })
8289
+ #
8290
+ # @example Response structure
8291
+ #
8292
+ # resp.db_cluster_automated_backup.engine #=> String
8293
+ # resp.db_cluster_automated_backup.vpc_id #=> String
8294
+ # resp.db_cluster_automated_backup.db_cluster_automated_backups_arn #=> String
8295
+ # resp.db_cluster_automated_backup.db_cluster_identifier #=> String
8296
+ # resp.db_cluster_automated_backup.restore_window.earliest_time #=> Time
8297
+ # resp.db_cluster_automated_backup.restore_window.latest_time #=> Time
8298
+ # resp.db_cluster_automated_backup.master_username #=> String
8299
+ # resp.db_cluster_automated_backup.db_cluster_resource_id #=> String
8300
+ # resp.db_cluster_automated_backup.region #=> String
8301
+ # resp.db_cluster_automated_backup.license_model #=> String
8302
+ # resp.db_cluster_automated_backup.status #=> String
8303
+ # resp.db_cluster_automated_backup.iam_database_authentication_enabled #=> Boolean
8304
+ # resp.db_cluster_automated_backup.cluster_create_time #=> Time
8305
+ # resp.db_cluster_automated_backup.storage_encrypted #=> Boolean
8306
+ # resp.db_cluster_automated_backup.allocated_storage #=> Integer
8307
+ # resp.db_cluster_automated_backup.engine_version #=> String
8308
+ # resp.db_cluster_automated_backup.db_cluster_arn #=> String
8309
+ # resp.db_cluster_automated_backup.backup_retention_period #=> Integer
8310
+ # resp.db_cluster_automated_backup.engine_mode #=> String
8311
+ # resp.db_cluster_automated_backup.availability_zones #=> Array
8312
+ # resp.db_cluster_automated_backup.availability_zones[0] #=> String
8313
+ # resp.db_cluster_automated_backup.port #=> Integer
8314
+ # resp.db_cluster_automated_backup.kms_key_id #=> String
8315
+ # resp.db_cluster_automated_backup.storage_type #=> String
8316
+ # resp.db_cluster_automated_backup.iops #=> Integer
8317
+ #
8318
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterAutomatedBackup AWS API Documentation
8319
+ #
8320
+ # @overload delete_db_cluster_automated_backup(params = {})
8321
+ # @param [Hash] params ({})
8322
+ def delete_db_cluster_automated_backup(params = {}, options = {})
8323
+ req = build_request(:delete_db_cluster_automated_backup, params)
8324
+ req.send_request(options)
8325
+ end
8326
+
8247
8327
  # Deletes a custom endpoint and removes it from an Amazon Aurora DB
8248
8328
  # cluster.
8249
8329
  #
@@ -8478,6 +8558,7 @@ module Aws::RDS
8478
8558
  # resp.db_cluster_snapshot.tag_list[0].value #=> String
8479
8559
  # resp.db_cluster_snapshot.db_system_id #=> String
8480
8560
  # resp.db_cluster_snapshot.storage_type #=> String
8561
+ # resp.db_cluster_snapshot.db_cluster_resource_id #=> String
8481
8562
  #
8482
8563
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterSnapshot AWS API Documentation
8483
8564
  #
@@ -10034,6 +10115,117 @@ module Aws::RDS
10034
10115
  req.send_request(options)
10035
10116
  end
10036
10117
 
10118
+ # Displays backups for both current and deleted DB clusters. For
10119
+ # example, use this operation to find details about automated backups
10120
+ # for previously deleted clusters. Current clusters are returned for
10121
+ # both the `DescribeDBClusterAutomatedBackups` and `DescribeDBClusters`
10122
+ # operations.
10123
+ #
10124
+ # All parameters are optional.
10125
+ #
10126
+ # @option params [String] :db_cluster_resource_id
10127
+ # The resource ID of the DB cluster that is the source of the automated
10128
+ # backup. This parameter isn't case-sensitive.
10129
+ #
10130
+ # @option params [String] :db_cluster_identifier
10131
+ # (Optional) The user-supplied DB cluster identifier. If this parameter
10132
+ # is specified, it must match the identifier of an existing DB cluster.
10133
+ # It returns information from the specific DB cluster's automated
10134
+ # backup. This parameter isn't case-sensitive.
10135
+ #
10136
+ # @option params [Array<Types::Filter>] :filters
10137
+ # A filter that specifies which resources to return based on status.
10138
+ #
10139
+ # Supported filters are the following:
10140
+ #
10141
+ # * `status`
10142
+ #
10143
+ # * `retained` - Automated backups for deleted clusters and after
10144
+ # backup replication is stopped.
10145
+ #
10146
+ # ^
10147
+ #
10148
+ # * `db-cluster-id` - Accepts DB cluster identifiers and Amazon Resource
10149
+ # Names (ARNs). The results list includes only information about the
10150
+ # DB cluster automated backups identified by these ARNs.
10151
+ #
10152
+ # * `db-cluster-resource-id` - Accepts DB resource identifiers and
10153
+ # Amazon Resource Names (ARNs). The results list includes only
10154
+ # information about the DB cluster resources identified by these ARNs.
10155
+ #
10156
+ # Returns all resources by default. The status for each resource is
10157
+ # specified in the response.
10158
+ #
10159
+ # @option params [Integer] :max_records
10160
+ # The maximum number of records to include in the response. If more
10161
+ # records exist than the specified `MaxRecords` value, a pagination
10162
+ # token called a marker is included in the response so that you can
10163
+ # retrieve the remaining results.
10164
+ #
10165
+ # @option params [String] :marker
10166
+ # The pagination token provided in the previous request. If this
10167
+ # parameter is specified the response includes only records beyond the
10168
+ # marker, up to `MaxRecords`.
10169
+ #
10170
+ # @return [Types::DBClusterAutomatedBackupMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10171
+ #
10172
+ # * {Types::DBClusterAutomatedBackupMessage#marker #marker} => String
10173
+ # * {Types::DBClusterAutomatedBackupMessage#db_cluster_automated_backups #db_cluster_automated_backups} => Array&lt;Types::DBClusterAutomatedBackup&gt;
10174
+ #
10175
+ # @example Request syntax with placeholder values
10176
+ #
10177
+ # resp = client.describe_db_cluster_automated_backups({
10178
+ # db_cluster_resource_id: "String",
10179
+ # db_cluster_identifier: "String",
10180
+ # filters: [
10181
+ # {
10182
+ # name: "String", # required
10183
+ # values: ["String"], # required
10184
+ # },
10185
+ # ],
10186
+ # max_records: 1,
10187
+ # marker: "String",
10188
+ # })
10189
+ #
10190
+ # @example Response structure
10191
+ #
10192
+ # resp.marker #=> String
10193
+ # resp.db_cluster_automated_backups #=> Array
10194
+ # resp.db_cluster_automated_backups[0].engine #=> String
10195
+ # resp.db_cluster_automated_backups[0].vpc_id #=> String
10196
+ # resp.db_cluster_automated_backups[0].db_cluster_automated_backups_arn #=> String
10197
+ # resp.db_cluster_automated_backups[0].db_cluster_identifier #=> String
10198
+ # resp.db_cluster_automated_backups[0].restore_window.earliest_time #=> Time
10199
+ # resp.db_cluster_automated_backups[0].restore_window.latest_time #=> Time
10200
+ # resp.db_cluster_automated_backups[0].master_username #=> String
10201
+ # resp.db_cluster_automated_backups[0].db_cluster_resource_id #=> String
10202
+ # resp.db_cluster_automated_backups[0].region #=> String
10203
+ # resp.db_cluster_automated_backups[0].license_model #=> String
10204
+ # resp.db_cluster_automated_backups[0].status #=> String
10205
+ # resp.db_cluster_automated_backups[0].iam_database_authentication_enabled #=> Boolean
10206
+ # resp.db_cluster_automated_backups[0].cluster_create_time #=> Time
10207
+ # resp.db_cluster_automated_backups[0].storage_encrypted #=> Boolean
10208
+ # resp.db_cluster_automated_backups[0].allocated_storage #=> Integer
10209
+ # resp.db_cluster_automated_backups[0].engine_version #=> String
10210
+ # resp.db_cluster_automated_backups[0].db_cluster_arn #=> String
10211
+ # resp.db_cluster_automated_backups[0].backup_retention_period #=> Integer
10212
+ # resp.db_cluster_automated_backups[0].engine_mode #=> String
10213
+ # resp.db_cluster_automated_backups[0].availability_zones #=> Array
10214
+ # resp.db_cluster_automated_backups[0].availability_zones[0] #=> String
10215
+ # resp.db_cluster_automated_backups[0].port #=> Integer
10216
+ # resp.db_cluster_automated_backups[0].kms_key_id #=> String
10217
+ # resp.db_cluster_automated_backups[0].storage_type #=> String
10218
+ # resp.db_cluster_automated_backups[0].iops #=> Integer
10219
+ #
10220
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterAutomatedBackups AWS API Documentation
10221
+ #
10222
+ # @overload describe_db_cluster_automated_backups(params = {})
10223
+ # @param [Hash] params ({})
10224
+ def describe_db_cluster_automated_backups(params = {}, options = {})
10225
+ req = build_request(:describe_db_cluster_automated_backups, params)
10226
+ req.send_request(options)
10227
+ end
10228
+
10037
10229
  # Returns information about backtracks for a DB cluster.
10038
10230
  #
10039
10231
  # For more information on Amazon Aurora, see [ What is Amazon
@@ -10795,6 +10987,9 @@ module Aws::RDS
10795
10987
  # You can share a manual DB cluster snapshot as public by using the
10796
10988
  # ModifyDBClusterSnapshotAttribute API action.
10797
10989
  #
10990
+ # @option params [String] :db_cluster_resource_id
10991
+ # A specific DB cluster resource ID to describe.
10992
+ #
10798
10993
  # @return [Types::DBClusterSnapshotMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10799
10994
  #
10800
10995
  # * {Types::DBClusterSnapshotMessage#marker #marker} => String
@@ -10883,6 +11078,7 @@ module Aws::RDS
10883
11078
  # marker: "String",
10884
11079
  # include_shared: false,
10885
11080
  # include_public: false,
11081
+ # db_cluster_resource_id: "String",
10886
11082
  # })
10887
11083
  #
10888
11084
  # @example Response structure
@@ -10916,6 +11112,7 @@ module Aws::RDS
10916
11112
  # resp.db_cluster_snapshots[0].tag_list[0].value #=> String
10917
11113
  # resp.db_cluster_snapshots[0].db_system_id #=> String
10918
11114
  # resp.db_cluster_snapshots[0].storage_type #=> String
11115
+ # resp.db_cluster_snapshots[0].db_cluster_resource_id #=> String
10919
11116
  #
10920
11117
  #
10921
11118
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -11245,6 +11442,7 @@ module Aws::RDS
11245
11442
  # resp.db_clusters[0].master_user_secret.secret_status #=> String
11246
11443
  # resp.db_clusters[0].master_user_secret.kms_key_id #=> String
11247
11444
  # resp.db_clusters[0].io_optimized_next_allowed_modification_time #=> Time
11445
+ # resp.db_clusters[0].local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
11248
11446
  #
11249
11447
  #
11250
11448
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -11493,6 +11691,7 @@ module Aws::RDS
11493
11691
  # resp.db_engine_versions[0].valid_upgrade_target[0].supports_parallel_query #=> Boolean
11494
11692
  # resp.db_engine_versions[0].valid_upgrade_target[0].supports_global_databases #=> Boolean
11495
11693
  # resp.db_engine_versions[0].valid_upgrade_target[0].supports_babelfish #=> Boolean
11694
+ # resp.db_engine_versions[0].valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
11496
11695
  # resp.db_engine_versions[0].supported_timezones #=> Array
11497
11696
  # resp.db_engine_versions[0].supported_timezones[0].timezone_name #=> String
11498
11697
  # resp.db_engine_versions[0].exportable_log_types #=> Array
@@ -11520,6 +11719,7 @@ module Aws::RDS
11520
11719
  # resp.db_engine_versions[0].supports_certificate_rotation_without_restart #=> Boolean
11521
11720
  # resp.db_engine_versions[0].supported_ca_certificate_identifiers #=> Array
11522
11721
  # resp.db_engine_versions[0].supported_ca_certificate_identifiers[0] #=> String
11722
+ # resp.db_engine_versions[0].supports_local_write_forwarding #=> Boolean
11523
11723
  #
11524
11724
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
11525
11725
  #
@@ -11546,7 +11746,7 @@ module Aws::RDS
11546
11746
  # @option params [String] :db_instance_identifier
11547
11747
  # (Optional) The user-supplied instance identifier. If this parameter is
11548
11748
  # specified, it must match the identifier of an existing DB instance. It
11549
- # returns information from the specific DB instance' automated backup.
11749
+ # returns information from the specific DB instance's automated backup.
11550
11750
  # This parameter isn't case-sensitive.
11551
11751
  #
11552
11752
  # @option params [Array<Types::Filter>] :filters
@@ -11556,13 +11756,13 @@ module Aws::RDS
11556
11756
  #
11557
11757
  # * `status`
11558
11758
  #
11559
- # * `active` - automated backups for current instances
11759
+ # * `active` - Automated backups for current instances.
11560
11760
  #
11561
- # * `retained` - automated backups for deleted instances and after
11562
- # backup replication is stopped
11761
+ # * `creating` - Automated backups that are waiting for the first
11762
+ # automated snapshot to be available.
11563
11763
  #
11564
- # * `creating` - automated backups that are waiting for the first
11565
- # automated snapshot to be available
11764
+ # * `retained` - Automated backups for deleted instances and after
11765
+ # backup replication is stopped.
11566
11766
  #
11567
11767
  # * `db-instance-id` - Accepts DB instance identifiers and Amazon
11568
11768
  # Resource Names (ARNs). The results list includes only information
@@ -15742,6 +15942,7 @@ module Aws::RDS
15742
15942
  # resp.db_cluster.master_user_secret.secret_status #=> String
15743
15943
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
15744
15944
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
15945
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
15745
15946
  #
15746
15947
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
15747
15948
  #
@@ -16289,6 +16490,7 @@ module Aws::RDS
16289
16490
  # * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
16290
16491
  # * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
16291
16492
  # * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array&lt;String&gt;
16493
+ # * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
16292
16494
  #
16293
16495
  # @example Request syntax with placeholder values
16294
16496
  #
@@ -16328,6 +16530,7 @@ module Aws::RDS
16328
16530
  # resp.valid_upgrade_target[0].supports_parallel_query #=> Boolean
16329
16531
  # resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
16330
16532
  # resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
16533
+ # resp.valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
16331
16534
  # resp.supported_timezones #=> Array
16332
16535
  # resp.supported_timezones[0].timezone_name #=> String
16333
16536
  # resp.exportable_log_types #=> Array
@@ -16355,6 +16558,7 @@ module Aws::RDS
16355
16558
  # resp.supports_certificate_rotation_without_restart #=> Boolean
16356
16559
  # resp.supported_ca_certificate_identifiers #=> Array
16357
16560
  # resp.supported_ca_certificate_identifiers[0] #=> String
16561
+ # resp.supports_local_write_forwarding #=> Boolean
16358
16562
  #
16359
16563
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCustomDBEngineVersion AWS API Documentation
16360
16564
  #
@@ -17038,6 +17242,13 @@ module Aws::RDS
17038
17242
  #
17039
17243
  # ^
17040
17244
  #
17245
+ # @option params [Boolean] :enable_local_write_forwarding
17246
+ # Specifies whether read replicas can forward write operations to the
17247
+ # writer DB instance in the DB cluster. By default, write operations
17248
+ # aren't allowed on reader DB instances.
17249
+ #
17250
+ # Valid for: Aurora DB clusters only
17251
+ #
17041
17252
  # @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
17042
17253
  #
17043
17254
  # * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
@@ -17174,6 +17385,7 @@ module Aws::RDS
17174
17385
  # master_user_secret_kms_key_id: "String",
17175
17386
  # engine_mode: "String",
17176
17387
  # allow_engine_mode_change: false,
17388
+ # enable_local_write_forwarding: false,
17177
17389
  # })
17178
17390
  #
17179
17391
  # @example Response structure
@@ -17294,6 +17506,7 @@ module Aws::RDS
17294
17506
  # resp.db_cluster.master_user_secret.secret_status #=> String
17295
17507
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
17296
17508
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
17509
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
17297
17510
  #
17298
17511
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
17299
17512
  #
@@ -20514,6 +20727,7 @@ module Aws::RDS
20514
20727
  # resp.db_cluster.master_user_secret.secret_status #=> String
20515
20728
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
20516
20729
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
20730
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
20517
20731
  #
20518
20732
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
20519
20733
  #
@@ -20789,6 +21003,7 @@ module Aws::RDS
20789
21003
  # resp.db_cluster.master_user_secret.secret_status #=> String
20790
21004
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
20791
21005
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
21006
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
20792
21007
  #
20793
21008
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBCluster AWS API Documentation
20794
21009
  #
@@ -22246,6 +22461,7 @@ module Aws::RDS
22246
22461
  # resp.db_cluster.master_user_secret.secret_status #=> String
22247
22462
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
22248
22463
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
22464
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
22249
22465
  #
22250
22466
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
22251
22467
  #
@@ -22938,6 +23154,7 @@ module Aws::RDS
22938
23154
  # resp.db_cluster.master_user_secret.secret_status #=> String
22939
23155
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
22940
23156
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
23157
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
22941
23158
  #
22942
23159
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
22943
23160
  #
@@ -23004,7 +23221,7 @@ module Aws::RDS
23004
23221
  #
23005
23222
  # Valid for: Aurora DB clusters and Multi-AZ DB clusters
23006
23223
  #
23007
- # @option params [required, String] :source_db_cluster_identifier
23224
+ # @option params [String] :source_db_cluster_identifier
23008
23225
  # The identifier of the source DB cluster from which to restore.
23009
23226
  #
23010
23227
  # Constraints:
@@ -23365,6 +23582,9 @@ module Aws::RDS
23365
23582
  #
23366
23583
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
23367
23584
  #
23585
+ # @option params [String] :source_db_cluster_resource_id
23586
+ # The resource ID of the source DB cluster from which to restore.
23587
+ #
23368
23588
  # @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
23369
23589
  #
23370
23590
  # * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
@@ -23439,7 +23659,7 @@ module Aws::RDS
23439
23659
  # resp = client.restore_db_cluster_to_point_in_time({
23440
23660
  # db_cluster_identifier: "String", # required
23441
23661
  # restore_type: "String",
23442
- # source_db_cluster_identifier: "String", # required
23662
+ # source_db_cluster_identifier: "String",
23443
23663
  # restore_to_time: Time.now,
23444
23664
  # use_latest_restorable_time: false,
23445
23665
  # port: 1,
@@ -23479,6 +23699,7 @@ module Aws::RDS
23479
23699
  # max_capacity: 1.0,
23480
23700
  # },
23481
23701
  # network_type: "String",
23702
+ # source_db_cluster_resource_id: "String",
23482
23703
  # })
23483
23704
  #
23484
23705
  # @example Response structure
@@ -23599,6 +23820,7 @@ module Aws::RDS
23599
23820
  # resp.db_cluster.master_user_secret.secret_status #=> String
23600
23821
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
23601
23822
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
23823
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
23602
23824
  #
23603
23825
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
23604
23826
  #
@@ -26317,6 +26539,7 @@ module Aws::RDS
26317
26539
  # resp.db_cluster.master_user_secret.secret_status #=> String
26318
26540
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
26319
26541
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
26542
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
26320
26543
  #
26321
26544
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
26322
26545
  #
@@ -27129,6 +27352,7 @@ module Aws::RDS
27129
27352
  # resp.db_cluster.master_user_secret.secret_status #=> String
27130
27353
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
27131
27354
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
27355
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
27132
27356
  #
27133
27357
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
27134
27358
  #
@@ -27877,7 +28101,7 @@ module Aws::RDS
27877
28101
  params: params,
27878
28102
  config: config)
27879
28103
  context[:gem_name] = 'aws-sdk-rds'
27880
- context[:gem_version] = '1.187.0'
28104
+ context[:gem_version] = '1.189.0'
27881
28105
  Seahorse::Client::Request.new(handlers, context)
27882
28106
  end
27883
28107