aws-sdk-rds 1.187.0 → 1.188.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: e83c7f86f71a70525f984d1bd753680710f9a638a9e7721a657ac72d0dadbecb
4
- data.tar.gz: 1c60c4820f48876ae6ccf1c40b778c9c6c723840c454c7f31597c5c95c95dde3
3
+ metadata.gz: be3ff3efbdcbc329e56413491204c3a8cfb815e6cb903ca05d5ffb72249183d4
4
+ data.tar.gz: 94d42626fcbd6748050d286dc1d74bcff7e9a9f1d6a0b6289ab17aa5ba1733ca
5
5
  SHA512:
6
- metadata.gz: cb1c2ccecf11150fbc26d47308b3f08d96ef52c4d95d683b3dd2212b82fd4c2592818a33e2b7ff3012a6019d451492544dcd108b4b1f1d676655e6dae3491ec5
7
- data.tar.gz: d31accb17d1413caf37c78279fb1fb511aa49aaad2f426f502c8812e129533d2ff3852d2cc14b5f32f78b714128e1cc99d35fae771387e1a3eabf95ad9729d3f
6
+ metadata.gz: d20aa05d4fe07b1fa19d5d5840f74b1c49b71b4740f3d4608c78d45ab429652c0626f3962000d43d6ca76621a1446423576e3ef7124b152039b07dbd88cb2775
7
+ data.tar.gz: a6621421fae53bad3dbbac6607776ae0e2518984a1c30979b8a617a869a57d3daed4fc1749ef669b1bfec7d8683abd82ca0b30160fec428f679f304ae4db735a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.188.0 (2023-07-31)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.187.0 (2023-07-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.187.0
1
+ 1.188.0
@@ -2330,6 +2330,7 @@ module Aws::RDS
2330
2330
  # * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
2331
2331
  # * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
2332
2332
  # * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
2333
+ # * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
2333
2334
  #
2334
2335
  # @example Request syntax with placeholder values
2335
2336
  #
@@ -2379,6 +2380,7 @@ module Aws::RDS
2379
2380
  # resp.valid_upgrade_target[0].supports_parallel_query #=> Boolean
2380
2381
  # resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
2381
2382
  # resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
2383
+ # resp.valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
2382
2384
  # resp.supported_timezones #=> Array
2383
2385
  # resp.supported_timezones[0].timezone_name #=> String
2384
2386
  # resp.exportable_log_types #=> Array
@@ -2406,6 +2408,7 @@ module Aws::RDS
2406
2408
  # resp.supports_certificate_rotation_without_restart #=> Boolean
2407
2409
  # resp.supported_ca_certificate_identifiers #=> Array
2408
2410
  # resp.supported_ca_certificate_identifiers[0] #=> String
2411
+ # resp.supports_local_write_forwarding #=> Boolean
2409
2412
  #
2410
2413
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersion AWS API Documentation
2411
2414
  #
@@ -3230,6 +3233,13 @@ module Aws::RDS
3230
3233
  #
3231
3234
  # Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
3232
3235
  #
3236
+ # @option params [Boolean] :enable_local_write_forwarding
3237
+ # Specifies whether read replicas can forward write operations to the
3238
+ # writer DB instance in the DB cluster. By default, write operations
3239
+ # aren't allowed on reader DB instances.
3240
+ #
3241
+ # Valid for: Aurora DB clusters only
3242
+ #
3233
3243
  # @option params [String] :source_region
3234
3244
  # The source region of the snapshot. This is only needed when the
3235
3245
  # shapshot is encrypted and in a different region.
@@ -3433,6 +3443,7 @@ module Aws::RDS
3433
3443
  # db_system_id: "String",
3434
3444
  # manage_master_user_password: false,
3435
3445
  # master_user_secret_kms_key_id: "String",
3446
+ # enable_local_write_forwarding: false,
3436
3447
  # source_region: "String",
3437
3448
  # })
3438
3449
  #
@@ -3554,6 +3565,7 @@ module Aws::RDS
3554
3565
  # resp.db_cluster.master_user_secret.secret_status #=> String
3555
3566
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
3556
3567
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
3568
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
3557
3569
  #
3558
3570
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
3559
3571
  #
@@ -7940,6 +7952,7 @@ module Aws::RDS
7940
7952
  # * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
7941
7953
  # * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
7942
7954
  # * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
7955
+ # * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
7943
7956
  #
7944
7957
  # @example Request syntax with placeholder values
7945
7958
  #
@@ -7977,6 +7990,7 @@ module Aws::RDS
7977
7990
  # resp.valid_upgrade_target[0].supports_parallel_query #=> Boolean
7978
7991
  # resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
7979
7992
  # resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
7993
+ # resp.valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
7980
7994
  # resp.supported_timezones #=> Array
7981
7995
  # resp.supported_timezones[0].timezone_name #=> String
7982
7996
  # resp.exportable_log_types #=> Array
@@ -8004,6 +8018,7 @@ module Aws::RDS
8004
8018
  # resp.supports_certificate_rotation_without_restart #=> Boolean
8005
8019
  # resp.supported_ca_certificate_identifiers #=> Array
8006
8020
  # resp.supported_ca_certificate_identifiers[0] #=> String
8021
+ # resp.supports_local_write_forwarding #=> Boolean
8007
8022
  #
8008
8023
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomDBEngineVersion AWS API Documentation
8009
8024
  #
@@ -8234,6 +8249,7 @@ module Aws::RDS
8234
8249
  # resp.db_cluster.master_user_secret.secret_status #=> String
8235
8250
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
8236
8251
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
8252
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
8237
8253
  #
8238
8254
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
8239
8255
  #
@@ -11245,6 +11261,7 @@ module Aws::RDS
11245
11261
  # resp.db_clusters[0].master_user_secret.secret_status #=> String
11246
11262
  # resp.db_clusters[0].master_user_secret.kms_key_id #=> String
11247
11263
  # resp.db_clusters[0].io_optimized_next_allowed_modification_time #=> Time
11264
+ # resp.db_clusters[0].local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
11248
11265
  #
11249
11266
  #
11250
11267
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -11493,6 +11510,7 @@ module Aws::RDS
11493
11510
  # resp.db_engine_versions[0].valid_upgrade_target[0].supports_parallel_query #=> Boolean
11494
11511
  # resp.db_engine_versions[0].valid_upgrade_target[0].supports_global_databases #=> Boolean
11495
11512
  # resp.db_engine_versions[0].valid_upgrade_target[0].supports_babelfish #=> Boolean
11513
+ # resp.db_engine_versions[0].valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
11496
11514
  # resp.db_engine_versions[0].supported_timezones #=> Array
11497
11515
  # resp.db_engine_versions[0].supported_timezones[0].timezone_name #=> String
11498
11516
  # resp.db_engine_versions[0].exportable_log_types #=> Array
@@ -11520,6 +11538,7 @@ module Aws::RDS
11520
11538
  # resp.db_engine_versions[0].supports_certificate_rotation_without_restart #=> Boolean
11521
11539
  # resp.db_engine_versions[0].supported_ca_certificate_identifiers #=> Array
11522
11540
  # resp.db_engine_versions[0].supported_ca_certificate_identifiers[0] #=> String
11541
+ # resp.db_engine_versions[0].supports_local_write_forwarding #=> Boolean
11523
11542
  #
11524
11543
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
11525
11544
  #
@@ -15742,6 +15761,7 @@ module Aws::RDS
15742
15761
  # resp.db_cluster.master_user_secret.secret_status #=> String
15743
15762
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
15744
15763
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
15764
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
15745
15765
  #
15746
15766
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
15747
15767
  #
@@ -16289,6 +16309,7 @@ module Aws::RDS
16289
16309
  # * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
16290
16310
  # * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
16291
16311
  # * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
16312
+ # * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
16292
16313
  #
16293
16314
  # @example Request syntax with placeholder values
16294
16315
  #
@@ -16328,6 +16349,7 @@ module Aws::RDS
16328
16349
  # resp.valid_upgrade_target[0].supports_parallel_query #=> Boolean
16329
16350
  # resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
16330
16351
  # resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
16352
+ # resp.valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
16331
16353
  # resp.supported_timezones #=> Array
16332
16354
  # resp.supported_timezones[0].timezone_name #=> String
16333
16355
  # resp.exportable_log_types #=> Array
@@ -16355,6 +16377,7 @@ module Aws::RDS
16355
16377
  # resp.supports_certificate_rotation_without_restart #=> Boolean
16356
16378
  # resp.supported_ca_certificate_identifiers #=> Array
16357
16379
  # resp.supported_ca_certificate_identifiers[0] #=> String
16380
+ # resp.supports_local_write_forwarding #=> Boolean
16358
16381
  #
16359
16382
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCustomDBEngineVersion AWS API Documentation
16360
16383
  #
@@ -17038,6 +17061,13 @@ module Aws::RDS
17038
17061
  #
17039
17062
  # ^
17040
17063
  #
17064
+ # @option params [Boolean] :enable_local_write_forwarding
17065
+ # Specifies whether read replicas can forward write operations to the
17066
+ # writer DB instance in the DB cluster. By default, write operations
17067
+ # aren't allowed on reader DB instances.
17068
+ #
17069
+ # Valid for: Aurora DB clusters only
17070
+ #
17041
17071
  # @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
17042
17072
  #
17043
17073
  # * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
@@ -17174,6 +17204,7 @@ module Aws::RDS
17174
17204
  # master_user_secret_kms_key_id: "String",
17175
17205
  # engine_mode: "String",
17176
17206
  # allow_engine_mode_change: false,
17207
+ # enable_local_write_forwarding: false,
17177
17208
  # })
17178
17209
  #
17179
17210
  # @example Response structure
@@ -17294,6 +17325,7 @@ module Aws::RDS
17294
17325
  # resp.db_cluster.master_user_secret.secret_status #=> String
17295
17326
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
17296
17327
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
17328
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
17297
17329
  #
17298
17330
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
17299
17331
  #
@@ -20514,6 +20546,7 @@ module Aws::RDS
20514
20546
  # resp.db_cluster.master_user_secret.secret_status #=> String
20515
20547
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
20516
20548
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
20549
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
20517
20550
  #
20518
20551
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
20519
20552
  #
@@ -20789,6 +20822,7 @@ module Aws::RDS
20789
20822
  # resp.db_cluster.master_user_secret.secret_status #=> String
20790
20823
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
20791
20824
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
20825
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
20792
20826
  #
20793
20827
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBCluster AWS API Documentation
20794
20828
  #
@@ -22246,6 +22280,7 @@ module Aws::RDS
22246
22280
  # resp.db_cluster.master_user_secret.secret_status #=> String
22247
22281
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
22248
22282
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
22283
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
22249
22284
  #
22250
22285
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
22251
22286
  #
@@ -22938,6 +22973,7 @@ module Aws::RDS
22938
22973
  # resp.db_cluster.master_user_secret.secret_status #=> String
22939
22974
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
22940
22975
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
22976
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
22941
22977
  #
22942
22978
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
22943
22979
  #
@@ -23599,6 +23635,7 @@ module Aws::RDS
23599
23635
  # resp.db_cluster.master_user_secret.secret_status #=> String
23600
23636
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
23601
23637
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
23638
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
23602
23639
  #
23603
23640
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
23604
23641
  #
@@ -26317,6 +26354,7 @@ module Aws::RDS
26317
26354
  # resp.db_cluster.master_user_secret.secret_status #=> String
26318
26355
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
26319
26356
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
26357
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
26320
26358
  #
26321
26359
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
26322
26360
  #
@@ -27129,6 +27167,7 @@ module Aws::RDS
27129
27167
  # resp.db_cluster.master_user_secret.secret_status #=> String
27130
27168
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
27131
27169
  # resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
27170
+ # resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
27132
27171
  #
27133
27172
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
27134
27173
  #
@@ -27877,7 +27916,7 @@ module Aws::RDS
27877
27916
  params: params,
27878
27917
  config: config)
