aws-sdk-rds 1.86.1 → 1.91.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.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/lib/aws-sdk-rds.rb +3 -1
  3. data/lib/aws-sdk-rds/account_quota.rb +2 -0
  4. data/lib/aws-sdk-rds/certificate.rb +2 -0
  5. data/lib/aws-sdk-rds/client.rb +200 -98
  6. data/lib/aws-sdk-rds/client_api.rb +58 -0
  7. data/lib/aws-sdk-rds/customizations.rb +2 -0
  8. data/lib/aws-sdk-rds/customizations/auth_token_generator.rb +2 -0
  9. data/lib/aws-sdk-rds/db_cluster.rb +59 -25
  10. data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +2 -0
  11. data/lib/aws-sdk-rds/db_cluster_snapshot.rb +6 -0
  12. data/lib/aws-sdk-rds/db_engine.rb +2 -0
  13. data/lib/aws-sdk-rds/db_engine_version.rb +2 -0
  14. data/lib/aws-sdk-rds/db_instance.rb +70 -50
  15. data/lib/aws-sdk-rds/db_log_file.rb +2 -0
  16. data/lib/aws-sdk-rds/db_parameter_group.rb +2 -0
  17. data/lib/aws-sdk-rds/db_parameter_group_family.rb +2 -0
  18. data/lib/aws-sdk-rds/db_security_group.rb +2 -0
  19. data/lib/aws-sdk-rds/db_snapshot.rb +18 -9
  20. data/lib/aws-sdk-rds/db_snapshot_attribute.rb +2 -0
  21. data/lib/aws-sdk-rds/db_subnet_group.rb +2 -0
  22. data/lib/aws-sdk-rds/errors.rb +2 -0
  23. data/lib/aws-sdk-rds/event.rb +2 -0
  24. data/lib/aws-sdk-rds/event_category_map.rb +2 -0
  25. data/lib/aws-sdk-rds/event_subscription.rb +2 -0
  26. data/lib/aws-sdk-rds/option_group.rb +2 -0
  27. data/lib/aws-sdk-rds/option_group_option.rb +2 -0
  28. data/lib/aws-sdk-rds/parameter.rb +2 -0
  29. data/lib/aws-sdk-rds/pending_maintenance_action.rb +2 -0
  30. data/lib/aws-sdk-rds/plugins/cross_region_copying.rb +2 -0
  31. data/lib/aws-sdk-rds/reserved_db_instance.rb +2 -0
  32. data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +2 -0
  33. data/lib/aws-sdk-rds/resource.rb +54 -77
  34. data/lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb +2 -0
  35. data/lib/aws-sdk-rds/types.rb +502 -95
  36. data/lib/aws-sdk-rds/waiters.rb +2 -0
  37. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 591a6ecf669758332ee4287c1ae02c9625b5a8fe7ab7eadd4f13d230b1ba4dc7
4
- data.tar.gz: 22b46fb32bd5bf52f92d4f34e90c347c96252439806329a9615a447390fea9ea
3
+ metadata.gz: 68d97b2b7ba2c98dda1cb3539ab0a16ec024c528489fea9c95fb2fe63e0ddb45
4
+ data.tar.gz: 0e7ceed5f07ce5a996ade0fb3b666581e173e2527b8e35fc8c7541811d9fc109
5
5
  SHA512:
6
- metadata.gz: 316ec911713beec500297fdaeca407c59ba944cf6c822ae78751a0de5b82d2e918ffb4566386442eadd7c46996a6bf0e864f2edbc01da66339536e5a35f699ea
7
- data.tar.gz: 37a06b696891052e704e4785a427e3980a6325b9523c8df3d6728bef7eeb95ce1d665e0bf842491bec108ecb322ae86c7cf181ea1e464f7b13f099c37e69433b
6
+ metadata.gz: b76dcbc200ead14ae91f2388977239fcd1dfc140738bd0e304440d40898f64b05cdec00f1a08d58b9d0b058869a7b11e7efb92bc8e92dbf3a96299407e28eb32
7
+ data.tar.gz: '019f8065726e85ee6a689844f8744bf67114e2ed4eb32c2463d0ef7cef1255b7ac965bee19b89f8fb84c431d9bce5dfff69c729503998ae768ac2eb3438d3624'
@@ -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.86.1'
76
+ GEM_VERSION = '1.91.0'
75
77
 
