aws-sdk-rds 1.17.0 → 1.18.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 +1 -1
- data/lib/aws-sdk-rds/client.rb +313 -3
- data/lib/aws-sdk-rds/client_api.rb +62 -0
- data/lib/aws-sdk-rds/db_cluster.rb +60 -1
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +13 -0
- data/lib/aws-sdk-rds/db_engine.rb +1 -1
- data/lib/aws-sdk-rds/db_parameter_group_family.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +14 -1
- data/lib/aws-sdk-rds/types.rb +372 -10
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 88095640c8b2d6d7d3d07035454e7bb075fc63cc
|
4
|
+
data.tar.gz: 49fa60e4ed07423d2a2a4a75a6ea47f0ef948bc7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 15e2d8c6f07d8504c38ef30810e8e4536110c3c44c2ca8d2f655df366fb7e8dac5701c9bdcd7e8a836115976004c7c626f2bdd1800d2a7b65598ce565458e9cb
|
7
|
+
data.tar.gz: beadcba73ee0325dc94c1737f394602f5d4eb323c6724934e078e94925387220cf806b6198f9362c13c12bcd87e6c098a00f995d71847c8bdbfb1a339a614686
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -500,6 +500,99 @@ module Aws::RDS
|
|
500
500
|
req.send_request(options)
|
501
501
|
end
|
502
502
|
|
503
|
+
# Backtracks a DB cluster to a specific time, without creating a new DB
|
504
|
+
# cluster.
|
505
|
+
#
|
506
|
+
# For more information on backtracking, see [ Backtracking an Aurora DB
|
507
|
+
# Cluster][1] in the *Amazon RDS User Guide.*
|
508
|
+
#
|
509
|
+
#
|
510
|
+
#
|
511
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AuroraMySQL.Managing.Backtrack.html
|
512
|
+
#
|
513
|
+
# @option params [required, String] :db_cluster_identifier
|
514
|
+
# The DB cluster identifier of the DB cluster to be backtracked. This
|
515
|
+
# parameter is stored as a lowercase string.
|
516
|
+
#
|
517
|
+
# Constraints:
|
518
|
+
#
|
519
|
+
# * Must contain from 1 to 63 alphanumeric characters or hyphens.
|
520
|
+
#
|
521
|
+
# * First character must be a letter.
|
522
|
+
#
|
523
|
+
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
524
|
+
#
|
525
|
+
# Example: `my-cluster1`
|
526
|
+
#
|
527
|
+
# @option params [required, Time,DateTime,Date,Integer,String] :backtrack_to
|
528
|
+
# The timestamp of the time to backtrack the DB cluster to, specified in
|
529
|
+
# ISO 8601 format. For more information about ISO 8601, see the [ISO8601
|
530
|
+
# Wikipedia page.][1]
|
531
|
+
#
|
532
|
+
# <note markdown="1"> If the specified time is not a consistent time for the DB cluster,
|
533
|
+
# Aurora automatically chooses the nearest possible consistent time for
|
534
|
+
# the DB cluster.
|
535
|
+
#
|
536
|
+
# </note>
|
537
|
+
#
|
538
|
+
# Constraints:
|
539
|
+
#
|
540
|
+
# * Must contain a valid ISO 8601 timestamp.
|
541
|
+
#
|
542
|
+
# * Cannot contain a timestamp set in the future.
|
543
|
+
#
|
544
|
+
# Example: `2017-07-08T18:00Z`
|
545
|
+
#
|
546
|
+
#
|
547
|
+
#
|
548
|
+
# [1]: http://en.wikipedia.org/wiki/ISO_8601
|
549
|
+
#
|
550
|
+
# @option params [Boolean] :force
|
551
|
+
# A value that, if specified, forces the DB cluster to backtrack when
|
552
|
+
# binary logging is enabled. Otherwise, an error occurs when binary
|
553
|
+
# logging is enabled.
|
554
|
+
#
|
555
|
+
# @option params [Boolean] :use_earliest_time_on_point_in_time_unavailable
|
556
|
+
# If *BacktrackTo* is set to a timestamp earlier than the earliest
|
557
|
+
# backtrack time, this value backtracks the DB cluster to the earliest
|
558
|
+
# possible backtrack time. Otherwise, an error occurs.
|
559
|
+
#
|
560
|
+
# @return [Types::DBClusterBacktrack] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
561
|
+
#
|
562
|
+
# * {Types::DBClusterBacktrack#db_cluster_identifier #db_cluster_identifier} => String
|
563
|
+
# * {Types::DBClusterBacktrack#backtrack_identifier #backtrack_identifier} => String
|
564
|
+
# * {Types::DBClusterBacktrack#backtrack_to #backtrack_to} => Time
|
565
|
+
# * {Types::DBClusterBacktrack#backtracked_from #backtracked_from} => Time
|
566
|
+
# * {Types::DBClusterBacktrack#backtrack_request_creation_time #backtrack_request_creation_time} => Time
|
567
|
+
# * {Types::DBClusterBacktrack#status #status} => String
|
568
|
+
#
|
569
|
+
# @example Request syntax with placeholder values
|
570
|
+
#
|
571
|
+
# resp = client.backtrack_db_cluster({
|
572
|
+
# db_cluster_identifier: "String", # required
|
573
|
+
# backtrack_to: Time.now, # required
|
574
|
+
# force: false,
|
575
|
+
# use_earliest_time_on_point_in_time_unavailable: false,
|
576
|
+
# })
|
577
|
+
#
|
578
|
+
# @example Response structure
|
579
|
+
#
|
580
|
+
# resp.db_cluster_identifier #=> String
|
581
|
+
# resp.backtrack_identifier #=> String
|
582
|
+
# resp.backtrack_to #=> Time
|
583
|
+
# resp.backtracked_from #=> Time
|
584
|
+
# resp.backtrack_request_creation_time #=> Time
|
585
|
+
# resp.status #=> String
|
586
|
+
#
|
587
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/BacktrackDBCluster AWS API Documentation
|
588
|
+
#
|
589
|
+
# @overload backtrack_db_cluster(params = {})
|
590
|
+
# @param [Hash] params ({})
|
591
|
+
def backtrack_db_cluster(params = {}, options = {})
|
592
|
+
req = build_request(:backtrack_db_cluster, params)
|
593
|
+
req.send_request(options)
|
594
|
+
end
|
595
|
+
|
503
596
|
# Copies the specified DB cluster parameter group.
|
504
597
|
#
|
505
598
|
# @option params [required, String] :source_db_cluster_parameter_group_identifier
|
@@ -1587,6 +1680,19 @@ module Aws::RDS
|
|
1587
1680
|
#
|
1588
1681
|
# Default: `false`
|
1589
1682
|
#
|
1683
|
+
# @option params [Integer] :backtrack_window
|
1684
|
+
# The target backtrack window, in seconds. To disable backtracking, set
|
1685
|
+
# this value to 0.
|
1686
|
+
#
|
1687
|
+
# Default: 0
|
1688
|
+
#
|
1689
|
+
# Constraints:
|
1690
|
+
#
|
1691
|
+
# * If specified, this value must be set to a number from 0 to 259,200
|
1692
|
+
# (72 hours).
|
1693
|
+
#
|
1694
|
+
# ^
|
1695
|
+
#
|
1590
1696
|
# @option params [String] :source_region
|
1591
1697
|
# The source region of the snapshot. This is only needed when the
|
1592
1698
|
# shapshot is encrypted and in a different region.
|
@@ -1652,6 +1758,7 @@ module Aws::RDS
|
|
1652
1758
|
# kms_key_id: "String",
|
1653
1759
|
# pre_signed_url: "String",
|
1654
1760
|
# enable_iam_database_authentication: false,
|
1761
|
+
# backtrack_window: 1,
|
1655
1762
|
# source_region: "String",
|
1656
1763
|
# })
|
1657
1764
|
#
|
@@ -1704,6 +1811,9 @@ module Aws::RDS
|
|
1704
1811
|
# resp.db_cluster.iam_database_authentication_enabled #=> Boolean
|
1705
1812
|
# resp.db_cluster.clone_group_id #=> String
|
1706
1813
|
# resp.db_cluster.cluster_create_time #=> Time
|
1814
|
+
# resp.db_cluster.earliest_backtrack_time #=> Time
|
1815
|
+
# resp.db_cluster.backtrack_window #=> Integer
|
1816
|
+
# resp.db_cluster.backtrack_consumed_change_records #=> Integer
|
1707
1817
|
#
|
1708
1818
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
|
1709
1819
|
#
|
@@ -4303,6 +4413,9 @@ module Aws::RDS
|
|
4303
4413
|
# resp.db_cluster.iam_database_authentication_enabled #=> Boolean
|
4304
4414
|
# resp.db_cluster.clone_group_id #=> String
|
4305
4415
|
# resp.db_cluster.cluster_create_time #=> Time
|
4416
|
+
# resp.db_cluster.earliest_backtrack_time #=> Time
|
4417
|
+
# resp.db_cluster.backtrack_window #=> Integer
|
4418
|
+
# resp.db_cluster.backtrack_consumed_change_records #=> Integer
|
4306
4419
|
#
|
4307
4420
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
4308
4421
|
#
|
@@ -5085,6 +5198,126 @@ module Aws::RDS
|
|
5085
5198
|
req.send_request(options)
|
5086
5199
|
end
|
5087
5200
|
|
5201
|
+
# Returns information about backtracks for a DB cluster.
|
5202
|
+
#
|
5203
|
+
# For more information on Amazon Aurora, see [Aurora on Amazon RDS][1]
|
5204
|
+
# in the *Amazon RDS User Guide.*
|
5205
|
+
#
|
5206
|
+
#
|
5207
|
+
#
|
5208
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Aurora.html
|
5209
|
+
#
|
5210
|
+
# @option params [required, String] :db_cluster_identifier
|
5211
|
+
# The DB cluster identifier of the DB cluster to be described. This
|
5212
|
+
# parameter is stored as a lowercase string.
|
5213
|
+
#
|
5214
|
+
# Constraints:
|
5215
|
+
#
|
5216
|
+
# * Must contain from 1 to 63 alphanumeric characters or hyphens.
|
5217
|
+
#
|
5218
|
+
# * First character must be a letter.
|
5219
|
+
#
|
5220
|
+
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
5221
|
+
#
|
5222
|
+
# Example: `my-cluster1`
|
5223
|
+
#
|
5224
|
+
# @option params [String] :backtrack_identifier
|
5225
|
+
# If specified, this value is the backtrack identifier of the backtrack
|
5226
|
+
# to be described.
|
5227
|
+
#
|
5228
|
+
# Constraints:
|
5229
|
+
#
|
5230
|
+
# * Must contain a valid universally unique identifier (UUID). For more
|
5231
|
+
# information about UUIDs, see [A Universally Unique Identifier (UUID)
|
5232
|
+
# URN Namespace][1].
|
5233
|
+
#
|
5234
|
+
# ^
|
5235
|
+
#
|
5236
|
+
# Example: `123e4567-e89b-12d3-a456-426655440000`
|
5237
|
+
#
|
5238
|
+
#
|
5239
|
+
#
|
5240
|
+
# [1]: http://www.ietf.org/rfc/rfc4122.txt
|
5241
|
+
#
|
5242
|
+
# @option params [Array<Types::Filter>] :filters
|
5243
|
+
# A filter that specifies one or more DB clusters to describe. Supported
|
5244
|
+
# filters include the following:
|
5245
|
+
#
|
5246
|
+
# * `db-cluster-backtrack-id` - Accepts backtrack identifiers. The
|
5247
|
+
# results list includes information about only the backtracks
|
5248
|
+
# identified by these identifiers.
|
5249
|
+
#
|
5250
|
+
# * `db-cluster-backtrack-status` - Accepts any of the following
|
5251
|
+
# backtrack status values:
|
5252
|
+
#
|
5253
|
+
# * `applying`
|
5254
|
+
#
|
5255
|
+
# * `completed`
|
5256
|
+
#
|
5257
|
+
# * `failed`
|
5258
|
+
#
|
5259
|
+
# * `pending`
|
5260
|
+
#
|
5261
|
+
# The results list includes information about only the backtracks
|
5262
|
+
# identified by these values. For more information about backtrack
|
5263
|
+
# status values, see DBClusterBacktrack.
|
5264
|
+
#
|
5265
|
+
# @option params [Integer] :max_records
|
5266
|
+
# The maximum number of records to include in the response. If more
|
5267
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
5268
|
+
# token called a marker is included in the response so that the
|
5269
|
+
# remaining results can be retrieved.
|
5270
|
+
#
|
5271
|
+
# Default: 100
|
5272
|
+
#
|
5273
|
+
# Constraints: Minimum 20, maximum 100.
|
5274
|
+
#
|
5275
|
+
# @option params [String] :marker
|
5276
|
+
# An optional pagination token provided by a previous
|
5277
|
+
# DescribeDBClusterBacktracks request. If this parameter is specified,
|
5278
|
+
# the response includes only records beyond the marker, up to the value
|
5279
|
+
# specified by `MaxRecords`.
|
5280
|
+
#
|
5281
|
+
# @return [Types::DBClusterBacktrackMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5282
|
+
#
|
5283
|
+
# * {Types::DBClusterBacktrackMessage#marker #marker} => String
|
5284
|
+
# * {Types::DBClusterBacktrackMessage#db_cluster_backtracks #db_cluster_backtracks} => Array<Types::DBClusterBacktrack>
|
5285
|
+
#
|
5286
|
+
# @example Request syntax with placeholder values
|
5287
|
+
#
|
5288
|
+
# resp = client.describe_db_cluster_backtracks({
|
5289
|
+
# db_cluster_identifier: "String", # required
|
5290
|
+
# backtrack_identifier: "String",
|
5291
|
+
# filters: [
|
5292
|
+
# {
|
5293
|
+
# name: "String", # required
|
5294
|
+
# values: ["String"], # required
|
5295
|
+
# },
|
5296
|
+
# ],
|
5297
|
+
# max_records: 1,
|
5298
|
+
# marker: "String",
|
5299
|
+
# })
|
5300
|
+
#
|
5301
|
+
# @example Response structure
|
5302
|
+
#
|
5303
|
+
# resp.marker #=> String
|
5304
|
+
# resp.db_cluster_backtracks #=> Array
|
5305
|
+
# resp.db_cluster_backtracks[0].db_cluster_identifier #=> String
|
5306
|
+
# resp.db_cluster_backtracks[0].backtrack_identifier #=> String
|
5307
|
+
# resp.db_cluster_backtracks[0].backtrack_to #=> Time
|
5308
|
+
# resp.db_cluster_backtracks[0].backtracked_from #=> Time
|
5309
|
+
# resp.db_cluster_backtracks[0].backtrack_request_creation_time #=> Time
|
5310
|
+
# resp.db_cluster_backtracks[0].status #=> String
|
5311
|
+
#
|
5312
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterBacktracks AWS API Documentation
|
5313
|
+
#
|
5314
|
+
# @overload describe_db_cluster_backtracks(params = {})
|
5315
|
+
# @param [Hash] params ({})
|
5316
|
+
def describe_db_cluster_backtracks(params = {}, options = {})
|
5317
|
+
req = build_request(:describe_db_cluster_backtracks, params)
|
5318
|
+
req.send_request(options)
|
5319
|
+
end
|
5320
|
+
|
5088
5321
|
# Returns a list of `DBClusterParameterGroup` descriptions. If a
|
5089
5322
|
# `DBClusterParameterGroupName` parameter is specified, the list will
|
5090
5323
|
# contain only the description of the specified DB cluster parameter
|
@@ -5640,6 +5873,9 @@ module Aws::RDS
|
|
5640
5873
|
# resp.db_clusters[0].iam_database_authentication_enabled #=> Boolean
|
5641
5874
|
# resp.db_clusters[0].clone_group_id #=> String
|
5642
5875
|
# resp.db_clusters[0].cluster_create_time #=> Time
|
5876
|
+
# resp.db_clusters[0].earliest_backtrack_time #=> Time
|
5877
|
+
# resp.db_clusters[0].backtrack_window #=> Integer
|
5878
|
+
# resp.db_clusters[0].backtrack_consumed_change_records #=> Integer
|
5643
5879
|
#
|
5644
5880
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusters AWS API Documentation
|
5645
5881
|
#
|
@@ -5671,7 +5907,7 @@ module Aws::RDS
|
|
5671
5907
|
# ^
|
5672
5908
|
#
|
5673
5909
|
# @option params [Array<Types::Filter>] :filters
|
5674
|
-
#
|
5910
|
+
# This parameter is not currently supported.
|
5675
5911
|
#
|
5676
5912
|
# @option params [Integer] :max_records
|
5677
5913
|
# The maximum number of records to include in the response. If more than
|
@@ -6738,7 +6974,7 @@ module Aws::RDS
|
|
6738
6974
|
# The name of the DB parameter group family.
|
6739
6975
|
#
|
6740
6976
|
# @option params [Array<Types::Filter>] :filters
|
6741
|
-
#
|
6977
|
+
# This parameter is not currently supported.
|
6742
6978
|
#
|
6743
6979
|
# @option params [Integer] :max_records
|
6744
6980
|
# The maximum number of records to include in the response. If more
|
@@ -8158,6 +8394,9 @@ module Aws::RDS
|
|
8158
8394
|
# resp.db_cluster.iam_database_authentication_enabled #=> Boolean
|
8159
8395
|
# resp.db_cluster.clone_group_id #=> String
|
8160
8396
|
# resp.db_cluster.cluster_create_time #=> Time
|
8397
|
+
# resp.db_cluster.earliest_backtrack_time #=> Time
|
8398
|
+
# resp.db_cluster.backtrack_window #=> Integer
|
8399
|
+
# resp.db_cluster.backtrack_consumed_change_records #=> Integer
|
8161
8400
|
#
|
8162
8401
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
8163
8402
|
#
|
@@ -8378,6 +8617,19 @@ module Aws::RDS
|
|
8378
8617
|
#
|
8379
8618
|
# Default: `false`
|
8380
8619
|
#
|
8620
|
+
# @option params [Integer] :backtrack_window
|
8621
|
+
# The target backtrack window, in seconds. To disable backtracking, set
|
8622
|
+
# this value to 0.
|
8623
|
+
#
|
8624
|
+
# Default: 0
|
8625
|
+
#
|
8626
|
+
# Constraints:
|
8627
|
+
#
|
8628
|
+
# * If specified, this value must be set to a number from 0 to 259,200
|
8629
|
+
# (72 hours).
|
8630
|
+
#
|
8631
|
+
# ^
|
8632
|
+
#
|
8381
8633
|
# @option params [String] :engine_version
|
8382
8634
|
# The version number of the database engine to which you want to
|
8383
8635
|
# upgrade. Changing this parameter results in an outage. The change is
|
@@ -8426,6 +8678,7 @@ module Aws::RDS
|
|
8426
8678
|
# preferred_backup_window: "String",
|
8427
8679
|
# preferred_maintenance_window: "String",
|
8428
8680
|
# enable_iam_database_authentication: false,
|
8681
|
+
# backtrack_window: 1,
|
8429
8682
|
# engine_version: "String",
|
8430
8683
|
# })
|
8431
8684
|
#
|
@@ -8478,6 +8731,9 @@ module Aws::RDS
|
|
8478
8731
|
# resp.db_cluster.iam_database_authentication_enabled #=> Boolean
|
8479
8732
|
# resp.db_cluster.clone_group_id #=> String
|
8480
8733
|
# resp.db_cluster.cluster_create_time #=> Time
|
8734
|
+
# resp.db_cluster.earliest_backtrack_time #=> Time
|
8735
|
+
# resp.db_cluster.backtrack_window #=> Integer
|
8736
|
+
# resp.db_cluster.backtrack_consumed_change_records #=> Integer
|
8481
8737
|
#
|
8482
8738
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
8483
8739
|
#
|
@@ -10273,6 +10529,9 @@ module Aws::RDS
|
|
10273
10529
|
# resp.db_cluster.iam_database_authentication_enabled #=> Boolean
|
10274
10530
|
# resp.db_cluster.clone_group_id #=> String
|
10275
10531
|
# resp.db_cluster.cluster_create_time #=> Time
|
10532
|
+
# resp.db_cluster.earliest_backtrack_time #=> Time
|
10533
|
+
# resp.db_cluster.backtrack_window #=> Integer
|
10534
|
+
# resp.db_cluster.backtrack_consumed_change_records #=> Integer
|
10276
10535
|
#
|
10277
10536
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
10278
10537
|
#
|
@@ -11097,6 +11356,19 @@ module Aws::RDS
|
|
11097
11356
|
# Management (IAM) role that authorizes Amazon RDS to access the Amazon
|
11098
11357
|
# S3 bucket on your behalf.
|
11099
11358
|
#
|
11359
|
+
# @option params [Integer] :backtrack_window
|
11360
|
+
# The target backtrack window, in seconds. To disable backtracking, set
|
11361
|
+
# this value to 0.
|
11362
|
+
#
|
11363
|
+
# Default: 0
|
11364
|
+
#
|
11365
|
+
# Constraints:
|
11366
|
+
#
|
11367
|
+
# * If specified, this value must be set to a number from 0 to 259,200
|
11368
|
+
# (72 hours).
|
11369
|
+
#
|
11370
|
+
# ^
|
11371
|
+
#
|
11100
11372
|
# @return [Types::RestoreDBClusterFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11101
11373
|
#
|
11102
11374
|
# * {Types::RestoreDBClusterFromS3Result#db_cluster #db_cluster} => Types::DBCluster
|
@@ -11134,6 +11406,7 @@ module Aws::RDS
|
|
11134
11406
|
# s3_bucket_name: "String", # required
|
11135
11407
|
# s3_prefix: "String",
|
11136
11408
|
# s3_ingestion_role_arn: "String", # required
|
11409
|
+
# backtrack_window: 1,
|
11137
11410
|
# })
|
11138
11411
|
#
|
11139
11412
|
# @example Response structure
|
@@ -11185,6 +11458,9 @@ module Aws::RDS
|
|
11185
11458
|
# resp.db_cluster.iam_database_authentication_enabled #=> Boolean
|
11186
11459
|
# resp.db_cluster.clone_group_id #=> String
|
11187
11460
|
# resp.db_cluster.cluster_create_time #=> Time
|
11461
|
+
# resp.db_cluster.earliest_backtrack_time #=> Time
|
11462
|
+
# resp.db_cluster.backtrack_window #=> Integer
|
11463
|
+
# resp.db_cluster.backtrack_consumed_change_records #=> Integer
|
11188
11464
|
#
|
11189
11465
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
11190
11466
|
#
|
@@ -11308,6 +11584,19 @@ module Aws::RDS
|
|
11308
11584
|
#
|
11309
11585
|
# Default: `false`
|
11310
11586
|
#
|
11587
|
+
# @option params [Integer] :backtrack_window
|
11588
|
+
# The target backtrack window, in seconds. To disable backtracking, set
|
11589
|
+
# this value to 0.
|
11590
|
+
#
|
11591
|
+
# Default: 0
|
11592
|
+
#
|
11593
|
+
# Constraints:
|
11594
|
+
#
|
11595
|
+
# * If specified, this value must be set to a number from 0 to 259,200
|
11596
|
+
# (72 hours).
|
11597
|
+
#
|
11598
|
+
# ^
|
11599
|
+
#
|
11311
11600
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11312
11601
|
#
|
11313
11602
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -11350,6 +11639,7 @@ module Aws::RDS
|
|
11350
11639
|
# ],
|
11351
11640
|
# kms_key_id: "String",
|
11352
11641
|
# enable_iam_database_authentication: false,
|
11642
|
+
# backtrack_window: 1,
|
11353
11643
|
# })
|
11354
11644
|
#
|
11355
11645
|
# @example Response structure
|
@@ -11401,6 +11691,9 @@ module Aws::RDS
|
|
11401
11691
|
# resp.db_cluster.iam_database_authentication_enabled #=> Boolean
|
11402
11692
|
# resp.db_cluster.clone_group_id #=> String
|
11403
11693
|
# resp.db_cluster.cluster_create_time #=> Time
|
11694
|
+
# resp.db_cluster.earliest_backtrack_time #=> Time
|
11695
|
+
# resp.db_cluster.backtrack_window #=> Integer
|
11696
|
+
# resp.db_cluster.backtrack_consumed_change_records #=> Integer
|
11404
11697
|
#
|
11405
11698
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
11406
11699
|
#
|
@@ -11561,6 +11854,19 @@ module Aws::RDS
|
|
11561
11854
|
#
|
11562
11855
|
# Default: `false`
|
11563
11856
|
#
|
11857
|
+
# @option params [Integer] :backtrack_window
|
11858
|
+
# The target backtrack window, in seconds. To disable backtracking, set
|
11859
|
+
# this value to 0.
|
11860
|
+
#
|
11861
|
+
# Default: 0
|
11862
|
+
#
|
11863
|
+
# Constraints:
|
11864
|
+
#
|
11865
|
+
# * If specified, this value must be set to a number from 0 to 259,200
|
11866
|
+
# (72 hours).
|
11867
|
+
#
|
11868
|
+
# ^
|
11869
|
+
#
|
11564
11870
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11565
11871
|
#
|
11566
11872
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -11602,6 +11908,7 @@ module Aws::RDS
|
|
11602
11908
|
# ],
|
11603
11909
|
# kms_key_id: "String",
|
11604
11910
|
# enable_iam_database_authentication: false,
|
11911
|
+
# backtrack_window: 1,
|
11605
11912
|
# })
|
11606
11913
|
#
|
11607
11914
|
# @example Response structure
|
@@ -11653,6 +11960,9 @@ module Aws::RDS
|
|
11653
11960
|
# resp.db_cluster.iam_database_authentication_enabled #=> Boolean
|
11654
11961
|
# resp.db_cluster.clone_group_id #=> String
|
11655
11962
|
# resp.db_cluster.cluster_create_time #=> Time
|
11963
|
+
# resp.db_cluster.earliest_backtrack_time #=> Time
|
11964
|
+
# resp.db_cluster.backtrack_window #=> Integer
|
11965
|
+
# resp.db_cluster.backtrack_consumed_change_records #=> Integer
|
11656
11966
|
#
|
11657
11967
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
11658
11968
|
#
|
@@ -13490,7 +13800,7 @@ module Aws::RDS
|
|
13490
13800
|
params: params,
|
13491
13801
|
config: config)
|
13492
13802
|
context[:gem_name] = 'aws-sdk-rds'
|
13493
|
-
context[:gem_version] = '1.
|
13803
|
+
context[:gem_version] = '1.18.0'
|
13494
13804
|
Seahorse::Client::Request.new(handlers, context)
|
13495
13805
|
end
|
13496
13806
|
|