27879
27918
  context[:gem_name] = 'aws-sdk-rds'
27880
- context[:gem_version] = '1.187.0'
27919
+ context[:gem_version] = '1.188.0'
27881
27920
  Seahorse::Client::Request.new(handlers, context)
27882
27921
  end
27883
27922
 
@@ -424,6 +424,7 @@ module Aws::RDS
424
424
  KeyList = Shapes::ListShape.new(name: 'KeyList')
425
425
  KmsKeyIdOrArn = Shapes::StringShape.new(name: 'KmsKeyIdOrArn')
426
426
  ListTagsForResourceMessage = Shapes::StructureShape.new(name: 'ListTagsForResourceMessage')
427
+ LocalWriteForwardingStatus = Shapes::StringShape.new(name: 'LocalWriteForwardingStatus')
427
428
  LogTypeList = Shapes::ListShape.new(name: 'LogTypeList')
428
429
  Long = Shapes::IntegerShape.new(name: 'Long')
429
430
  LongOptional = Shapes::IntegerShape.new(name: 'LongOptional')
@@ -950,6 +951,7 @@ module Aws::RDS
950
951
  CreateDBClusterMessage.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
951
952
  CreateDBClusterMessage.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
952
953
  CreateDBClusterMessage.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
954
+ CreateDBClusterMessage.add_member(:enable_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableLocalWriteForwarding"))
953
955
  CreateDBClusterMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
954
956
  CreateDBClusterMessage.struct_class = Types::CreateDBClusterMessage
955
957
 
@@ -1264,6 +1266,7 @@ module Aws::RDS
1264
1266
  DBCluster.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
1265
1267
  DBCluster.add_member(:master_user_secret, Shapes::ShapeRef.new(shape: MasterUserSecret, location_name: "MasterUserSecret"))
1266
1268
  DBCluster.add_member(:io_optimized_next_allowed_modification_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "IOOptimizedNextAllowedModificationTime"))
