aws-sdk-rds 1.168.0 → 1.170.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 +142 -20
- data/lib/aws-sdk-rds/client_api.rb +16 -0
- data/lib/aws-sdk-rds/db_cluster.rb +1 -1
- data/lib/aws-sdk-rds/db_engine_version.rb +23 -0
- data/lib/aws-sdk-rds/db_instance.rb +65 -1
- data/lib/aws-sdk-rds/db_snapshot.rb +10 -0
- data/lib/aws-sdk-rds/resource.rb +16 -0
- data/lib/aws-sdk-rds/types.rb +184 -20
- 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: c67d8a9130841984eb9714ed02779f5af3d1d0e92ef96d154da42a9f5134b32c
|
4
|
+
data.tar.gz: '083b17338f9ce0f6ea7baaca455afe89631988a91367fbd30841ba613e27f5e9'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '049c14c09fc5c8f0bc81b36a79ad9ede011f55313c5c4032771938b73257cc3e3fa04afc7a690c945795fc5b20e049e4c03dae8139e58a3e7d9ee5f0c63fa404'
|
7
|
+
data.tar.gz: ee1edcc8bd7d12fff6fd5d47ee4d437202cc74d8fdcdb3e2f016a7d92a8f57579fc464a51ed232d0a1362b7557793d1ea7628ba54eebda400e0013e1f4df4796
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.170.0 (2023-01-10)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for configuring allocated storage on the CreateDBInstanceReadReplica, RestoreDBInstanceFromDBSnapshot, and RestoreDBInstanceToPointInTime APIs.
|
8
|
+
|
9
|
+
1.169.0 (2023-01-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for specifying which certificate authority (CA) to use for a DB instance's server certificate during DB instance creation, as well as other CA enhancements.
|
13
|
+
|
4
14
|
1.168.0 (2022-12-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.170.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -2042,6 +2042,8 @@ module Aws::RDS
|
|
2042
2042
|
# * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
|
2043
2043
|
# * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
|
2044
2044
|
# * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
|
2045
|
+
# * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
|
2046
|
+
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
2045
2047
|
#
|
2046
2048
|
# @example Request syntax with placeholder values
|
2047
2049
|
#
|
@@ -2115,6 +2117,9 @@ module Aws::RDS
|
|
2115
2117
|
# resp.tag_list[0].value #=> String
|
2116
2118
|
# resp.supports_babelfish #=> Boolean
|
2117
2119
|
# resp.custom_db_engine_version_manifest #=> String
|
2120
|
+
# resp.supports_certificate_rotation_without_restart #=> Boolean
|
2121
|
+
# resp.supported_ca_certificate_identifiers #=> Array
|
2122
|
+
# resp.supported_ca_certificate_identifiers[0] #=> String
|
2118
2123
|
#
|
2119
2124
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersion AWS API Documentation
|
2120
2125
|
#
|
@@ -4729,6 +4734,22 @@ module Aws::RDS
|
|
4729
4734
|
# Amazon Web Services account has a different default KMS key for each
|
4730
4735
|
# Amazon Web Services Region.
|
4731
4736
|
#
|
4737
|
+
# @option params [String] :ca_certificate_identifier
|
4738
|
+
# Specifies the CA certificate identifier to use for the DB instance’s
|
4739
|
+
# server certificate.
|
4740
|
+
#
|
4741
|
+
# This setting doesn't apply to RDS Custom.
|
4742
|
+
#
|
4743
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
4744
|
+
# DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
|
4745
|
+
# encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
|
4746
|
+
# Guide*.
|
4747
|
+
#
|
4748
|
+
#
|
4749
|
+
#
|
4750
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
4751
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
4752
|
+
#
|
4732
4753
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4733
4754
|
#
|
4734
4755
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -4820,6 +4841,7 @@ module Aws::RDS
|
|
4820
4841
|
# storage_throughput: 1,
|
4821
4842
|
# manage_master_user_password: false,
|
4822
4843
|
# master_user_secret_kms_key_id: "String",
|
4844
|
+
# ca_certificate_identifier: "String",
|
4823
4845
|
# })
|
4824
4846
|
#
|
4825
4847
|
# @example Response structure
|
@@ -4970,6 +4992,8 @@ module Aws::RDS
|
|
4970
4992
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
4971
4993
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
4972
4994
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
4995
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
4996
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
4973
4997
|
#
|
4974
4998
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
4975
4999
|
#
|
@@ -5560,6 +5584,17 @@ module Aws::RDS
|
|
5560
5584
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
5561
5585
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
5562
5586
|
#
|
5587
|
+
# @option params [Integer] :allocated_storage
|
5588
|
+
# The amount of storage (in gibibytes) to allocate initially for the
|
5589
|
+
# read replica. Follow the allocation rules specified in
|
5590
|
+
# `CreateDBInstance`.
|
5591
|
+
#
|
5592
|
+
# <note markdown="1"> Be sure to allocate enough memory for your read replica so that the
|
5593
|
+
# create operation can succeed. You can also allocate additional memory
|
5594
|
+
# for future growth.
|
5595
|
+
#
|
5596
|
+
# </note>
|
5597
|
+
#
|
5563
5598
|
# @option params [String] :source_region
|
5564
5599
|
# The source region of the snapshot. This is only needed when the
|
5565
5600
|
# shapshot is encrypted and in a different region.
|
@@ -5644,6 +5679,7 @@ module Aws::RDS
|
|
5644
5679
|
# network_type: "String",
|
5645
5680
|
# storage_throughput: 1,
|
5646
5681
|
# enable_customer_owned_ip: false,
|
5682
|
+
# allocated_storage: 1,
|
5647
5683
|
# source_region: "String",
|
5648
5684
|
# })
|
5649
5685
|
#
|
@@ -5795,6 +5831,8 @@ module Aws::RDS
|
|
5795
5831
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
5796
5832
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
5797
5833
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
5834
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
5835
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
5798
5836
|
#
|
5799
5837
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
5800
5838
|
#
|
@@ -7013,6 +7051,8 @@ module Aws::RDS
|
|
7013
7051
|
# * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
|
7014
7052
|
# * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
|
7015
7053
|
# * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
|
7054
|
+
# * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
|
7055
|
+
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
7016
7056
|
#
|
7017
7057
|
# @example Request syntax with placeholder values
|
7018
7058
|
#
|
@@ -7074,6 +7114,9 @@ module Aws::RDS
|
|
7074
7114
|
# resp.tag_list[0].value #=> String
|
7075
7115
|
# resp.supports_babelfish #=> Boolean
|
7076
7116
|
# resp.custom_db_engine_version_manifest #=> String
|
7117
|
+
# resp.supports_certificate_rotation_without_restart #=> Boolean
|
7118
|
+
# resp.supported_ca_certificate_identifiers #=> Array
|
7119
|
+
# resp.supported_ca_certificate_identifiers[0] #=> String
|
7077
7120
|
#
|
7078
7121
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomDBEngineVersion AWS API Documentation
|
7079
7122
|
#
|
@@ -7755,6 +7798,8 @@ module Aws::RDS
|
|
7755
7798
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
7756
7799
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
7757
7800
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
7801
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
7802
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
7758
7803
|
#
|
7759
7804
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
7760
7805
|
#
|
@@ -8496,6 +8541,16 @@ module Aws::RDS
|
|
8496
8541
|
# Lists the set of CA certificates provided by Amazon RDS for this
|
8497
8542
|
# Amazon Web Services account.
|
8498
8543
|
#
|
8544
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
8545
|
+
# DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
|
8546
|
+
# encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
|
8547
|
+
# Guide*.
|
8548
|
+
#
|
8549
|
+
#
|
8550
|
+
#
|
8551
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
8552
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
8553
|
+
#
|
8499
8554
|
# @option params [String] :certificate_identifier
|
8500
8555
|
# The user-supplied certificate identifier. If this parameter is
|
8501
8556
|
# specified, information for only the identified certificate is
|
@@ -9745,6 +9800,9 @@ module Aws::RDS
|
|
9745
9800
|
# resp.db_engine_versions[0].tag_list[0].value #=> String
|
9746
9801
|
# resp.db_engine_versions[0].supports_babelfish #=> Boolean
|
9747
9802
|
# resp.db_engine_versions[0].custom_db_engine_version_manifest #=> String
|
9803
|
+
# resp.db_engine_versions[0].supports_certificate_rotation_without_restart #=> Boolean
|
9804
|
+
# resp.db_engine_versions[0].supported_ca_certificate_identifiers #=> Array
|
9805
|
+
# resp.db_engine_versions[0].supported_ca_certificate_identifiers[0] #=> String
|
9748
9806
|
#
|
9749
9807
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
|
9750
9808
|
#
|
@@ -10130,6 +10188,8 @@ module Aws::RDS
|
|
10130
10188
|
# resp.db_instances[0].master_user_secret.secret_arn #=> String
|
10131
10189
|
# resp.db_instances[0].master_user_secret.secret_status #=> String
|
10132
10190
|
# resp.db_instances[0].master_user_secret.kms_key_id #=> String
|
10191
|
+
# resp.db_instances[0].certificate_details.ca_identifier #=> String
|
10192
|
+
# resp.db_instances[0].certificate_details.valid_till #=> Time
|
10133
10193
|
#
|
10134
10194
|
#
|
10135
10195
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -13831,6 +13891,8 @@ module Aws::RDS
|
|
13831
13891
|
# * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
|
13832
13892
|
# * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
|
13833
13893
|
# * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
|
13894
|
+
# * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
|
13895
|
+
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
13834
13896
|
#
|
13835
13897
|
# @example Request syntax with placeholder values
|
13836
13898
|
#
|
@@ -13894,6 +13956,9 @@ module Aws::RDS
|
|
13894
13956
|
# resp.tag_list[0].value #=> String
|
13895
13957
|
# resp.supports_babelfish #=> Boolean
|
13896
13958
|
# resp.custom_db_engine_version_manifest #=> String
|
13959
|
+
# resp.supports_certificate_rotation_without_restart #=> Boolean
|
13960
|
+
# resp.supported_ca_certificate_identifiers #=> Array
|
13961
|
+
# resp.supported_ca_certificate_identifiers[0] #=> String
|
13897
13962
|
#
|
13898
13963
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCustomDBEngineVersion AWS API Documentation
|
13899
13964
|
#
|
@@ -13943,7 +14008,7 @@ module Aws::RDS
|
|
13943
14008
|
#
|
13944
14009
|
# Example: `my-cluster2`
|
13945
14010
|
#
|
13946
|
-
# Valid for: Aurora DB clusters
|
14011
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
13947
14012
|
#
|
13948
14013
|
# @option params [Boolean] :apply_immediately
|
13949
14014
|
# A value that indicates whether the modifications in this request and
|
@@ -15498,10 +15563,21 @@ module Aws::RDS
|
|
15498
15563
|
# This setting doesn't apply to RDS Custom.
|
15499
15564
|
#
|
15500
15565
|
# @option params [String] :ca_certificate_identifier
|
15501
|
-
# Specifies the certificate to
|
15566
|
+
# Specifies the CA certificate identifier to use for the DB instance’s
|
15567
|
+
# server certificate.
|
15502
15568
|
#
|
15503
15569
|
# This setting doesn't apply to RDS Custom.
|
15504
15570
|
#
|
15571
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
15572
|
+
# DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
|
15573
|
+
# encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
|
15574
|
+
# Guide*.
|
15575
|
+
#
|
15576
|
+
#
|
15577
|
+
#
|
15578
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
15579
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
15580
|
+
#
|
15505
15581
|
# @option params [String] :domain
|
15506
15582
|
# The Active Directory directory ID to move the DB instance to. Specify
|
15507
15583
|
# `none` to remove the instance from its current domain. You must create
|
@@ -16208,6 +16284,8 @@ module Aws::RDS
|
|
16208
16284
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
16209
16285
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
16210
16286
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
16287
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
16288
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
16211
16289
|
#
|
16212
16290
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
16213
16291
|
#
|
@@ -17451,6 +17529,8 @@ module Aws::RDS
|
|
17451
17529
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
17452
17530
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
17453
17531
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
17532
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
17533
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
17454
17534
|
#
|
17455
17535
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
17456
17536
|
#
|
@@ -18070,6 +18150,8 @@ module Aws::RDS
|
|
18070
18150
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
18071
18151
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
18072
18152
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
18153
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
18154
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
18073
18155
|
#
|
18074
18156
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
18075
18157
|
#
|
@@ -20869,6 +20951,16 @@ module Aws::RDS
|
|
20869
20951
|
#
|
20870
20952
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
20871
20953
|
#
|
20954
|
+
# @option params [Integer] :allocated_storage
|
20955
|
+
# The amount of storage (in gibibytes) to allocate initially for the DB
|
20956
|
+
# instance. Follow the allocation rules specified in CreateDBInstance.
|
20957
|
+
#
|
20958
|
+
# <note markdown="1"> Be sure to allocate enough memory for your new DB instance so that the
|
20959
|
+
# restore operation can succeed. You can also allocate additional memory
|
20960
|
+
# for future growth.
|
20961
|
+
#
|
20962
|
+
# </note>
|
20963
|
+
#
|
20872
20964
|
# @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
20873
20965
|
#
|
20874
20966
|
# * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
|
@@ -21015,6 +21107,7 @@ module Aws::RDS
|
|
21015
21107
|
# network_type: "String",
|
21016
21108
|
# storage_throughput: 1,
|
21017
21109
|
# db_cluster_snapshot_identifier: "String",
|
21110
|
+
# allocated_storage: 1,
|
21018
21111
|
# })
|
21019
21112
|
#
|
21020
21113
|
# @example Response structure
|
@@ -21165,6 +21258,8 @@ module Aws::RDS
|
|
21165
21258
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
21166
21259
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
21167
21260
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
21261
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
21262
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
21168
21263
|
#
|
21169
21264
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
21170
21265
|
#
|
@@ -21207,7 +21302,7 @@ module Aws::RDS
|
|
21207
21302
|
# Example: `mydbinstance`
|
21208
21303
|
#
|
21209
21304
|
# @option params [Integer] :allocated_storage
|
21210
|
-
# The amount of storage (in
|
21305
|
+
# The amount of storage (in gibibytes) to allocate initially for the DB
|
21211
21306
|
# instance. Follow the allocation rules specified in `CreateDBInstance`.
|
21212
21307
|
#
|
21213
21308
|
# <note markdown="1"> Be sure to allocate enough memory for your new DB instance so that the
|
@@ -21889,6 +21984,8 @@ module Aws::RDS
|
|
21889
21984
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
21890
21985
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
21891
21986
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
21987
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
21988
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
21892
21989
|
#
|
21893
21990
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
21894
21991
|
#
|
@@ -22339,6 +22436,16 @@ module Aws::RDS
|
|
22339
22436
|
#
|
22340
22437
|
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
22341
22438
|
#
|
22439
|
+
# @option params [Integer] :allocated_storage
|
22440
|
+
# The amount of storage (in gibibytes) to allocate initially for the DB
|
22441
|
+
# instance. Follow the allocation rules specified in `CreateDBInstance`.
|
22442
|
+
#
|
22443
|
+
# <note markdown="1"> Be sure to allocate enough memory for your new DB instance so that the
|
22444
|
+
# restore operation can succeed. You can also allocate additional memory
|
22445
|
+
# for future growth.
|
22446
|
+
#
|
22447
|
+
# </note>
|
22448
|
+
#
|
22342
22449
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
22343
22450
|
#
|
22344
22451
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
@@ -22490,6 +22597,7 @@ module Aws::RDS
|
|
22490
22597
|
# backup_target: "String",
|
22491
22598
|
# network_type: "String",
|
22492
22599
|
# storage_throughput: 1,
|
22600
|
+
# allocated_storage: 1,
|
22493
22601
|
# })
|
22494
22602
|
#
|
22495
22603
|
# @example Response structure
|
@@ -22640,6 +22748,8 @@ module Aws::RDS
|
|
22640
22748
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
22641
22749
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
22642
22750
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
22751
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
22752
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
22643
22753
|
#
|
22644
22754
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
22645
22755
|
#
|
@@ -22755,12 +22865,15 @@ module Aws::RDS
|
|
22755
22865
|
end
|
22756
22866
|
|
22757
22867
|
# Starts a database activity stream to monitor activity on the database.
|
22758
|
-
# For more information, see [
|
22759
|
-
# *Amazon Aurora User Guide
|
22868
|
+
# For more information, see [ Monitoring Amazon Aurora with Database
|
22869
|
+
# Activity Streams][1] in the *Amazon Aurora User Guide* or [ Monitoring
|
22870
|
+
# Amazon RDS with Database Activity Streams][2] in the *Amazon RDS User
|
22871
|
+
# Guide*.
|
22760
22872
|
#
|
22761
22873
|
#
|
22762
22874
|
#
|
22763
22875
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/DBActivityStreams.html
|
22876
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/DBActivityStreams.html
|
22764
22877
|
#
|
22765
22878
|
# @option params [required, String] :resource_arn
|
22766
22879
|
# The Amazon Resource Name (ARN) of the DB cluster, for example,
|
@@ -23153,6 +23266,8 @@ module Aws::RDS
|
|
23153
23266
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
23154
23267
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
23155
23268
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
23269
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
23270
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
23156
23271
|
#
|
23157
23272
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
23158
23273
|
#
|
@@ -23305,27 +23420,27 @@ module Aws::RDS
|
|
23305
23420
|
# The ID of the Amazon Web Services KMS key to use to encrypt the
|
23306
23421
|
# snapshot exported to Amazon S3. The Amazon Web Services KMS key
|
23307
23422
|
# identifier is the key ARN, key ID, alias ARN, or alias name for the
|
23308
|
-
# KMS key. The caller of this operation must be authorized to
|
23309
|
-
#
|
23310
|
-
#
|
23423
|
+
# KMS key. The caller of this operation must be authorized to run the
|
23424
|
+
# following operations. These can be set in the Amazon Web Services KMS
|
23425
|
+
# key policy:
|
23311
23426
|
#
|
23312
|
-
# *
|
23427
|
+
# * kms:Encrypt
|
23313
23428
|
#
|
23314
|
-
# *
|
23429
|
+
# * kms:Decrypt
|
23315
23430
|
#
|
23316
|
-
# *
|
23431
|
+
# * kms:GenerateDataKey
|
23317
23432
|
#
|
23318
|
-
# *
|
23433
|
+
# * kms:GenerateDataKeyWithoutPlaintext
|
23319
23434
|
#
|
23320
|
-
# *
|
23435
|
+
# * kms:ReEncryptFrom
|
23321
23436
|
#
|
23322
|
-
# *
|
23437
|
+
# * kms:ReEncryptTo
|
23323
23438
|
#
|
23324
|
-
# *
|
23439
|
+
# * kms:CreateGrant
|
23325
23440
|
#
|
23326
|
-
# *
|
23441
|
+
# * kms:DescribeKey
|
23327
23442
|
#
|
23328
|
-
# *
|
23443
|
+
# * kms:RetireGrant
|
23329
23444
|
#
|
23330
23445
|
# @option params [String] :s3_prefix
|
23331
23446
|
# The Amazon S3 bucket prefix to use as the file name and path of the
|
@@ -23414,12 +23529,15 @@ module Aws::RDS
|
|
23414
23529
|
# Services console, the `start-activity-stream` CLI command, or the
|
23415
23530
|
# `StartActivityStream` action.
|
23416
23531
|
#
|
23417
|
-
# For more information, see [
|
23418
|
-
# *Amazon Aurora User Guide
|
23532
|
+
# For more information, see [ Monitoring Amazon Aurora with Database
|
23533
|
+
# Activity Streams][1] in the *Amazon Aurora User Guide* or [ Monitoring
|
23534
|
+
# Amazon RDS with Database Activity Streams][2] in the *Amazon RDS User
|
23535
|
+
# Guide*.
|
23419
23536
|
#
|
23420
23537
|
#
|
23421
23538
|
#
|
23422
23539
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/DBActivityStreams.html
|
23540
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/DBActivityStreams.html
|
23423
23541
|
#
|
23424
23542
|
# @option params [required, String] :resource_arn
|
23425
23543
|
# The Amazon Resource Name (ARN) of the DB cluster for the database
|
@@ -23795,6 +23913,8 @@ module Aws::RDS
|
|
23795
23913
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
23796
23914
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
23797
23915
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
23916
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
23917
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
23798
23918
|
#
|
23799
23919
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
23800
23920
|
#
|
@@ -24120,6 +24240,8 @@ module Aws::RDS
|
|
24120
24240
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
24121
24241
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
24122
24242
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
24243
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
24244
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
24123
24245
|
#
|
24124
24246
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica AWS API Documentation
|
24125
24247
|
#
|
@@ -24143,7 +24265,7 @@ module Aws::RDS
|
|
24143
24265
|
params: params,
|
24144
24266
|
config: config)
|
24145
24267
|
context[:gem_name] = 'aws-sdk-rds'
|
24146
|
-
context[:gem_version] = '1.
|
24268
|
+
context[:gem_version] = '1.170.0'
|
24147
24269
|
Seahorse::Client::Request.new(handlers, context)
|
24148
24270
|
end
|
24149
24271
|
|
@@ -60,8 +60,10 @@ module Aws::RDS
|
|
60
60
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
61
61
|
BooleanOptional = Shapes::BooleanShape.new(name: 'BooleanOptional')
|
62
62
|
BucketName = Shapes::StringShape.new(name: 'BucketName')
|
63
|
+
CACertificateIdentifiersList = Shapes::ListShape.new(name: 'CACertificateIdentifiersList')
|
63
64
|
CancelExportTaskMessage = Shapes::StructureShape.new(name: 'CancelExportTaskMessage')
|
64
65
|
Certificate = Shapes::StructureShape.new(name: 'Certificate')
|
66
|
+
CertificateDetails = Shapes::StructureShape.new(name: 'CertificateDetails')
|
65
67
|
CertificateList = Shapes::ListShape.new(name: 'CertificateList')
|
66
68
|
CertificateMessage = Shapes::StructureShape.new(name: 'CertificateMessage')
|
67
69
|
CertificateNotFoundFault = Shapes::StructureShape.new(name: 'CertificateNotFoundFault')
|
@@ -751,6 +753,8 @@ module Aws::RDS
|
|
751
753
|
|
752
754
|
BlueGreenDeploymentTaskList.member = Shapes::ShapeRef.new(shape: BlueGreenDeploymentTask)
|
753
755
|
|
756
|
+
CACertificateIdentifiersList.member = Shapes::ShapeRef.new(shape: String)
|
757
|
+
|
754
758
|
CancelExportTaskMessage.add_member(:export_task_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ExportTaskIdentifier"))
|
755
759
|
CancelExportTaskMessage.struct_class = Types::CancelExportTaskMessage
|
756
760
|
|
@@ -764,6 +768,10 @@ module Aws::RDS
|
|
764
768
|
Certificate.add_member(:customer_override_valid_till, Shapes::ShapeRef.new(shape: TStamp, location_name: "CustomerOverrideValidTill"))
|
765
769
|
Certificate.struct_class = Types::Certificate
|
766
770
|
|
771
|
+
CertificateDetails.add_member(:ca_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CAIdentifier"))
|
772
|
+
CertificateDetails.add_member(:valid_till, Shapes::ShapeRef.new(shape: TStamp, location_name: "ValidTill"))
|
773
|
+
CertificateDetails.struct_class = Types::CertificateDetails
|
774
|
+
|
767
775
|
CertificateList.member = Shapes::ShapeRef.new(shape: Certificate, location_name: "Certificate")
|
768
776
|
|
769
777
|
CertificateMessage.add_member(:certificates, Shapes::ShapeRef.new(shape: CertificateList, location_name: "Certificates"))
|
@@ -1014,6 +1022,7 @@ module Aws::RDS
|
|
1014
1022
|
CreateDBInstanceMessage.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
|
1015
1023
|
CreateDBInstanceMessage.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
|
1016
1024
|
CreateDBInstanceMessage.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
|
1025
|
+
CreateDBInstanceMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
1017
1026
|
CreateDBInstanceMessage.struct_class = Types::CreateDBInstanceMessage
|
1018
1027
|
|
1019
1028
|
CreateDBInstanceReadReplicaMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
@@ -1052,6 +1061,7 @@ module Aws::RDS
|
|
1052
1061
|
CreateDBInstanceReadReplicaMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
1053
1062
|
CreateDBInstanceReadReplicaMessage.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
|
1054
1063
|
CreateDBInstanceReadReplicaMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
1064
|
+
CreateDBInstanceReadReplicaMessage.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
1055
1065
|
CreateDBInstanceReadReplicaMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
1056
1066
|
CreateDBInstanceReadReplicaMessage.struct_class = Types::CreateDBInstanceReadReplicaMessage
|
1057
1067
|
|
@@ -1421,6 +1431,8 @@ module Aws::RDS
|
|
1421
1431
|
DBEngineVersion.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1422
1432
|
DBEngineVersion.add_member(:supports_babelfish, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsBabelfish"))
|
1423
1433
|
DBEngineVersion.add_member(:custom_db_engine_version_manifest, Shapes::ShapeRef.new(shape: CustomDBEngineVersionManifest, location_name: "CustomDBEngineVersionManifest"))
|
1434
|
+
DBEngineVersion.add_member(:supports_certificate_rotation_without_restart, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsCertificateRotationWithoutRestart"))
|
1435
|
+
DBEngineVersion.add_member(:supported_ca_certificate_identifiers, Shapes::ShapeRef.new(shape: CACertificateIdentifiersList, location_name: "SupportedCACertificateIdentifiers"))
|
1424
1436
|
DBEngineVersion.struct_class = Types::DBEngineVersion
|
1425
1437
|
|
1426
1438
|
DBEngineVersionList.member = Shapes::ShapeRef.new(shape: DBEngineVersion, location_name: "DBEngineVersion")
|
@@ -1508,6 +1520,7 @@ module Aws::RDS
|
|
1508
1520
|
DBInstance.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
|
1509
1521
|
DBInstance.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
|
1510
1522
|
DBInstance.add_member(:master_user_secret, Shapes::ShapeRef.new(shape: MasterUserSecret, location_name: "MasterUserSecret"))
|
1523
|
+
DBInstance.add_member(:certificate_details, Shapes::ShapeRef.new(shape: CertificateDetails, location_name: "CertificateDetails"))
|
1511
1524
|
DBInstance.struct_class = Types::DBInstance
|
1512
1525
|
|
1513
1526
|
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
@@ -3270,6 +3283,7 @@ module Aws::RDS
|
|
3270
3283
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
3271
3284
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
|
3272
3285
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:db_cluster_snapshot_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterSnapshotIdentifier"))
|
3286
|
+
RestoreDBInstanceFromDBSnapshotMessage.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
3273
3287
|
RestoreDBInstanceFromDBSnapshotMessage.struct_class = Types::RestoreDBInstanceFromDBSnapshotMessage
|
3274
3288
|
|
3275
3289
|
RestoreDBInstanceFromDBSnapshotResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -3366,6 +3380,7 @@ module Aws::RDS
|
|
3366
3380
|
RestoreDBInstanceToPointInTimeMessage.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
3367
3381
|
RestoreDBInstanceToPointInTimeMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
3368
3382
|
RestoreDBInstanceToPointInTimeMessage.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
|
3383
|
+
RestoreDBInstanceToPointInTimeMessage.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
3369
3384
|
RestoreDBInstanceToPointInTimeMessage.struct_class = Types::RestoreDBInstanceToPointInTimeMessage
|
3370
3385
|
|
3371
3386
|
RestoreDBInstanceToPointInTimeResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -3928,6 +3943,7 @@ module Aws::RDS
|
|
3928
3943
|
o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
|
3929
3944
|
o.errors << Shapes::ShapeRef.new(shape: BackupPolicyNotFoundFault)
|
3930
3945
|
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
3946
|
+
o.errors << Shapes::ShapeRef.new(shape: CertificateNotFoundFault)
|
3931
3947
|
end)
|
3932
3948
|
|
3933
3949
|
api.add_operation(:create_db_instance_read_replica, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1822,7 +1822,7 @@ module Aws::RDS
|
|
1822
1822
|
#
|
1823
1823
|
# Example: `my-cluster2`
|
1824
1824
|
#
|
1825
|
-
# Valid for: Aurora DB clusters
|
1825
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
1826
1826
|
# @option options [Boolean] :apply_immediately
|
1827
1827
|
# A value that indicates whether the modifications in this request and
|
1828
1828
|
# any pending modifications are asynchronously applied as soon as
|
@@ -254,6 +254,29 @@ module Aws::RDS
|
|
254
254
|
data[:custom_db_engine_version_manifest]
|
255
255
|
end
|
256
256
|
|
257
|
+
# A value that indicates whether the engine version supports rotating
|
258
|
+
# the server certificate without rebooting the DB instance.
|
259
|
+
# @return [Boolean]
|
260
|
+
def supports_certificate_rotation_without_restart
|
261
|
+
data[:supports_certificate_rotation_without_restart]
|
262
|
+
end
|
263
|
+
|
264
|
+
# A list of the supported CA certificate identifiers.
|
265
|
+
#
|
266
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
267
|
+
# DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
|
268
|
+
# encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
|
269
|
+
# Guide*.
|
270
|
+
#
|
271
|
+
#
|
272
|
+
#
|
273
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
274
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
275
|
+
# @return [Array<String>]
|
276
|
+
def supported_ca_certificate_identifiers
|
277
|
+
data[:supported_ca_certificate_identifiers]
|
278
|
+
end
|
279
|
+
|
257
280
|
# @!endgroup
|
258
281
|
|
259
282
|
# @return [Client]
|
@@ -375,6 +375,16 @@ module Aws::RDS
|
|
375
375
|
end
|
376
376
|
|
377
377
|
# The identifier of the CA certificate for this DB instance.
|
378
|
+
#
|
379
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
380
|
+
# DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
|
381
|
+
# encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
|
382
|
+
# Guide*.
|
383
|
+
#
|
384
|
+
#
|
385
|
+
#
|
386
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
387
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
378
388
|
# @return [String]
|
379
389
|
def ca_certificate_identifier
|
380
390
|
data[:ca_certificate_identifier]
|
@@ -755,6 +765,12 @@ module Aws::RDS
|
|
755
765
|
data[:master_user_secret]
|
756
766
|
end
|
757
767
|
|
768
|
+
# The details of the DB instance's server certificate.
|
769
|
+
# @return [Types::CertificateDetails]
|
770
|
+
def certificate_details
|
771
|
+
data[:certificate_details]
|
772
|
+
end
|
773
|
+
|
758
774
|
# @!endgroup
|
759
775
|
|
760
776
|
# @return [Client]
|
@@ -955,6 +971,7 @@ module Aws::RDS
|
|
955
971
|
# storage_throughput: 1,
|
956
972
|
# manage_master_user_password: false,
|
957
973
|
# master_user_secret_kms_key_id: "String",
|
974
|
+
# ca_certificate_identifier: "String",
|
958
975
|
# })
|
959
976
|
# @param [Hash] options ({})
|
960
977
|
# @option options [String] :db_name
|
@@ -2039,6 +2056,21 @@ module Aws::RDS
|
|
2039
2056
|
# There is a default KMS key for your Amazon Web Services account. Your
|
2040
2057
|
# Amazon Web Services account has a different default KMS key for each
|
2041
2058
|
# Amazon Web Services Region.
|
2059
|
+
# @option options [String] :ca_certificate_identifier
|
2060
|
+
# Specifies the CA certificate identifier to use for the DB instance’s
|
2061
|
+
# server certificate.
|
2062
|
+
#
|
2063
|
+
# This setting doesn't apply to RDS Custom.
|
2064
|
+
#
|
2065
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
2066
|
+
# DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
|
2067
|
+
# encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
|
2068
|
+
# Guide*.
|
2069
|
+
#
|
2070
|
+
#
|
2071
|
+
#
|
2072
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
2073
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
2042
2074
|
# @return [DBInstance]
|
2043
2075
|
def create(options = {})
|
2044
2076
|
options = options.merge(db_instance_identifier: @id)
|
@@ -2098,6 +2130,7 @@ module Aws::RDS
|
|
2098
2130
|
# network_type: "String",
|
2099
2131
|
# storage_throughput: 1,
|
2100
2132
|
# enable_customer_owned_ip: false,
|
2133
|
+
# allocated_storage: 1,
|
2101
2134
|
# source_region: "String",
|
2102
2135
|
# })
|
2103
2136
|
# @param [Hash] options ({})
|
@@ -2584,6 +2617,16 @@ module Aws::RDS
|
|
2584
2617
|
#
|
2585
2618
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
2586
2619
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
2620
|
+
# @option options [Integer] :allocated_storage
|
2621
|
+
# The amount of storage (in gibibytes) to allocate initially for the
|
2622
|
+
# read replica. Follow the allocation rules specified in
|
2623
|
+
# `CreateDBInstance`.
|
2624
|
+
#
|
2625
|
+
# <note markdown="1"> Be sure to allocate enough memory for your read replica so that the
|
2626
|
+
# create operation can succeed. You can also allocate additional memory
|
2627
|
+
# for future growth.
|
2628
|
+
#
|
2629
|
+
# </note>
|
2587
2630
|
# @option options [String] :source_region
|
2588
2631
|
# The source region of the snapshot. This is only needed when the
|
2589
2632
|
# shapshot is encrypted and in a different region.
|
@@ -3187,9 +3230,20 @@ module Aws::RDS
|
|
3187
3230
|
#
|
3188
3231
|
# This setting doesn't apply to RDS Custom.
|
3189
3232
|
# @option options [String] :ca_certificate_identifier
|
3190
|
-
# Specifies the certificate to
|
3233
|
+
# Specifies the CA certificate identifier to use for the DB instance’s
|
3234
|
+
# server certificate.
|
3191
3235
|
#
|
3192
3236
|
# This setting doesn't apply to RDS Custom.
|
3237
|
+
#
|
3238
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
3239
|
+
# DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
|
3240
|
+
# encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
|
3241
|
+
# Guide*.
|
3242
|
+
#
|
3243
|
+
#
|
3244
|
+
#
|
3245
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
3246
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
3193
3247
|
# @option options [String] :domain
|
3194
3248
|
# The Active Directory directory ID to move the DB instance to. Specify
|
3195
3249
|
# `none` to remove the instance from its current domain. You must create
|
@@ -3766,6 +3820,7 @@ module Aws::RDS
|
|
3766
3820
|
# backup_target: "String",
|
3767
3821
|
# network_type: "String",
|
3768
3822
|
# storage_throughput: 1,
|
3823
|
+
# allocated_storage: 1,
|
3769
3824
|
# })
|
3770
3825
|
# @param [Hash] options ({})
|
3771
3826
|
# @option options [required, String] :target_db_instance_identifier
|
@@ -4143,6 +4198,15 @@ module Aws::RDS
|
|
4143
4198
|
# Specifies the storage throughput value for the DB instance.
|
4144
4199
|
#
|
4145
4200
|
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
4201
|
+
# @option options [Integer] :allocated_storage
|
4202
|
+
# The amount of storage (in gibibytes) to allocate initially for the DB
|
4203
|
+
# instance. Follow the allocation rules specified in `CreateDBInstance`.
|
4204
|
+
#
|
4205
|
+
# <note markdown="1"> Be sure to allocate enough memory for your new DB instance so that the
|
4206
|
+
# restore operation can succeed. You can also allocate additional memory
|
4207
|
+
# for future growth.
|
4208
|
+
#
|
4209
|
+
# </note>
|
4146
4210
|
# @return [DBInstance]
|
4147
4211
|
def restore(options = {})
|
4148
4212
|
options = options.merge(source_db_instance_identifier: @id)
|
@@ -667,6 +667,7 @@ module Aws::RDS
|
|
667
667
|
# network_type: "String",
|
668
668
|
# storage_throughput: 1,
|
669
669
|
# db_cluster_snapshot_identifier: "String",
|
670
|
+
# allocated_storage: 1,
|
670
671
|
# })
|
671
672
|
# @param [Hash] options ({})
|
672
673
|
# @option options [required, String] :db_instance_identifier
|
@@ -1055,6 +1056,15 @@ module Aws::RDS
|
|
1055
1056
|
#
|
1056
1057
|
#
|
1057
1058
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
1059
|
+
# @option options [Integer] :allocated_storage
|
1060
|
+
# The amount of storage (in gibibytes) to allocate initially for the DB
|
1061
|
+
# instance. Follow the allocation rules specified in CreateDBInstance.
|
1062
|
+
#
|
1063
|
+
# <note markdown="1"> Be sure to allocate enough memory for your new DB instance so that the
|
1064
|
+
# restore operation can succeed. You can also allocate additional memory
|
1065
|
+
# for future growth.
|
1066
|
+
#
|
1067
|
+
# </note>
|
1058
1068
|
# @return [DBInstance]
|
1059
1069
|
def restore(options = {})
|
1060
1070
|
options = options.merge(db_snapshot_identifier: @snapshot_id)
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -1050,6 +1050,7 @@ module Aws::RDS
|
|
1050
1050
|
# storage_throughput: 1,
|
1051
1051
|
# manage_master_user_password: false,
|
1052
1052
|
# master_user_secret_kms_key_id: "String",
|
1053
|
+
# ca_certificate_identifier: "String",
|
1053
1054
|
# })
|
1054
1055
|
# @param [Hash] options ({})
|
1055
1056
|
# @option options [String] :db_name
|
@@ -2147,6 +2148,21 @@ module Aws::RDS
|
|
2147
2148
|
# There is a default KMS key for your Amazon Web Services account. Your
|
2148
2149
|
# Amazon Web Services account has a different default KMS key for each
|
2149
2150
|
# Amazon Web Services Region.
|
2151
|
+
# @option options [String] :ca_certificate_identifier
|
2152
|
+
# Specifies the CA certificate identifier to use for the DB instance’s
|
2153
|
+
# server certificate.
|
2154
|
+
#
|
2155
|
+
# This setting doesn't apply to RDS Custom.
|
2156
|
+
#
|
2157
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
2158
|
+
# DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
|
2159
|
+
# encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
|
2160
|
+
# Guide*.
|
2161
|
+
#
|
2162
|
+
#
|
2163
|
+
#
|
2164
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
2165
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
2150
2166
|
# @return [DBInstance]
|
2151
2167
|
def create_db_instance(options = {})
|
2152
2168
|
resp = @client.create_db_instance(options)
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -704,6 +704,16 @@ module Aws::RDS
|
|
704
704
|
|
705
705
|
# A CA certificate for an Amazon Web Services account.
|
706
706
|
#
|
707
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
708
|
+
# DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
|
709
|
+
# encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
|
710
|
+
# Guide*.
|
711
|
+
#
|
712
|
+
#
|
713
|
+
#
|
714
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
715
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
716
|
+
#
|
707
717
|
# @!attribute [rw] certificate_identifier
|
708
718
|
# The unique key that identifies a certificate.
|
709
719
|
# @return [String]
|
@@ -752,6 +762,36 @@ module Aws::RDS
|
|
752
762
|
include Aws::Structure
|
753
763
|
end
|
754
764
|
|
765
|
+
# Returns the details of the DB instance’s server certificate.
|
766
|
+
#
|
767
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
768
|
+
# DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
|
769
|
+
# encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
|
770
|
+
# Guide*.
|
771
|
+
#
|
772
|
+
#
|
773
|
+
#
|
774
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
775
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
776
|
+
#
|
777
|
+
# @!attribute [rw] ca_identifier
|
778
|
+
# The CA identifier of the CA certificate used for the DB instance's
|
779
|
+
# server certificate.
|
780
|
+
# @return [String]
|
781
|
+
#
|
782
|
+
# @!attribute [rw] valid_till
|
783
|
+
# The expiration date of the DB instance’s server certificate.
|
784
|
+
# @return [Time]
|
785
|
+
#
|
786
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CertificateDetails AWS API Documentation
|
787
|
+
#
|
788
|
+
class CertificateDetails < Struct.new(
|
789
|
+
:ca_identifier,
|
790
|
+
:valid_till)
|
791
|
+
SENSITIVE = []
|
792
|
+
include Aws::Structure
|
793
|
+
end
|
794
|
+
|
755
795
|
# Data returned by the **DescribeCertificates** action.
|
756
796
|
#
|
757
797
|
# @!attribute [rw] certificates
|
@@ -4235,6 +4275,23 @@ module Aws::RDS
|
|
4235
4275
|
# each Amazon Web Services Region.
|
4236
4276
|
# @return [String]
|
4237
4277
|
#
|
4278
|
+
# @!attribute [rw] ca_certificate_identifier
|
4279
|
+
# Specifies the CA certificate identifier to use for the DB instance’s
|
4280
|
+
# server certificate.
|
4281
|
+
#
|
4282
|
+
# This setting doesn't apply to RDS Custom.
|
4283
|
+
#
|
4284
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
4285
|
+
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
4286
|
+
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
4287
|
+
# User Guide*.
|
4288
|
+
#
|
4289
|
+
#
|
4290
|
+
#
|
4291
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
4292
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
4293
|
+
# @return [String]
|
4294
|
+
#
|
4238
4295
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
4239
4296
|
#
|
4240
4297
|
class CreateDBInstanceMessage < Struct.new(
|
@@ -4291,7 +4348,8 @@ module Aws::RDS
|
|
4291
4348
|
:network_type,
|
4292
4349
|
:storage_throughput,
|
4293
4350
|
:manage_master_user_password,
|
4294
|
-
:master_user_secret_kms_key_id
|
4351
|
+
:master_user_secret_kms_key_id,
|
4352
|
+
:ca_certificate_identifier)
|
4295
4353
|
SENSITIVE = []
|
4296
4354
|
include Aws::Structure
|
4297
4355
|
end
|
@@ -4901,6 +4959,18 @@ module Aws::RDS
|
|
4901
4959
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
4902
4960
|
# @return [Boolean]
|
4903
4961
|
#
|
4962
|
+
# @!attribute [rw] allocated_storage
|
4963
|
+
# The amount of storage (in gibibytes) to allocate initially for the
|
4964
|
+
# read replica. Follow the allocation rules specified in
|
4965
|
+
# `CreateDBInstance`.
|
4966
|
+
#
|
4967
|
+
# <note markdown="1"> Be sure to allocate enough memory for your read replica so that the
|
4968
|
+
# create operation can succeed. You can also allocate additional
|
4969
|
+
# memory for future growth.
|
4970
|
+
#
|
4971
|
+
# </note>
|
4972
|
+
# @return [Integer]
|
4973
|
+
#
|
4904
4974
|
# @!attribute [rw] source_region
|
4905
4975
|
# The source region of the snapshot. This is only needed when the
|
4906
4976
|
# shapshot is encrypted and in a different region.
|
@@ -4945,6 +5015,7 @@ module Aws::RDS
|
|
4945
5015
|
:network_type,
|
4946
5016
|
:storage_throughput,
|
4947
5017
|
:enable_customer_owned_ip,
|
5018
|
+
:allocated_storage,
|
4948
5019
|
:source_region)
|
4949
5020
|
SENSITIVE = []
|
4950
5021
|
include Aws::Structure
|
@@ -7254,6 +7325,25 @@ module Aws::RDS
|
|
7254
7325
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields
|
7255
7326
|
# @return [String]
|
7256
7327
|
#
|
7328
|
+
# @!attribute [rw] supports_certificate_rotation_without_restart
|
7329
|
+
# A value that indicates whether the engine version supports rotating
|
7330
|
+
# the server certificate without rebooting the DB instance.
|
7331
|
+
# @return [Boolean]
|
7332
|
+
#
|
7333
|
+
# @!attribute [rw] supported_ca_certificate_identifiers
|
7334
|
+
# A list of the supported CA certificate identifiers.
|
7335
|
+
#
|
7336
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
7337
|
+
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
7338
|
+
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
7339
|
+
# User Guide*.
|
7340
|
+
#
|
7341
|
+
#
|
7342
|
+
#
|
7343
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
7344
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
7345
|
+
# @return [Array<String>]
|
7346
|
+
#
|
7257
7347
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBEngineVersion AWS API Documentation
|
7258
7348
|
#
|
7259
7349
|
class DBEngineVersion < Struct.new(
|
@@ -7285,7 +7375,9 @@ module Aws::RDS
|
|
7285
7375
|
:create_time,
|
7286
7376
|
:tag_list,
|
7287
7377
|
:supports_babelfish,
|
7288
|
-
:custom_db_engine_version_manifest
|
7378
|
+
:custom_db_engine_version_manifest,
|
7379
|
+
:supports_certificate_rotation_without_restart,
|
7380
|
+
:supported_ca_certificate_identifiers)
|
7289
7381
|
SENSITIVE = []
|
7290
7382
|
include Aws::Structure
|
7291
7383
|
end
|
@@ -7588,6 +7680,16 @@ module Aws::RDS
|
|
7588
7680
|
#
|
7589
7681
|
# @!attribute [rw] ca_certificate_identifier
|
7590
7682
|
# The identifier of the CA certificate for this DB instance.
|
7683
|
+
#
|
7684
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
7685
|
+
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
7686
|
+
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
7687
|
+
# User Guide*.
|
7688
|
+
#
|
7689
|
+
#
|
7690
|
+
#
|
7691
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
7692
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
7591
7693
|
# @return [String]
|
7592
7694
|
#
|
7593
7695
|
# @!attribute [rw] domain_memberships
|
@@ -7894,6 +7996,10 @@ module Aws::RDS
|
|
7894
7996
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html
|
7895
7997
|
# @return [Types::MasterUserSecret]
|
7896
7998
|
#
|
7999
|
+
# @!attribute [rw] certificate_details
|
8000
|
+
# The details of the DB instance's server certificate.
|
8001
|
+
# @return [Types::CertificateDetails]
|
8002
|
+
#
|
7897
8003
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
7898
8004
|
#
|
7899
8005
|
class DBInstance < Struct.new(
|
@@ -7975,7 +8081,8 @@ module Aws::RDS
|
|
7975
8081
|
:activity_stream_policy_status,
|
7976
8082
|
:storage_throughput,
|
7977
8083
|
:db_system_id,
|
7978
|
-
:master_user_secret
|
8084
|
+
:master_user_secret,
|
8085
|
+
:certificate_details)
|
7979
8086
|
SENSITIVE = []
|
7980
8087
|
include Aws::Structure
|
7981
8088
|
end
|
@@ -14071,6 +14178,16 @@ module Aws::RDS
|
|
14071
14178
|
|
14072
14179
|
# @!attribute [rw] certificate
|
14073
14180
|
# A CA certificate for an Amazon Web Services account.
|
14181
|
+
#
|
14182
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
14183
|
+
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
14184
|
+
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
14185
|
+
# User Guide*.
|
14186
|
+
#
|
14187
|
+
#
|
14188
|
+
#
|
14189
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
14190
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
14074
14191
|
# @return [Types::Certificate]
|
14075
14192
|
#
|
14076
14193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCertificatesResult AWS API Documentation
|
@@ -14242,7 +14359,7 @@ module Aws::RDS
|
|
14242
14359
|
#
|
14243
14360
|
# Example: `my-cluster2`
|
14244
14361
|
#
|
14245
|
-
# Valid for: Aurora DB clusters
|
14362
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
14246
14363
|
# @return [String]
|
14247
14364
|
#
|
14248
14365
|
# @!attribute [rw] apply_immediately
|
@@ -15547,9 +15664,20 @@ module Aws::RDS
|
|
15547
15664
|
# @return [String]
|
15548
15665
|
#
|
15549
15666
|
# @!attribute [rw] ca_certificate_identifier
|
15550
|
-
# Specifies the certificate to
|
15667
|
+
# Specifies the CA certificate identifier to use for the DB instance’s
|
15668
|
+
# server certificate.
|
15551
15669
|
#
|
15552
15670
|
# This setting doesn't apply to RDS Custom.
|
15671
|
+
#
|
15672
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
15673
|
+
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
15674
|
+
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
15675
|
+
# User Guide*.
|
15676
|
+
#
|
15677
|
+
#
|
15678
|
+
#
|
15679
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
15680
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
15553
15681
|
# @return [String]
|
15554
15682
|
#
|
15555
15683
|
# @!attribute [rw] domain
|
@@ -17731,6 +17859,16 @@ module Aws::RDS
|
|
17731
17859
|
#
|
17732
17860
|
# @!attribute [rw] ca_certificate_identifier
|
17733
17861
|
# The identifier of the CA certificate for the DB instance.
|
17862
|
+
#
|
17863
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
17864
|
+
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
17865
|
+
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
17866
|
+
# User Guide*.
|
17867
|
+
#
|
17868
|
+
#
|
17869
|
+
#
|
17870
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
17871
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
17734
17872
|
# @return [String]
|
17735
17873
|
#
|
17736
17874
|
# @!attribute [rw] db_subnet_group_name
|
@@ -20729,6 +20867,18 @@ module Aws::RDS
|
|
20729
20867
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
20730
20868
|
# @return [String]
|
20731
20869
|
#
|
20870
|
+
# @!attribute [rw] allocated_storage
|
20871
|
+
# The amount of storage (in gibibytes) to allocate initially for the
|
20872
|
+
# DB instance. Follow the allocation rules specified in
|
20873
|
+
# CreateDBInstance.
|
20874
|
+
#
|
20875
|
+
# <note markdown="1"> Be sure to allocate enough memory for your new DB instance so that
|
20876
|
+
# the restore operation can succeed. You can also allocate additional
|
20877
|
+
# memory for future growth.
|
20878
|
+
#
|
20879
|
+
# </note>
|
20880
|
+
# @return [Integer]
|
20881
|
+
#
|
20732
20882
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshotMessage AWS API Documentation
|
20733
20883
|
#
|
20734
20884
|
class RestoreDBInstanceFromDBSnapshotMessage < Struct.new(
|
@@ -20765,7 +20915,8 @@ module Aws::RDS
|
|
20765
20915
|
:backup_target,
|
20766
20916
|
:network_type,
|
20767
20917
|
:storage_throughput,
|
20768
|
-
:db_cluster_snapshot_identifier
|
20918
|
+
:db_cluster_snapshot_identifier,
|
20919
|
+
:allocated_storage)
|
20769
20920
|
SENSITIVE = []
|
20770
20921
|
include Aws::Structure
|
20771
20922
|
end
|
@@ -20811,7 +20962,7 @@ module Aws::RDS
|
|
20811
20962
|
# @return [String]
|
20812
20963
|
#
|
20813
20964
|
# @!attribute [rw] allocated_storage
|
20814
|
-
# The amount of storage (in
|
20965
|
+
# The amount of storage (in gibibytes) to allocate initially for the
|
20815
20966
|
# DB instance. Follow the allocation rules specified in
|
20816
20967
|
# `CreateDBInstance`.
|
20817
20968
|
#
|
@@ -21869,6 +22020,18 @@ module Aws::RDS
|
|
21869
22020
|
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
21870
22021
|
# @return [Integer]
|
21871
22022
|
#
|
22023
|
+
# @!attribute [rw] allocated_storage
|
22024
|
+
# The amount of storage (in gibibytes) to allocate initially for the
|
22025
|
+
# DB instance. Follow the allocation rules specified in
|
22026
|
+
# `CreateDBInstance`.
|
22027
|
+
#
|
22028
|
+
# <note markdown="1"> Be sure to allocate enough memory for your new DB instance so that
|
22029
|
+
# the restore operation can succeed. You can also allocate additional
|
22030
|
+
# memory for future growth.
|
22031
|
+
#
|
22032
|
+
# </note>
|
22033
|
+
# @return [Integer]
|
22034
|
+
#
|
21872
22035
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
|
21873
22036
|
#
|
21874
22037
|
class RestoreDBInstanceToPointInTimeMessage < Struct.new(
|
@@ -21909,7 +22072,8 @@ module Aws::RDS
|
|
21909
22072
|
:custom_iam_instance_profile,
|
21910
22073
|
:backup_target,
|
21911
22074
|
:network_type,
|
21912
|
-
:storage_throughput
|
22075
|
+
:storage_throughput,
|
22076
|
+
:allocated_storage)
|
21913
22077
|
SENSITIVE = []
|
21914
22078
|
include Aws::Structure
|
21915
22079
|
end
|
@@ -22623,27 +22787,27 @@ module Aws::RDS
|
|
22623
22787
|
# The ID of the Amazon Web Services KMS key to use to encrypt the
|
22624
22788
|
# snapshot exported to Amazon S3. The Amazon Web Services KMS key
|
22625
22789
|
# identifier is the key ARN, key ID, alias ARN, or alias name for the
|
22626
|
-
# KMS key. The caller of this operation must be authorized to
|
22627
|
-
#
|
22628
|
-
#
|
22790
|
+
# KMS key. The caller of this operation must be authorized to run the
|
22791
|
+
# following operations. These can be set in the Amazon Web Services
|
22792
|
+
# KMS key policy:
|
22629
22793
|
#
|
22630
|
-
# *
|
22794
|
+
# * kms:Encrypt
|
22631
22795
|
#
|
22632
|
-
# *
|
22796
|
+
# * kms:Decrypt
|
22633
22797
|
#
|
22634
|
-
# *
|
22798
|
+
# * kms:GenerateDataKey
|
22635
22799
|
#
|
22636
|
-
# *
|
22800
|
+
# * kms:GenerateDataKeyWithoutPlaintext
|
22637
22801
|
#
|
22638
|
-
# *
|
22802
|
+
# * kms:ReEncryptFrom
|
22639
22803
|
#
|
22640
|
-
# *
|
22804
|
+
# * kms:ReEncryptTo
|
22641
22805
|
#
|
22642
|
-
# *
|
22806
|
+
# * kms:CreateGrant
|
22643
22807
|
#
|
22644
|
-
# *
|
22808
|
+
# * kms:DescribeKey
|
22645
22809
|
#
|
22646
|
-
# *
|
22810
|
+
# * kms:RetireGrant
|
22647
22811
|
# @return [String]
|
22648
22812
|
#
|
22649
22813
|
# @!attribute [rw] s3_prefix
|
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.170.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:
|
11
|
+
date: 2023-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|