76
78
  end
@@ -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:
@@ -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:
@@ -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:
@@ -722,7 +724,7 @@ module Aws::RDS
722
724
  # For more information on backtracking, see [ Backtracking an Aurora DB
723
725
  # Cluster][1] in the *Amazon Aurora User Guide.*
724
726
  #
725
- # <note markdown="1"> This action only applies to Aurora DB clusters.
727
+ # <note markdown="1"> This action only applies to Aurora MySQL DB clusters.
726
728
  #
727
729
  # </note>
728
730
  #
@@ -2102,6 +2104,10 @@ module Aws::RDS
2102
2104
  # The target backtrack window, in seconds. To disable backtracking, set
2103
2105
  # this value to 0.
2104
2106
  #
2107
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
2108
+ #
2109
+ # </note>
2110
+ #
2105
2111
  # Default: 0
2106
2112
  #
2107
2113
  # Constraints:
@@ -2200,6 +2206,14 @@ module Aws::RDS
2200
2206
  # Specify the name of the IAM role to be used when making API calls to
2201
2207
  # the Directory Service.
2202
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
+ #
2203
2217
  # @option params [String] :source_region
2204
2218
  # The source region of the snapshot. This is only needed when the
2205
2219
  # shapshot is encrypted and in a different region.
@@ -2281,6 +2295,7 @@ module Aws::RDS
2281
2295
  # copy_tags_to_snapshot: false,
2282
2296
  # domain: "String",
2283
2297
  # domain_iam_role_name: "String",
2298
+ # enable_global_write_forwarding: false,
2284
2299
  # source_region: "String",
2285
2300
  # })
2286
2301
  #
@@ -2361,6 +2376,8 @@ module Aws::RDS
2361
2376
  # resp.db_cluster.domain_memberships[0].status #=> String
2362
2377
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
2363
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
2364
2381
  #
2365
2382
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
2366
2383
  #
@@ -3282,11 +3299,16 @@ module Aws::RDS
3282
3299
  #
3283
3300
  # @option params [Boolean] :publicly_accessible
3284
3301
  # A value that indicates whether the DB instance is publicly accessible.
3285
- # When the DB instance is publicly accessible, it is an Internet-facing
3286
- # instance with a publicly resolvable DNS name, which resolves to a
3287
- # public IP address. When the DB instance isn't publicly accessible, it
3288
- # is an internal instance with a DNS name that resolves to a private IP
3289
- # address.
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.
3290
3312
  #
3291
3313
  # Default: The default behavior varies depending on whether
3292
3314
  # `DBSubnetGroupName` is specified.
@@ -3897,11 +3919,18 @@ module Aws::RDS
3897
3919
  #
3898
3920
  # @option params [Boolean] :publicly_accessible
3899
3921
  # A value that indicates whether the DB instance is publicly accessible.
3900
- # When the DB instance is publicly accessible, it is an Internet-facing
3901
- # instance with a publicly resolvable DNS name, which resolves to a
3902
- # public IP address. When the DB instance isn't publicly accessible, it
3903
- # is an internal instance with a DNS name that resolves to a private IP
3904
- # address. For more information, see CreateDBInstance.
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.
3905
3934
  #
3906
3935
  # @option params [Array<Types::Tag>] :tags
3907
3936
  # A list of tags. For more information, see [Tagging Amazon RDS
@@ -4475,11 +4504,6 @@ module Aws::RDS
4475
4504
  req.send_request(options)
4476
4505
  end
4477
4506
 
