aws-sdk-rds 1.85.0 → 1.90.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 +4 -4
- data/lib/aws-sdk-rds.rb +3 -1
- data/lib/aws-sdk-rds/account_quota.rb +2 -0
- data/lib/aws-sdk-rds/certificate.rb +2 -0
- data/lib/aws-sdk-rds/client.rb +203 -99
- data/lib/aws-sdk-rds/client_api.rb +56 -0
- data/lib/aws-sdk-rds/customizations.rb +2 -0
- data/lib/aws-sdk-rds/customizations/auth_token_generator.rb +2 -0
- data/lib/aws-sdk-rds/db_cluster.rb +59 -25
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +2 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +6 -0
- data/lib/aws-sdk-rds/db_engine.rb +2 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +2 -0
- data/lib/aws-sdk-rds/db_instance.rb +70 -50
- data/lib/aws-sdk-rds/db_log_file.rb +2 -0
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -0
- data/lib/aws-sdk-rds/db_parameter_group_family.rb +2 -0
- data/lib/aws-sdk-rds/db_security_group.rb +2 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +18 -9
- data/lib/aws-sdk-rds/db_snapshot_attribute.rb +2 -0
- data/lib/aws-sdk-rds/db_subnet_group.rb +2 -0
- data/lib/aws-sdk-rds/errors.rb +2 -0
- data/lib/aws-sdk-rds/event.rb +2 -0
- data/lib/aws-sdk-rds/event_category_map.rb +2 -0
- data/lib/aws-sdk-rds/event_subscription.rb +2 -0
- data/lib/aws-sdk-rds/option_group.rb +2 -0
- data/lib/aws-sdk-rds/option_group_option.rb +2 -0
- data/lib/aws-sdk-rds/parameter.rb +2 -0
- data/lib/aws-sdk-rds/pending_maintenance_action.rb +2 -0
- data/lib/aws-sdk-rds/plugins/cross_region_copying.rb +2 -0
- data/lib/aws-sdk-rds/reserved_db_instance.rb +2 -0
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +2 -0
- data/lib/aws-sdk-rds/resource.rb +54 -77
- data/lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb +2 -0
- data/lib/aws-sdk-rds/types.rb +502 -95
- data/lib/aws-sdk-rds/waiters.rb +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c6e145844b4aa0951f079d367ae3d6dba5e7827b5b2192ad287a0a5a7414c24
|
4
|
+
data.tar.gz: 51945fe8b515fcffcb14f3dc8a6f85c9718e0a3fc8eafcc4b1a56506ee55e499
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1337f18ce9e8991069cbae84d6fda48f0172373ef1384acc445481a20f51daf4554c6c89db55d7044b3b1339f776ac34036dcef5000a2b5493b9248e88f760cc
|
7
|
+
data.tar.gz: ec7454d2a15f7b5294282aed12b6e50857e8ea3584174adde37af5011d70235ef688ed6e8aefac84cdc133d9c4ead4ffbaa7a6efd9b6bf3e206400d22f512268
|
data/lib/aws-sdk-rds.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -71,6 +73,6 @@ require_relative 'aws-sdk-rds/customizations'
|
|
71
73
|
# @service
|
72
74
|
module Aws::RDS
|
73
75
|
|
74
|
-
GEM_VERSION = '1.
|
76
|
+
GEM_VERSION = '1.90.0'
|
75
77
|
|
76
78
|
end
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
29
32
|
require 'aws-sdk-rds/plugins/cross_region_copying.rb'
|
@@ -70,6 +73,7 @@ module Aws::RDS
|
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
71
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
72
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
73
77
|
add_plugin(Aws::Plugins::SignatureV4)
|
74
78
|
add_plugin(Aws::Plugins::Protocols::Query)
|
75
79
|
add_plugin(Aws::RDS::Plugins::CrossRegionCopying)
|
@@ -163,7 +167,7 @@ module Aws::RDS
|
|
163
167
|
# @option options [String] :endpoint
|
164
168
|
# The client endpoint is normally constructed from the `:region`
|
165
169
|
# option. You should only configure an `:endpoint` when connecting
|
166
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
170
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
167
171
|
#
|
168
172
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
169
173
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -720,7 +724,7 @@ module Aws::RDS
|
|
720
724
|
# For more information on backtracking, see [ Backtracking an Aurora DB
|
721
725
|
# Cluster][1] in the *Amazon Aurora User Guide.*
|
722
726
|
#
|
723
|
-
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
727
|
+
# <note markdown="1"> This action only applies to Aurora MySQL DB clusters.
|
724
728
|
#
|
725
729
|
# </note>
|
726
730
|
#
|
@@ -2100,6 +2104,10 @@ module Aws::RDS
|
|
2100
2104
|
# The target backtrack window, in seconds. To disable backtracking, set
|
2101
2105
|
# this value to 0.
|
2102
2106
|
#
|
2107
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
2108
|
+
#
|
2109
|
+
# </note>
|
2110
|
+
#
|
2103
2111
|
# Default: 0
|
2104
2112
|
#
|
2105
2113
|
# Constraints:
|
@@ -2198,6 +2206,14 @@ module Aws::RDS
|
|
2198
2206
|
# Specify the name of the IAM role to be used when making API calls to
|
2199
2207
|
# the Directory Service.
|
2200
2208
|
#
|
2209
|
+
# @option params [Boolean] :enable_global_write_forwarding
|
2210
|
+
# A value that indicates whether to enable write operations to be
|
2211
|
+
# forwarded from this cluster to the primary cluster in an Aurora global
|
2212
|
+
# database. The resulting changes are replicated back to this cluster.
|
2213
|
+
# This parameter only applies to DB clusters that are secondary clusters
|
2214
|
+
# in an Aurora global database. By default, Aurora disallows write
|
2215
|
+
# operations for secondary clusters.
|
2216
|
+
#
|
2201
2217
|
# @option params [String] :source_region
|
2202
2218
|
# The source region of the snapshot. This is only needed when the
|
2203
2219
|
# shapshot is encrypted and in a different region.
|
@@ -2279,6 +2295,7 @@ module Aws::RDS
|
|
2279
2295
|
# copy_tags_to_snapshot: false,
|
2280
2296
|
# domain: "String",
|
2281
2297
|
# domain_iam_role_name: "String",
|
2298
|
+
# enable_global_write_forwarding: false,
|
2282
2299
|
# source_region: "String",
|
2283
2300
|
# })
|
2284
2301
|
#
|
@@ -2359,6 +2376,8 @@ module Aws::RDS
|
|
2359
2376
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
2360
2377
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
2361
2378
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
2379
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
2380
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
2362
2381
|
#
|
2363
2382
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
|
2364
2383
|
#
|
@@ -3280,11 +3299,16 @@ module Aws::RDS
|
|
3280
3299
|
#
|
3281
3300
|
# @option params [Boolean] :publicly_accessible
|
3282
3301
|
# A value that indicates whether the DB instance is publicly accessible.
|
3283
|
-
#
|
3284
|
-
#
|
3285
|
-
#
|
3286
|
-
#
|
3287
|
-
#
|
3302
|
+
#
|
3303
|
+
# When the DB instance is publicly accessible, its DNS endpoint resolves
|
3304
|
+
# to the private IP address from within the DB instance's VPC, and to
|
3305
|
+
# the public IP address from outside of the DB instance's VPC. Access
|
3306
|
+
# to the DB instance is ultimately controlled by the security group it
|
3307
|
+
# uses, and that public access is not permitted if the security group
|
3308
|
+
# assigned to the DB instance doesn't permit it.
|
3309
|
+
#
|
3310
|
+
# When the DB instance isn't publicly accessible, it is an internal DB
|
3311
|
+
# instance with a DNS name that resolves to a private IP address.
|
3288
3312
|
#
|
3289
3313
|
# Default: The default behavior varies depending on whether
|
3290
3314
|
# `DBSubnetGroupName` is specified.
|
@@ -3895,11 +3919,18 @@ module Aws::RDS
|
|
3895
3919
|
#
|
3896
3920
|
# @option params [Boolean] :publicly_accessible
|
3897
3921
|
# A value that indicates whether the DB instance is publicly accessible.
|
3898
|
-
#
|
3899
|
-
#
|
3900
|
-
#
|
3901
|
-
#
|
3902
|
-
#
|
3922
|
+
#
|
3923
|
+
# When the DB instance is publicly accessible, its DNS endpoint resolves
|
3924
|
+
# to the private IP address from within the DB instance's VPC, and to
|
3925
|
+
# the public IP address from outside of the DB instance's VPC. Access
|
3926
|
+
# to the DB instance is ultimately controlled by the security group it
|
3927
|
+
# uses, and that public access is not permitted if the security group
|
3928
|
+
# assigned to the DB instance doesn't permit it.
|
3929
|
+
#
|
3930
|
+
# When the DB instance isn't publicly accessible, it is an internal DB
|
3931
|
+
# instance with a DNS name that resolves to a private IP address.
|
3932
|
+
#
|
3933
|
+
# For more information, see CreateDBInstance.
|
3903
3934
|
#
|
3904
3935
|
# @option params [Array<Types::Tag>] :tags
|
3905
3936
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
@@ -4473,11 +4504,6 @@ module Aws::RDS
|
|
4473
4504
|
req.send_request(options)
|
4474
4505
|
end
|
4475
4506
|
|
4476
|
-
# <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
|
4477
|
-
# preview release. It is subject to change.
|
4478
|
-
#
|
4479
|
-
# </note>
|
4480
|
-
#
|
4481
4507
|
# Creates a new DB proxy.
|
4482
4508
|
#
|
4483
4509
|
# @option params [required, String] :db_proxy_name
|
@@ -5108,6 +5134,7 @@ module Aws::RDS
|
|
5108
5134
|
# resp.global_cluster.global_cluster_members[0].readers #=> Array
|
5109
5135
|
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
5110
5136
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
5137
|
+
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
5111
5138
|
#
|
5112
5139
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateGlobalCluster AWS API Documentation
|
5113
5140
|
#
|
@@ -5436,6 +5463,8 @@ module Aws::RDS
|
|
5436
5463
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
5437
5464
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
5438
5465
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
5466
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
5467
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
5439
5468
|
#
|
5440
5469
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
5441
5470
|
#
|
@@ -5966,11 +5995,6 @@ module Aws::RDS
|
|
5966
5995
|
req.send_request(options)
|
5967
5996
|
end
|
5968
5997
|
|
5969
|
-
# <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
|
5970
|
-
# preview release. It is subject to change.
|
5971
|
-
#
|
5972
|
-
# </note>
|
5973
|
-
#
|
5974
5998
|
# Deletes an existing proxy.
|
5975
5999
|
#
|
5976
6000
|
# @option params [required, String] :db_proxy_name
|
@@ -6287,6 +6311,7 @@ module Aws::RDS
|
|
6287
6311
|
# resp.global_cluster.global_cluster_members[0].readers #=> Array
|
6288
6312
|
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
6289
6313
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
6314
|
+
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
6290
6315
|
#
|
6291
6316
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteGlobalCluster AWS API Documentation
|
6292
6317
|
#
|
@@ -6375,11 +6400,6 @@ module Aws::RDS
|
|
6375
6400
|
req.send_request(options)
|
6376
6401
|
end
|
6377
6402
|
|
6378
|
-
# <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
|
6379
|
-
# preview release. It is subject to change.
|
6380
|
-
#
|
6381
|
-
# </note>
|
6382
|
-
#
|
6383
6403
|
# Remove the association between one or more `DBProxyTarget` data
|
6384
6404
|
# structures and a `DBProxyTargetGroup`.
|
6385
6405
|
#
|
@@ -6493,6 +6513,8 @@ module Aws::RDS
|
|
6493
6513
|
# * {Types::CertificateMessage#certificates #certificates} => Array<Types::Certificate>
|
6494
6514
|
# * {Types::CertificateMessage#marker #marker} => String
|
6495
6515
|
#
|
6516
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6517
|
+
#
|
6496
6518
|
#
|
6497
6519
|
# @example Example: To list certificates
|
6498
6520
|
#
|
@@ -6627,7 +6649,7 @@ module Aws::RDS
|
|
6627
6649
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
6628
6650
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
6629
6651
|
#
|
6630
|
-
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
6652
|
+
# <note markdown="1"> This action only applies to Aurora MySQL DB clusters.
|
6631
6653
|
#
|
6632
6654
|
# </note>
|
6633
6655
|
#
|
@@ -6710,6 +6732,8 @@ module Aws::RDS
|
|
6710
6732
|
# * {Types::DBClusterBacktrackMessage#marker #marker} => String
|
6711
6733
|
# * {Types::DBClusterBacktrackMessage#db_cluster_backtracks #db_cluster_backtracks} => Array<Types::DBClusterBacktrack>
|
6712
6734
|
#
|
6735
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6736
|
+
#
|
6713
6737
|
# @example Request syntax with placeholder values
|
6714
6738
|
#
|
6715
6739
|
# resp = client.describe_db_cluster_backtracks({
|
@@ -6793,6 +6817,8 @@ module Aws::RDS
|
|
6793
6817
|
# * {Types::DBClusterEndpointMessage#marker #marker} => String
|
6794
6818
|
# * {Types::DBClusterEndpointMessage#db_cluster_endpoints #db_cluster_endpoints} => Array<Types::DBClusterEndpoint>
|
6795
6819
|
#
|
6820
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6821
|
+
#
|
6796
6822
|
# @example Request syntax with placeholder values
|
6797
6823
|
#
|
6798
6824
|
# resp = client.describe_db_cluster_endpoints({
|
@@ -6885,6 +6911,8 @@ module Aws::RDS
|
|
6885
6911
|
# * {Types::DBClusterParameterGroupsMessage#marker #marker} => String
|
6886
6912
|
# * {Types::DBClusterParameterGroupsMessage#db_cluster_parameter_groups #db_cluster_parameter_groups} => Array<Types::DBClusterParameterGroup>
|
6887
6913
|
#
|
6914
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6915
|
+
#
|
6888
6916
|
#
|
6889
6917
|
# @example Example: To list DB cluster parameter group settings
|
6890
6918
|
#
|
@@ -6983,6 +7011,8 @@ module Aws::RDS
|
|
6983
7011
|
# * {Types::DBClusterParameterGroupDetails#parameters #parameters} => Array<Types::Parameter>
|
6984
7012
|
# * {Types::DBClusterParameterGroupDetails#marker #marker} => String
|
6985
7013
|
#
|
7014
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7015
|
+
#
|
6986
7016
|
#
|
6987
7017
|
# @example Example: To list DB cluster parameters
|
6988
7018
|
#
|
@@ -7222,6 +7252,8 @@ module Aws::RDS
|
|
7222
7252
|
# * {Types::DBClusterSnapshotMessage#marker #marker} => String
|
7223
7253
|
# * {Types::DBClusterSnapshotMessage#db_cluster_snapshots #db_cluster_snapshots} => Array<Types::DBClusterSnapshot>
|
7224
7254
|
#
|
7255
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7256
|
+
#
|
7225
7257
|
#
|
7226
7258
|
# @example Example: To list DB cluster snapshots
|
7227
7259
|
#
|
@@ -7466,6 +7498,8 @@ module Aws::RDS
|
|
7466
7498
|
# resp.db_clusters[0].domain_memberships[0].status #=> String
|
7467
7499
|
# resp.db_clusters[0].domain_memberships[0].fqdn #=> String
|
7468
7500
|
# resp.db_clusters[0].domain_memberships[0].iam_role_name #=> String
|
7501
|
+
# resp.db_clusters[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
7502
|
+
# resp.db_clusters[0].global_write_forwarding_requested #=> Boolean
|
7469
7503
|
#
|
7470
7504
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusters AWS API Documentation
|
7471
7505
|
#
|
@@ -8250,11 +8284,6 @@ module Aws::RDS
|
|
8250
8284
|
req.send_request(options)
|
8251
8285
|
end
|
8252
8286
|
|
8253
|
-
# <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
|
8254
|
-
# preview release. It is subject to change.
|
8255
|
-
#
|
8256
|
-
# </note>
|
8257
|
-
#
|
8258
8287
|
# Returns information about DB proxies.
|
8259
8288
|
#
|
8260
8289
|
# @option params [String] :db_proxy_name
|
@@ -8334,11 +8363,6 @@ module Aws::RDS
|
|
8334
8363
|
req.send_request(options)
|
8335
8364
|
end
|
8336
8365
|
|
8337
|
-
# <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
|
8338
|
-
# preview release. It is subject to change.
|
8339
|
-
#
|
8340
|
-
# </note>
|
8341
|
-
#
|
8342
8366
|
# Returns information about DB proxy target groups, represented by
|
8343
8367
|
# `DBProxyTargetGroup` data structures.
|
8344
8368
|
#
|
@@ -8415,11 +8439,6 @@ module Aws::RDS
|
|
8415
8439
|
req.send_request(options)
|
8416
8440
|
end
|
8417
8441
|
|
8418
|
-
# <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
|
8419
|
-
# preview release. It is subject to change.
|
8420
|
-
#
|
8421
|
-
# </note>
|
8422
|
-
#
|
8423
8442
|
# Returns information about `DBProxyTarget` objects. This API supports
|
8424
8443
|
# pagination.
|
8425
8444
|
#
|
@@ -9603,6 +9622,7 @@ module Aws::RDS
|
|
9603
9622
|
# resp.global_clusters[0].global_cluster_members[0].readers #=> Array
|
9604
9623
|
# resp.global_clusters[0].global_cluster_members[0].readers[0] #=> String
|
9605
9624
|
# resp.global_clusters[0].global_cluster_members[0].is_writer #=> Boolean
|
9625
|
+
# resp.global_clusters[0].global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
9606
9626
|
#
|
9607
9627
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeGlobalClusters AWS API Documentation
|
9608
9628
|
#
|
@@ -10090,6 +10110,8 @@ module Aws::RDS
|
|
10090
10110
|
# * {Types::PendingMaintenanceActionsMessage#pending_maintenance_actions #pending_maintenance_actions} => Array<Types::ResourcePendingMaintenanceActions>
|
10091
10111
|
# * {Types::PendingMaintenanceActionsMessage#marker #marker} => String
|
10092
10112
|
#
|
10113
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
10114
|
+
#
|
10093
10115
|
#
|
10094
10116
|
# @example Example: To list information about pending maintenance actions
|
10095
10117
|
#
|
@@ -10444,6 +10466,8 @@ module Aws::RDS
|
|
10444
10466
|
# * {Types::SourceRegionMessage#marker #marker} => String
|
10445
10467
|
# * {Types::SourceRegionMessage#source_regions #source_regions} => Array<Types::SourceRegion>
|
10446
10468
|
#
|
10469
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
10470
|
+
#
|
10447
10471
|
#
|
10448
10472
|
# @example Example: To describe source regions
|
10449
10473
|
#
|
@@ -10823,6 +10847,8 @@ module Aws::RDS
|
|
10823
10847
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
10824
10848
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
10825
10849
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
10850
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
10851
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
10826
10852
|
#
|
10827
10853
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
10828
10854
|
#
|
@@ -11337,6 +11363,10 @@ module Aws::RDS
|
|
11337
11363
|
# The target backtrack window, in seconds. To disable backtracking, set
|
11338
11364
|
# this value to 0.
|
11339
11365
|
#
|
11366
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
11367
|
+
#
|
11368
|
+
# </note>
|
11369
|
+
#
|
11340
11370
|
# Default: 0
|
11341
11371
|
#
|
11342
11372
|
# Constraints:
|
@@ -11441,6 +11471,14 @@ module Aws::RDS
|
|
11441
11471
|
# A value that indicates whether to copy all tags from the DB cluster to
|
11442
11472
|
# snapshots of the DB cluster. The default is not to copy them.
|
11443
11473
|
#
|
11474
|
+
# @option params [Boolean] :enable_global_write_forwarding
|
11475
|
+
# A value that indicates whether to enable write operations to be
|
11476
|
+
# forwarded from this cluster to the primary cluster in an Aurora global
|
11477
|
+
# database. The resulting changes are replicated back to this cluster.
|
11478
|
+
# This parameter only applies to DB clusters that are secondary clusters
|
11479
|
+
# in an Aurora global database. By default, Aurora disallows write
|
11480
|
+
# operations for secondary clusters.
|
11481
|
+
#
|
11444
11482
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11445
11483
|
#
|
11446
11484
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -11500,6 +11538,7 @@ module Aws::RDS
|
|
11500
11538
|
# deletion_protection: false,
|
11501
11539
|
# enable_http_endpoint: false,
|
11502
11540
|
# copy_tags_to_snapshot: false,
|
11541
|
+
# enable_global_write_forwarding: false,
|
11503
11542
|
# })
|
11504
11543
|
#
|
11505
11544
|
# @example Response structure
|
@@ -11579,6 +11618,8 @@ module Aws::RDS
|
|
11579
11618
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
11580
11619
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
11581
11620
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
11621
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
11622
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
11582
11623
|
#
|
11583
11624
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
11584
11625
|
#
|
@@ -11770,16 +11811,23 @@ module Aws::RDS
|
|
11770
11811
|
# to add a list of IDs of the AWS accounts that are authorized to
|
11771
11812
|
# restore the manual DB cluster snapshot. Use the value `all` to make
|
11772
11813
|
# the manual DB cluster snapshot public, which means that it can be
|
11773
|
-
# copied or restored by all AWS accounts.
|
11774
|
-
#
|
11775
|
-
#
|
11776
|
-
#
|
11777
|
-
#
|
11778
|
-
#
|
11814
|
+
# copied or restored by all AWS accounts.
|
11815
|
+
#
|
11816
|
+
# <note markdown="1"> Don't add the `all` value for any manual DB cluster snapshots that
|
11817
|
+
# contain private information that you don't want available to all AWS
|
11818
|
+
# accounts.
|
11819
|
+
#
|
11820
|
+
# </note>
|
11821
|
+
#
|
11822
|
+
# If a manual DB cluster snapshot is encrypted, it can be shared, but
|
11823
|
+
# only by specifying a list of authorized AWS account IDs for the
|
11824
|
+
# `ValuesToAdd` parameter. You can't use `all` as a value for that
|
11825
|
+
# parameter in this case.
|
11779
11826
|
#
|
11780
11827
|
# To view which AWS accounts have access to copy or restore a manual DB
|
11781
|
-
# cluster snapshot, or whether a manual DB cluster snapshot public or
|
11782
|
-
# private, use the
|
11828
|
+
# cluster snapshot, or whether a manual DB cluster snapshot is public or
|
11829
|
+
# private, use the DescribeDBClusterSnapshotAttributes API action. The
|
11830
|
+
# accounts are returned as values for the `restore` attribute.
|
11783
11831
|
#
|
11784
11832
|
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
11785
11833
|
#
|
@@ -11795,6 +11843,11 @@ module Aws::RDS
|
|
11795
11843
|
# To manage authorization for other AWS accounts to copy or restore a
|
11796
11844
|
# manual DB cluster snapshot, set this value to `restore`.
|
11797
11845
|
#
|
11846
|
+
# <note markdown="1"> To view the list of attributes available to modify, use the
|
11847
|
+
# DescribeDBClusterSnapshotAttributes API action.
|
11848
|
+
#
|
11849
|
+
# </note>
|
11850
|
+
#
|
11798
11851
|
# @option params [Array<String>] :values_to_add
|
11799
11852
|
# A list of DB cluster snapshot attributes to add to the attribute
|
11800
11853
|
# specified by `AttributeName`.
|
@@ -12353,11 +12406,16 @@ module Aws::RDS
|
|
12353
12406
|
#
|
12354
12407
|
# @option params [Boolean] :publicly_accessible
|
12355
12408
|
# A value that indicates whether the DB instance is publicly accessible.
|
12356
|
-
#
|
12357
|
-
#
|
12358
|
-
#
|
12359
|
-
#
|
12360
|
-
#
|
12409
|
+
#
|
12410
|
+
# When the DB instance is publicly accessible, its DNS endpoint resolves
|
12411
|
+
# to the private IP address from within the DB instance's VPC, and to
|
12412
|
+
# the public IP address from outside of the DB instance's VPC. Access
|
12413
|
+
# to the DB instance is ultimately controlled by the security group it
|
12414
|
+
# uses, and that public access is not permitted if the security group
|
12415
|
+
# assigned to the DB instance doesn't permit it.
|
12416
|
+
#
|
12417
|
+
# When the DB instance isn't publicly accessible, it is an internal DB
|
12418
|
+
# instance with a DNS name that resolves to a private IP address.
|
12361
12419
|
#
|
12362
12420
|
# `PubliclyAccessible` only applies to DB instances in a VPC. The DB
|
12363
12421
|
# instance must be part of a public subnet and `PubliclyAccessible` must
|
@@ -12811,11 +12869,6 @@ module Aws::RDS
|
|
12811
12869
|
req.send_request(options)
|
12812
12870
|
end
|
12813
12871
|
|
12814
|
-
# <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
|
12815
|
-
# preview release. It is subject to change.
|
12816
|
-
#
|
12817
|
-
# </note>
|
12818
|
-
#
|
12819
12872
|
# Changes the settings for an existing DB proxy.
|
12820
12873
|
#
|
12821
12874
|
# @option params [required, String] :db_proxy_name
|
@@ -12914,11 +12967,6 @@ module Aws::RDS
|
|
12914
12967
|
req.send_request(options)
|
12915
12968
|
end
|
12916
12969
|
|
12917
|
-
# <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
|
12918
|
-
# preview release. It is subject to change.
|
12919
|
-
#
|
12920
|
-
# </note>
|
12921
|
-
#
|
12922
12970
|
# Modifies the properties of a `DBProxyTargetGroup`.
|
12923
12971
|
#
|
12924
12972
|
# @option params [required, String] :target_group_name
|
@@ -13093,16 +13141,23 @@ module Aws::RDS
|
|
13093
13141
|
# to add a list of IDs of the AWS accounts that are authorized to
|
13094
13142
|
# restore the manual DB snapshot. Uses the value `all` to make the
|
13095
13143
|
# manual DB snapshot public, which means it can be copied or restored by
|
13096
|
-
# all AWS accounts.
|
13097
|
-
#
|
13098
|
-
#
|
13099
|
-
#
|
13100
|
-
#
|
13101
|
-
#
|
13144
|
+
# all AWS accounts.
|
13145
|
+
#
|
13146
|
+
# <note markdown="1"> Don't add the `all` value for any manual DB snapshots that contain
|
13147
|
+
# private information that you don't want available to all AWS
|
13148
|
+
# accounts.
|
13149
|
+
#
|
13150
|
+
# </note>
|
13151
|
+
#
|
13152
|
+
# If the manual DB snapshot is encrypted, it can be shared, but only by
|
13153
|
+
# specifying a list of authorized AWS account IDs for the `ValuesToAdd`
|
13154
|
+
# parameter. You can't use `all` as a value for that parameter in this
|
13155
|
+
# case.
|
13102
13156
|
#
|
13103
13157
|
# To view which AWS accounts have access to copy or restore a manual DB
|
13104
13158
|
# snapshot, or whether a manual DB snapshot public or private, use the
|
13105
|
-
#
|
13159
|
+
# DescribeDBSnapshotAttributes API action. The accounts are returned as
|
13160
|
+
# values for the `restore` attribute.
|
13106
13161
|
#
|
13107
13162
|
# @option params [required, String] :db_snapshot_identifier
|
13108
13163
|
# The identifier for the DB snapshot to modify the attributes for.
|
@@ -13113,6 +13168,11 @@ module Aws::RDS
|
|
13113
13168
|
# To manage authorization for other AWS accounts to copy or restore a
|
13114
13169
|
# manual DB snapshot, set this value to `restore`.
|
13115
13170
|
#
|
13171
|
+
# <note markdown="1"> To view the list of attributes available to modify, use the
|
13172
|
+
# DescribeDBSnapshotAttributes API action.
|
13173
|
+
#
|
13174
|
+
# </note>
|
13175
|
+
#
|
13116
13176
|
# @option params [Array<String>] :values_to_add
|
13117
13177
|
# A list of DB snapshot attributes to add to the attribute specified by
|
13118
13178
|
# `AttributeName`.
|
@@ -13428,6 +13488,7 @@ module Aws::RDS
|
|
13428
13488
|
# resp.global_cluster.global_cluster_members[0].readers #=> Array
|
13429
13489
|
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
13430
13490
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
13491
|
+
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
13431
13492
|
#
|
13432
13493
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyGlobalCluster AWS API Documentation
|
13433
13494
|
#
|
@@ -13884,6 +13945,8 @@ module Aws::RDS
|
|
13884
13945
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
13885
13946
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
13886
13947
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
13948
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
13949
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
13887
13950
|
#
|
13888
13951
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
13889
13952
|
#
|
@@ -14168,11 +14231,6 @@ module Aws::RDS
|
|
14168
14231
|
req.send_request(options)
|
14169
14232
|
end
|
14170
14233
|
|
14171
|
-
# <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
|
14172
|
-
# preview release. It is subject to change.
|
14173
|
-
#
|
14174
|
-
# </note>
|
14175
|
-
#
|
14176
14234
|
# Associate one or more `DBProxyTarget` data structures with a
|
14177
14235
|
# `DBProxyTargetGroup`.
|
14178
14236
|
#
|
@@ -14268,6 +14326,7 @@ module Aws::RDS
|
|
14268
14326
|
# resp.global_cluster.global_cluster_members[0].readers #=> Array
|
14269
14327
|
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
14270
14328
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
14329
|
+
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
14271
14330
|
#
|
14272
14331
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveFromGlobalCluster AWS API Documentation
|
14273
14332
|
#
|
@@ -14718,7 +14777,7 @@ module Aws::RDS
|
|
14718
14777
|
#
|
14719
14778
|
# @option params [required, String] :db_cluster_identifier
|
14720
14779
|
# The name of the DB cluster to create from the source data in the
|
14721
|
-
# Amazon S3 bucket. This parameter
|
14780
|
+
# Amazon S3 bucket. This parameter isn't case-sensitive.
|
14722
14781
|
#
|
14723
14782
|
# Constraints:
|
14724
14783
|
#
|
@@ -14911,9 +14970,9 @@ module Aws::RDS
|
|
14911
14970
|
# @option params [required, String] :source_engine_version
|
14912
14971
|
# The version of the database that the backup files were created from.
|
14913
14972
|
#
|
14914
|
-
# MySQL
|
14973
|
+
# MySQL versions 5.5, 5.6, and 5.7 are supported.
|
14915
14974
|
#
|
14916
|
-
# Example: `5.6.
|
14975
|
+
# Example: `5.6.40`
|
14917
14976
|
#
|
14918
14977
|
# @option params [required, String] :s3_bucket_name
|
14919
14978
|
# The name of the Amazon S3 bucket that contains the data used to create
|
@@ -14934,6 +14993,10 @@ module Aws::RDS
|
|
14934
14993
|
# The target backtrack window, in seconds. To disable backtracking, set
|
14935
14994
|
# this value to 0.
|
14936
14995
|
#
|
14996
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
14997
|
+
#
|
14998
|
+
# </note>
|
14999
|
+
#
|
14937
15000
|
# Default: 0
|
14938
15001
|
#
|
14939
15002
|
# Constraints:
|
@@ -15102,6 +15165,8 @@ module Aws::RDS
|
|
15102
15165
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15103
15166
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15104
15167
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
15168
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15169
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15105
15170
|
#
|
15106
15171
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
15107
15172
|
#
|
@@ -15276,6 +15341,10 @@ module Aws::RDS
|
|
15276
15341
|
# The target backtrack window, in seconds. To disable backtracking, set
|
15277
15342
|
# this value to 0.
|
15278
15343
|
#
|
15344
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
15345
|
+
#
|
15346
|
+
# </note>
|
15347
|
+
#
|
15279
15348
|
# Default: 0
|
15280
15349
|
#
|
15281
15350
|
# Constraints:
|
@@ -15473,6 +15542,8 @@ module Aws::RDS
|
|
15473
15542
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15474
15543
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15475
15544
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
15545
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15546
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15476
15547
|
#
|
15477
15548
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
15478
15549
|
#
|
@@ -15648,6 +15719,10 @@ module Aws::RDS
|
|
15648
15719
|
# The target backtrack window, in seconds. To disable backtracking, set
|
15649
15720
|
# this value to 0.
|
15650
15721
|
#
|
15722
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
15723
|
+
#
|
15724
|
+
# </note>
|
15725
|
+
#
|
15651
15726
|
# Default: 0
|
15652
15727
|
#
|
15653
15728
|
# Constraints:
|
@@ -15837,6 +15912,8 @@ module Aws::RDS
|
|
15837
15912
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15838
15913
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15839
15914
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
15915
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15916
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15840
15917
|
#
|
15841
15918
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
15842
15919
|
#
|
@@ -15945,11 +16022,18 @@ module Aws::RDS
|
|
15945
16022
|
#
|
15946
16023
|
# @option params [Boolean] :publicly_accessible
|
15947
16024
|
# A value that indicates whether the DB instance is publicly accessible.
|
15948
|
-
#
|
15949
|
-
#
|
15950
|
-
#
|
15951
|
-
#
|
15952
|
-
#
|
16025
|
+
#
|
16026
|
+
# When the DB instance is publicly accessible, its DNS endpoint resolves
|
16027
|
+
# to the private IP address from within the DB instance's VPC, and to
|
16028
|
+
# the public IP address from outside of the DB instance's VPC. Access
|
16029
|
+
# to the DB instance is ultimately controlled by the security group it
|
16030
|
+
# uses, and that public access is not permitted if the security group
|
16031
|
+
# assigned to the DB instance doesn't permit it.
|
16032
|
+
#
|
16033
|
+
# When the DB instance isn't publicly accessible, it is an internal DB
|
16034
|
+
# instance with a DNS name that resolves to a private IP address.
|
16035
|
+
#
|
16036
|
+
# For more information, see CreateDBInstance.
|
15953
16037
|
#
|
15954
16038
|
# @option params [Boolean] :auto_minor_version_upgrade
|
15955
16039
|
# A value that indicates whether minor version upgrades are applied
|
@@ -16618,11 +16702,18 @@ module Aws::RDS
|
|
16618
16702
|
#
|
16619
16703
|
# @option params [Boolean] :publicly_accessible
|
16620
16704
|
# A value that indicates whether the DB instance is publicly accessible.
|
16621
|
-
#
|
16622
|
-
#
|
16623
|
-
#
|
16624
|
-
#
|
16625
|
-
#
|
16705
|
+
#
|
16706
|
+
# When the DB instance is publicly accessible, its DNS endpoint resolves
|
16707
|
+
# to the private IP address from within the DB instance's VPC, and to
|
16708
|
+
# the public IP address from outside of the DB instance's VPC. Access
|
16709
|
+
# to the DB instance is ultimately controlled by the security group it
|
16710
|
+
# uses, and that public access is not permitted if the security group
|
16711
|
+
# assigned to the DB instance doesn't permit it.
|
16712
|
+
#
|
16713
|
+
# When the DB instance isn't publicly accessible, it is an internal DB
|
16714
|
+
# instance with a DNS name that resolves to a private IP address.
|
16715
|
+
#
|
16716
|
+
# For more information, see CreateDBInstance.
|
16626
16717
|
#
|
16627
16718
|
# @option params [Array<Types::Tag>] :tags
|
16628
16719
|
# A list of tags to associate with this DB instance. For more
|
@@ -16712,9 +16803,11 @@ module Aws::RDS
|
|
16712
16803
|
# Valid Values: `mysql`
|
16713
16804
|
#
|
16714
16805
|
# @option params [required, String] :source_engine_version
|
16715
|
-
# The
|
16806
|
+
# The version of the database that the backup files were created from.
|
16807
|
+
#
|
16808
|
+
# MySQL versions 5.6 and 5.7 are supported.
|
16716
16809
|
#
|
16717
|
-
#
|
16810
|
+
# Example: `5.6.40`
|
16718
16811
|
#
|
16719
16812
|
# @option params [required, String] :s3_bucket_name
|
16720
16813
|
# The name of your Amazon S3 bucket that contains your database backup
|
@@ -17076,11 +17169,18 @@ module Aws::RDS
|
|
17076
17169
|
#
|
17077
17170
|
# @option params [Boolean] :publicly_accessible
|
17078
17171
|
# A value that indicates whether the DB instance is publicly accessible.
|
17079
|
-
#
|
17080
|
-
#
|
17081
|
-
#
|
17082
|
-
#
|
17083
|
-
#
|
17172
|
+
#
|
17173
|
+
# When the DB instance is publicly accessible, its DNS endpoint resolves
|
17174
|
+
# to the private IP address from within the DB instance's VPC, and to
|
17175
|
+
# the public IP address from outside of the DB instance's VPC. Access
|
17176
|
+
# to the DB instance is ultimately controlled by the security group it
|
17177
|
+
# uses, and that public access is not permitted if the security group
|
17178
|
+
# assigned to the DB instance doesn't permit it.
|
17179
|
+
#
|
17180
|
+
# When the DB instance isn't publicly accessible, it is an internal DB
|
17181
|
+
# instance with a DNS name that resolves to a private IP address.
|
17182
|
+
#
|
17183
|
+
# For more information, see CreateDBInstance.
|
17084
17184
|
#
|
17085
17185
|
# @option params [Boolean] :auto_minor_version_upgrade
|
17086
17186
|
# A value that indicates whether minor version upgrades are applied
|
@@ -17803,6 +17903,8 @@ module Aws::RDS
|
|
17803
17903
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
17804
17904
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
17805
17905
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
17906
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
17907
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
17806
17908
|
#
|
17807
17909
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
|
17808
17910
|
#
|
@@ -18229,6 +18331,8 @@ module Aws::RDS
|
|
18229
18331
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
18230
18332
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
18231
18333
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
18334
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
18335
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
18232
18336
|
#
|
18233
18337
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
|
18234
18338
|
#
|
@@ -18413,7 +18517,7 @@ module Aws::RDS
|
|
18413
18517
|
params: params,
|
18414
18518
|
config: config)
|
18415
18519
|
context[:gem_name] = 'aws-sdk-rds'
|
18416
|
-
context[:gem_version] = '1.
|
18520
|
+
context[:gem_version] = '1.90.0'
|
18417
18521
|
Seahorse::Client::Request.new(handlers, context)
|
18418
18522
|
end
|
18419
18523
|
|