1269
+ DBCluster.add_member(:local_write_forwarding_status, Shapes::ShapeRef.new(shape: LocalWriteForwardingStatus, location_name: "LocalWriteForwardingStatus"))
1267
1270
  DBCluster.struct_class = Types::DBCluster
1268
1271
 
1269
1272
  DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
@@ -1450,6 +1453,7 @@ module Aws::RDS
1450
1453
  DBEngineVersion.add_member(:custom_db_engine_version_manifest, Shapes::ShapeRef.new(shape: CustomDBEngineVersionManifest, location_name: "CustomDBEngineVersionManifest"))
1451
1454
  DBEngineVersion.add_member(:supports_certificate_rotation_without_restart, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsCertificateRotationWithoutRestart"))
1452
1455
  DBEngineVersion.add_member(:supported_ca_certificate_identifiers, Shapes::ShapeRef.new(shape: CACertificateIdentifiersList, location_name: "SupportedCACertificateIdentifiers"))
1456
+ DBEngineVersion.add_member(:supports_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsLocalWriteForwarding"))
1453
1457
  DBEngineVersion.struct_class = Types::DBEngineVersion
1454
1458
 
1455
1459
  DBEngineVersionList.member = Shapes::ShapeRef.new(shape: DBEngineVersion, location_name: "DBEngineVersion")
@@ -2614,6 +2618,7 @@ module Aws::RDS
2614
2618
  ModifyDBClusterMessage.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
2615
2619
  ModifyDBClusterMessage.add_member(:engine_mode, Shapes::ShapeRef.new(shape: String, location_name: "EngineMode"))
2616
2620
  ModifyDBClusterMessage.add_member(:allow_engine_mode_change, Shapes::ShapeRef.new(shape: Boolean, location_name: "AllowEngineModeChange"))
2621
+ ModifyDBClusterMessage.add_member(:enable_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableLocalWriteForwarding"))
2617
2622
  ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
2618
2623
 
2619
2624
  ModifyDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
@@ -3649,6 +3654,7 @@ module Aws::RDS
3649
3654
  UpgradeTarget.add_member(:supports_parallel_query, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsParallelQuery"))
3650
3655
  UpgradeTarget.add_member(:supports_global_databases, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsGlobalDatabases"))
3651
3656
  UpgradeTarget.add_member(:supports_babelfish, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsBabelfish"))
3657
+ UpgradeTarget.add_member(:supports_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsLocalWriteForwarding"))
3652
3658
  UpgradeTarget.struct_class = Types::UpgradeTarget
3653
3659
 
3654
3660
  UserAuthConfig.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
@@ -654,6 +654,13 @@ module Aws::RDS
654
654
  data[:io_optimized_next_allowed_modification_time]
655
655
  end
656
656
 
657
+ # Specifies whether an Aurora DB cluster has in-cluster write forwarding
658
+ # enabled, not enabled, requested, or is in the process of enabling it.
659
+ # @return [String]
660
+ def local_write_forwarding_status
661
+ data[:local_write_forwarding_status]
662
+ end
663
+
657
664
  # @!endgroup
658
665
 
659
666
  # @return [Client]
@@ -858,6 +865,7 @@ module Aws::RDS
858
865
  # db_system_id: "String",
859
866
  # manage_master_user_password: false,
860
867
  # master_user_secret_kms_key_id: "String",
868
+ # enable_local_write_forwarding: false,
861
869
  # source_region: "String",
862
870
  # })
863
871
  # @param [Hash] options ({})
@@ -1585,6 +1593,12 @@ module Aws::RDS
1585
1593
  # Amazon Web Services Region.
1586
1594
  #
1587
1595
  # Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
1596
+ # @option options [Boolean] :enable_local_write_forwarding
1597
+ # Specifies whether read replicas can forward write operations to the
1598
+ # writer DB instance in the DB cluster. By default, write operations
1599
+ # aren't allowed on reader DB instances.
1600
+ #
1601
+ # Valid for: Aurora DB clusters only
1588
1602
  # @option options [String] :source_region
1589
1603
  # The source region of the snapshot. This is only needed when the
1590
1604
  # shapshot is encrypted and in a different region.
@@ -1774,6 +1788,7 @@ module Aws::RDS
1774
1788
  # master_user_secret_kms_key_id: "String",
1775
1789
  # engine_mode: "String",
1776
1790
  # allow_engine_mode_change: false,
1791
+ # enable_local_write_forwarding: false,
1777
1792
  # })
1778
1793
  # @param [Hash] options ({})
1779
1794
  # @option options [String] :new_db_cluster_identifier
@@ -2382,6 +2397,12 @@ module Aws::RDS
2382
2397
  # mode.
2383
2398
  #
2384
2399
  # ^
2400
+ # @option options [Boolean] :enable_local_write_forwarding
2401
+ # Specifies whether read replicas can forward write operations to the
2402
+ # writer DB instance in the DB cluster. By default, write operations
2403
+ # aren't allowed on reader DB instances.
2404
+ #
2405
+ # Valid for: Aurora DB clusters only
2385
2406
  # @return [DBCluster]
2386
2407
  def modify(options = {})
2387
2408
  options = options.merge(db_cluster_identifier: @id)
@@ -277,6 +277,17 @@ module Aws::RDS
277
277
  data[:supported_ca_certificate_identifiers]
278
278
  end
279
279
 
280
+ # A value that indicates whether the DB engine version supports
281
+ # forwarding write operations from reader DB instances to the writer DB
282
+ # instance in the DB cluster. By default, write operations aren't
283
+ # allowed on reader DB instances.
284
+ #
285
+ # Valid for: Aurora DB clusters only
286
+ # @return [Boolean]
287
+ def supports_local_write_forwarding
288
+ data[:supports_local_write_forwarding]
289
+ end
290
+
280
291
  # @!endgroup
281
292
 
282
293
  # @return [Client]
@@ -102,6 +102,7 @@ module Aws::RDS
102
102
  # db_system_id: "String",
103
103
  # manage_master_user_password: false,
104
104
  # master_user_secret_kms_key_id: "String",
105
+ # enable_local_write_forwarding: false,
105
106
  # source_region: "String",
106
107
  # })
107
108
  # @param [Hash] options ({})
@@ -844,6 +845,12 @@ module Aws::RDS
844
845
  # Amazon Web Services Region.
845
846
  #
846
847
  # Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
848
+ # @option options [Boolean] :enable_local_write_forwarding
849
+ # Specifies whether read replicas can forward write operations to the
850
+ # writer DB instance in the DB cluster. By default, write operations
851
+ # aren't allowed on reader DB instances.
852
+ #
853
+ # Valid for: Aurora DB clusters only
847
854
  # @option options [String] :source_region
848
855
  # The source region of the snapshot. This is only needed when the
849
856
  # shapshot is encrypted and in a different region.
@@ -2787,6 +2787,14 @@ module Aws::RDS
2787
2787
  # Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
2788
2788
  # @return [String]
2789
2789
  #
2790
+ # @!attribute [rw] enable_local_write_forwarding
2791
+ # Specifies whether read replicas can forward write operations to the
2792
+ # writer DB instance in the DB cluster. By default, write operations
2793
+ # aren't allowed on reader DB instances.
2794
+ #
2795
+ # Valid for: Aurora DB clusters only
2796
+ # @return [Boolean]
2797
+ #
2790
2798
  # @!attribute [rw] source_region
2791
2799
  # The source region of the snapshot. This is only needed when the
2792
2800
  # shapshot is encrypted and in a different region.
@@ -2844,6 +2852,7 @@ module Aws::RDS
2844
2852
  :db_system_id,
2845
2853
  :manage_master_user_password,
2846
2854
  :master_user_secret_kms_key_id,
2855
+ :enable_local_write_forwarding,
2847
2856
  :source_region)
2848
2857
  SENSITIVE = []
2849
2858
  include Aws::Structure
@@ -6413,6 +6422,12 @@ module Aws::RDS
6413
6422
  # This setting is only for Aurora DB clusters.
6414
6423
  # @return [Time]
6415
6424
  #
6425
+ # @!attribute [rw] local_write_forwarding_status
6426
+ # Specifies whether an Aurora DB cluster has in-cluster write
6427
+ # forwarding enabled, not enabled, requested, or is in the process of
6428
+ # enabling it.
6429
+ # @return [String]
6430
+ #
6416
6431
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBCluster AWS API Documentation
6417
6432
  #
6418
6433
  class DBCluster < Struct.new(
@@ -6487,7 +6502,8 @@ module Aws::RDS
6487
6502
  :network_type,
6488
6503
  :db_system_id,
6489
6504
  :master_user_secret,
6490
- :io_optimized_next_allowed_modification_time)
6505
+ :io_optimized_next_allowed_modification_time,
6506
+ :local_write_forwarding_status)
6491
6507
  SENSITIVE = []
6492
6508
  include Aws::Structure
6493
6509
  end
@@ -7450,6 +7466,15 @@ module Aws::RDS
7450
7466
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
7451
7467
  # @return [Array<String>]
7452
7468
  #
7469
+ # @!attribute [rw] supports_local_write_forwarding
7470
+ # A value that indicates whether the DB engine version supports
7471
+ # forwarding write operations from reader DB instances to the writer
7472
+ # DB instance in the DB cluster. By default, write operations aren't
7473
+ # allowed on reader DB instances.
7474
+ #
7475
+ # Valid for: Aurora DB clusters only
7476
+ # @return [Boolean]
7477
+ #
7453
7478
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBEngineVersion AWS API Documentation
7454
7479
  #
7455
7480
  class DBEngineVersion < Struct.new(
@@ -7483,7 +7508,8 @@ module Aws::RDS
7483
7508
  :supports_babelfish,
7484
7509
  :custom_db_engine_version_manifest,
7485
7510
  :supports_certificate_rotation_without_restart,
7486
- :supported_ca_certificate_identifiers)
7511
+ :supported_ca_certificate_identifiers,
7512
+ :supports_local_write_forwarding)
7487
7513
  SENSITIVE = []
7488
7514
  include Aws::Structure
7489
7515
  end
@@ -15180,6 +15206,14 @@ module Aws::RDS
15180
15206
  # ^
15181
15207
  # @return [Boolean]
15182
15208
  #
15209
+ # @!attribute [rw] enable_local_write_forwarding
15210
+ # Specifies whether read replicas can forward write operations to the
15211
+ # writer DB instance in the DB cluster. By default, write operations
15212
+ # aren't allowed on reader DB instances.
15213
+ #
15214
+ # Valid for: Aurora DB clusters only
15215
+ # @return [Boolean]
15216
+ #
15183
15217
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
15184
15218
  #
15185
15219
  class ModifyDBClusterMessage < Struct.new(
@@ -15223,7 +15257,8 @@ module Aws::RDS
15223
15257
  :rotate_master_user_password,
15224
15258
  :master_user_secret_kms_key_id,
15225
15259
  :engine_mode,
15226
- :allow_engine_mode_change)
15260
+ :allow_engine_mode_change,
15261
+ :enable_local_write_forwarding)
15227
15262
  SENSITIVE = []
15228
15263
  include Aws::Structure
15229
15264
  end
@@ -23799,6 +23834,15 @@ module Aws::RDS
23799
23834
  # PostgreSQL with the target engine version.
23800
23835
  # @return [Boolean]
23801
23836
  #
23837
+ # @!attribute [rw] supports_local_write_forwarding
23838
+ # A value that indicates whether the target engine version supports
23839
+ # forwarding write operations from reader DB instances to the writer
23840
+ # DB instance in the DB cluster. By default, write operations aren't
23841
+ # allowed on reader DB instances.
23842
+ #
23843
+ # Valid for: Aurora DB clusters only
23844
+ # @return [Boolean]
23845
+ #
23802
23846
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/UpgradeTarget AWS API Documentation
23803
23847
  #
23804
23848
  class UpgradeTarget < Struct.new(
@@ -23810,7 +23854,8 @@ module Aws::RDS
23810
23854
  :supported_engine_modes,
23811
23855
  :supports_parallel_query,
23812
23856
  :supports_global_databases,
23813
- :supports_babelfish)
23857
+ :supports_babelfish,
23858
+ :supports_local_write_forwarding)
23814
23859
  SENSITIVE = []
23815
23860
  include Aws::Structure
23816
23861
  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.187.0'
81
+ GEM_VERSION = '1.188.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.187.0
4
+ version: 1.188.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-07-25 00:00:00.000000000 Z
11
+ date: 2023-07-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4