4478
- # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
4479
- # preview release. It is subject to change.
4480
- #
4481
- # </note>
4482
- #
4483
4507
  # Creates a new DB proxy.
4484
4508
  #
4485
4509
  # @option params [required, String] :db_proxy_name
@@ -5110,6 +5134,7 @@ module Aws::RDS
5110
5134
  # resp.global_cluster.global_cluster_members[0].readers #=> Array
5111
5135
  # resp.global_cluster.global_cluster_members[0].readers[0] #=> String
5112
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"
5113
5138
  #
5114
5139
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateGlobalCluster AWS API Documentation
5115
5140
  #
@@ -5438,6 +5463,8 @@ module Aws::RDS
5438
5463
  # resp.db_cluster.domain_memberships[0].status #=> String
5439
5464
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
5440
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
5441
5468
  #
5442
5469
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
5443
5470
  #
@@ -5968,11 +5995,6 @@ module Aws::RDS
5968
5995
  req.send_request(options)
5969
5996
  end
5970
5997
 
5971
- # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
5972
- # preview release. It is subject to change.
5973
- #
5974
- # </note>
5975
- #
5976
5998
  # Deletes an existing proxy.
5977
5999
  #
5978
6000
  # @option params [required, String] :db_proxy_name
@@ -6289,6 +6311,7 @@ module Aws::RDS
6289
6311
  # resp.global_cluster.global_cluster_members[0].readers #=> Array
6290
6312
  # resp.global_cluster.global_cluster_members[0].readers[0] #=> String
6291
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"
6292
6315
  #
6293
6316
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteGlobalCluster AWS API Documentation
6294
6317
  #
@@ -6377,11 +6400,6 @@ module Aws::RDS
6377
6400
  req.send_request(options)
6378
6401
  end
6379
6402
 
6380
- # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
6381
- # preview release. It is subject to change.
6382
- #
6383
- # </note>
6384
- #
6385
6403
  # Remove the association between one or more `DBProxyTarget` data
6386
6404
  # structures and a `DBProxyTargetGroup`.
6387
6405
  #
@@ -6495,6 +6513,8 @@ module Aws::RDS
6495
6513
  # * {Types::CertificateMessage#certificates #certificates} => Array&lt;Types::Certificate&gt;
6496
6514
  # * {Types::CertificateMessage#marker #marker} => String
6497
6515
  #
6516
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
6517
+ #
6498
6518
  #
6499
6519
  # @example Example: To list certificates
6500
6520
  #
@@ -6629,7 +6649,7 @@ module Aws::RDS
6629
6649
  # For more information on Amazon Aurora, see [ What Is Amazon
6630
6650
  # Aurora?][1] in the *Amazon Aurora User Guide.*
6631
6651
  #
6632
- # <note markdown="1"> This action only applies to Aurora DB clusters.
6652
+ # <note markdown="1"> This action only applies to Aurora MySQL DB clusters.
6633
6653
  #
6634
6654
  # </note>
6635
6655
  #
@@ -6712,6 +6732,8 @@ module Aws::RDS
6712
6732
  # * {Types::DBClusterBacktrackMessage#marker #marker} => String
6713
6733
  # * {Types::DBClusterBacktrackMessage#db_cluster_backtracks #db_cluster_backtracks} => Array&lt;Types::DBClusterBacktrack&gt;
6714
6734
  #
6735
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
6736
+ #
6715
6737
  # @example Request syntax with placeholder values
6716
6738
  #
6717
6739
  # resp = client.describe_db_cluster_backtracks({
@@ -6795,6 +6817,8 @@ module Aws::RDS
6795
6817
  # * {Types::DBClusterEndpointMessage#marker #marker} => String
6796
6818
  # * {Types::DBClusterEndpointMessage#db_cluster_endpoints #db_cluster_endpoints} => Array&lt;Types::DBClusterEndpoint&gt;
6797
6819
  #
