aws-sdk-rds 1.156.0 → 1.158.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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +177 -55
- data/lib/aws-sdk-rds/client_api.rb +21 -0
- data/lib/aws-sdk-rds/db_cluster.rb +6 -9
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +2 -3
- data/lib/aws-sdk-rds/db_instance.rb +51 -25
- data/lib/aws-sdk-rds/db_snapshot.rb +15 -5
- data/lib/aws-sdk-rds/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-rds/endpoint_provider.rb +137 -0
- data/lib/aws-sdk-rds/endpoints.rb +1933 -0
- data/lib/aws-sdk-rds/plugins/cross_region_copying.rb +12 -11
- data/lib/aws-sdk-rds/plugins/endpoints.rb +342 -0
- data/lib/aws-sdk-rds/resource.rb +32 -26
- data/lib/aws-sdk-rds/types.rb +209 -71
- data/lib/aws-sdk-rds.rb +5 -1
- metadata +8 -4
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
31
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
|
32
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
|
33
|
-
require 'aws-sdk-core/plugins/
|
|
33
|
+
require 'aws-sdk-core/plugins/sign.rb'
|
|
34
34
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
|
35
35
|
require 'aws-sdk-rds/plugins/cross_region_copying.rb'
|
|
36
36
|
|
|
@@ -80,9 +80,10 @@ module Aws::RDS
|
|
|
80
80
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
|
81
81
|
add_plugin(Aws::Plugins::DefaultsMode)
|
|
82
82
|
add_plugin(Aws::Plugins::RecursionDetection)
|
|
83
|
-
add_plugin(Aws::Plugins::
|
|
83
|
+
add_plugin(Aws::Plugins::Sign)
|
|
84
84
|
add_plugin(Aws::Plugins::Protocols::Query)
|
|
85
85
|
add_plugin(Aws::RDS::Plugins::CrossRegionCopying)
|
|
86
|
+
add_plugin(Aws::RDS::Plugins::Endpoints)
|
|
86
87
|
|
|
87
88
|
# @overload initialize(options)
|
|
88
89
|
# @param [Hash] options
|
|
@@ -289,6 +290,19 @@ module Aws::RDS
|
|
|
289
290
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
|
290
291
|
# requests are made, and retries are disabled.
|
|
291
292
|
#
|
|
293
|
+
# @option options [Aws::TokenProvider] :token_provider
|
|
294
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
|
295
|
+
# following classes:
|
|
296
|
+
#
|
|
297
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
|
298
|
+
# tokens.
|
|
299
|
+
#
|
|
300
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
|
301
|
+
# access token generated from `aws login`.
|
|
302
|
+
#
|
|
303
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
|
304
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
|
305
|
+
#
|
|
292
306
|
# @option options [Boolean] :use_dualstack_endpoint
|
|
293
307
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
|
294
308
|
# will be used if available.
|
|
@@ -302,6 +316,9 @@ module Aws::RDS
|
|
|
302
316
|
# When `true`, request parameters are validated before
|
|
303
317
|
# sending the request.
|
|
304
318
|
#
|
|
319
|
+
# @option options [Aws::RDS::EndpointProvider] :endpoint_provider
|
|
320
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::RDS::EndpointParameters`
|
|
321
|
+
#
|
|
305
322
|
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
|
306
323
|
# requests through. Formatted like 'http://proxy.com:123'.
|
|
307
324
|
#
|
|
@@ -892,6 +909,7 @@ module Aws::RDS
|
|
|
892
909
|
# * {Types::ExportTask#total_extracted_data_in_gb #total_extracted_data_in_gb} => Integer
|
|
893
910
|
# * {Types::ExportTask#failure_cause #failure_cause} => String
|
|
894
911
|
# * {Types::ExportTask#warning_message #warning_message} => String
|
|
912
|
+
# * {Types::ExportTask#source_type #source_type} => String
|
|
895
913
|
#
|
|
896
914
|
# @example Request syntax with placeholder values
|
|
897
915
|
#
|
|
@@ -917,6 +935,7 @@ module Aws::RDS
|
|
|
917
935
|
# resp.total_extracted_data_in_gb #=> Integer
|
|
918
936
|
# resp.failure_cause #=> String
|
|
919
937
|
# resp.warning_message #=> String
|
|
938
|
+
# resp.source_type #=> String, one of "SNAPSHOT", "CLUSTER"
|
|
920
939
|
#
|
|
921
940
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CancelExportTask AWS API Documentation
|
|
922
941
|
#
|
|
@@ -1645,6 +1664,7 @@ module Aws::RDS
|
|
|
1645
1664
|
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
|
1646
1665
|
# resp.db_snapshot.snapshot_database_time #=> Time
|
|
1647
1666
|
# resp.db_snapshot.snapshot_target #=> String
|
|
1667
|
+
# resp.db_snapshot.storage_throughput #=> Integer
|
|
1648
1668
|
#
|
|
1649
1669
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
|
|
1650
1670
|
#
|
|
@@ -2624,9 +2644,8 @@ module Aws::RDS
|
|
|
2624
2644
|
# be initially allocated for each DB instance in the Multi-AZ DB
|
|
2625
2645
|
# cluster.
|
|
2626
2646
|
#
|
|
2627
|
-
# For information about valid
|
|
2628
|
-
# IOPS storage
|
|
2629
|
-
# Guide*.
|
|
2647
|
+
# For information about valid IOPS values, see [Amazon RDS Provisioned
|
|
2648
|
+
# IOPS storage][1] in the *Amazon RDS User Guide*.
|
|
2630
2649
|
#
|
|
2631
2650
|
# This setting is required to create a Multi-AZ DB cluster.
|
|
2632
2651
|
#
|
|
@@ -3546,8 +3565,8 @@ module Aws::RDS
|
|
|
3546
3565
|
# Constraints to the amount of storage for each storage type are the
|
|
3547
3566
|
# following:
|
|
3548
3567
|
#
|
|
3549
|
-
# * General Purpose (SSD) storage (gp2): Must be an integer from 40
|
|
3550
|
-
# 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
|
|
3568
|
+
# * General Purpose (SSD) storage (gp2, gp3): Must be an integer from 40
|
|
3569
|
+
# to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
|
|
3551
3570
|
# Server.
|
|
3552
3571
|
#
|
|
3553
3572
|
# * Provisioned IOPS storage (io1): Must be an integer from 40 to 65536
|
|
@@ -3558,8 +3577,8 @@ module Aws::RDS
|
|
|
3558
3577
|
# Constraints to the amount of storage for each storage type are the
|
|
3559
3578
|
# following:
|
|
3560
3579
|
#
|
|
3561
|
-
# * General Purpose (SSD) storage (gp2): Must be an integer from 20
|
|
3562
|
-
# 65536.
|
|
3580
|
+
# * General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20
|
|
3581
|
+
# to 65536.
|
|
3563
3582
|
#
|
|
3564
3583
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
|
3565
3584
|
# 65536.
|
|
@@ -3571,8 +3590,8 @@ module Aws::RDS
|
|
|
3571
3590
|
# Constraints to the amount of storage for each storage type are the
|
|
3572
3591
|
# following:
|
|
3573
3592
|
#
|
|
3574
|
-
# * General Purpose (SSD) storage (gp2): Must be an integer from 20
|
|
3575
|
-
# 65536.
|
|
3593
|
+
# * General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20
|
|
3594
|
+
# to 65536.
|
|
3576
3595
|
#
|
|
3577
3596
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
|
3578
3597
|
# 65536.
|
|
@@ -3584,8 +3603,8 @@ module Aws::RDS
|
|
|
3584
3603
|
# Constraints to the amount of storage for each storage type are the
|
|
3585
3604
|
# following:
|
|
3586
3605
|
#
|
|
3587
|
-
# * General Purpose (SSD) storage (gp2): Must be an integer from 20
|
|
3588
|
-
# 65536.
|
|
3606
|
+
# * General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20
|
|
3607
|
+
# to 65536.
|
|
3589
3608
|
#
|
|
3590
3609
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
|
3591
3610
|
# 65536.
|
|
@@ -3597,8 +3616,8 @@ module Aws::RDS
|
|
|
3597
3616
|
# Constraints to the amount of storage for each storage type are the
|
|
3598
3617
|
# following:
|
|
3599
3618
|
#
|
|
3600
|
-
# * General Purpose (SSD) storage (gp2): Must be an integer from 20
|
|
3601
|
-
# 65536.
|
|
3619
|
+
# * General Purpose (SSD) storage (gp2, gp3): Must be an integer from 20
|
|
3620
|
+
# to 65536.
|
|
3602
3621
|
#
|
|
3603
3622
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
|
3604
3623
|
# 65536.
|
|
@@ -3610,7 +3629,7 @@ module Aws::RDS
|
|
|
3610
3629
|
# Constraints to the amount of storage for each storage type are the
|
|
3611
3630
|
# following:
|
|
3612
3631
|
#
|
|
3613
|
-
# * General Purpose (SSD) storage (gp2):
|
|
3632
|
+
# * General Purpose (SSD) storage (gp2, gp3):
|
|
3614
3633
|
#
|
|
3615
3634
|
# * Enterprise and Standard editions: Must be an integer from 20 to
|
|
3616
3635
|
# 16384.
|
|
@@ -4018,8 +4037,8 @@ module Aws::RDS
|
|
|
4018
4037
|
# @option params [Integer] :iops
|
|
4019
4038
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
|
4020
4039
|
# be initially allocated for the DB instance. For information about
|
|
4021
|
-
# valid
|
|
4022
|
-
#
|
|
4040
|
+
# valid IOPS values, see [Amazon RDS DB instance storage][1] in the
|
|
4041
|
+
# *Amazon RDS User Guide*.
|
|
4023
4042
|
#
|
|
4024
4043
|
# Constraints: For MariaDB, MySQL, Oracle, and PostgreSQL DB instances,
|
|
4025
4044
|
# must be a multiple between .5 and 50 of the storage amount for the DB
|
|
@@ -4032,7 +4051,7 @@ module Aws::RDS
|
|
|
4032
4051
|
#
|
|
4033
4052
|
#
|
|
4034
4053
|
#
|
|
4035
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html
|
|
4054
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html
|
|
4036
4055
|
#
|
|
4037
4056
|
# @option params [String] :option_group_name
|
|
4038
4057
|
# A value that indicates that the DB instance should be associated with
|
|
@@ -4112,10 +4131,10 @@ module Aws::RDS
|
|
|
4112
4131
|
# @option params [String] :storage_type
|
|
4113
4132
|
# Specifies the storage type to be associated with the DB instance.
|
|
4114
4133
|
#
|
|
4115
|
-
# Valid values: `
|
|
4134
|
+
# Valid values: `gp2 | gp3 | io1 | standard`
|
|
4116
4135
|
#
|
|
4117
|
-
# If you specify `io1`, you must also include a value for the
|
|
4118
|
-
# parameter.
|
|
4136
|
+
# If you specify `io1` or `gp3`, you must also include a value for the
|
|
4137
|
+
# `Iops` parameter.
|
|
4119
4138
|
#
|
|
4120
4139
|
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
|
4121
4140
|
#
|
|
@@ -4498,6 +4517,11 @@ module Aws::RDS
|
|
|
4498
4517
|
#
|
|
4499
4518
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
4500
4519
|
#
|
|
4520
|
+
# @option params [Integer] :storage_throughput
|
|
4521
|
+
# Specifies the storage throughput value for the DB instance.
|
|
4522
|
+
#
|
|
4523
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
4524
|
+
#
|
|
4501
4525
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4502
4526
|
#
|
|
4503
4527
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -4586,6 +4610,7 @@ module Aws::RDS
|
|
|
4586
4610
|
# custom_iam_instance_profile: "String",
|
|
4587
4611
|
# backup_target: "String",
|
|
4588
4612
|
# network_type: "String",
|
|
4613
|
+
# storage_throughput: 1,
|
|
4589
4614
|
# })
|
|
4590
4615
|
#
|
|
4591
4616
|
# @example Response structure
|
|
@@ -4650,6 +4675,7 @@ module Aws::RDS
|
|
|
4650
4675
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
4651
4676
|
# resp.db_instance.pending_modified_values.automation_mode #=> String, one of "full", "all-paused"
|
|
4652
4677
|
# resp.db_instance.pending_modified_values.resume_full_automation_mode_time #=> Time
|
|
4678
|
+
# resp.db_instance.pending_modified_values.storage_throughput #=> Integer
|
|
4653
4679
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
4654
4680
|
# resp.db_instance.multi_az #=> Boolean
|
|
4655
4681
|
# resp.db_instance.engine_version #=> String
|
|
@@ -4730,6 +4756,7 @@ module Aws::RDS
|
|
|
4730
4756
|
# resp.db_instance.backup_target #=> String
|
|
4731
4757
|
# resp.db_instance.network_type #=> String
|
|
4732
4758
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
|
4759
|
+
# resp.db_instance.storage_throughput #=> Integer
|
|
4733
4760
|
#
|
|
4734
4761
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
|
4735
4762
|
#
|
|
@@ -4952,10 +4979,10 @@ module Aws::RDS
|
|
|
4952
4979
|
# @option params [String] :storage_type
|
|
4953
4980
|
# Specifies the storage type to be associated with the read replica.
|
|
4954
4981
|
#
|
|
4955
|
-
# Valid values: `
|
|
4982
|
+
# Valid values: `gp2 | gp3 | io1 | standard`
|
|
4956
4983
|
#
|
|
4957
|
-
# If you specify `io1`, you must also include a value for the
|
|
4958
|
-
# parameter.
|
|
4984
|
+
# If you specify `io1` or `gp3`, you must also include a value for the
|
|
4985
|
+
# `Iops` parameter.
|
|
4959
4986
|
#
|
|
4960
4987
|
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
|
4961
4988
|
#
|
|
@@ -5294,6 +5321,11 @@ module Aws::RDS
|
|
|
5294
5321
|
#
|
|
5295
5322
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
5296
5323
|
#
|
|
5324
|
+
# @option params [Integer] :storage_throughput
|
|
5325
|
+
# Specifies the storage throughput value for the read replica.
|
|
5326
|
+
#
|
|
5327
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
5328
|
+
#
|
|
5297
5329
|
# @option params [String] :source_region
|
|
5298
5330
|
# The source region of the snapshot. This is only needed when the
|
|
5299
5331
|
# shapshot is encrypted and in a different region.
|
|
@@ -5376,6 +5408,7 @@ module Aws::RDS
|
|
|
5376
5408
|
# max_allocated_storage: 1,
|
|
5377
5409
|
# custom_iam_instance_profile: "String",
|
|
5378
5410
|
# network_type: "String",
|
|
5411
|
+
# storage_throughput: 1,
|
|
5379
5412
|
# source_region: "String",
|
|
5380
5413
|
# })
|
|
5381
5414
|
#
|
|
@@ -5441,6 +5474,7 @@ module Aws::RDS
|
|
|
5441
5474
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
5442
5475
|
# resp.db_instance.pending_modified_values.automation_mode #=> String, one of "full", "all-paused"
|
|
5443
5476
|
# resp.db_instance.pending_modified_values.resume_full_automation_mode_time #=> Time
|
|
5477
|
+
# resp.db_instance.pending_modified_values.storage_throughput #=> Integer
|
|
5444
5478
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
5445
5479
|
# resp.db_instance.multi_az #=> Boolean
|
|
5446
5480
|
# resp.db_instance.engine_version #=> String
|
|
@@ -5521,6 +5555,7 @@ module Aws::RDS
|
|
|
5521
5555
|
# resp.db_instance.backup_target #=> String
|
|
5522
5556
|
# resp.db_instance.network_type #=> String
|
|
5523
5557
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
|
5558
|
+
# resp.db_instance.storage_throughput #=> Integer
|
|
5524
5559
|
#
|
|
5525
5560
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
|
5526
5561
|
#
|
|
@@ -6095,6 +6130,7 @@ module Aws::RDS
|
|
|
6095
6130
|
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
|
6096
6131
|
# resp.db_snapshot.snapshot_database_time #=> Time
|
|
6097
6132
|
# resp.db_snapshot.snapshot_target #=> String
|
|
6133
|
+
# resp.db_snapshot.storage_throughput #=> Integer
|
|
6098
6134
|
#
|
|
6099
6135
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
|
6100
6136
|
#
|
|
@@ -7307,6 +7343,7 @@ module Aws::RDS
|
|
|
7307
7343
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
7308
7344
|
# resp.db_instance.pending_modified_values.automation_mode #=> String, one of "full", "all-paused"
|
|
7309
7345
|
# resp.db_instance.pending_modified_values.resume_full_automation_mode_time #=> Time
|
|
7346
|
+
# resp.db_instance.pending_modified_values.storage_throughput #=> Integer
|
|
7310
7347
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
7311
7348
|
# resp.db_instance.multi_az #=> Boolean
|
|
7312
7349
|
# resp.db_instance.engine_version #=> String
|
|
@@ -7387,6 +7424,7 @@ module Aws::RDS
|
|
|
7387
7424
|
# resp.db_instance.backup_target #=> String
|
|
7388
7425
|
# resp.db_instance.network_type #=> String
|
|
7389
7426
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
|
7427
|
+
# resp.db_instance.storage_throughput #=> Integer
|
|
7390
7428
|
#
|
|
7391
7429
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
|
7392
7430
|
#
|
|
@@ -7454,6 +7492,7 @@ module Aws::RDS
|
|
|
7454
7492
|
# resp.db_instance_automated_backup.db_instance_automated_backups_replications #=> Array
|
|
7455
7493
|
# resp.db_instance_automated_backup.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
|
7456
7494
|
# resp.db_instance_automated_backup.backup_target #=> String
|
|
7495
|
+
# resp.db_instance_automated_backup.storage_throughput #=> Integer
|
|
7457
7496
|
#
|
|
7458
7497
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstanceAutomatedBackup AWS API Documentation
|
|
7459
7498
|
#
|
|
@@ -7736,6 +7775,7 @@ module Aws::RDS
|
|
|
7736
7775
|
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
|
7737
7776
|
# resp.db_snapshot.snapshot_database_time #=> Time
|
|
7738
7777
|
# resp.db_snapshot.snapshot_target #=> String
|
|
7778
|
+
# resp.db_snapshot.storage_throughput #=> Integer
|
|
7739
7779
|
#
|
|
7740
7780
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
|
7741
7781
|
#
|
|
@@ -8804,9 +8844,10 @@ module Aws::RDS
|
|
|
8804
8844
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
|
8805
8845
|
#
|
|
8806
8846
|
# @option params [String] :db_cluster_identifier
|
|
8807
|
-
# The user-supplied DB cluster identifier
|
|
8808
|
-
#
|
|
8809
|
-
# This parameter isn't
|
|
8847
|
+
# The user-supplied DB cluster identifier or the Amazon Resource Name
|
|
8848
|
+
# (ARN) of the DB cluster. If this parameter is specified, information
|
|
8849
|
+
# from only the specific DB cluster is returned. This parameter isn't
|
|
8850
|
+
# case-sensitive.
|
|
8810
8851
|
#
|
|
8811
8852
|
# Constraints:
|
|
8812
8853
|
#
|
|
@@ -9374,6 +9415,7 @@ module Aws::RDS
|
|
|
9374
9415
|
# resp.db_instance_automated_backups[0].db_instance_automated_backups_replications #=> Array
|
|
9375
9416
|
# resp.db_instance_automated_backups[0].db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
|
9376
9417
|
# resp.db_instance_automated_backups[0].backup_target #=> String
|
|
9418
|
+
# resp.db_instance_automated_backups[0].storage_throughput #=> Integer
|
|
9377
9419
|
#
|
|
9378
9420
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBInstanceAutomatedBackups AWS API Documentation
|
|
9379
9421
|
#
|
|
@@ -9393,9 +9435,10 @@ module Aws::RDS
|
|
|
9393
9435
|
# </note>
|
|
9394
9436
|
#
|
|
9395
9437
|
# @option params [String] :db_instance_identifier
|
|
9396
|
-
# The user-supplied instance identifier
|
|
9397
|
-
#
|
|
9398
|
-
# parameter isn't
|
|
9438
|
+
# The user-supplied instance identifier or the Amazon Resource Name
|
|
9439
|
+
# (ARN) of the DB instance. If this parameter is specified, information
|
|
9440
|
+
# from only the specific DB instance is returned. This parameter isn't
|
|
9441
|
+
# case-sensitive.
|
|
9399
9442
|
#
|
|
9400
9443
|
# Constraints:
|
|
9401
9444
|
#
|
|
@@ -9542,6 +9585,7 @@ module Aws::RDS
|
|
|
9542
9585
|
# resp.db_instances[0].pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
9543
9586
|
# resp.db_instances[0].pending_modified_values.automation_mode #=> String, one of "full", "all-paused"
|
|
9544
9587
|
# resp.db_instances[0].pending_modified_values.resume_full_automation_mode_time #=> Time
|
|
9588
|
+
# resp.db_instances[0].pending_modified_values.storage_throughput #=> Integer
|
|
9545
9589
|
# resp.db_instances[0].latest_restorable_time #=> Time
|
|
9546
9590
|
# resp.db_instances[0].multi_az #=> Boolean
|
|
9547
9591
|
# resp.db_instances[0].engine_version #=> String
|
|
@@ -9622,6 +9666,7 @@ module Aws::RDS
|
|
|
9622
9666
|
# resp.db_instances[0].backup_target #=> String
|
|
9623
9667
|
# resp.db_instances[0].network_type #=> String
|
|
9624
9668
|
# resp.db_instances[0].activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
|
9669
|
+
# resp.db_instances[0].storage_throughput #=> Integer
|
|
9625
9670
|
#
|
|
9626
9671
|
#
|
|
9627
9672
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -10597,6 +10642,7 @@ module Aws::RDS
|
|
|
10597
10642
|
# resp.db_snapshots[0].original_snapshot_create_time #=> Time
|
|
10598
10643
|
# resp.db_snapshots[0].snapshot_database_time #=> Time
|
|
10599
10644
|
# resp.db_snapshots[0].snapshot_target #=> String
|
|
10645
|
+
# resp.db_snapshots[0].storage_throughput #=> Integer
|
|
10600
10646
|
#
|
|
10601
10647
|
#
|
|
10602
10648
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -10820,6 +10866,10 @@ module Aws::RDS
|
|
|
10820
10866
|
#
|
|
10821
10867
|
# * `aurora-postgresql13`
|
|
10822
10868
|
#
|
|
10869
|
+
# * `aurora-postgresql14`
|
|
10870
|
+
#
|
|
10871
|
+
# * `custom-oracle-ee-19`
|
|
10872
|
+
#
|
|
10823
10873
|
# * `mariadb10.2`
|
|
10824
10874
|
#
|
|
10825
10875
|
# * `mariadb10.3`
|
|
@@ -10834,6 +10884,18 @@ module Aws::RDS
|
|
|
10834
10884
|
#
|
|
10835
10885
|
# * `mysql8.0`
|
|
10836
10886
|
#
|
|
10887
|
+
# * `oracle-ee-19`
|
|
10888
|
+
#
|
|
10889
|
+
# * `oracle-ee-cdb-19`
|
|
10890
|
+
#
|
|
10891
|
+
# * `oracle-ee-cdb-21`
|
|
10892
|
+
#
|
|
10893
|
+
# * `oracle-se2-19`
|
|
10894
|
+
#
|
|
10895
|
+
# * `oracle-se2-cdb-19`
|
|
10896
|
+
#
|
|
10897
|
+
# * `oracle-se2-cdb-21`
|
|
10898
|
+
#
|
|
10837
10899
|
# * `postgres10`
|
|
10838
10900
|
#
|
|
10839
10901
|
# * `postgres11`
|
|
@@ -11349,6 +11411,9 @@ module Aws::RDS
|
|
|
11349
11411
|
#
|
|
11350
11412
|
# Constraints: Minimum 20, maximum 100.
|
|
11351
11413
|
#
|
|
11414
|
+
# @option params [String] :source_type
|
|
11415
|
+
# The type of source for the export.
|
|
11416
|
+
#
|
|
11352
11417
|
# @return [Types::ExportTasksMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
11353
11418
|
#
|
|
11354
11419
|
# * {Types::ExportTasksMessage#marker #marker} => String
|
|
@@ -11369,6 +11434,7 @@ module Aws::RDS
|
|
|
11369
11434
|
# ],
|
|
11370
11435
|
# marker: "String",
|
|
11371
11436
|
# max_records: 1,
|
|
11437
|
+
# source_type: "SNAPSHOT", # accepts SNAPSHOT, CLUSTER
|
|
11372
11438
|
# })
|
|
11373
11439
|
#
|
|
11374
11440
|
# @example Response structure
|
|
@@ -11391,6 +11457,7 @@ module Aws::RDS
|
|
|
11391
11457
|
# resp.export_tasks[0].total_extracted_data_in_gb #=> Integer
|
|
11392
11458
|
# resp.export_tasks[0].failure_cause #=> String
|
|
11393
11459
|
# resp.export_tasks[0].warning_message #=> String
|
|
11460
|
+
# resp.export_tasks[0].source_type #=> String, one of "SNAPSHOT", "CLUSTER"
|
|
11394
11461
|
#
|
|
11395
11462
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeExportTasks AWS API Documentation
|
|
11396
11463
|
#
|
|
@@ -11940,6 +12007,11 @@ module Aws::RDS
|
|
|
11940
12007
|
# resp.orderable_db_instance_options[0].supports_clusters #=> Boolean
|
|
11941
12008
|
# resp.orderable_db_instance_options[0].supported_network_types #=> Array
|
|
11942
12009
|
# resp.orderable_db_instance_options[0].supported_network_types[0] #=> String
|
|
12010
|
+
# resp.orderable_db_instance_options[0].supports_storage_throughput #=> Boolean
|
|
12011
|
+
# resp.orderable_db_instance_options[0].min_storage_throughput_per_db_instance #=> Integer
|
|
12012
|
+
# resp.orderable_db_instance_options[0].max_storage_throughput_per_db_instance #=> Integer
|
|
12013
|
+
# resp.orderable_db_instance_options[0].min_storage_throughput_per_iops #=> Float
|
|
12014
|
+
# resp.orderable_db_instance_options[0].max_storage_throughput_per_iops #=> Float
|
|
11943
12015
|
# resp.marker #=> String
|
|
11944
12016
|
#
|
|
11945
12017
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptions AWS API Documentation
|
|
@@ -12494,6 +12566,13 @@ module Aws::RDS
|
|
|
12494
12566
|
# resp.valid_db_instance_modifications_message.storage[0].iops_to_storage_ratio[0].from #=> Float
|
|
12495
12567
|
# resp.valid_db_instance_modifications_message.storage[0].iops_to_storage_ratio[0].to #=> Float
|
|
12496
12568
|
# resp.valid_db_instance_modifications_message.storage[0].supports_storage_autoscaling #=> Boolean
|
|
12569
|
+
# resp.valid_db_instance_modifications_message.storage[0].provisioned_storage_throughput #=> Array
|
|
12570
|
+
# resp.valid_db_instance_modifications_message.storage[0].provisioned_storage_throughput[0].from #=> Integer
|
|
12571
|
+
# resp.valid_db_instance_modifications_message.storage[0].provisioned_storage_throughput[0].to #=> Integer
|
|
12572
|
+
# resp.valid_db_instance_modifications_message.storage[0].provisioned_storage_throughput[0].step #=> Integer
|
|
12573
|
+
# resp.valid_db_instance_modifications_message.storage[0].storage_throughput_to_iops_ratio #=> Array
|
|
12574
|
+
# resp.valid_db_instance_modifications_message.storage[0].storage_throughput_to_iops_ratio[0].from #=> Float
|
|
12575
|
+
# resp.valid_db_instance_modifications_message.storage[0].storage_throughput_to_iops_ratio[0].to #=> Float
|
|
12497
12576
|
# resp.valid_db_instance_modifications_message.valid_processor_features #=> Array
|
|
12498
12577
|
# resp.valid_db_instance_modifications_message.valid_processor_features[0].name #=> String
|
|
12499
12578
|
# resp.valid_db_instance_modifications_message.valid_processor_features[0].default_value #=> String
|
|
@@ -13750,9 +13829,8 @@ module Aws::RDS
|
|
|
13750
13829
|
# be initially allocated for each DB instance in the Multi-AZ DB
|
|
13751
13830
|
# cluster.
|
|
13752
13831
|
#
|
|
13753
|
-
# For information about valid
|
|
13754
|
-
# IOPS
|
|
13755
|
-
# Guide*.
|
|
13832
|
+
# For information about valid IOPS values, see [Amazon RDS Provisioned
|
|
13833
|
+
# IOPS storage][1] in the *Amazon RDS User Guide*.
|
|
13756
13834
|
#
|
|
13757
13835
|
# Constraints: Must be a multiple between .5 and 50 of the storage
|
|
13758
13836
|
# amount for the DB cluster.
|
|
@@ -14812,7 +14890,7 @@ module Aws::RDS
|
|
|
14812
14890
|
# rebooting the instance, deleting the instance, creating a read replica
|
|
14813
14891
|
# for the instance, and creating a DB snapshot of the instance.
|
|
14814
14892
|
#
|
|
14815
|
-
# Valid values: `
|
|
14893
|
+
# Valid values: `gp2 | gp3 | io1 | standard`
|
|
14816
14894
|
#
|
|
14817
14895
|
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
|
14818
14896
|
#
|
|
@@ -15208,6 +15286,11 @@ module Aws::RDS
|
|
|
15208
15286
|
#
|
|
15209
15287
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
15210
15288
|
#
|
|
15289
|
+
# @option params [Integer] :storage_throughput
|
|
15290
|
+
# Specifies the storage throughput value for the DB instance.
|
|
15291
|
+
#
|
|
15292
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
15293
|
+
#
|
|
15211
15294
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
15212
15295
|
#
|
|
15213
15296
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -15293,6 +15376,7 @@ module Aws::RDS
|
|
|
15293
15376
|
# automation_mode: "full", # accepts full, all-paused
|
|
15294
15377
|
# resume_full_automation_mode_minutes: 1,
|
|
15295
15378
|
# network_type: "String",
|
|
15379
|
+
# storage_throughput: 1,
|
|
15296
15380
|
# })
|
|
15297
15381
|
#
|
|
15298
15382
|
# @example Response structure
|
|
@@ -15357,6 +15441,7 @@ module Aws::RDS
|
|
|
15357
15441
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
15358
15442
|
# resp.db_instance.pending_modified_values.automation_mode #=> String, one of "full", "all-paused"
|
|
15359
15443
|
# resp.db_instance.pending_modified_values.resume_full_automation_mode_time #=> Time
|
|
15444
|
+
# resp.db_instance.pending_modified_values.storage_throughput #=> Integer
|
|
15360
15445
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
15361
15446
|
# resp.db_instance.multi_az #=> Boolean
|
|
15362
15447
|
# resp.db_instance.engine_version #=> String
|
|
@@ -15437,6 +15522,7 @@ module Aws::RDS
|
|
|
15437
15522
|
# resp.db_instance.backup_target #=> String
|
|
15438
15523
|
# resp.db_instance.network_type #=> String
|
|
15439
15524
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
|
15525
|
+
# resp.db_instance.storage_throughput #=> Integer
|
|
15440
15526
|
#
|
|
15441
15527
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
|
15442
15528
|
#
|
|
@@ -15884,6 +15970,7 @@ module Aws::RDS
|
|
|
15884
15970
|
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
|
15885
15971
|
# resp.db_snapshot.snapshot_database_time #=> Time
|
|
15886
15972
|
# resp.db_snapshot.snapshot_target #=> String
|
|
15973
|
+
# resp.db_snapshot.storage_throughput #=> Integer
|
|
15887
15974
|
#
|
|
15888
15975
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
|
15889
15976
|
#
|
|
@@ -16588,6 +16675,7 @@ module Aws::RDS
|
|
|
16588
16675
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
16589
16676
|
# resp.db_instance.pending_modified_values.automation_mode #=> String, one of "full", "all-paused"
|
|
16590
16677
|
# resp.db_instance.pending_modified_values.resume_full_automation_mode_time #=> Time
|
|
16678
|
+
# resp.db_instance.pending_modified_values.storage_throughput #=> Integer
|
|
16591
16679
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
16592
16680
|
# resp.db_instance.multi_az #=> Boolean
|
|
16593
16681
|
# resp.db_instance.engine_version #=> String
|
|
@@ -16668,6 +16756,7 @@ module Aws::RDS
|
|
|
16668
16756
|
# resp.db_instance.backup_target #=> String
|
|
16669
16757
|
# resp.db_instance.network_type #=> String
|
|
16670
16758
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
|
16759
|
+
# resp.db_instance.storage_throughput #=> Integer
|
|
16671
16760
|
#
|
|
16672
16761
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
|
16673
16762
|
#
|
|
@@ -17187,6 +17276,7 @@ module Aws::RDS
|
|
|
17187
17276
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
17188
17277
|
# resp.db_instance.pending_modified_values.automation_mode #=> String, one of "full", "all-paused"
|
|
17189
17278
|
# resp.db_instance.pending_modified_values.resume_full_automation_mode_time #=> Time
|
|
17279
|
+
# resp.db_instance.pending_modified_values.storage_throughput #=> Integer
|
|
17190
17280
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
17191
17281
|
# resp.db_instance.multi_az #=> Boolean
|
|
17192
17282
|
# resp.db_instance.engine_version #=> String
|
|
@@ -17267,6 +17357,7 @@ module Aws::RDS
|
|
|
17267
17357
|
# resp.db_instance.backup_target #=> String
|
|
17268
17358
|
# resp.db_instance.network_type #=> String
|
|
17269
17359
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
|
17360
|
+
# resp.db_instance.storage_throughput #=> Integer
|
|
17270
17361
|
#
|
|
17271
17362
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
|
17272
17363
|
#
|
|
@@ -18665,9 +18756,8 @@ module Aws::RDS
|
|
|
18665
18756
|
# be initially allocated for each DB instance in the Multi-AZ DB
|
|
18666
18757
|
# cluster.
|
|
18667
18758
|
#
|
|
18668
|
-
# For information about valid
|
|
18669
|
-
# IOPS
|
|
18670
|
-
# Guide*.
|
|
18759
|
+
# For information about valid IOPS values, see [Amazon RDS Provisioned
|
|
18760
|
+
# IOPS storage][1] in the *Amazon RDS User Guide*.
|
|
18671
18761
|
#
|
|
18672
18762
|
# Constraints: Must be a multiple between .5 and 50 of the storage
|
|
18673
18763
|
# amount for the DB instance.
|
|
@@ -19307,9 +19397,8 @@ module Aws::RDS
|
|
|
19307
19397
|
# be initially allocated for each DB instance in the Multi-AZ DB
|
|
19308
19398
|
# cluster.
|
|
19309
19399
|
#
|
|
19310
|
-
# For information about valid
|
|
19311
|
-
# IOPS storage
|
|
19312
|
-
# Guide*.
|
|
19400
|
+
# For information about valid IOPS values, see [Amazon RDS Provisioned
|
|
19401
|
+
# IOPS storage][1] in the *Amazon RDS User Guide*.
|
|
19313
19402
|
#
|
|
19314
19403
|
# Constraints: Must be a multiple between .5 and 50 of the storage
|
|
19315
19404
|
# amount for the DB instance.
|
|
@@ -19718,8 +19807,7 @@ module Aws::RDS
|
|
|
19718
19807
|
#
|
|
19719
19808
|
# The provisioned IOPS value must follow the requirements for your
|
|
19720
19809
|
# database engine. For more information, see [Amazon RDS Provisioned
|
|
19721
|
-
# IOPS
|
|
19722
|
-
# Guide.*
|
|
19810
|
+
# IOPS storage][1] in the *Amazon RDS User Guide.*
|
|
19723
19811
|
#
|
|
19724
19812
|
# Constraints: Must be an integer greater than 1000.
|
|
19725
19813
|
#
|
|
@@ -19748,10 +19836,10 @@ module Aws::RDS
|
|
|
19748
19836
|
# @option params [String] :storage_type
|
|
19749
19837
|
# Specifies the storage type to be associated with the DB instance.
|
|
19750
19838
|
#
|
|
19751
|
-
# Valid values: `
|
|
19839
|
+
# Valid values: `gp2 | gp3 | io1 | standard`
|
|
19752
19840
|
#
|
|
19753
|
-
# If you specify `io1`, you must also include a value for the
|
|
19754
|
-
# parameter.
|
|
19841
|
+
# If you specify `io1` or `gp3`, you must also include a value for the
|
|
19842
|
+
# `Iops` parameter.
|
|
19755
19843
|
#
|
|
19756
19844
|
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
|
19757
19845
|
#
|
|
@@ -19958,6 +20046,11 @@ module Aws::RDS
|
|
|
19958
20046
|
#
|
|
19959
20047
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
19960
20048
|
#
|
|
20049
|
+
# @option params [Integer] :storage_throughput
|
|
20050
|
+
# Specifies the storage throughput value for the DB instance.
|
|
20051
|
+
#
|
|
20052
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
20053
|
+
#
|
|
19961
20054
|
# @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
19962
20055
|
#
|
|
19963
20056
|
# * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -20102,6 +20195,7 @@ module Aws::RDS
|
|
|
20102
20195
|
# custom_iam_instance_profile: "String",
|
|
20103
20196
|
# backup_target: "String",
|
|
20104
20197
|
# network_type: "String",
|
|
20198
|
+
# storage_throughput: 1,
|
|
20105
20199
|
# })
|
|
20106
20200
|
#
|
|
20107
20201
|
# @example Response structure
|
|
@@ -20166,6 +20260,7 @@ module Aws::RDS
|
|
|
20166
20260
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
20167
20261
|
# resp.db_instance.pending_modified_values.automation_mode #=> String, one of "full", "all-paused"
|
|
20168
20262
|
# resp.db_instance.pending_modified_values.resume_full_automation_mode_time #=> Time
|
|
20263
|
+
# resp.db_instance.pending_modified_values.storage_throughput #=> Integer
|
|
20169
20264
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
20170
20265
|
# resp.db_instance.multi_az #=> Boolean
|
|
20171
20266
|
# resp.db_instance.engine_version #=> String
|
|
@@ -20246,6 +20341,7 @@ module Aws::RDS
|
|
|
20246
20341
|
# resp.db_instance.backup_target #=> String
|
|
20247
20342
|
# resp.db_instance.network_type #=> String
|
|
20248
20343
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
|
20344
|
+
# resp.db_instance.storage_throughput #=> Integer
|
|
20249
20345
|
#
|
|
20250
20346
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
|
20251
20347
|
#
|
|
@@ -20450,8 +20546,8 @@ module Aws::RDS
|
|
|
20450
20546
|
# @option params [Integer] :iops
|
|
20451
20547
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
|
20452
20548
|
# allocate initially for the DB instance. For information about valid
|
|
20453
|
-
#
|
|
20454
|
-
#
|
|
20549
|
+
# IOPS values, see [Amazon RDS Provisioned IOPS storage][1] in the
|
|
20550
|
+
# *Amazon RDS User Guide.*
|
|
20455
20551
|
#
|
|
20456
20552
|
#
|
|
20457
20553
|
#
|
|
@@ -20490,10 +20586,10 @@ module Aws::RDS
|
|
|
20490
20586
|
# @option params [String] :storage_type
|
|
20491
20587
|
# Specifies the storage type to be associated with the DB instance.
|
|
20492
20588
|
#
|
|
20493
|
-
# Valid values: `
|
|
20589
|
+
# Valid values: `gp2 | gp3 | io1 | standard`
|
|
20494
20590
|
#
|
|
20495
|
-
# If you specify `io1`, you must also include a value for the
|
|
20496
|
-
# parameter.
|
|
20591
|
+
# If you specify `io1` or `gp3`, you must also include a value for the
|
|
20592
|
+
# `Iops` parameter.
|
|
20497
20593
|
#
|
|
20498
20594
|
# Default: `io1` if the `Iops` parameter is specified; otherwise `gp2`
|
|
20499
20595
|
#
|
|
@@ -20688,6 +20784,11 @@ module Aws::RDS
|
|
|
20688
20784
|
#
|
|
20689
20785
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
20690
20786
|
#
|
|
20787
|
+
# @option params [Integer] :storage_throughput
|
|
20788
|
+
# Specifies the storage throughput value for the DB instance.
|
|
20789
|
+
#
|
|
20790
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
20791
|
+
#
|
|
20691
20792
|
# @return [Types::RestoreDBInstanceFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
20692
20793
|
#
|
|
20693
20794
|
# * {Types::RestoreDBInstanceFromS3Result#db_instance #db_instance} => Types::DBInstance
|
|
@@ -20750,6 +20851,7 @@ module Aws::RDS
|
|
|
20750
20851
|
# deletion_protection: false,
|
|
20751
20852
|
# max_allocated_storage: 1,
|
|
20752
20853
|
# network_type: "String",
|
|
20854
|
+
# storage_throughput: 1,
|
|
20753
20855
|
# })
|
|
20754
20856
|
#
|
|
20755
20857
|
# @example Response structure
|
|
@@ -20814,6 +20916,7 @@ module Aws::RDS
|
|
|
20814
20916
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
20815
20917
|
# resp.db_instance.pending_modified_values.automation_mode #=> String, one of "full", "all-paused"
|
|
20816
20918
|
# resp.db_instance.pending_modified_values.resume_full_automation_mode_time #=> Time
|
|
20919
|
+
# resp.db_instance.pending_modified_values.storage_throughput #=> Integer
|
|
20817
20920
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
20818
20921
|
# resp.db_instance.multi_az #=> Boolean
|
|
20819
20922
|
# resp.db_instance.engine_version #=> String
|
|
@@ -20894,6 +20997,7 @@ module Aws::RDS
|
|
|
20894
20997
|
# resp.db_instance.backup_target #=> String
|
|
20895
20998
|
# resp.db_instance.network_type #=> String
|
|
20896
20999
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
|
21000
|
+
# resp.db_instance.storage_throughput #=> Integer
|
|
20897
21001
|
#
|
|
20898
21002
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
|
20899
21003
|
#
|
|
@@ -21123,10 +21227,10 @@ module Aws::RDS
|
|
|
21123
21227
|
# @option params [String] :storage_type
|
|
21124
21228
|
# Specifies the storage type to be associated with the DB instance.
|
|
21125
21229
|
#
|
|
21126
|
-
# Valid values: `
|
|
21230
|
+
# Valid values: `gp2 | gp3 | io1 | standard`
|
|
21127
21231
|
#
|
|
21128
|
-
# If you specify `io1`, you must also include a value for the
|
|
21129
|
-
# parameter.
|
|
21232
|
+
# If you specify `io1` or `gp3`, you must also include a value for the
|
|
21233
|
+
# `Iops` parameter.
|
|
21130
21234
|
#
|
|
21131
21235
|
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
|
21132
21236
|
#
|
|
@@ -21339,6 +21443,11 @@ module Aws::RDS
|
|
|
21339
21443
|
#
|
|
21340
21444
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
21341
21445
|
#
|
|
21446
|
+
# @option params [Integer] :storage_throughput
|
|
21447
|
+
# Specifies the storage throughput value for the DB instance.
|
|
21448
|
+
#
|
|
21449
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
21450
|
+
#
|
|
21342
21451
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
21343
21452
|
#
|
|
21344
21453
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -21489,6 +21598,7 @@ module Aws::RDS
|
|
|
21489
21598
|
# custom_iam_instance_profile: "String",
|
|
21490
21599
|
# backup_target: "String",
|
|
21491
21600
|
# network_type: "String",
|
|
21601
|
+
# storage_throughput: 1,
|
|
21492
21602
|
# })
|
|
21493
21603
|
#
|
|
21494
21604
|
# @example Response structure
|
|
@@ -21553,6 +21663,7 @@ module Aws::RDS
|
|
|
21553
21663
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
21554
21664
|
# resp.db_instance.pending_modified_values.automation_mode #=> String, one of "full", "all-paused"
|
|
21555
21665
|
# resp.db_instance.pending_modified_values.resume_full_automation_mode_time #=> Time
|
|
21666
|
+
# resp.db_instance.pending_modified_values.storage_throughput #=> Integer
|
|
21556
21667
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
21557
21668
|
# resp.db_instance.multi_az #=> Boolean
|
|
21558
21669
|
# resp.db_instance.engine_version #=> String
|
|
@@ -21633,6 +21744,7 @@ module Aws::RDS
|
|
|
21633
21744
|
# resp.db_instance.backup_target #=> String
|
|
21634
21745
|
# resp.db_instance.network_type #=> String
|
|
21635
21746
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
|
21747
|
+
# resp.db_instance.storage_throughput #=> Integer
|
|
21636
21748
|
#
|
|
21637
21749
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
|
21638
21750
|
#
|
|
@@ -22053,6 +22165,7 @@ module Aws::RDS
|
|
|
22053
22165
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
22054
22166
|
# resp.db_instance.pending_modified_values.automation_mode #=> String, one of "full", "all-paused"
|
|
22055
22167
|
# resp.db_instance.pending_modified_values.resume_full_automation_mode_time #=> Time
|
|
22168
|
+
# resp.db_instance.pending_modified_values.storage_throughput #=> Integer
|
|
22056
22169
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
22057
22170
|
# resp.db_instance.multi_az #=> Boolean
|
|
22058
22171
|
# resp.db_instance.engine_version #=> String
|
|
@@ -22133,6 +22246,7 @@ module Aws::RDS
|
|
|
22133
22246
|
# resp.db_instance.backup_target #=> String
|
|
22134
22247
|
# resp.db_instance.network_type #=> String
|
|
22135
22248
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
|
22249
|
+
# resp.db_instance.storage_throughput #=> Integer
|
|
22136
22250
|
#
|
|
22137
22251
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
|
22138
22252
|
#
|
|
@@ -22250,6 +22364,7 @@ module Aws::RDS
|
|
|
22250
22364
|
# resp.db_instance_automated_backup.db_instance_automated_backups_replications #=> Array
|
|
22251
22365
|
# resp.db_instance_automated_backup.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
|
22252
22366
|
# resp.db_instance_automated_backup.backup_target #=> String
|
|
22367
|
+
# resp.db_instance_automated_backup.storage_throughput #=> Integer
|
|
22253
22368
|
#
|
|
22254
22369
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstanceAutomatedBackupsReplication AWS API Documentation
|
|
22255
22370
|
#
|
|
@@ -22346,6 +22461,7 @@ module Aws::RDS
|
|
|
22346
22461
|
# * {Types::ExportTask#total_extracted_data_in_gb #total_extracted_data_in_gb} => Integer
|
|
22347
22462
|
# * {Types::ExportTask#failure_cause #failure_cause} => String
|
|
22348
22463
|
# * {Types::ExportTask#warning_message #warning_message} => String
|
|
22464
|
+
# * {Types::ExportTask#source_type #source_type} => String
|
|
22349
22465
|
#
|
|
22350
22466
|
# @example Request syntax with placeholder values
|
|
22351
22467
|
#
|
|
@@ -22377,6 +22493,7 @@ module Aws::RDS
|
|
|
22377
22493
|
# resp.total_extracted_data_in_gb #=> Integer
|
|
22378
22494
|
# resp.failure_cause #=> String
|
|
22379
22495
|
# resp.warning_message #=> String
|
|
22496
|
+
# resp.source_type #=> String, one of "SNAPSHOT", "CLUSTER"
|
|
22380
22497
|
#
|
|
22381
22498
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartExportTask AWS API Documentation
|
|
22382
22499
|
#
|
|
@@ -22679,6 +22796,7 @@ module Aws::RDS
|
|
|
22679
22796
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
22680
22797
|
# resp.db_instance.pending_modified_values.automation_mode #=> String, one of "full", "all-paused"
|
|
22681
22798
|
# resp.db_instance.pending_modified_values.resume_full_automation_mode_time #=> Time
|
|
22799
|
+
# resp.db_instance.pending_modified_values.storage_throughput #=> Integer
|
|
22682
22800
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
22683
22801
|
# resp.db_instance.multi_az #=> Boolean
|
|
22684
22802
|
# resp.db_instance.engine_version #=> String
|
|
@@ -22759,6 +22877,7 @@ module Aws::RDS
|
|
|
22759
22877
|
# resp.db_instance.backup_target #=> String
|
|
22760
22878
|
# resp.db_instance.network_type #=> String
|
|
22761
22879
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
|
22880
|
+
# resp.db_instance.storage_throughput #=> Integer
|
|
22762
22881
|
#
|
|
22763
22882
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
|
22764
22883
|
#
|
|
@@ -22827,6 +22946,7 @@ module Aws::RDS
|
|
|
22827
22946
|
# resp.db_instance_automated_backup.db_instance_automated_backups_replications #=> Array
|
|
22828
22947
|
# resp.db_instance_automated_backup.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
|
22829
22948
|
# resp.db_instance_automated_backup.backup_target #=> String
|
|
22949
|
+
# resp.db_instance_automated_backup.storage_throughput #=> Integer
|
|
22830
22950
|
#
|
|
22831
22951
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstanceAutomatedBackupsReplication AWS API Documentation
|
|
22832
22952
|
#
|
|
@@ -22924,6 +23044,7 @@ module Aws::RDS
|
|
|
22924
23044
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
22925
23045
|
# resp.db_instance.pending_modified_values.automation_mode #=> String, one of "full", "all-paused"
|
|
22926
23046
|
# resp.db_instance.pending_modified_values.resume_full_automation_mode_time #=> Time
|
|
23047
|
+
# resp.db_instance.pending_modified_values.storage_throughput #=> Integer
|
|
22927
23048
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
22928
23049
|
# resp.db_instance.multi_az #=> Boolean
|
|
22929
23050
|
# resp.db_instance.engine_version #=> String
|
|
@@ -23004,6 +23125,7 @@ module Aws::RDS
|
|
|
23004
23125
|
# resp.db_instance.backup_target #=> String
|
|
23005
23126
|
# resp.db_instance.network_type #=> String
|
|
23006
23127
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
|
23128
|
+
# resp.db_instance.storage_throughput #=> Integer
|
|
23007
23129
|
#
|
|
23008
23130
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica AWS API Documentation
|
|
23009
23131
|
#
|
|
@@ -23027,7 +23149,7 @@ module Aws::RDS
|
|
|
23027
23149
|
params: params,
|
|
23028
23150
|
config: config)
|
|
23029
23151
|
context[:gem_name] = 'aws-sdk-rds'
|
|
23030
|
-
context[:gem_version] = '1.
|
|
23152
|
+
context[:gem_version] = '1.158.0'
|
|
23031
23153
|
Seahorse::Client::Request.new(handlers, context)
|
|
23032
23154
|
end
|
|
23033
23155
|
|