aws-sdk-rds 1.171.0 → 1.172.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +132 -124
- data/lib/aws-sdk-rds/db_cluster.rb +2 -1
- data/lib/aws-sdk-rds/db_instance.rb +5 -5
- data/lib/aws-sdk-rds/db_snapshot.rb +5 -6
- data/lib/aws-sdk-rds/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-rds/endpoint_provider.rb +28 -40
- data/lib/aws-sdk-rds/resource.rb +2 -1
- data/lib/aws-sdk-rds/types.rb +97 -75
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ea808a9c8abd0a1013fb0b904c61dd8cf86147aeb1a579f51b1919b1c733d17
|
|
4
|
+
data.tar.gz: c3033c82438f3f203352af44b9bec06f847537235d07d3d6c70d0acd3d6a7a22
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7c317220f359649b378302859ee1668df58dcaacbc94de1790961b66d3547290c2a2d79da0d15d08bd11060312dd4275885967f88905a1cf788ea24659ae4dc0
|
|
7
|
+
data.tar.gz: 946390c0517ab6238fdbe90681f53d0e5d89bddccdae145e4549739372ef6a80a0c20004ec1d9eaaca0471ba9eb8dbfd6ad52815f9b9ffd539cf349caec3490d
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.172.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -885,12 +885,12 @@ module Aws::RDS
|
|
|
885
885
|
req.send_request(options)
|
|
886
886
|
end
|
|
887
887
|
|
|
888
|
-
# Cancels an export task in progress that is exporting a snapshot
|
|
889
|
-
# Amazon S3. Any data that has already been written to the S3
|
|
890
|
-
# isn't removed.
|
|
888
|
+
# Cancels an export task in progress that is exporting a snapshot or
|
|
889
|
+
# cluster to Amazon S3. Any data that has already been written to the S3
|
|
890
|
+
# bucket isn't removed.
|
|
891
891
|
#
|
|
892
892
|
# @option params [required, String] :export_task_identifier
|
|
893
|
-
# The identifier of the snapshot export task to cancel.
|
|
893
|
+
# The identifier of the snapshot or cluster export task to cancel.
|
|
894
894
|
#
|
|
895
895
|
# @return [Types::ExportTask] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
896
896
|
#
|
|
@@ -1080,9 +1080,8 @@ module Aws::RDS
|
|
|
1080
1080
|
# For more information on Amazon Aurora DB clusters, see [ What is
|
|
1081
1081
|
# Amazon Aurora?][2] in the *Amazon Aurora User Guide*.
|
|
1082
1082
|
#
|
|
1083
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
1084
|
-
# deployments
|
|
1085
|
-
# RDS User Guide*.
|
|
1083
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
1084
|
+
# cluster deployments][3] in the *Amazon RDS User Guide*.
|
|
1086
1085
|
#
|
|
1087
1086
|
#
|
|
1088
1087
|
#
|
|
@@ -2134,14 +2133,15 @@ module Aws::RDS
|
|
|
2134
2133
|
#
|
|
2135
2134
|
# You can use the `ReplicationSourceIdentifier` parameter to create an
|
|
2136
2135
|
# Amazon Aurora DB cluster as a read replica of another DB cluster or
|
|
2137
|
-
# Amazon RDS MySQL or PostgreSQL DB instance.
|
|
2138
|
-
#
|
|
2139
|
-
#
|
|
2140
|
-
# Aurora?][1] in the *Amazon Aurora User Guide*.
|
|
2136
|
+
# Amazon RDS MySQL or PostgreSQL DB instance. For more information about
|
|
2137
|
+
# Amazon Aurora, see [What is Amazon Aurora?][1] in the *Amazon Aurora
|
|
2138
|
+
# User Guide*.
|
|
2141
2139
|
#
|
|
2142
|
-
#
|
|
2143
|
-
#
|
|
2144
|
-
#
|
|
2140
|
+
# You can also use the `ReplicationSourceIdentifier` parameter to create
|
|
2141
|
+
# a Multi-AZ DB cluster read replica with an RDS for PostgreSQL DB
|
|
2142
|
+
# instance as the source. For more information about Multi-AZ DB
|
|
2143
|
+
# clusters, see [Multi-AZ DB cluster deployments][2] in the *Amazon RDS
|
|
2144
|
+
# User Guide*.
|
|
2145
2145
|
#
|
|
2146
2146
|
#
|
|
2147
2147
|
#
|
|
@@ -2417,7 +2417,8 @@ module Aws::RDS
|
|
|
2417
2417
|
# The Amazon Resource Name (ARN) of the source DB instance or DB cluster
|
|
2418
2418
|
# if this DB cluster is created as a read replica.
|
|
2419
2419
|
#
|
|
2420
|
-
# Valid for: Aurora DB clusters
|
|
2420
|
+
# Valid for: Aurora DB clusters and RDS for PostgreSQL Multi-AZ DB
|
|
2421
|
+
# clusters
|
|
2421
2422
|
#
|
|
2422
2423
|
# @option params [Array<Types::Tag>] :tags
|
|
2423
2424
|
# Tags to assign to the DB cluster.
|
|
@@ -3319,9 +3320,8 @@ module Aws::RDS
|
|
|
3319
3320
|
# For more information on Amazon Aurora, see [ What is Amazon
|
|
3320
3321
|
# Aurora?][2] in the *Amazon Aurora User Guide*.
|
|
3321
3322
|
#
|
|
3322
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
3323
|
-
# deployments
|
|
3324
|
-
# RDS User Guide*.
|
|
3323
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
3324
|
+
# cluster deployments][3] in the *Amazon RDS User Guide*.
|
|
3325
3325
|
#
|
|
3326
3326
|
#
|
|
3327
3327
|
#
|
|
@@ -3457,9 +3457,8 @@ module Aws::RDS
|
|
|
3457
3457
|
# For more information on Amazon Aurora, see [ What is Amazon
|
|
3458
3458
|
# Aurora?][1] in the *Amazon Aurora User Guide*.
|
|
3459
3459
|
#
|
|
3460
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
3461
|
-
# deployments
|
|
3462
|
-
# RDS User Guide*.
|
|
3460
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
3461
|
+
# cluster deployments][2] in the *Amazon RDS User Guide*.
|
|
3463
3462
|
#
|
|
3464
3463
|
#
|
|
3465
3464
|
#
|
|
@@ -5589,8 +5588,8 @@ module Aws::RDS
|
|
|
5589
5588
|
# read replica. Follow the allocation rules specified in
|
|
5590
5589
|
# `CreateDBInstance`.
|
|
5591
5590
|
#
|
|
5592
|
-
# <note markdown="1"> Be sure to allocate enough
|
|
5593
|
-
# create operation can succeed. You can also allocate additional
|
|
5591
|
+
# <note markdown="1"> Be sure to allocate enough storage for your read replica so that the
|
|
5592
|
+
# create operation can succeed. You can also allocate additional storage
|
|
5594
5593
|
# for future growth.
|
|
5595
5594
|
#
|
|
5596
5595
|
# </note>
|
|
@@ -6939,7 +6938,12 @@ module Aws::RDS
|
|
|
6939
6938
|
#
|
|
6940
6939
|
# @option params [Boolean] :delete_target
|
|
6941
6940
|
# A value that indicates whether to delete the resources in the green
|
|
6942
|
-
# environment.
|
|
6941
|
+
# environment. You can't specify this option if the blue/green
|
|
6942
|
+
# deployment [status][1] is `SWITCHOVER_COMPLETED`.
|
|
6943
|
+
#
|
|
6944
|
+
#
|
|
6945
|
+
#
|
|
6946
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_BlueGreenDeployment.html
|
|
6943
6947
|
#
|
|
6944
6948
|
# @return [Types::DeleteBlueGreenDeploymentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6945
6949
|
#
|
|
@@ -7004,7 +7008,7 @@ module Aws::RDS
|
|
|
7004
7008
|
#
|
|
7005
7009
|
# </note>
|
|
7006
7010
|
#
|
|
7007
|
-
# For more information, see [
|
|
7011
|
+
# For more information, see [Deleting a CEV][1] in the *Amazon RDS User
|
|
7008
7012
|
# Guide*.
|
|
7009
7013
|
#
|
|
7010
7014
|
#
|
|
@@ -7135,9 +7139,8 @@ module Aws::RDS
|
|
|
7135
7139
|
# For more information on Amazon Aurora, see [ What is Amazon
|
|
7136
7140
|
# Aurora?][1] in the *Amazon Aurora User Guide*.
|
|
7137
7141
|
#
|
|
7138
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
7139
|
-
# deployments
|
|
7140
|
-
# RDS User Guide*.
|
|
7142
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
7143
|
+
# cluster deployments][2] in the *Amazon RDS User Guide*.
|
|
7141
7144
|
#
|
|
7142
7145
|
#
|
|
7143
7146
|
#
|
|
@@ -7396,9 +7399,8 @@ module Aws::RDS
|
|
|
7396
7399
|
# For more information on Amazon Aurora, see [ What is Amazon
|
|
7397
7400
|
# Aurora?][1] in the *Amazon Aurora User Guide*.
|
|
7398
7401
|
#
|
|
7399
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
7400
|
-
# deployments
|
|
7401
|
-
# RDS User Guide*.
|
|
7402
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
7403
|
+
# cluster deployments][2] in the *Amazon RDS User Guide*.
|
|
7402
7404
|
#
|
|
7403
7405
|
#
|
|
7404
7406
|
#
|
|
@@ -7453,9 +7455,8 @@ module Aws::RDS
|
|
|
7453
7455
|
# For more information on Amazon Aurora, see [ What is Amazon
|
|
7454
7456
|
# Aurora?][1] in the *Amazon Aurora User Guide*.
|
|
7455
7457
|
#
|
|
7456
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
7457
|
-
# deployments
|
|
7458
|
-
# RDS User Guide*.
|
|
7458
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
7459
|
+
# cluster deployments][2] in the *Amazon RDS User Guide*.
|
|
7459
7460
|
#
|
|
7460
7461
|
#
|
|
7461
7462
|
#
|
|
@@ -8862,9 +8863,8 @@ module Aws::RDS
|
|
|
8862
8863
|
# For more information on Amazon Aurora, see [ What is Amazon
|
|
8863
8864
|
# Aurora?][1] in the *Amazon Aurora User Guide*.
|
|
8864
8865
|
#
|
|
8865
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
8866
|
-
# deployments
|
|
8867
|
-
# RDS User Guide*.
|
|
8866
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
8867
|
+
# cluster deployments][2] in the *Amazon RDS User Guide*.
|
|
8868
8868
|
#
|
|
8869
8869
|
#
|
|
8870
8870
|
#
|
|
@@ -8959,9 +8959,8 @@ module Aws::RDS
|
|
|
8959
8959
|
# For more information on Amazon Aurora, see [ What is Amazon
|
|
8960
8960
|
# Aurora?][1] in the *Amazon Aurora User Guide*.
|
|
8961
8961
|
#
|
|
8962
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
8963
|
-
# deployments
|
|
8964
|
-
# RDS User Guide*.
|
|
8962
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
8963
|
+
# cluster deployments][2] in the *Amazon RDS User Guide*.
|
|
8965
8964
|
#
|
|
8966
8965
|
#
|
|
8967
8966
|
#
|
|
@@ -9132,9 +9131,8 @@ module Aws::RDS
|
|
|
9132
9131
|
# For more information on Amazon Aurora DB clusters, see [ What is
|
|
9133
9132
|
# Amazon Aurora?][1] in the *Amazon Aurora User Guide*.
|
|
9134
9133
|
#
|
|
9135
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
9136
|
-
# deployments
|
|
9137
|
-
# RDS User Guide*.
|
|
9134
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
9135
|
+
# cluster deployments][2] in the *Amazon RDS User Guide*.
|
|
9138
9136
|
#
|
|
9139
9137
|
#
|
|
9140
9138
|
#
|
|
@@ -9334,9 +9332,8 @@ module Aws::RDS
|
|
|
9334
9332
|
# For more information on Amazon Aurora DB clusters, see [ What is
|
|
9335
9333
|
# Amazon Aurora?][1] in the *Amazon Aurora User Guide*.
|
|
9336
9334
|
#
|
|
9337
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
9338
|
-
# deployments
|
|
9339
|
-
# RDS User Guide*.
|
|
9335
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
9336
|
+
# cluster deployments][2] in the *Amazon RDS User Guide*.
|
|
9340
9337
|
#
|
|
9341
9338
|
# This operation can also return information for Amazon Neptune DB
|
|
9342
9339
|
# instances and Amazon DocumentDB instances.
|
|
@@ -11880,29 +11877,30 @@ module Aws::RDS
|
|
|
11880
11877
|
req.send_request(options)
|
|
11881
11878
|
end
|
|
11882
11879
|
|
|
11883
|
-
# Returns information about a snapshot export to Amazon S3.
|
|
11884
|
-
# operation supports pagination.
|
|
11880
|
+
# Returns information about a snapshot or cluster export to Amazon S3.
|
|
11881
|
+
# This API operation supports pagination.
|
|
11885
11882
|
#
|
|
11886
11883
|
# @option params [String] :export_task_identifier
|
|
11887
|
-
# The identifier of the snapshot export task to be described.
|
|
11884
|
+
# The identifier of the snapshot or cluster export task to be described.
|
|
11888
11885
|
#
|
|
11889
11886
|
# @option params [String] :source_arn
|
|
11890
|
-
# The Amazon Resource Name (ARN) of the snapshot exported to
|
|
11887
|
+
# The Amazon Resource Name (ARN) of the snapshot or cluster exported to
|
|
11888
|
+
# Amazon S3.
|
|
11891
11889
|
#
|
|
11892
11890
|
# @option params [Array<Types::Filter>] :filters
|
|
11893
|
-
# Filters specify one or more snapshot exports to describe.
|
|
11894
|
-
# are specified as name-value pairs that define what to
|
|
11895
|
-
# output. Filter names and values are case-sensitive.
|
|
11891
|
+
# Filters specify one or more snapshot or cluster exports to describe.
|
|
11892
|
+
# The filters are specified as name-value pairs that define what to
|
|
11893
|
+
# include in the output. Filter names and values are case-sensitive.
|
|
11896
11894
|
#
|
|
11897
11895
|
# Supported filters include the following:
|
|
11898
11896
|
#
|
|
11899
|
-
# * `export-task-identifier` - An identifier for the snapshot
|
|
11900
|
-
# task.
|
|
11897
|
+
# * `export-task-identifier` - An identifier for the snapshot or cluster
|
|
11898
|
+
# export task.
|
|
11901
11899
|
#
|
|
11902
|
-
# * `s3-bucket` - The Amazon S3 bucket the
|
|
11900
|
+
# * `s3-bucket` - The Amazon S3 bucket the data is exported to.
|
|
11903
11901
|
#
|
|
11904
|
-
# * `source-arn` - The Amazon Resource Name (ARN) of the snapshot
|
|
11905
|
-
# exported to Amazon S3
|
|
11902
|
+
# * `source-arn` - The Amazon Resource Name (ARN) of the snapshot or
|
|
11903
|
+
# cluster exported to Amazon S3.
|
|
11906
11904
|
#
|
|
11907
11905
|
# * `status` - The status of the export task. Must be lowercase. Valid
|
|
11908
11906
|
# statuses are the following:
|
|
@@ -13234,9 +13232,8 @@ module Aws::RDS
|
|
|
13234
13232
|
# For more information on Amazon Aurora DB clusters, see [ What is
|
|
13235
13233
|
# Amazon Aurora?][1] in the *Amazon Aurora User Guide*.
|
|
13236
13234
|
#
|
|
13237
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
13238
|
-
# deployments
|
|
13239
|
-
# RDS User Guide*.
|
|
13235
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
13236
|
+
# cluster deployments][2] in the *Amazon RDS User Guide*.
|
|
13240
13237
|
#
|
|
13241
13238
|
#
|
|
13242
13239
|
#
|
|
@@ -13572,15 +13569,17 @@ module Aws::RDS
|
|
|
13572
13569
|
# For more information, see [ Modifying a database activity stream][1]
|
|
13573
13570
|
# in the *Amazon RDS User Guide*.
|
|
13574
13571
|
#
|
|
13575
|
-
# This operation is supported for RDS for Oracle
|
|
13572
|
+
# This operation is supported for RDS for Oracle and Microsoft SQL
|
|
13573
|
+
# Server.
|
|
13576
13574
|
#
|
|
13577
13575
|
#
|
|
13578
13576
|
#
|
|
13579
13577
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/DBActivityStreams.Modifying.html
|
|
13580
13578
|
#
|
|
13581
13579
|
# @option params [String] :resource_arn
|
|
13582
|
-
# The Amazon Resource Name (ARN) of the RDS for Oracle
|
|
13583
|
-
# example,
|
|
13580
|
+
# The Amazon Resource Name (ARN) of the RDS for Oracle or Microsoft SQL
|
|
13581
|
+
# Server DB instance. For example,
|
|
13582
|
+
# `arn:aws:rds:us-east-1:12345667890:instance:my-orcl-db`.
|
|
13584
13583
|
#
|
|
13585
13584
|
# @option params [String] :audit_policy_state
|
|
13586
13585
|
# The audit policy state. When a policy is unlocked, it is read/write.
|
|
@@ -13976,9 +13975,8 @@ module Aws::RDS
|
|
|
13976
13975
|
# For more information on Amazon Aurora DB clusters, see [ What is
|
|
13977
13976
|
# Amazon Aurora?][1] in the *Amazon Aurora User Guide*.
|
|
13978
13977
|
#
|
|
13979
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
13980
|
-
# deployments
|
|
13981
|
-
# RDS User Guide*.
|
|
13978
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
13979
|
+
# cluster deployments][2] in the *Amazon RDS User Guide*.
|
|
13982
13980
|
#
|
|
13983
13981
|
#
|
|
13984
13982
|
#
|
|
@@ -14899,9 +14897,8 @@ module Aws::RDS
|
|
|
14899
14897
|
# For more information on Amazon Aurora DB clusters, see [ What is
|
|
14900
14898
|
# Amazon Aurora?][2] in the *Amazon Aurora User Guide*.
|
|
14901
14899
|
#
|
|
14902
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
14903
|
-
# deployments
|
|
14904
|
-
# RDS User Guide.*
|
|
14900
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
14901
|
+
# cluster deployments][3] in the *Amazon RDS User Guide.*
|
|
14905
14902
|
#
|
|
14906
14903
|
#
|
|
14907
14904
|
#
|
|
@@ -17787,9 +17784,8 @@ module Aws::RDS
|
|
|
17787
17784
|
#
|
|
17788
17785
|
# Use this operation only for a non-Aurora Multi-AZ DB cluster.
|
|
17789
17786
|
#
|
|
17790
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
17791
|
-
# deployments
|
|
17792
|
-
# RDS User Guide.*
|
|
17787
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
17788
|
+
# cluster deployments][1] in the *Amazon RDS User Guide.*
|
|
17793
17789
|
#
|
|
17794
17790
|
#
|
|
17795
17791
|
#
|
|
@@ -18278,9 +18274,8 @@ module Aws::RDS
|
|
|
18278
18274
|
# For more information on Amazon Aurora DB clusters, see [ What is
|
|
18279
18275
|
# Amazon Aurora?][1] in the *Amazon Aurora User Guide*.
|
|
18280
18276
|
#
|
|
18281
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
18282
|
-
# deployments
|
|
18283
|
-
# RDS User Guide.*
|
|
18277
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
18278
|
+
# cluster deployments][2] in the *Amazon RDS User Guide.*
|
|
18284
18279
|
#
|
|
18285
18280
|
#
|
|
18286
18281
|
#
|
|
@@ -18484,9 +18479,8 @@ module Aws::RDS
|
|
|
18484
18479
|
# For more information on Amazon Aurora DB clusters, see [ What is
|
|
18485
18480
|
# Amazon Aurora?][1] in the *Amazon Aurora User Guide*.
|
|
18486
18481
|
#
|
|
18487
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
18488
|
-
# deployments
|
|
18489
|
-
# RDS User Guide.*
|
|
18482
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
18483
|
+
# cluster deployments][2] in the *Amazon RDS User Guide.*
|
|
18490
18484
|
#
|
|
18491
18485
|
#
|
|
18492
18486
|
#
|
|
@@ -19257,9 +19251,8 @@ module Aws::RDS
|
|
|
19257
19251
|
# For more information on Amazon Aurora DB clusters, see [ What is
|
|
19258
19252
|
# Amazon Aurora?][1] in the *Amazon Aurora User Guide*.
|
|
19259
19253
|
#
|
|
19260
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
19261
|
-
# deployments
|
|
19262
|
-
# RDS User Guide.*
|
|
19254
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
19255
|
+
# cluster deployments][2] in the *Amazon RDS User Guide.*
|
|
19263
19256
|
#
|
|
19264
19257
|
#
|
|
19265
19258
|
#
|
|
@@ -19900,9 +19893,8 @@ module Aws::RDS
|
|
|
19900
19893
|
# For more information on Amazon Aurora DB clusters, see [ What is
|
|
19901
19894
|
# Amazon Aurora?][1] in the *Amazon Aurora User Guide*.
|
|
19902
19895
|
#
|
|
19903
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
19904
|
-
# deployments
|
|
19905
|
-
# RDS User Guide.*
|
|
19896
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
19897
|
+
# cluster deployments][2] in the *Amazon RDS User Guide.*
|
|
19906
19898
|
#
|
|
19907
19899
|
#
|
|
19908
19900
|
#
|
|
@@ -20925,9 +20917,8 @@ module Aws::RDS
|
|
|
20925
20917
|
# The identifier for the RDS for MySQL Multi-AZ DB cluster snapshot to
|
|
20926
20918
|
# restore from.
|
|
20927
20919
|
#
|
|
20928
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
20929
|
-
# deployments
|
|
20930
|
-
# RDS User Guide*.
|
|
20920
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
20921
|
+
# cluster deployments][1] in the *Amazon RDS User Guide*.
|
|
20931
20922
|
#
|
|
20932
20923
|
# Constraints:
|
|
20933
20924
|
#
|
|
@@ -20955,9 +20946,9 @@ module Aws::RDS
|
|
|
20955
20946
|
# The amount of storage (in gibibytes) to allocate initially for the DB
|
|
20956
20947
|
# instance. Follow the allocation rules specified in CreateDBInstance.
|
|
20957
20948
|
#
|
|
20958
|
-
# <note markdown="1"> Be sure to allocate enough
|
|
20959
|
-
# restore operation can succeed. You can also allocate additional
|
|
20960
|
-
# for future growth.
|
|
20949
|
+
# <note markdown="1"> Be sure to allocate enough storage for your new DB instance so that
|
|
20950
|
+
# the restore operation can succeed. You can also allocate additional
|
|
20951
|
+
# storage for future growth.
|
|
20961
20952
|
#
|
|
20962
20953
|
# </note>
|
|
20963
20954
|
#
|
|
@@ -21305,9 +21296,9 @@ module Aws::RDS
|
|
|
21305
21296
|
# The amount of storage (in gibibytes) to allocate initially for the DB
|
|
21306
21297
|
# instance. Follow the allocation rules specified in `CreateDBInstance`.
|
|
21307
21298
|
#
|
|
21308
|
-
# <note markdown="1"> Be sure to allocate enough
|
|
21309
|
-
# restore operation can succeed. You can also allocate additional
|
|
21310
|
-
# for future growth.
|
|
21299
|
+
# <note markdown="1"> Be sure to allocate enough storage for your new DB instance so that
|
|
21300
|
+
# the restore operation can succeed. You can also allocate additional
|
|
21301
|
+
# storage for future growth.
|
|
21311
21302
|
#
|
|
21312
21303
|
# </note>
|
|
21313
21304
|
#
|
|
@@ -22440,9 +22431,9 @@ module Aws::RDS
|
|
|
22440
22431
|
# The amount of storage (in gibibytes) to allocate initially for the DB
|
|
22441
22432
|
# instance. Follow the allocation rules specified in `CreateDBInstance`.
|
|
22442
22433
|
#
|
|
22443
|
-
# <note markdown="1"> Be sure to allocate enough
|
|
22444
|
-
# restore operation can succeed. You can also allocate additional
|
|
22445
|
-
# for future growth.
|
|
22434
|
+
# <note markdown="1"> Be sure to allocate enough storage for your new DB instance so that
|
|
22435
|
+
# the restore operation can succeed. You can also allocate additional
|
|
22436
|
+
# storage for future growth.
|
|
22446
22437
|
#
|
|
22447
22438
|
# </note>
|
|
22448
22439
|
#
|
|
@@ -22898,8 +22889,8 @@ module Aws::RDS
|
|
|
22898
22889
|
#
|
|
22899
22890
|
# @option params [Boolean] :engine_native_audit_fields_included
|
|
22900
22891
|
# Specifies whether the database activity stream includes engine-native
|
|
22901
|
-
# audit fields. This option
|
|
22902
|
-
# default, no engine-native audit fields are included.
|
|
22892
|
+
# audit fields. This option applies to an Oracle or Microsoft SQL Server
|
|
22893
|
+
# DB instance. By default, no engine-native audit fields are included.
|
|
22903
22894
|
#
|
|
22904
22895
|
# @return [Types::StartActivityStreamResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
22905
22896
|
#
|
|
@@ -23396,33 +23387,50 @@ module Aws::RDS
|
|
|
23396
23387
|
req.send_request(options)
|
|
23397
23388
|
end
|
|
23398
23389
|
|
|
23399
|
-
# Starts an export of
|
|
23400
|
-
# must have access to the S3 bucket.
|
|
23390
|
+
# Starts an export of DB snapshot or DB cluster data to Amazon S3. The
|
|
23391
|
+
# provided IAM role must have access to the S3 bucket.
|
|
23401
23392
|
#
|
|
23402
|
-
#
|
|
23393
|
+
# You can't export snapshot data from RDS Custom DB instances.
|
|
23394
|
+
#
|
|
23395
|
+
# You can't export cluster data from Multi-AZ DB clusters.
|
|
23396
|
+
#
|
|
23397
|
+
# For more information on exporting DB snapshot data, see [Exporting DB
|
|
23398
|
+
# snapshot data to Amazon S3][1] in the *Amazon RDS User Guide* or
|
|
23399
|
+
# [Exporting DB cluster snapshot data to Amazon S3][2] in the *Amazon
|
|
23400
|
+
# Aurora User Guide*.
|
|
23401
|
+
#
|
|
23402
|
+
# For more information on exporting DB cluster data, see [Exporting DB
|
|
23403
|
+
# cluster data to Amazon S3][3] in the *Amazon Aurora User Guide*.
|
|
23404
|
+
#
|
|
23405
|
+
#
|
|
23406
|
+
#
|
|
23407
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ExportSnapshot.html
|
|
23408
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/aurora-export-snapshot.html
|
|
23409
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/export-cluster-data.html
|
|
23403
23410
|
#
|
|
23404
23411
|
# @option params [required, String] :export_task_identifier
|
|
23405
|
-
# A unique identifier for the
|
|
23406
|
-
#
|
|
23407
|
-
# exported to.
|
|
23412
|
+
# A unique identifier for the export task. This ID isn't an identifier
|
|
23413
|
+
# for the Amazon S3 bucket where the data is to be exported.
|
|
23408
23414
|
#
|
|
23409
23415
|
# @option params [required, String] :source_arn
|
|
23410
|
-
# The Amazon Resource Name (ARN) of the snapshot to export to
|
|
23416
|
+
# The Amazon Resource Name (ARN) of the snapshot or cluster to export to
|
|
23417
|
+
# Amazon S3.
|
|
23411
23418
|
#
|
|
23412
23419
|
# @option params [required, String] :s3_bucket_name
|
|
23413
|
-
# The name of the Amazon S3 bucket to export the snapshot
|
|
23420
|
+
# The name of the Amazon S3 bucket to export the snapshot or cluster
|
|
23421
|
+
# data to.
|
|
23414
23422
|
#
|
|
23415
23423
|
# @option params [required, String] :iam_role_arn
|
|
23416
23424
|
# The name of the IAM role to use for writing to the Amazon S3 bucket
|
|
23417
|
-
# when exporting a snapshot.
|
|
23425
|
+
# when exporting a snapshot or cluster.
|
|
23418
23426
|
#
|
|
23419
23427
|
# @option params [required, String] :kms_key_id
|
|
23420
|
-
# The ID of the Amazon Web Services KMS key to use to encrypt the
|
|
23421
|
-
#
|
|
23422
|
-
#
|
|
23423
|
-
#
|
|
23424
|
-
#
|
|
23425
|
-
#
|
|
23428
|
+
# The ID of the Amazon Web Services KMS key to use to encrypt the data
|
|
23429
|
+
# exported to Amazon S3. The Amazon Web Services KMS key identifier is
|
|
23430
|
+
# the key ARN, key ID, alias ARN, or alias name for the KMS key. The
|
|
23431
|
+
# caller of this operation must be authorized to run the following
|
|
23432
|
+
# operations. These can be set in the Amazon Web Services KMS key
|
|
23433
|
+
# policy:
|
|
23426
23434
|
#
|
|
23427
23435
|
# * kms:Encrypt
|
|
23428
23436
|
#
|
|
@@ -23444,22 +23452,22 @@ module Aws::RDS
|
|
|
23444
23452
|
#
|
|
23445
23453
|
# @option params [String] :s3_prefix
|
|
23446
23454
|
# The Amazon S3 bucket prefix to use as the file name and path of the
|
|
23447
|
-
# exported
|
|
23455
|
+
# exported data.
|
|
23448
23456
|
#
|
|
23449
23457
|
# @option params [Array<String>] :export_only
|
|
23450
|
-
# The data to be exported from the snapshot. If this
|
|
23451
|
-
# provided, all the
|
|
23452
|
-
# following:
|
|
23458
|
+
# The data to be exported from the snapshot or cluster. If this
|
|
23459
|
+
# parameter is not provided, all of the data is exported. Valid values
|
|
23460
|
+
# are the following:
|
|
23453
23461
|
#
|
|
23454
23462
|
# * `database` - Export all the data from a specified database.
|
|
23455
23463
|
#
|
|
23456
|
-
# * `database.table` *table-name* - Export a table of the snapshot
|
|
23457
|
-
# format is valid only for RDS for MySQL, RDS for
|
|
23458
|
-
# MySQL.
|
|
23464
|
+
# * `database.table` *table-name* - Export a table of the snapshot or
|
|
23465
|
+
# cluster. This format is valid only for RDS for MySQL, RDS for
|
|
23466
|
+
# MariaDB, and Aurora MySQL.
|
|
23459
23467
|
#
|
|
23460
23468
|
# * `database.schema` *schema-name* - Export a database schema of the
|
|
23461
|
-
# snapshot. This format is valid only for RDS for
|
|
23462
|
-
# Aurora PostgreSQL.
|
|
23469
|
+
# snapshot or cluster. This format is valid only for RDS for
|
|
23470
|
+
# PostgreSQL and Aurora PostgreSQL.
|
|
23463
23471
|
#
|
|
23464
23472
|
# * `database.schema.table` *table-name* - Export a table of the
|
|
23465
23473
|
# database schema. This format is valid only for RDS for PostgreSQL
|
|
@@ -24265,7 +24273,7 @@ module Aws::RDS
|
|
|
24265
24273
|
params: params,
|
|
24266
24274
|
config: config)
|
|
24267
24275
|
context[:gem_name] = 'aws-sdk-rds'
|
|
24268
|
-
context[:gem_version] = '1.
|
|
24276
|
+
context[:gem_version] = '1.172.0'
|
|
24269
24277
|
Seahorse::Client::Request.new(handlers, context)
|
|
24270
24278
|
end
|
|
24271
24279
|
|
|
@@ -1107,7 +1107,8 @@ module Aws::RDS
|
|
|
1107
1107
|
# The Amazon Resource Name (ARN) of the source DB instance or DB cluster
|
|
1108
1108
|
# if this DB cluster is created as a read replica.
|
|
1109
1109
|
#
|
|
1110
|
-
# Valid for: Aurora DB clusters
|
|
1110
|
+
# Valid for: Aurora DB clusters and RDS for PostgreSQL Multi-AZ DB
|
|
1111
|
+
# clusters
|
|
1111
1112
|
# @option options [Array<Types::Tag>] :tags
|
|
1112
1113
|
# Tags to assign to the DB cluster.
|
|
1113
1114
|
#
|
|
@@ -2622,8 +2622,8 @@ module Aws::RDS
|
|
|
2622
2622
|
# read replica. Follow the allocation rules specified in
|
|
2623
2623
|
# `CreateDBInstance`.
|
|
2624
2624
|
#
|
|
2625
|
-
# <note markdown="1"> Be sure to allocate enough
|
|
2626
|
-
# create operation can succeed. You can also allocate additional
|
|
2625
|
+
# <note markdown="1"> Be sure to allocate enough storage for your read replica so that the
|
|
2626
|
+
# create operation can succeed. You can also allocate additional storage
|
|
2627
2627
|
# for future growth.
|
|
2628
2628
|
#
|
|
2629
2629
|
# </note>
|
|
@@ -4202,9 +4202,9 @@ module Aws::RDS
|
|
|
4202
4202
|
# The amount of storage (in gibibytes) to allocate initially for the DB
|
|
4203
4203
|
# instance. Follow the allocation rules specified in `CreateDBInstance`.
|
|
4204
4204
|
#
|
|
4205
|
-
# <note markdown="1"> Be sure to allocate enough
|
|
4206
|
-
# restore operation can succeed. You can also allocate additional
|
|
4207
|
-
# for future growth.
|
|
4205
|
+
# <note markdown="1"> Be sure to allocate enough storage for your new DB instance so that
|
|
4206
|
+
# the restore operation can succeed. You can also allocate additional
|
|
4207
|
+
# storage for future growth.
|
|
4208
4208
|
#
|
|
4209
4209
|
# </note>
|
|
4210
4210
|
# @return [DBInstance]
|
|
@@ -1031,9 +1031,8 @@ module Aws::RDS
|
|
|
1031
1031
|
# The identifier for the RDS for MySQL Multi-AZ DB cluster snapshot to
|
|
1032
1032
|
# restore from.
|
|
1033
1033
|
#
|
|
1034
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
1035
|
-
# deployments
|
|
1036
|
-
# RDS User Guide*.
|
|
1034
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
1035
|
+
# cluster deployments][1] in the *Amazon RDS User Guide*.
|
|
1037
1036
|
#
|
|
1038
1037
|
# Constraints:
|
|
1039
1038
|
#
|
|
@@ -1060,9 +1059,9 @@ module Aws::RDS
|
|
|
1060
1059
|
# The amount of storage (in gibibytes) to allocate initially for the DB
|
|
1061
1060
|
# instance. Follow the allocation rules specified in CreateDBInstance.
|
|
1062
1061
|
#
|
|
1063
|
-
# <note markdown="1"> Be sure to allocate enough
|
|
1064
|
-
# restore operation can succeed. You can also allocate additional
|
|
1065
|
-
# for future growth.
|
|
1062
|
+
# <note markdown="1"> Be sure to allocate enough storage for your new DB instance so that
|
|
1063
|
+
# the restore operation can succeed. You can also allocate additional
|
|
1064
|
+
# storage for future growth.
|
|
1066
1065
|
#
|
|
1067
1066
|
# </note>
|
|
1068
1067
|
# @return [DBInstance]
|
|
@@ -50,9 +50,6 @@ module Aws::RDS
|
|
|
50
50
|
|
|
51
51
|
def initialize(options = {})
|
|
52
52
|
self[:region] = options[:region]
|
|
53
|
-
if self[:region].nil?
|
|
54
|
-
raise ArgumentError, "Missing required EndpointParameter: :region"
|
|
55
|
-
end
|
|
56
53
|
self[:use_dual_stack] = options[:use_dual_stack]
|
|
57
54
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
|
58
55
|
if self[:use_dual_stack].nil?
|
|
@@ -14,54 +14,42 @@ module Aws::RDS
|
|
|
14
14
|
use_dual_stack = parameters.use_dual_stack
|
|
15
15
|
use_fips = parameters.use_fips
|
|
16
16
|
endpoint = parameters.endpoint
|
|
17
|
-
if
|
|
18
|
-
if Aws::Endpoints::Matchers.
|
|
19
|
-
|
|
20
|
-
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
|
21
|
-
end
|
|
22
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
23
|
-
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
|
24
|
-
end
|
|
25
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
|
18
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
|
26
20
|
end
|
|
27
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
|
28
|
-
|
|
29
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
30
|
-
end
|
|
31
|
-
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
21
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
|
32
23
|
end
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
if Aws::Endpoints::Matchers.
|
|
39
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips
|
|
40
|
-
end
|
|
41
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "rds.us-east-2")
|
|
42
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.us-east-2.amazonaws.com", headers: {}, properties: {})
|
|
43
|
-
end
|
|
44
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "rds.us-west-1")
|
|
45
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.us-west-1.amazonaws.com", headers: {}, properties: {})
|
|
46
|
-
end
|
|
47
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "rds.us-west-2")
|
|
48
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.us-west-2.amazonaws.com", headers: {}, properties: {})
|
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
|
25
|
+
end
|
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
29
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
30
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
49
31
|
end
|
|
50
|
-
|
|
51
|
-
|
|
32
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
33
|
+
end
|
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
|
36
|
+
if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
|
37
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.amazonaws.com", headers: {}, properties: {})
|
|
38
|
+
end
|
|
39
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
52
40
|
end
|
|
53
|
-
|
|
41
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
54
42
|
end
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
43
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
44
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
46
|
+
end
|
|
47
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
|
60
48
|
end
|
|
61
|
-
|
|
49
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
62
50
|
end
|
|
63
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
64
51
|
end
|
|
52
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
|
65
53
|
raise ArgumentError, 'No endpoint could be resolved'
|
|
66
54
|
|
|
67
55
|
end
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
|
@@ -358,7 +358,8 @@ module Aws::RDS
|
|
|
358
358
|
# The Amazon Resource Name (ARN) of the source DB instance or DB cluster
|
|
359
359
|
# if this DB cluster is created as a read replica.
|
|
360
360
|
#
|
|
361
|
-
# Valid for: Aurora DB clusters
|
|
361
|
+
# Valid for: Aurora DB clusters and RDS for PostgreSQL Multi-AZ DB
|
|
362
|
+
# clusters
|
|
362
363
|
# @option options [Array<Types::Tag>] :tags
|
|
363
364
|
# Tags to assign to the DB cluster.
|
|
364
365
|
#
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -691,7 +691,7 @@ module Aws::RDS
|
|
|
691
691
|
end
|
|
692
692
|
|
|
693
693
|
# @!attribute [rw] export_task_identifier
|
|
694
|
-
# The identifier of the snapshot export task to cancel.
|
|
694
|
+
# The identifier of the snapshot or cluster export task to cancel.
|
|
695
695
|
# @return [String]
|
|
696
696
|
#
|
|
697
697
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CancelExportTaskMessage AWS API Documentation
|
|
@@ -2214,7 +2214,8 @@ module Aws::RDS
|
|
|
2214
2214
|
# The Amazon Resource Name (ARN) of the source DB instance or DB
|
|
2215
2215
|
# cluster if this DB cluster is created as a read replica.
|
|
2216
2216
|
#
|
|
2217
|
-
# Valid for: Aurora DB clusters
|
|
2217
|
+
# Valid for: Aurora DB clusters and RDS for PostgreSQL Multi-AZ DB
|
|
2218
|
+
# clusters
|
|
2218
2219
|
# @return [String]
|
|
2219
2220
|
#
|
|
2220
2221
|
# @!attribute [rw] tags
|
|
@@ -4964,9 +4965,9 @@ module Aws::RDS
|
|
|
4964
4965
|
# read replica. Follow the allocation rules specified in
|
|
4965
4966
|
# `CreateDBInstance`.
|
|
4966
4967
|
#
|
|
4967
|
-
# <note markdown="1"> Be sure to allocate enough
|
|
4968
|
+
# <note markdown="1"> Be sure to allocate enough storage for your read replica so that the
|
|
4968
4969
|
# create operation can succeed. You can also allocate additional
|
|
4969
|
-
#
|
|
4970
|
+
# storage for future growth.
|
|
4970
4971
|
#
|
|
4971
4972
|
# </note>
|
|
4972
4973
|
# @return [Integer]
|
|
@@ -9569,7 +9570,12 @@ module Aws::RDS
|
|
|
9569
9570
|
#
|
|
9570
9571
|
# @!attribute [rw] delete_target
|
|
9571
9572
|
# A value that indicates whether to delete the resources in the green
|
|
9572
|
-
# environment.
|
|
9573
|
+
# environment. You can't specify this option if the blue/green
|
|
9574
|
+
# deployment [status][1] is `SWITCHOVER_COMPLETED`.
|
|
9575
|
+
#
|
|
9576
|
+
#
|
|
9577
|
+
#
|
|
9578
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_BlueGreenDeployment.html
|
|
9573
9579
|
# @return [Boolean]
|
|
9574
9580
|
#
|
|
9575
9581
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteBlueGreenDeploymentRequest AWS API Documentation
|
|
@@ -12126,28 +12132,29 @@ module Aws::RDS
|
|
|
12126
12132
|
end
|
|
12127
12133
|
|
|
12128
12134
|
# @!attribute [rw] export_task_identifier
|
|
12129
|
-
# The identifier of the snapshot export task to be
|
|
12135
|
+
# The identifier of the snapshot or cluster export task to be
|
|
12136
|
+
# described.
|
|
12130
12137
|
# @return [String]
|
|
12131
12138
|
#
|
|
12132
12139
|
# @!attribute [rw] source_arn
|
|
12133
|
-
# The Amazon Resource Name (ARN) of the snapshot
|
|
12134
|
-
# S3.
|
|
12140
|
+
# The Amazon Resource Name (ARN) of the snapshot or cluster exported
|
|
12141
|
+
# to Amazon S3.
|
|
12135
12142
|
# @return [String]
|
|
12136
12143
|
#
|
|
12137
12144
|
# @!attribute [rw] filters
|
|
12138
|
-
# Filters specify one or more snapshot exports to describe.
|
|
12139
|
-
# filters are specified as name-value pairs that define what to
|
|
12145
|
+
# Filters specify one or more snapshot or cluster exports to describe.
|
|
12146
|
+
# The filters are specified as name-value pairs that define what to
|
|
12140
12147
|
# include in the output. Filter names and values are case-sensitive.
|
|
12141
12148
|
#
|
|
12142
12149
|
# Supported filters include the following:
|
|
12143
12150
|
#
|
|
12144
|
-
# * `export-task-identifier` - An identifier for the snapshot
|
|
12145
|
-
# task.
|
|
12151
|
+
# * `export-task-identifier` - An identifier for the snapshot or
|
|
12152
|
+
# cluster export task.
|
|
12146
12153
|
#
|
|
12147
|
-
# * `s3-bucket` - The Amazon S3 bucket the
|
|
12154
|
+
# * `s3-bucket` - The Amazon S3 bucket the data is exported to.
|
|
12148
12155
|
#
|
|
12149
|
-
# * `source-arn` - The Amazon Resource Name (ARN) of the snapshot
|
|
12150
|
-
# exported to Amazon S3
|
|
12156
|
+
# * `source-arn` - The Amazon Resource Name (ARN) of the snapshot or
|
|
12157
|
+
# cluster exported to Amazon S3.
|
|
12151
12158
|
#
|
|
12152
12159
|
# * `status` - The status of the export task. Must be lowercase. Valid
|
|
12153
12160
|
# statuses are the following:
|
|
@@ -13245,34 +13252,35 @@ module Aws::RDS
|
|
|
13245
13252
|
include Aws::Structure
|
|
13246
13253
|
end
|
|
13247
13254
|
|
|
13248
|
-
# Contains the details of a snapshot export to Amazon S3.
|
|
13255
|
+
# Contains the details of a snapshot or cluster export to Amazon S3.
|
|
13249
13256
|
#
|
|
13250
13257
|
# This data type is used as a response element in the
|
|
13251
13258
|
# `DescribeExportTasks` action.
|
|
13252
13259
|
#
|
|
13253
13260
|
# @!attribute [rw] export_task_identifier
|
|
13254
|
-
# A unique identifier for the snapshot export task. This ID
|
|
13255
|
-
# identifier for the Amazon S3 bucket where the
|
|
13256
|
-
#
|
|
13261
|
+
# A unique identifier for the snapshot or cluster export task. This ID
|
|
13262
|
+
# isn't an identifier for the Amazon S3 bucket where the data is
|
|
13263
|
+
# exported.
|
|
13257
13264
|
# @return [String]
|
|
13258
13265
|
#
|
|
13259
13266
|
# @!attribute [rw] source_arn
|
|
13260
|
-
# The Amazon Resource Name (ARN) of the snapshot
|
|
13261
|
-
# S3.
|
|
13267
|
+
# The Amazon Resource Name (ARN) of the snapshot or cluster exported
|
|
13268
|
+
# to Amazon S3.
|
|
13262
13269
|
# @return [String]
|
|
13263
13270
|
#
|
|
13264
13271
|
# @!attribute [rw] export_only
|
|
13265
|
-
# The data exported from the snapshot. Valid values are the
|
|
13272
|
+
# The data exported from the snapshot or cluster. Valid values are the
|
|
13273
|
+
# following:
|
|
13266
13274
|
#
|
|
13267
13275
|
# * `database` - Export all the data from a specified database.
|
|
13268
13276
|
#
|
|
13269
|
-
# * `database.table` *table-name* - Export a table of the snapshot
|
|
13270
|
-
# This format is valid only for RDS for MySQL, RDS for
|
|
13271
|
-
# Aurora MySQL.
|
|
13277
|
+
# * `database.table` *table-name* - Export a table of the snapshot or
|
|
13278
|
+
# cluster. This format is valid only for RDS for MySQL, RDS for
|
|
13279
|
+
# MariaDB, and Aurora MySQL.
|
|
13272
13280
|
#
|
|
13273
13281
|
# * `database.schema` *schema-name* - Export a database schema of the
|
|
13274
|
-
# snapshot. This format is valid only for RDS for
|
|
13275
|
-
# Aurora PostgreSQL.
|
|
13282
|
+
# snapshot or cluster. This format is valid only for RDS for
|
|
13283
|
+
# PostgreSQL and Aurora PostgreSQL.
|
|
13276
13284
|
#
|
|
13277
13285
|
# * `database.schema.table` *table-name* - Export a table of the
|
|
13278
13286
|
# database schema. This format is valid only for RDS for PostgreSQL
|
|
@@ -13284,41 +13292,54 @@ module Aws::RDS
|
|
|
13284
13292
|
# @return [Time]
|
|
13285
13293
|
#
|
|
13286
13294
|
# @!attribute [rw] task_start_time
|
|
13287
|
-
# The time that the snapshot export task started.
|
|
13295
|
+
# The time that the snapshot or cluster export task started.
|
|
13288
13296
|
# @return [Time]
|
|
13289
13297
|
#
|
|
13290
13298
|
# @!attribute [rw] task_end_time
|
|
13291
|
-
# The time that the snapshot export task
|
|
13299
|
+
# The time that the snapshot or cluster export task ended.
|
|
13292
13300
|
# @return [Time]
|
|
13293
13301
|
#
|
|
13294
13302
|
# @!attribute [rw] s3_bucket
|
|
13295
|
-
# The Amazon S3 bucket that the snapshot is exported to.
|
|
13303
|
+
# The Amazon S3 bucket that the snapshot or cluster is exported to.
|
|
13296
13304
|
# @return [String]
|
|
13297
13305
|
#
|
|
13298
13306
|
# @!attribute [rw] s3_prefix
|
|
13299
13307
|
# The Amazon S3 bucket prefix that is the file name and path of the
|
|
13300
|
-
# exported
|
|
13308
|
+
# exported data.
|
|
13301
13309
|
# @return [String]
|
|
13302
13310
|
#
|
|
13303
13311
|
# @!attribute [rw] iam_role_arn
|
|
13304
13312
|
# The name of the IAM role that is used to write to Amazon S3 when
|
|
13305
|
-
# exporting a snapshot.
|
|
13313
|
+
# exporting a snapshot or cluster.
|
|
13306
13314
|
# @return [String]
|
|
13307
13315
|
#
|
|
13308
13316
|
# @!attribute [rw] kms_key_id
|
|
13309
13317
|
# The key identifier of the Amazon Web Services KMS key that is used
|
|
13310
|
-
# to encrypt the
|
|
13311
|
-
#
|
|
13312
|
-
#
|
|
13313
|
-
#
|
|
13318
|
+
# to encrypt the data when it's exported to Amazon S3. The KMS key
|
|
13319
|
+
# identifier is its key ARN, key ID, alias ARN, or alias name. The IAM
|
|
13320
|
+
# role used for the export must have encryption and decryption
|
|
13321
|
+
# permissions to use this KMS key.
|
|
13314
13322
|
# @return [String]
|
|
13315
13323
|
#
|
|
13316
13324
|
# @!attribute [rw] status
|
|
13317
|
-
# The progress status of the export task.
|
|
13325
|
+
# The progress status of the export task. The status can be one of the
|
|
13326
|
+
# following:
|
|
13327
|
+
#
|
|
13328
|
+
# * `CANCELED`
|
|
13329
|
+
#
|
|
13330
|
+
# * `CANCELING`
|
|
13331
|
+
#
|
|
13332
|
+
# * `COMPLETE`
|
|
13333
|
+
#
|
|
13334
|
+
# * `FAILED`
|
|
13335
|
+
#
|
|
13336
|
+
# * `IN_PROGRESS`
|
|
13337
|
+
#
|
|
13338
|
+
# * `STARTING`
|
|
13318
13339
|
# @return [String]
|
|
13319
13340
|
#
|
|
13320
13341
|
# @!attribute [rw] percent_progress
|
|
13321
|
-
# The progress of the snapshot export task as a percentage.
|
|
13342
|
+
# The progress of the snapshot or cluster export task as a percentage.
|
|
13322
13343
|
# @return [Integer]
|
|
13323
13344
|
#
|
|
13324
13345
|
# @!attribute [rw] total_extracted_data_in_gb
|
|
@@ -13330,7 +13351,7 @@ module Aws::RDS
|
|
|
13330
13351
|
# @return [String]
|
|
13331
13352
|
#
|
|
13332
13353
|
# @!attribute [rw] warning_message
|
|
13333
|
-
# A warning about the snapshot export task.
|
|
13354
|
+
# A warning about the snapshot or cluster export task.
|
|
13334
13355
|
# @return [String]
|
|
13335
13356
|
#
|
|
13336
13357
|
# @!attribute [rw] source_type
|
|
@@ -13379,7 +13400,7 @@ module Aws::RDS
|
|
|
13379
13400
|
# @return [String]
|
|
13380
13401
|
#
|
|
13381
13402
|
# @!attribute [rw] export_tasks
|
|
13382
|
-
# Information about an export of a snapshot to Amazon S3.
|
|
13403
|
+
# Information about an export of a snapshot or cluster to Amazon S3.
|
|
13383
13404
|
# @return [Array<Types::ExportTask>]
|
|
13384
13405
|
#
|
|
13385
13406
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ExportTasksMessage AWS API Documentation
|
|
@@ -14092,8 +14113,8 @@ module Aws::RDS
|
|
|
14092
14113
|
end
|
|
14093
14114
|
|
|
14094
14115
|
# @!attribute [rw] resource_arn
|
|
14095
|
-
# The Amazon Resource Name (ARN) of the RDS for Oracle
|
|
14096
|
-
#
|
|
14116
|
+
# The Amazon Resource Name (ARN) of the RDS for Oracle or Microsoft
|
|
14117
|
+
# SQL Server DB instance. For example,
|
|
14097
14118
|
# `arn:aws:rds:us-east-1:12345667890:instance:my-orcl-db`.
|
|
14098
14119
|
# @return [String]
|
|
14099
14120
|
#
|
|
@@ -20840,9 +20861,8 @@ module Aws::RDS
|
|
|
20840
20861
|
# The identifier for the RDS for MySQL Multi-AZ DB cluster snapshot to
|
|
20841
20862
|
# restore from.
|
|
20842
20863
|
#
|
|
20843
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
20844
|
-
# deployments
|
|
20845
|
-
# *Amazon RDS User Guide*.
|
|
20864
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ DB
|
|
20865
|
+
# cluster deployments][1] in the *Amazon RDS User Guide*.
|
|
20846
20866
|
#
|
|
20847
20867
|
# Constraints:
|
|
20848
20868
|
#
|
|
@@ -20872,9 +20892,9 @@ module Aws::RDS
|
|
|
20872
20892
|
# DB instance. Follow the allocation rules specified in
|
|
20873
20893
|
# CreateDBInstance.
|
|
20874
20894
|
#
|
|
20875
|
-
# <note markdown="1"> Be sure to allocate enough
|
|
20895
|
+
# <note markdown="1"> Be sure to allocate enough storage for your new DB instance so that
|
|
20876
20896
|
# the restore operation can succeed. You can also allocate additional
|
|
20877
|
-
#
|
|
20897
|
+
# storage for future growth.
|
|
20878
20898
|
#
|
|
20879
20899
|
# </note>
|
|
20880
20900
|
# @return [Integer]
|
|
@@ -20966,9 +20986,9 @@ module Aws::RDS
|
|
|
20966
20986
|
# DB instance. Follow the allocation rules specified in
|
|
20967
20987
|
# `CreateDBInstance`.
|
|
20968
20988
|
#
|
|
20969
|
-
# <note markdown="1"> Be sure to allocate enough
|
|
20989
|
+
# <note markdown="1"> Be sure to allocate enough storage for your new DB instance so that
|
|
20970
20990
|
# the restore operation can succeed. You can also allocate additional
|
|
20971
|
-
#
|
|
20991
|
+
# storage for future growth.
|
|
20972
20992
|
#
|
|
20973
20993
|
# </note>
|
|
20974
20994
|
# @return [Integer]
|
|
@@ -22025,9 +22045,9 @@ module Aws::RDS
|
|
|
22025
22045
|
# DB instance. Follow the allocation rules specified in
|
|
22026
22046
|
# `CreateDBInstance`.
|
|
22027
22047
|
#
|
|
22028
|
-
# <note markdown="1"> Be sure to allocate enough
|
|
22048
|
+
# <note markdown="1"> Be sure to allocate enough storage for your new DB instance so that
|
|
22029
22049
|
# the restore operation can succeed. You can also allocate additional
|
|
22030
|
-
#
|
|
22050
|
+
# storage for future growth.
|
|
22031
22051
|
#
|
|
22032
22052
|
# </note>
|
|
22033
22053
|
# @return [Integer]
|
|
@@ -22540,8 +22560,9 @@ module Aws::RDS
|
|
|
22540
22560
|
#
|
|
22541
22561
|
# @!attribute [rw] engine_native_audit_fields_included
|
|
22542
22562
|
# Specifies whether the database activity stream includes
|
|
22543
|
-
# engine-native audit fields. This option
|
|
22544
|
-
# instance. By default, no engine-native audit
|
|
22563
|
+
# engine-native audit fields. This option applies to an Oracle or
|
|
22564
|
+
# Microsoft SQL Server DB instance. By default, no engine-native audit
|
|
22565
|
+
# fields are included.
|
|
22545
22566
|
# @return [Boolean]
|
|
22546
22567
|
#
|
|
22547
22568
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartActivityStreamRequest AWS API Documentation
|
|
@@ -22764,32 +22785,33 @@ module Aws::RDS
|
|
|
22764
22785
|
end
|
|
22765
22786
|
|
|
22766
22787
|
# @!attribute [rw] export_task_identifier
|
|
22767
|
-
# A unique identifier for the
|
|
22768
|
-
# identifier for the Amazon S3 bucket where the
|
|
22769
|
-
# exported
|
|
22788
|
+
# A unique identifier for the export task. This ID isn't an
|
|
22789
|
+
# identifier for the Amazon S3 bucket where the data is to be
|
|
22790
|
+
# exported.
|
|
22770
22791
|
# @return [String]
|
|
22771
22792
|
#
|
|
22772
22793
|
# @!attribute [rw] source_arn
|
|
22773
|
-
# The Amazon Resource Name (ARN) of the snapshot
|
|
22774
|
-
# S3.
|
|
22794
|
+
# The Amazon Resource Name (ARN) of the snapshot or cluster to export
|
|
22795
|
+
# to Amazon S3.
|
|
22775
22796
|
# @return [String]
|
|
22776
22797
|
#
|
|
22777
22798
|
# @!attribute [rw] s3_bucket_name
|
|
22778
|
-
# The name of the Amazon S3 bucket to export the snapshot
|
|
22799
|
+
# The name of the Amazon S3 bucket to export the snapshot or cluster
|
|
22800
|
+
# data to.
|
|
22779
22801
|
# @return [String]
|
|
22780
22802
|
#
|
|
22781
22803
|
# @!attribute [rw] iam_role_arn
|
|
22782
22804
|
# The name of the IAM role to use for writing to the Amazon S3 bucket
|
|
22783
|
-
# when exporting a snapshot.
|
|
22805
|
+
# when exporting a snapshot or cluster.
|
|
22784
22806
|
# @return [String]
|
|
22785
22807
|
#
|
|
22786
22808
|
# @!attribute [rw] kms_key_id
|
|
22787
|
-
# The ID of the Amazon Web Services KMS key to use to encrypt the
|
|
22788
|
-
#
|
|
22789
|
-
#
|
|
22790
|
-
#
|
|
22791
|
-
#
|
|
22792
|
-
#
|
|
22809
|
+
# The ID of the Amazon Web Services KMS key to use to encrypt the data
|
|
22810
|
+
# exported to Amazon S3. The Amazon Web Services KMS key identifier is
|
|
22811
|
+
# the key ARN, key ID, alias ARN, or alias name for the KMS key. The
|
|
22812
|
+
# caller of this operation must be authorized to run the following
|
|
22813
|
+
# operations. These can be set in the Amazon Web Services KMS key
|
|
22814
|
+
# policy:
|
|
22793
22815
|
#
|
|
22794
22816
|
# * kms:Encrypt
|
|
22795
22817
|
#
|
|
@@ -22812,23 +22834,23 @@ module Aws::RDS
|
|
|
22812
22834
|
#
|
|
22813
22835
|
# @!attribute [rw] s3_prefix
|
|
22814
22836
|
# The Amazon S3 bucket prefix to use as the file name and path of the
|
|
22815
|
-
# exported
|
|
22837
|
+
# exported data.
|
|
22816
22838
|
# @return [String]
|
|
22817
22839
|
#
|
|
22818
22840
|
# @!attribute [rw] export_only
|
|
22819
|
-
# The data to be exported from the snapshot. If this
|
|
22820
|
-
# provided, all the
|
|
22821
|
-
# following:
|
|
22841
|
+
# The data to be exported from the snapshot or cluster. If this
|
|
22842
|
+
# parameter is not provided, all of the data is exported. Valid values
|
|
22843
|
+
# are the following:
|
|
22822
22844
|
#
|
|
22823
22845
|
# * `database` - Export all the data from a specified database.
|
|
22824
22846
|
#
|
|
22825
|
-
# * `database.table` *table-name* - Export a table of the snapshot
|
|
22826
|
-
# This format is valid only for RDS for MySQL, RDS for
|
|
22827
|
-
# Aurora MySQL.
|
|
22847
|
+
# * `database.table` *table-name* - Export a table of the snapshot or
|
|
22848
|
+
# cluster. This format is valid only for RDS for MySQL, RDS for
|
|
22849
|
+
# MariaDB, and Aurora MySQL.
|
|
22828
22850
|
#
|
|
22829
22851
|
# * `database.schema` *schema-name* - Export a database schema of the
|
|
22830
|
-
# snapshot. This format is valid only for RDS for
|
|
22831
|
-
# Aurora PostgreSQL.
|
|
22852
|
+
# snapshot or cluster. This format is valid only for RDS for
|
|
22853
|
+
# PostgreSQL and Aurora PostgreSQL.
|
|
22832
22854
|
#
|
|
22833
22855
|
# * `database.schema.table` *table-name* - Export a table of the
|
|
22834
22856
|
# database schema. This format is valid only for RDS for PostgreSQL
|
data/lib/aws-sdk-rds.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-rds
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.172.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-02-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|