6820
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
6821
+ #
6798
6822
  # @example Request syntax with placeholder values
6799
6823
  #
6800
6824
  # resp = client.describe_db_cluster_endpoints({
@@ -6887,6 +6911,8 @@ module Aws::RDS
6887
6911
  # * {Types::DBClusterParameterGroupsMessage#marker #marker} => String
6888
6912
  # * {Types::DBClusterParameterGroupsMessage#db_cluster_parameter_groups #db_cluster_parameter_groups} => Array&lt;Types::DBClusterParameterGroup&gt;
6889
6913
  #
6914
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
6915
+ #
6890
6916
  #
6891
6917
  # @example Example: To list DB cluster parameter group settings
6892
6918
  #
@@ -6985,6 +7011,8 @@ module Aws::RDS
6985
7011
  # * {Types::DBClusterParameterGroupDetails#parameters #parameters} => Array&lt;Types::Parameter&gt;
6986
7012
  # * {Types::DBClusterParameterGroupDetails#marker #marker} => String
6987
7013
  #
7014
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
7015
+ #
6988
7016
  #
6989
7017
  # @example Example: To list DB cluster parameters
6990
7018
  #
@@ -7224,6 +7252,8 @@ module Aws::RDS
7224
7252
  # * {Types::DBClusterSnapshotMessage#marker #marker} => String
7225
7253
  # * {Types::DBClusterSnapshotMessage#db_cluster_snapshots #db_cluster_snapshots} => Array&lt;Types::DBClusterSnapshot&gt;
7226
7254
  #
7255
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
7256
+ #
7227
7257
  #
7228
7258
  # @example Example: To list DB cluster snapshots
7229
7259
  #
@@ -7468,6 +7498,8 @@ module Aws::RDS
7468
7498
  # resp.db_clusters[0].domain_memberships[0].status #=> String
7469
7499
  # resp.db_clusters[0].domain_memberships[0].fqdn #=> String
7470
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
7471
7503
  #
7472
7504
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusters AWS API Documentation
7473
7505
  #
@@ -8252,11 +8284,6 @@ module Aws::RDS
8252
8284
  req.send_request(options)
8253
8285
  end
8254
8286
 
8255
- # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
8256
- # preview release. It is subject to change.
8257
- #
8258
- # </note>
8259
- #
8260
8287
  # Returns information about DB proxies.
8261
8288
  #
8262
8289
  # @option params [String] :db_proxy_name
@@ -8336,11 +8363,6 @@ module Aws::RDS
8336
8363
  req.send_request(options)
8337
8364
  end
8338
8365
 
8339
- # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
8340
- # preview release. It is subject to change.
8341
- #
8342
- # </note>
8343
- #
8344
8366
  # Returns information about DB proxy target groups, represented by
8345
8367
  # `DBProxyTargetGroup` data structures.
8346
8368
  #
@@ -8417,11 +8439,6 @@ module Aws::RDS
8417
8439
  req.send_request(options)
8418
8440
  end
8419
8441
 
8420
- # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
8421
- # preview release. It is subject to change.
8422
- #
8423
- # </note>
8424
- #
8425
8442
  # Returns information about `DBProxyTarget` objects. This API supports
8426
8443
  # pagination.
8427
8444
  #
@@ -9605,6 +9622,7 @@ module Aws::RDS
9605
9622
  # resp.global_clusters[0].global_cluster_members[0].readers #=> Array
9606
9623
  # resp.global_clusters[0].global_cluster_members[0].readers[0] #=> String
9607
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"
9608
9626
  #
9609
9627
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeGlobalClusters AWS API Documentation
9610
9628
  #
@@ -10092,6 +10110,8 @@ module Aws::RDS
10092
10110
  # * {Types::PendingMaintenanceActionsMessage#pending_maintenance_actions #pending_maintenance_actions} => Array&lt;Types::ResourcePendingMaintenanceActions&gt;
10093
10111
  # * {Types::PendingMaintenanceActionsMessage#marker #marker} => String
10094
10112
  #
10113
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
10114
+ #
10095
10115
  #
10096
10116
  # @example Example: To list information about pending maintenance actions
10097
10117
  #
@@ -10446,6 +10466,8 @@ module Aws::RDS
10446
10466
  # * {Types::SourceRegionMessage#marker #marker} => String
10447
10467
  # * {Types::SourceRegionMessage#source_regions #source_regions} => Array&lt;Types::SourceRegion&gt;
10448
10468
  #
10469
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
10470
+ #
10449
10471
  #
10450
10472
  # @example Example: To describe source regions
10451
10473
  #
@@ -10825,6 +10847,8 @@ module Aws::RDS
10825
10847
  # resp.db_cluster.domain_memberships[0].status #=> String
10826
10848
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
10827
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
10828
10852
  #
10829
10853
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
10830
10854
  #
@@ -11339,6 +11363,10 @@ module Aws::RDS
11339
11363
  # The target backtrack window, in seconds. To disable backtracking, set
11340
11364
  # this value to 0.
11341
11365
  #
11366
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
11367
+ #
11368
+ # </note>
11369
+ #
11342
11370
  # Default: 0
11343
11371
  #
11344
11372
  # Constraints:
@@ -11443,6 +11471,14 @@ module Aws::RDS
11443
11471
  # A value that indicates whether to copy all tags from the DB cluster to
11444
11472
  # snapshots of the DB cluster. The default is not to copy them.
11445
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
+ #
11446
11482
  # @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11447
11483
  #
11448
11484
  # * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
@@ -11502,6 +11538,7 @@ module Aws::RDS
11502
11538
  # deletion_protection: false,
11503
11539
  # enable_http_endpoint: false,
11504
11540
  # copy_tags_to_snapshot: false,
11541
+ # enable_global_write_forwarding: false,
11505
11542
  # })
11506
11543
  #
11507
11544
  # @example Response structure
@@ -11581,6 +11618,8 @@ module Aws::RDS
11581
11618
  # resp.db_cluster.domain_memberships[0].status #=> String
11582
11619
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
11583
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
11584
11623
  #
11585
11624
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
11586
11625
  #
@@ -11772,16 +11811,23 @@ module Aws::RDS
11772
11811
  # to add a list of IDs of the AWS accounts that are authorized to
11773
11812
  # restore the manual DB cluster snapshot. Use the value `all` to make
11774
11813
  # the manual DB cluster snapshot public, which means that it can be
11775
- # copied or restored by all AWS accounts. Do not add the `all` value for
11776
- # any manual DB cluster snapshots that contain private information that
11777
- # you don't want available to all AWS accounts. If a manual DB cluster
11778
- # snapshot is encrypted, it can be shared, but only by specifying a list
11779
- # of authorized AWS account IDs for the `ValuesToAdd` parameter. You
11780
- # can't use `all` as a value for that parameter in this case.
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.
11781
11826
  #
11782
11827
  # To view which AWS accounts have access to copy or restore a manual DB
11783
- # cluster snapshot, or whether a manual DB cluster snapshot public or
11784
- # private, use the `DescribeDBClusterSnapshotAttributes` API action.
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.
11785
11831
  #
11786
11832
  # <note markdown="1"> This action only applies to Aurora DB clusters.
11787
11833
  #
@@ -11797,6 +11843,11 @@ module Aws::RDS
11797
11843
  # To manage authorization for other AWS accounts to copy or restore a
11798
11844
  # manual DB cluster snapshot, set this value to `restore`.
11799
11845
  #
11846
+ # <note markdown="1"> To view the list of attributes available to modify, use the
11847
+ # DescribeDBClusterSnapshotAttributes API action.
11848
+ #
11849
+ # </note>
11850
+ #
11800
11851
  # @option params [Array<String>] :values_to_add
11801
11852
  # A list of DB cluster snapshot attributes to add to the attribute
11802
11853
  # specified by `AttributeName`.
@@ -12355,11 +12406,16 @@ module Aws::RDS
12355
12406
  #
12356
12407
  # @option params [Boolean] :publicly_accessible
12357
12408
  # A value that indicates whether the DB instance is publicly accessible.
12358
- # When the DB instance is publicly accessible, it is an Internet-facing
12359
- # instance with a publicly resolvable DNS name, which resolves to a
12360
- # public IP address. When the DB instance isn't publicly accessible, it
12361
- # is an internal instance with a DNS name that resolves to a private IP
12362
- # address.
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.
12363
12419
  #
12364
12420
  # `PubliclyAccessible` only applies to DB instances in a VPC. The DB
12365
12421
  # instance must be part of a public subnet and `PubliclyAccessible` must
@@ -12813,11 +12869,6 @@ module Aws::RDS
12813
12869
  req.send_request(options)
12814
12870
  end
12815
12871
 
12816
- # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
12817
- # preview release. It is subject to change.
12818
- #
12819
- # </note>
12820
- #
12821
12872
  # Changes the settings for an existing DB proxy.
12822
12873
  #
12823
12874
  # @option params [required, String] :db_proxy_name
@@ -12916,11 +12967,6 @@ module Aws::RDS
12916
12967
  req.send_request(options)
12917
12968
  end
12918
12969
 
12919
- # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
12920
- # preview release. It is subject to change.
12921
- #
12922
- # </note>
12923
- #
12924
12970
  # Modifies the properties of a `DBProxyTargetGroup`.
12925
12971
  #
12926
12972
  # @option params [required, String] :target_group_name
@@ -13095,16 +13141,23 @@ module Aws::RDS
13095
13141
  # to add a list of IDs of the AWS accounts that are authorized to
13096
13142
  # restore the manual DB snapshot. Uses the value `all` to make the
13097
13143
  # manual DB snapshot public, which means it can be copied or restored by
13098
- # all AWS accounts. Do not add the `all` value for any manual DB
13099
- # snapshots that contain private information that you don't want
13100
- # available to all AWS accounts. If the manual DB snapshot is encrypted,
13101
- # it can be shared, but only by specifying a list of authorized AWS
13102
- # account IDs for the `ValuesToAdd` parameter. You can't use `all` as a
13103
- # value for that parameter in this case.
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.
13104
13156
  #
13105
13157
  # To view which AWS accounts have access to copy or restore a manual DB
13106
13158
  # snapshot, or whether a manual DB snapshot public or private, use the
13107
- # `DescribeDBSnapshotAttributes` API action.
13159
+ # DescribeDBSnapshotAttributes API action. The accounts are returned as
13160
+ # values for the `restore` attribute.
13108
13161
  #
13109
13162
  # @option params [required, String] :db_snapshot_identifier
13110
13163
  # The identifier for the DB snapshot to modify the attributes for.
@@ -13115,6 +13168,11 @@ module Aws::RDS
13115
13168
  # To manage authorization for other AWS accounts to copy or restore a
13116
13169
  # manual DB snapshot, set this value to `restore`.
13117
13170
  #
13171
+ # <note markdown="1"> To view the list of attributes available to modify, use the
13172
+ # DescribeDBSnapshotAttributes API action.
13173
+ #
13174
+ # </note>
13175
+ #
13118
13176
  # @option params [Array<String>] :values_to_add
13119
13177
  # A list of DB snapshot attributes to add to the attribute specified by
13120
13178
  # `AttributeName`.
@@ -13430,6 +13488,7 @@ module Aws::RDS
13430
13488
  # resp.global_cluster.global_cluster_members[0].readers #=> Array
13431
13489
  # resp.global_cluster.global_cluster_members[0].readers[0] #=> String
13432
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"
13433
13492
  #
13434
13493
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyGlobalCluster AWS API Documentation
13435
13494
  #
@@ -13886,6 +13945,8 @@ module Aws::RDS
13886
13945
  # resp.db_cluster.domain_memberships[0].status #=> String
13887
13946
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
13888
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
13889
13950
  #
13890
13951
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
13891
13952
  #
@@ -14170,11 +14231,6 @@ module Aws::RDS
14170
14231
  req.send_request(options)
14171
14232
  end
14172
14233
 
14173
- # <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
14174
- # preview release. It is subject to change.
14175
- #
14176
- # </note>
14177
- #
14178
14234
  # Associate one or more `DBProxyTarget` data structures with a
14179
14235
  # `DBProxyTargetGroup`.
14180
14236
  #
@@ -14270,6 +14326,7 @@ module Aws::RDS
14270
14326
  # resp.global_cluster.global_cluster_members[0].readers #=> Array
14271
14327
  # resp.global_cluster.global_cluster_members[0].readers[0] #=> String
14272
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"
14273
14330
  #
14274
14331
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveFromGlobalCluster AWS API Documentation
14275
14332
  #
@@ -14720,7 +14777,7 @@ module Aws::RDS
14720
14777
  #
14721
14778
  # @option params [required, String] :db_cluster_identifier
14722
14779
  # The name of the DB cluster to create from the source data in the
14723
- # Amazon S3 bucket. This parameter is isn't case-sensitive.
14780
+ # Amazon S3 bucket. This parameter isn't case-sensitive.
14724
14781
  #
14725
14782
  # Constraints:
14726
14783
  #
@@ -14913,9 +14970,9 @@ module Aws::RDS
14913
14970
  # @option params [required, String] :source_engine_version
14914
14971
  # The version of the database that the backup files were created from.
14915
14972
  #
14916
- # MySQL version 5.5 and 5.6 are supported.
14973
+ # MySQL versions 5.5, 5.6, and 5.7 are supported.
14917
14974
  #
14918
- # Example: `5.6.22`
14975
+ # Example: `5.6.40`
14919
14976
  #
14920
14977
  # @option params [required, String] :s3_bucket_name
14921
14978
  # The name of the Amazon S3 bucket that contains the data used to create
@@ -14936,6 +14993,10 @@ module Aws::RDS
14936
14993
  # The target backtrack window, in seconds. To disable backtracking, set
14937
14994
  # this value to 0.
14938
14995
  #
14996
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
14997
+ #
14998
+ # </note>
14999
+ #
14939
15000
  # Default: 0
14940
15001
  #
14941
15002
  # Constraints:
@@ -15104,6 +15165,8 @@ module Aws::RDS
15104
15165
  # resp.db_cluster.domain_memberships[0].status #=> String
15105
15166
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
15106
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
15107
15170
  #
15108
15171
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
15109
15172
  #
@@ -15278,6 +15341,10 @@ module Aws::RDS
15278
15341
  # The target backtrack window, in seconds. To disable backtracking, set
15279
15342
  # this value to 0.
15280
15343
  #
15344
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
15345
+ #
15346
+ # </note>
15347
+ #
15281
15348
  # Default: 0
15282
15349
  #
15283
15350
  # Constraints:
@@ -15475,6 +15542,8 @@ module Aws::RDS
15475
15542
  # resp.db_cluster.domain_memberships[0].status #=> String
15476
15543
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
15477
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
15478
15547
  #
15479
15548
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
15480
15549
  #
@@ -15650,6 +15719,10 @@ module Aws::RDS
15650
15719
  # The target backtrack window, in seconds. To disable backtracking, set
15651
15720
  # this value to 0.
15652
15721
  #
15722
+ # <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
15723
+ #
15724
+ # </note>
15725
+ #
15653
15726
  # Default: 0
15654
15727
  #
15655
15728
  # Constraints:
@@ -15839,6 +15912,8 @@ module Aws::RDS
15839
15912
  # resp.db_cluster.domain_memberships[0].status #=> String
15840
15913
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
15841
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
15842
15917
  #
15843
15918
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
15844
15919
  #
@@ -15947,11 +16022,18 @@ module Aws::RDS
15947
16022
  #
15948
16023
  # @option params [Boolean] :publicly_accessible
15949
16024
  # A value that indicates whether the DB instance is publicly accessible.
15950
- # When the DB instance is publicly accessible, it is an Internet-facing
15951
- # instance with a publicly resolvable DNS name, which resolves to a
15952
- # public IP address. When the DB instance isn't publicly accessible, it
15953
- # is an internal instance with a DNS name that resolves to a private IP
15954
- # address. For more information, see CreateDBInstance.
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.
15955
16037
  #
15956
16038
  # @option params [Boolean] :auto_minor_version_upgrade
15957
16039
  # A value that indicates whether minor version upgrades are applied
@@ -16620,11 +16702,18 @@ module Aws::RDS
16620
16702
  #
16621
16703
  # @option params [Boolean] :publicly_accessible
16622
16704
  # A value that indicates whether the DB instance is publicly accessible.
16623
- # When the DB instance is publicly accessible, it is an Internet-facing
16624
- # instance with a publicly resolvable DNS name, which resolves to a
16625
- # public IP address. When the DB instance isn't publicly accessible, it
16626
- # is an internal instance with a DNS name that resolves to a private IP
16627
- # address. For more information, see CreateDBInstance.
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.
16628
16717
  #
16629
16718
  # @option params [Array<Types::Tag>] :tags
16630
16719
  # A list of tags to associate with this DB instance. For more
@@ -16714,9 +16803,11 @@ module Aws::RDS
16714
16803
  # Valid Values: `mysql`
16715
16804
  #
16716
16805
  # @option params [required, String] :source_engine_version
16717
- # The engine version of your source database.
16806
+ # The version of the database that the backup files were created from.
16807
+ #
16808
+ # MySQL versions 5.6 and 5.7 are supported.
16718
16809
  #
16719
- # Valid Values: `5.6`
16810
+ # Example: `5.6.40`
16720
16811
  #
16721
16812
  # @option params [required, String] :s3_bucket_name
16722
16813
  # The name of your Amazon S3 bucket that contains your database backup
@@ -17078,11 +17169,18 @@ module Aws::RDS
17078
17169
  #
17079
17170
  # @option params [Boolean] :publicly_accessible
17080
17171
  # A value that indicates whether the DB instance is publicly accessible.
17081
- # When the DB instance is publicly accessible, it is an Internet-facing
17082
- # instance with a publicly resolvable DNS name, which resolves to a
17083
- # public IP address. When the DB instance isn't publicly accessible, it
17084
- # is an internal instance with a DNS name that resolves to a private IP
17085
- # address. For more information, see CreateDBInstance.
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.
17086
17184
  #
17087
17185
  # @option params [Boolean] :auto_minor_version_upgrade
17088
17186
  # A value that indicates whether minor version upgrades are applied
@@ -17805,6 +17903,8 @@ module Aws::RDS
17805
17903
  # resp.db_cluster.domain_memberships[0].status #=> String
17806
17904
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
17807
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
17808
17908
  #
17809
17909
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
17810
17910
  #
@@ -18231,6 +18331,8 @@ module Aws::RDS
18231
18331
  # resp.db_cluster.domain_memberships[0].status #=> String
18232
18332
  # resp.db_cluster.domain_memberships[0].fqdn #=> String
18233
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
18234
18336
  #
18235
18337
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
18236
18338
  #
@@ -18415,7 +18517,7 @@ module Aws::RDS
18415
18517
  params: params,
18416
18518
  config: config)
18417
18519
  context[:gem_name] = 'aws-sdk-rds'
18418
- context[:gem_version] = '1.86.1'
18520
+ context[:gem_version] = '1.91.0'
18419
18521
  Seahorse::Client::Request.new(handlers, context)
18420
18522
  end
18421
18523