aws-sdk-rds 1.167.0 → 1.169.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +127 -69
- data/lib/aws-sdk-rds/client_api.rb +28 -3
- data/lib/aws-sdk-rds/db_cluster.rb +1 -1
- data/lib/aws-sdk-rds/db_engine_version.rb +36 -0
- data/lib/aws-sdk-rds/db_instance.rb +44 -1
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/resource.rb +16 -0
- data/lib/aws-sdk-rds/types.rb +184 -17
- 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: '007828413d550e542a9231e5f1c1b8bd7703ed39746a592f9e4a1ecae82fd9ec'
|
4
|
+
data.tar.gz: 152def6c5d84666dafc5c8afc8d1f6e082f8e63e21cb91d2e0a93055bef72ad2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 23fddabaaf5f7afb7261883a92100baf451e0245b3ffe984d82a189ef0af22b1fe331fd7932fc241125be1dae727d0f88e9a8eb751046b86755329cd034dbe47
|
7
|
+
data.tar.gz: 2379cf2151701435f060396aaf50810188a94e8354bb32c0f457ace31aae031291cc9d54873e60fcf6b78ff5919a0a8bf5f12dce69358a63563dfea0136aeaba
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.169.0 (2023-01-05)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* 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.
|
8
|
+
|
9
|
+
1.168.0 (2022-12-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for Custom Engine Version (CEV) on RDS Custom SQL Server.
|
13
|
+
|
4
14
|
1.167.0 (2022-12-22)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.169.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -1918,54 +1918,7 @@ module Aws::RDS
|
|
1918
1918
|
req.send_request(options)
|
1919
1919
|
end
|
1920
1920
|
|
1921
|
-
# Creates a custom DB engine version (CEV).
|
1922
|
-
# snapshot of a database engine and specific AMI. The supported engines
|
1923
|
-
# are the following:
|
1924
|
-
#
|
1925
|
-
# * Oracle Database 12.1 Enterprise Edition with the January 2021 or
|
1926
|
-
# later RU/RUR
|
1927
|
-
#
|
1928
|
-
# * Oracle Database 19c Enterprise Edition with the January 2021 or
|
1929
|
-
# later RU/RUR
|
1930
|
-
#
|
1931
|
-
# Amazon RDS, which is a fully managed service, supplies the Amazon
|
1932
|
-
# Machine Image (AMI) and database software. The Amazon RDS database
|
1933
|
-
# software is preinstalled, so you need only select a DB engine and
|
1934
|
-
# version, and create your database. With Amazon RDS Custom for Oracle,
|
1935
|
-
# you upload your database installation files in Amazon S3.
|
1936
|
-
#
|
1937
|
-
# When you create a custom engine version, you specify the files in a
|
1938
|
-
# JSON document called a CEV manifest. This document describes
|
1939
|
-
# installation .zip files stored in Amazon S3. RDS Custom creates your
|
1940
|
-
# CEV from the installation files that you provided. This service model
|
1941
|
-
# is called Bring Your Own Media (BYOM).
|
1942
|
-
#
|
1943
|
-
# Creation takes approximately two hours. If creation fails, RDS Custom
|
1944
|
-
# issues `RDS-EVENT-0196` with the message `Creation failed for custom
|
1945
|
-
# engine version`, and includes details about the failure. For example,
|
1946
|
-
# the event prints missing files.
|
1947
|
-
#
|
1948
|
-
# After you create the CEV, it is available for use. You can create
|
1949
|
-
# multiple CEVs, and create multiple RDS Custom instances from any CEV.
|
1950
|
-
# You can also change the status of a CEV to make it available or
|
1951
|
-
# inactive.
|
1952
|
-
#
|
1953
|
-
# <note markdown="1"> The MediaImport service that imports files from Amazon S3 to create
|
1954
|
-
# CEVs isn't integrated with Amazon Web Services CloudTrail. If you
|
1955
|
-
# turn on data logging for Amazon RDS in CloudTrail, calls to the
|
1956
|
-
# `CreateCustomDbEngineVersion` event aren't logged. However, you might
|
1957
|
-
# see calls from the API gateway that accesses your Amazon S3 bucket.
|
1958
|
-
# These calls originate from the MediaImport service for the
|
1959
|
-
# `CreateCustomDbEngineVersion` event.
|
1960
|
-
#
|
1961
|
-
# </note>
|
1962
|
-
#
|
1963
|
-
# For more information, see [ Creating a CEV][1] in the *Amazon RDS User
|
1964
|
-
# Guide*.
|
1965
|
-
#
|
1966
|
-
#
|
1967
|
-
#
|
1968
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.create
|
1921
|
+
# Creates a custom DB engine version (CEV).
|
1969
1922
|
#
|
1970
1923
|
# @option params [required, String] :engine
|
1971
1924
|
# The database engine to use for your custom engine version (CEV). The
|
@@ -1978,7 +1931,7 @@ module Aws::RDS
|
|
1978
1931
|
# combination of `Engine` and `EngineVersion` is unique per customer per
|
1979
1932
|
# Region.
|
1980
1933
|
#
|
1981
|
-
# @option params [
|
1934
|
+
# @option params [String] :database_installation_files_s3_bucket_name
|
1982
1935
|
# The name of an Amazon S3 bucket that contains database installation
|
1983
1936
|
# files for your CEV. For example, a valid bucket name is
|
1984
1937
|
# `my-custom-installation-files`.
|
@@ -1988,7 +1941,11 @@ module Aws::RDS
|
|
1988
1941
|
# for your CEV. For example, a valid bucket name is `123456789012/cev1`.
|
1989
1942
|
# If this setting isn't specified, no prefix is assumed.
|
1990
1943
|
#
|
1991
|
-
# @option params [
|
1944
|
+
# @option params [String] :image_id
|
1945
|
+
# The ID of the AMI. An AMI ID is required to create a CEV for RDS
|
1946
|
+
# Custom for SQL Server.
|
1947
|
+
#
|
1948
|
+
# @option params [String] :kms_key_id
|
1992
1949
|
# The Amazon Web Services KMS key identifier for an encrypted CEV. A
|
1993
1950
|
# symmetric encryption KMS key is required for RDS Custom, but optional
|
1994
1951
|
# for Amazon RDS.
|
@@ -2010,7 +1967,7 @@ module Aws::RDS
|
|
2010
1967
|
# @option params [String] :description
|
2011
1968
|
# An optional description of your CEV.
|
2012
1969
|
#
|
2013
|
-
# @option params [
|
1970
|
+
# @option params [String] :manifest
|
2014
1971
|
# The CEV manifest, which is a JSON document that describes the
|
2015
1972
|
# installation .zip files stored in Amazon S3. Specify the name/value
|
2016
1973
|
# pairs in a file or a quoted string. RDS Custom applies the patches in
|
@@ -2062,6 +2019,8 @@ module Aws::RDS
|
|
2062
2019
|
# * {Types::DBEngineVersion#db_engine_description #db_engine_description} => String
|
2063
2020
|
# * {Types::DBEngineVersion#db_engine_version_description #db_engine_version_description} => String
|
2064
2021
|
# * {Types::DBEngineVersion#default_character_set #default_character_set} => Types::CharacterSet
|
2022
|
+
# * {Types::DBEngineVersion#image #image} => Types::CustomDBEngineVersionAMI
|
2023
|
+
# * {Types::DBEngineVersion#db_engine_media_type #db_engine_media_type} => String
|
2065
2024
|
# * {Types::DBEngineVersion#supported_character_sets #supported_character_sets} => Array<Types::CharacterSet>
|
2066
2025
|
# * {Types::DBEngineVersion#supported_nchar_character_sets #supported_nchar_character_sets} => Array<Types::CharacterSet>
|
2067
2026
|
# * {Types::DBEngineVersion#valid_upgrade_target #valid_upgrade_target} => Array<Types::UpgradeTarget>
|
@@ -2083,17 +2042,20 @@ module Aws::RDS
|
|
2083
2042
|
# * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
|
2084
2043
|
# * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
|
2085
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>
|
2086
2047
|
#
|
2087
2048
|
# @example Request syntax with placeholder values
|
2088
2049
|
#
|
2089
2050
|
# resp = client.create_custom_db_engine_version({
|
2090
2051
|
# engine: "CustomEngineName", # required
|
2091
2052
|
# engine_version: "CustomEngineVersion", # required
|
2092
|
-
# database_installation_files_s3_bucket_name: "BucketName",
|
2053
|
+
# database_installation_files_s3_bucket_name: "BucketName",
|
2093
2054
|
# database_installation_files_s3_prefix: "String255",
|
2094
|
-
#
|
2055
|
+
# image_id: "String255",
|
2056
|
+
# kms_key_id: "KmsKeyIdOrArn",
|
2095
2057
|
# description: "Description",
|
2096
|
-
# manifest: "CustomDBEngineVersionManifest",
|
2058
|
+
# manifest: "CustomDBEngineVersionManifest",
|
2097
2059
|
# tags: [
|
2098
2060
|
# {
|
2099
2061
|
# key: "String",
|
@@ -2111,6 +2073,9 @@ module Aws::RDS
|
|
2111
2073
|
# resp.db_engine_version_description #=> String
|
2112
2074
|
# resp.default_character_set.character_set_name #=> String
|
2113
2075
|
# resp.default_character_set.character_set_description #=> String
|
2076
|
+
# resp.image.image_id #=> String
|
2077
|
+
# resp.image.status #=> String
|
2078
|
+
# resp.db_engine_media_type #=> String
|
2114
2079
|
# resp.supported_character_sets #=> Array
|
2115
2080
|
# resp.supported_character_sets[0].character_set_name #=> String
|
2116
2081
|
# resp.supported_character_sets[0].character_set_description #=> String
|
@@ -2152,6 +2117,9 @@ module Aws::RDS
|
|
2152
2117
|
# resp.tag_list[0].value #=> String
|
2153
2118
|
# resp.supports_babelfish #=> Boolean
|
2154
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
|
2155
2123
|
#
|
2156
2124
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersion AWS API Documentation
|
2157
2125
|
#
|
@@ -4766,6 +4734,22 @@ module Aws::RDS
|
|
4766
4734
|
# Amazon Web Services account has a different default KMS key for each
|
4767
4735
|
# Amazon Web Services Region.
|
4768
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
|
+
#
|
4769
4753
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4770
4754
|
#
|
4771
4755
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -4857,6 +4841,7 @@ module Aws::RDS
|
|
4857
4841
|
# storage_throughput: 1,
|
4858
4842
|
# manage_master_user_password: false,
|
4859
4843
|
# master_user_secret_kms_key_id: "String",
|
4844
|
+
# ca_certificate_identifier: "String",
|
4860
4845
|
# })
|
4861
4846
|
#
|
4862
4847
|
# @example Response structure
|
@@ -5007,6 +4992,8 @@ module Aws::RDS
|
|
5007
4992
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
5008
4993
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
5009
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
|
5010
4997
|
#
|
5011
4998
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
5012
4999
|
#
|
@@ -5832,6 +5819,8 @@ module Aws::RDS
|
|
5832
5819
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
5833
5820
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
5834
5821
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
5822
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
5823
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
5835
5824
|
#
|
5836
5825
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
5837
5826
|
#
|
@@ -7027,6 +7016,8 @@ module Aws::RDS
|
|
7027
7016
|
# * {Types::DBEngineVersion#db_engine_description #db_engine_description} => String
|
7028
7017
|
# * {Types::DBEngineVersion#db_engine_version_description #db_engine_version_description} => String
|
7029
7018
|
# * {Types::DBEngineVersion#default_character_set #default_character_set} => Types::CharacterSet
|
7019
|
+
# * {Types::DBEngineVersion#image #image} => Types::CustomDBEngineVersionAMI
|
7020
|
+
# * {Types::DBEngineVersion#db_engine_media_type #db_engine_media_type} => String
|
7030
7021
|
# * {Types::DBEngineVersion#supported_character_sets #supported_character_sets} => Array<Types::CharacterSet>
|
7031
7022
|
# * {Types::DBEngineVersion#supported_nchar_character_sets #supported_nchar_character_sets} => Array<Types::CharacterSet>
|
7032
7023
|
# * {Types::DBEngineVersion#valid_upgrade_target #valid_upgrade_target} => Array<Types::UpgradeTarget>
|
@@ -7048,6 +7039,8 @@ module Aws::RDS
|
|
7048
7039
|
# * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
|
7049
7040
|
# * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
|
7050
7041
|
# * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
|
7042
|
+
# * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
|
7043
|
+
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
7051
7044
|
#
|
7052
7045
|
# @example Request syntax with placeholder values
|
7053
7046
|
#
|
@@ -7065,6 +7058,9 @@ module Aws::RDS
|
|
7065
7058
|
# resp.db_engine_version_description #=> String
|
7066
7059
|
# resp.default_character_set.character_set_name #=> String
|
7067
7060
|
# resp.default_character_set.character_set_description #=> String
|
7061
|
+
# resp.image.image_id #=> String
|
7062
|
+
# resp.image.status #=> String
|
7063
|
+
# resp.db_engine_media_type #=> String
|
7068
7064
|
# resp.supported_character_sets #=> Array
|
7069
7065
|
# resp.supported_character_sets[0].character_set_name #=> String
|
7070
7066
|
# resp.supported_character_sets[0].character_set_description #=> String
|
@@ -7106,6 +7102,9 @@ module Aws::RDS
|
|
7106
7102
|
# resp.tag_list[0].value #=> String
|
7107
7103
|
# resp.supports_babelfish #=> Boolean
|
7108
7104
|
# resp.custom_db_engine_version_manifest #=> String
|
7105
|
+
# resp.supports_certificate_rotation_without_restart #=> Boolean
|
7106
|
+
# resp.supported_ca_certificate_identifiers #=> Array
|
7107
|
+
# resp.supported_ca_certificate_identifiers[0] #=> String
|
7109
7108
|
#
|
7110
7109
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomDBEngineVersion AWS API Documentation
|
7111
7110
|
#
|
@@ -7787,6 +7786,8 @@ module Aws::RDS
|
|
7787
7786
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
7788
7787
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
7789
7788
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
7789
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
7790
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
7790
7791
|
#
|
7791
7792
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
7792
7793
|
#
|
@@ -8528,6 +8529,16 @@ module Aws::RDS
|
|
8528
8529
|
# Lists the set of CA certificates provided by Amazon RDS for this
|
8529
8530
|
# Amazon Web Services account.
|
8530
8531
|
#
|
8532
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
8533
|
+
# DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
|
8534
|
+
# encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
|
8535
|
+
# Guide*.
|
8536
|
+
#
|
8537
|
+
#
|
8538
|
+
#
|
8539
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
8540
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
8541
|
+
#
|
8531
8542
|
# @option params [String] :certificate_identifier
|
8532
8543
|
# The user-supplied certificate identifier. If this parameter is
|
8533
8544
|
# specified, information for only the identified certificate is
|
@@ -9733,6 +9744,9 @@ module Aws::RDS
|
|
9733
9744
|
# resp.db_engine_versions[0].db_engine_version_description #=> String
|
9734
9745
|
# resp.db_engine_versions[0].default_character_set.character_set_name #=> String
|
9735
9746
|
# resp.db_engine_versions[0].default_character_set.character_set_description #=> String
|
9747
|
+
# resp.db_engine_versions[0].image.image_id #=> String
|
9748
|
+
# resp.db_engine_versions[0].image.status #=> String
|
9749
|
+
# resp.db_engine_versions[0].db_engine_media_type #=> String
|
9736
9750
|
# resp.db_engine_versions[0].supported_character_sets #=> Array
|
9737
9751
|
# resp.db_engine_versions[0].supported_character_sets[0].character_set_name #=> String
|
9738
9752
|
# resp.db_engine_versions[0].supported_character_sets[0].character_set_description #=> String
|
@@ -9774,6 +9788,9 @@ module Aws::RDS
|
|
9774
9788
|
# resp.db_engine_versions[0].tag_list[0].value #=> String
|
9775
9789
|
# resp.db_engine_versions[0].supports_babelfish #=> Boolean
|
9776
9790
|
# resp.db_engine_versions[0].custom_db_engine_version_manifest #=> String
|
9791
|
+
# resp.db_engine_versions[0].supports_certificate_rotation_without_restart #=> Boolean
|
9792
|
+
# resp.db_engine_versions[0].supported_ca_certificate_identifiers #=> Array
|
9793
|
+
# resp.db_engine_versions[0].supported_ca_certificate_identifiers[0] #=> String
|
9777
9794
|
#
|
9778
9795
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
|
9779
9796
|
#
|
@@ -10159,6 +10176,8 @@ module Aws::RDS
|
|
10159
10176
|
# resp.db_instances[0].master_user_secret.secret_arn #=> String
|
10160
10177
|
# resp.db_instances[0].master_user_secret.secret_status #=> String
|
10161
10178
|
# resp.db_instances[0].master_user_secret.kms_key_id #=> String
|
10179
|
+
# resp.db_instances[0].certificate_details.ca_identifier #=> String
|
10180
|
+
# resp.db_instances[0].certificate_details.valid_till #=> Time
|
10162
10181
|
#
|
10163
10182
|
#
|
10164
10183
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -13837,6 +13856,8 @@ module Aws::RDS
|
|
13837
13856
|
# * {Types::DBEngineVersion#db_engine_description #db_engine_description} => String
|
13838
13857
|
# * {Types::DBEngineVersion#db_engine_version_description #db_engine_version_description} => String
|
13839
13858
|
# * {Types::DBEngineVersion#default_character_set #default_character_set} => Types::CharacterSet
|
13859
|
+
# * {Types::DBEngineVersion#image #image} => Types::CustomDBEngineVersionAMI
|
13860
|
+
# * {Types::DBEngineVersion#db_engine_media_type #db_engine_media_type} => String
|
13840
13861
|
# * {Types::DBEngineVersion#supported_character_sets #supported_character_sets} => Array<Types::CharacterSet>
|
13841
13862
|
# * {Types::DBEngineVersion#supported_nchar_character_sets #supported_nchar_character_sets} => Array<Types::CharacterSet>
|
13842
13863
|
# * {Types::DBEngineVersion#valid_upgrade_target #valid_upgrade_target} => Array<Types::UpgradeTarget>
|
@@ -13858,6 +13879,8 @@ module Aws::RDS
|
|
13858
13879
|
# * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
|
13859
13880
|
# * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
|
13860
13881
|
# * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
|
13882
|
+
# * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
|
13883
|
+
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
13861
13884
|
#
|
13862
13885
|
# @example Request syntax with placeholder values
|
13863
13886
|
#
|
@@ -13877,6 +13900,9 @@ module Aws::RDS
|
|
13877
13900
|
# resp.db_engine_version_description #=> String
|
13878
13901
|
# resp.default_character_set.character_set_name #=> String
|
13879
13902
|
# resp.default_character_set.character_set_description #=> String
|
13903
|
+
# resp.image.image_id #=> String
|
13904
|
+
# resp.image.status #=> String
|
13905
|
+
# resp.db_engine_media_type #=> String
|
13880
13906
|
# resp.supported_character_sets #=> Array
|
13881
13907
|
# resp.supported_character_sets[0].character_set_name #=> String
|
13882
13908
|
# resp.supported_character_sets[0].character_set_description #=> String
|
@@ -13918,6 +13944,9 @@ module Aws::RDS
|
|
13918
13944
|
# resp.tag_list[0].value #=> String
|
13919
13945
|
# resp.supports_babelfish #=> Boolean
|
13920
13946
|
# resp.custom_db_engine_version_manifest #=> String
|
13947
|
+
# resp.supports_certificate_rotation_without_restart #=> Boolean
|
13948
|
+
# resp.supported_ca_certificate_identifiers #=> Array
|
13949
|
+
# resp.supported_ca_certificate_identifiers[0] #=> String
|
13921
13950
|
#
|
13922
13951
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCustomDBEngineVersion AWS API Documentation
|
13923
13952
|
#
|
@@ -13967,7 +13996,7 @@ module Aws::RDS
|
|
13967
13996
|
#
|
13968
13997
|
# Example: `my-cluster2`
|
13969
13998
|
#
|
13970
|
-
# Valid for: Aurora DB clusters
|
13999
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
13971
14000
|
#
|
13972
14001
|
# @option params [Boolean] :apply_immediately
|
13973
14002
|
# A value that indicates whether the modifications in this request and
|
@@ -15522,10 +15551,21 @@ module Aws::RDS
|
|
15522
15551
|
# This setting doesn't apply to RDS Custom.
|
15523
15552
|
#
|
15524
15553
|
# @option params [String] :ca_certificate_identifier
|
15525
|
-
# Specifies the certificate to
|
15554
|
+
# Specifies the CA certificate identifier to use for the DB instance’s
|
15555
|
+
# server certificate.
|
15526
15556
|
#
|
15527
15557
|
# This setting doesn't apply to RDS Custom.
|
15528
15558
|
#
|
15559
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
15560
|
+
# DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
|
15561
|
+
# encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
|
15562
|
+
# Guide*.
|
15563
|
+
#
|
15564
|
+
#
|
15565
|
+
#
|
15566
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
15567
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
15568
|
+
#
|
15529
15569
|
# @option params [String] :domain
|
15530
15570
|
# The Active Directory directory ID to move the DB instance to. Specify
|
15531
15571
|
# `none` to remove the instance from its current domain. You must create
|
@@ -16232,6 +16272,8 @@ module Aws::RDS
|
|
16232
16272
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
16233
16273
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
16234
16274
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
16275
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
16276
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
16235
16277
|
#
|
16236
16278
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
16237
16279
|
#
|
@@ -17475,6 +17517,8 @@ module Aws::RDS
|
|
17475
17517
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
17476
17518
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
17477
17519
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
17520
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
17521
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
17478
17522
|
#
|
17479
17523
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
17480
17524
|
#
|
@@ -18094,6 +18138,8 @@ module Aws::RDS
|
|
18094
18138
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
18095
18139
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
18096
18140
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
18141
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
18142
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
18097
18143
|
#
|
18098
18144
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
18099
18145
|
#
|
@@ -21189,6 +21235,8 @@ module Aws::RDS
|
|
21189
21235
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
21190
21236
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
21191
21237
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
21238
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
21239
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
21192
21240
|
#
|
21193
21241
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
21194
21242
|
#
|
@@ -21913,6 +21961,8 @@ module Aws::RDS
|
|
21913
21961
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
21914
21962
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
21915
21963
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
21964
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
21965
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
21916
21966
|
#
|
21917
21967
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
21918
21968
|
#
|
@@ -22664,6 +22714,8 @@ module Aws::RDS
|
|
22664
22714
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
22665
22715
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
22666
22716
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
22717
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
22718
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
22667
22719
|
#
|
22668
22720
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
22669
22721
|
#
|
@@ -23177,6 +23229,8 @@ module Aws::RDS
|
|
23177
23229
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
23178
23230
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
23179
23231
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
23232
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
23233
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
23180
23234
|
#
|
23181
23235
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
23182
23236
|
#
|
@@ -23329,27 +23383,27 @@ module Aws::RDS
|
|
23329
23383
|
# The ID of the Amazon Web Services KMS key to use to encrypt the
|
23330
23384
|
# snapshot exported to Amazon S3. The Amazon Web Services KMS key
|
23331
23385
|
# identifier is the key ARN, key ID, alias ARN, or alias name for the
|
23332
|
-
# KMS key. The caller of this operation must be authorized to
|
23333
|
-
#
|
23334
|
-
#
|
23386
|
+
# KMS key. The caller of this operation must be authorized to run the
|
23387
|
+
# following operations. These can be set in the Amazon Web Services KMS
|
23388
|
+
# key policy:
|
23335
23389
|
#
|
23336
|
-
# *
|
23390
|
+
# * kms:Encrypt
|
23337
23391
|
#
|
23338
|
-
# *
|
23392
|
+
# * kms:Decrypt
|
23339
23393
|
#
|
23340
|
-
# *
|
23394
|
+
# * kms:GenerateDataKey
|
23341
23395
|
#
|
23342
|
-
# *
|
23396
|
+
# * kms:GenerateDataKeyWithoutPlaintext
|
23343
23397
|
#
|
23344
|
-
# *
|
23398
|
+
# * kms:ReEncryptFrom
|
23345
23399
|
#
|
23346
|
-
# *
|
23400
|
+
# * kms:ReEncryptTo
|
23347
23401
|
#
|
23348
|
-
# *
|
23402
|
+
# * kms:CreateGrant
|
23349
23403
|
#
|
23350
|
-
# *
|
23404
|
+
# * kms:DescribeKey
|
23351
23405
|
#
|
23352
|
-
# *
|
23406
|
+
# * kms:RetireGrant
|
23353
23407
|
#
|
23354
23408
|
# @option params [String] :s3_prefix
|
23355
23409
|
# The Amazon S3 bucket prefix to use as the file name and path of the
|
@@ -23819,6 +23873,8 @@ module Aws::RDS
|
|
23819
23873
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
23820
23874
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
23821
23875
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
23876
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
23877
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
23822
23878
|
#
|
23823
23879
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
23824
23880
|
#
|
@@ -24144,6 +24200,8 @@ module Aws::RDS
|
|
24144
24200
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
24145
24201
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
24146
24202
|
# resp.db_instance.master_user_secret.kms_key_id #=> String
|
24203
|
+
# resp.db_instance.certificate_details.ca_identifier #=> String
|
24204
|
+
# resp.db_instance.certificate_details.valid_till #=> Time
|
24147
24205
|
#
|
24148
24206
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica AWS API Documentation
|
24149
24207
|
#
|
@@ -24167,7 +24225,7 @@ module Aws::RDS
|
|
24167
24225
|
params: params,
|
24168
24226
|
config: config)
|
24169
24227
|
context[:gem_name] = 'aws-sdk-rds'
|
24170
|
-
context[:gem_version] = '1.
|
24228
|
+
context[:gem_version] = '1.169.0'
|
24171
24229
|
Seahorse::Client::Request.new(handlers, context)
|
24172
24230
|
end
|
24173
24231
|
|
@@ -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')
|
@@ -114,6 +116,7 @@ module Aws::RDS
|
|
114
116
|
CreateOptionGroupMessage = Shapes::StructureShape.new(name: 'CreateOptionGroupMessage')
|
115
117
|
CreateOptionGroupResult = Shapes::StructureShape.new(name: 'CreateOptionGroupResult')
|
116
118
|
CustomAvailabilityZoneNotFoundFault = Shapes::StructureShape.new(name: 'CustomAvailabilityZoneNotFoundFault')
|
119
|
+
CustomDBEngineVersionAMI = Shapes::StructureShape.new(name: 'CustomDBEngineVersionAMI')
|
117
120
|
CustomDBEngineVersionAlreadyExistsFault = Shapes::StructureShape.new(name: 'CustomDBEngineVersionAlreadyExistsFault')
|
118
121
|
CustomDBEngineVersionManifest = Shapes::StringShape.new(name: 'CustomDBEngineVersionManifest')
|
119
122
|
CustomDBEngineVersionNotFoundFault = Shapes::StructureShape.new(name: 'CustomDBEngineVersionNotFoundFault')
|
@@ -337,6 +340,7 @@ module Aws::RDS
|
|
337
340
|
DownloadDBLogFilePortionMessage = Shapes::StructureShape.new(name: 'DownloadDBLogFilePortionMessage')
|
338
341
|
EC2SecurityGroup = Shapes::StructureShape.new(name: 'EC2SecurityGroup')
|
339
342
|
EC2SecurityGroupList = Shapes::ListShape.new(name: 'EC2SecurityGroupList')
|
343
|
+
Ec2ImagePropertiesNotSupportedFault = Shapes::StructureShape.new(name: 'Ec2ImagePropertiesNotSupportedFault')
|
340
344
|
Endpoint = Shapes::StructureShape.new(name: 'Endpoint')
|
341
345
|
EngineDefaults = Shapes::StructureShape.new(name: 'EngineDefaults')
|
342
346
|
EngineFamily = Shapes::StringShape.new(name: 'EngineFamily')
|
@@ -749,6 +753,8 @@ module Aws::RDS
|
|
749
753
|
|
750
754
|
BlueGreenDeploymentTaskList.member = Shapes::ShapeRef.new(shape: BlueGreenDeploymentTask)
|
751
755
|
|
756
|
+
CACertificateIdentifiersList.member = Shapes::ShapeRef.new(shape: String)
|
757
|
+
|
752
758
|
CancelExportTaskMessage.add_member(:export_task_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ExportTaskIdentifier"))
|
753
759
|
CancelExportTaskMessage.struct_class = Types::CancelExportTaskMessage
|
754
760
|
|
@@ -762,6 +768,10 @@ module Aws::RDS
|
|
762
768
|
Certificate.add_member(:customer_override_valid_till, Shapes::ShapeRef.new(shape: TStamp, location_name: "CustomerOverrideValidTill"))
|
763
769
|
Certificate.struct_class = Types::Certificate
|
764
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
|
+
|
765
775
|
CertificateList.member = Shapes::ShapeRef.new(shape: Certificate, location_name: "Certificate")
|
766
776
|
|
767
777
|
CertificateMessage.add_member(:certificates, Shapes::ShapeRef.new(shape: CertificateList, location_name: "Certificates"))
|
@@ -869,11 +879,12 @@ module Aws::RDS
|
|
869
879
|
|
870
880
|
CreateCustomDBEngineVersionMessage.add_member(:engine, Shapes::ShapeRef.new(shape: CustomEngineName, required: true, location_name: "Engine"))
|
871
881
|
CreateCustomDBEngineVersionMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: CustomEngineVersion, required: true, location_name: "EngineVersion"))
|
872
|
-
CreateCustomDBEngineVersionMessage.add_member(:database_installation_files_s3_bucket_name, Shapes::ShapeRef.new(shape: BucketName,
|
882
|
+
CreateCustomDBEngineVersionMessage.add_member(:database_installation_files_s3_bucket_name, Shapes::ShapeRef.new(shape: BucketName, location_name: "DatabaseInstallationFilesS3BucketName"))
|
873
883
|
CreateCustomDBEngineVersionMessage.add_member(:database_installation_files_s3_prefix, Shapes::ShapeRef.new(shape: String255, location_name: "DatabaseInstallationFilesS3Prefix"))
|
874
|
-
CreateCustomDBEngineVersionMessage.add_member(:
|
884
|
+
CreateCustomDBEngineVersionMessage.add_member(:image_id, Shapes::ShapeRef.new(shape: String255, location_name: "ImageId"))
|
885
|
+
CreateCustomDBEngineVersionMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyIdOrArn, location_name: "KMSKeyId"))
|
875
886
|
CreateCustomDBEngineVersionMessage.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
876
|
-
CreateCustomDBEngineVersionMessage.add_member(:manifest, Shapes::ShapeRef.new(shape: CustomDBEngineVersionManifest,
|
887
|
+
CreateCustomDBEngineVersionMessage.add_member(:manifest, Shapes::ShapeRef.new(shape: CustomDBEngineVersionManifest, location_name: "Manifest"))
|
877
888
|
CreateCustomDBEngineVersionMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
878
889
|
CreateCustomDBEngineVersionMessage.struct_class = Types::CreateCustomDBEngineVersionMessage
|
879
890
|
|
@@ -1011,6 +1022,7 @@ module Aws::RDS
|
|
1011
1022
|
CreateDBInstanceMessage.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
|
1012
1023
|
CreateDBInstanceMessage.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
|
1013
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"))
|
1014
1026
|
CreateDBInstanceMessage.struct_class = Types::CreateDBInstanceMessage
|
1015
1027
|
|
1016
1028
|
CreateDBInstanceReadReplicaMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
@@ -1154,6 +1166,10 @@ module Aws::RDS
|
|
1154
1166
|
|
1155
1167
|
CustomAvailabilityZoneNotFoundFault.struct_class = Types::CustomAvailabilityZoneNotFoundFault
|
1156
1168
|
|
1169
|
+
CustomDBEngineVersionAMI.add_member(:image_id, Shapes::ShapeRef.new(shape: String, location_name: "ImageId"))
|
1170
|
+
CustomDBEngineVersionAMI.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
1171
|
+
CustomDBEngineVersionAMI.struct_class = Types::CustomDBEngineVersionAMI
|
1172
|
+
|
1157
1173
|
CustomDBEngineVersionAlreadyExistsFault.struct_class = Types::CustomDBEngineVersionAlreadyExistsFault
|
1158
1174
|
|
1159
1175
|
CustomDBEngineVersionNotFoundFault.struct_class = Types::CustomDBEngineVersionNotFoundFault
|
@@ -1391,6 +1407,8 @@ module Aws::RDS
|
|
1391
1407
|
DBEngineVersion.add_member(:db_engine_description, Shapes::ShapeRef.new(shape: String, location_name: "DBEngineDescription"))
|
1392
1408
|
DBEngineVersion.add_member(:db_engine_version_description, Shapes::ShapeRef.new(shape: String, location_name: "DBEngineVersionDescription"))
|
1393
1409
|
DBEngineVersion.add_member(:default_character_set, Shapes::ShapeRef.new(shape: CharacterSet, location_name: "DefaultCharacterSet"))
|
1410
|
+
DBEngineVersion.add_member(:image, Shapes::ShapeRef.new(shape: CustomDBEngineVersionAMI, location_name: "Image"))
|
1411
|
+
DBEngineVersion.add_member(:db_engine_media_type, Shapes::ShapeRef.new(shape: String, location_name: "DBEngineMediaType"))
|
1394
1412
|
DBEngineVersion.add_member(:supported_character_sets, Shapes::ShapeRef.new(shape: SupportedCharacterSetsList, location_name: "SupportedCharacterSets"))
|
1395
1413
|
DBEngineVersion.add_member(:supported_nchar_character_sets, Shapes::ShapeRef.new(shape: SupportedCharacterSetsList, location_name: "SupportedNcharCharacterSets"))
|
1396
1414
|
DBEngineVersion.add_member(:valid_upgrade_target, Shapes::ShapeRef.new(shape: ValidUpgradeTargetList, location_name: "ValidUpgradeTarget"))
|
@@ -1412,6 +1430,8 @@ module Aws::RDS
|
|
1412
1430
|
DBEngineVersion.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1413
1431
|
DBEngineVersion.add_member(:supports_babelfish, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsBabelfish"))
|
1414
1432
|
DBEngineVersion.add_member(:custom_db_engine_version_manifest, Shapes::ShapeRef.new(shape: CustomDBEngineVersionManifest, location_name: "CustomDBEngineVersionManifest"))
|
1433
|
+
DBEngineVersion.add_member(:supports_certificate_rotation_without_restart, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsCertificateRotationWithoutRestart"))
|
1434
|
+
DBEngineVersion.add_member(:supported_ca_certificate_identifiers, Shapes::ShapeRef.new(shape: CACertificateIdentifiersList, location_name: "SupportedCACertificateIdentifiers"))
|
1415
1435
|
DBEngineVersion.struct_class = Types::DBEngineVersion
|
1416
1436
|
|
1417
1437
|
DBEngineVersionList.member = Shapes::ShapeRef.new(shape: DBEngineVersion, location_name: "DBEngineVersion")
|
@@ -1499,6 +1519,7 @@ module Aws::RDS
|
|
1499
1519
|
DBInstance.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
|
1500
1520
|
DBInstance.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
|
1501
1521
|
DBInstance.add_member(:master_user_secret, Shapes::ShapeRef.new(shape: MasterUserSecret, location_name: "MasterUserSecret"))
|
1522
|
+
DBInstance.add_member(:certificate_details, Shapes::ShapeRef.new(shape: CertificateDetails, location_name: "CertificateDetails"))
|
1502
1523
|
DBInstance.struct_class = Types::DBInstance
|
1503
1524
|
|
1504
1525
|
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
@@ -2249,6 +2270,8 @@ module Aws::RDS
|
|
2249
2270
|
|
2250
2271
|
EC2SecurityGroupList.member = Shapes::ShapeRef.new(shape: EC2SecurityGroup, location_name: "EC2SecurityGroup")
|
2251
2272
|
|
2273
|
+
Ec2ImagePropertiesNotSupportedFault.struct_class = Types::Ec2ImagePropertiesNotSupportedFault
|
2274
|
+
|
2252
2275
|
Endpoint.add_member(:address, Shapes::ShapeRef.new(shape: String, location_name: "Address"))
|
2253
2276
|
Endpoint.add_member(:port, Shapes::ShapeRef.new(shape: Integer, location_name: "Port"))
|
2254
2277
|
Endpoint.add_member(:hosted_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "HostedZoneId"))
|
@@ -3824,6 +3847,7 @@ module Aws::RDS
|
|
3824
3847
|
o.output = Shapes::ShapeRef.new(shape: DBEngineVersion)
|
3825
3848
|
o.errors << Shapes::ShapeRef.new(shape: CustomDBEngineVersionAlreadyExistsFault)
|
3826
3849
|
o.errors << Shapes::ShapeRef.new(shape: CustomDBEngineVersionQuotaExceededFault)
|
3850
|
+
o.errors << Shapes::ShapeRef.new(shape: Ec2ImagePropertiesNotSupportedFault)
|
3827
3851
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
3828
3852
|
end)
|
3829
3853
|
|
@@ -3916,6 +3940,7 @@ module Aws::RDS
|
|
3916
3940
|
o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
|
3917
3941
|
o.errors << Shapes::ShapeRef.new(shape: BackupPolicyNotFoundFault)
|
3918
3942
|
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
3943
|
+
o.errors << Shapes::ShapeRef.new(shape: CertificateNotFoundFault)
|
3919
3944
|
end)
|
3920
3945
|
|
3921
3946
|
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
|
@@ -70,6 +70,19 @@ module Aws::RDS
|
|
70
70
|
data[:default_character_set]
|
71
71
|
end
|
72
72
|
|
73
|
+
# The EC2 image
|
74
|
+
# @return [Types::CustomDBEngineVersionAMI]
|
75
|
+
def image
|
76
|
+
data[:image]
|
77
|
+
end
|
78
|
+
|
79
|
+
# A value that indicates the source media provider of the AMI based on
|
80
|
+
# the usage operation. Applicable for RDS Custom for SQL Server.
|
81
|
+
# @return [String]
|
82
|
+
def db_engine_media_type
|
83
|
+
data[:db_engine_media_type]
|
84
|
+
end
|
85
|
+
|
73
86
|
# A list of the character sets supported by this engine for the
|
74
87
|
# `CharacterSetName` parameter of the `CreateDBInstance` operation.
|
75
88
|
# @return [Array<Types::CharacterSet>]
|
@@ -241,6 +254,29 @@ module Aws::RDS
|
|
241
254
|
data[:custom_db_engine_version_manifest]
|
242
255
|
end
|
243
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
|
+
|
244
280
|
# @!endgroup
|
245
281
|
|
246
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)
|
@@ -3187,9 +3219,20 @@ module Aws::RDS
|
|
3187
3219
|
#
|
3188
3220
|
# This setting doesn't apply to RDS Custom.
|
3189
3221
|
# @option options [String] :ca_certificate_identifier
|
3190
|
-
# Specifies the certificate to
|
3222
|
+
# Specifies the CA certificate identifier to use for the DB instance’s
|
3223
|
+
# server certificate.
|
3191
3224
|
#
|
3192
3225
|
# This setting doesn't apply to RDS Custom.
|
3226
|
+
#
|
3227
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
3228
|
+
# DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
|
3229
|
+
# encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
|
3230
|
+
# Guide*.
|
3231
|
+
#
|
3232
|
+
#
|
3233
|
+
#
|
3234
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
3235
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
3193
3236
|
# @option options [String] :domain
|
3194
3237
|
# The Active Directory directory ID to move the DB instance to. Specify
|
3195
3238
|
# `none` to remove the instance from its current domain. You must create
|
data/lib/aws-sdk-rds/errors.rb
CHANGED
@@ -85,6 +85,7 @@ module Aws::RDS
|
|
85
85
|
# * {DBSubnetQuotaExceededFault}
|
86
86
|
# * {DBUpgradeDependencyFailureFault}
|
87
87
|
# * {DomainNotFoundFault}
|
88
|
+
# * {Ec2ImagePropertiesNotSupportedFault}
|
88
89
|
# * {EventSubscriptionQuotaExceededFault}
|
89
90
|
# * {ExportTaskAlreadyExistsFault}
|
90
91
|
# * {ExportTaskNotFoundFault}
|
@@ -737,6 +738,16 @@ module Aws::RDS
|
|
737
738
|
end
|
738
739
|
end
|
739
740
|
|
741
|
+
class Ec2ImagePropertiesNotSupportedFault < ServiceError
|
742
|
+
|
743
|
+
# @param [Seahorse::Client::RequestContext] context
|
744
|
+
# @param [String] message
|
745
|
+
# @param [Aws::RDS::Types::Ec2ImagePropertiesNotSupportedFault] data
|
746
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
747
|
+
super(context, message, data)
|
748
|
+
end
|
749
|
+
end
|
750
|
+
|
740
751
|
class EventSubscriptionQuotaExceededFault < ServiceError
|
741
752
|
|
742
753
|
# @param [Seahorse::Client::RequestContext] context
|
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
|
@@ -1753,6 +1793,11 @@ module Aws::RDS
|
|
1753
1793
|
# assumed.
|
1754
1794
|
# @return [String]
|
1755
1795
|
#
|
1796
|
+
# @!attribute [rw] image_id
|
1797
|
+
# The ID of the AMI. An AMI ID is required to create a CEV for RDS
|
1798
|
+
# Custom for SQL Server.
|
1799
|
+
# @return [String]
|
1800
|
+
#
|
1756
1801
|
# @!attribute [rw] kms_key_id
|
1757
1802
|
# The Amazon Web Services KMS key identifier for an encrypted CEV. A
|
1758
1803
|
# symmetric encryption KMS key is required for RDS Custom, but
|
@@ -1831,6 +1876,7 @@ module Aws::RDS
|
|
1831
1876
|
:engine_version,
|
1832
1877
|
:database_installation_files_s3_bucket_name,
|
1833
1878
|
:database_installation_files_s3_prefix,
|
1879
|
+
:image_id,
|
1834
1880
|
:kms_key_id,
|
1835
1881
|
:description,
|
1836
1882
|
:manifest,
|
@@ -4229,6 +4275,23 @@ module Aws::RDS
|
|
4229
4275
|
# each Amazon Web Services Region.
|
4230
4276
|
# @return [String]
|
4231
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
|
+
#
|
4232
4295
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
4233
4296
|
#
|
4234
4297
|
class CreateDBInstanceMessage < Struct.new(
|
@@ -4285,7 +4348,8 @@ module Aws::RDS
|
|
4285
4348
|
:network_type,
|
4286
4349
|
:storage_throughput,
|
4287
4350
|
:manage_master_user_password,
|
4288
|
-
:master_user_secret_kms_key_id
|
4351
|
+
:master_user_secret_kms_key_id,
|
4352
|
+
:ca_certificate_identifier)
|
4289
4353
|
SENSITIVE = []
|
4290
4354
|
include Aws::Structure
|
4291
4355
|
end
|
@@ -5669,6 +5733,25 @@ module Aws::RDS
|
|
5669
5733
|
#
|
5670
5734
|
class CustomAvailabilityZoneNotFoundFault < Aws::EmptyStructure; end
|
5671
5735
|
|
5736
|
+
# A value that indicates the AMI information.
|
5737
|
+
#
|
5738
|
+
# @!attribute [rw] image_id
|
5739
|
+
# A value that indicates the ID of the AMI.
|
5740
|
+
# @return [String]
|
5741
|
+
#
|
5742
|
+
# @!attribute [rw] status
|
5743
|
+
# A value that indicates the status of a custom engine version (CEV).
|
5744
|
+
# @return [String]
|
5745
|
+
#
|
5746
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CustomDBEngineVersionAMI AWS API Documentation
|
5747
|
+
#
|
5748
|
+
class CustomDBEngineVersionAMI < Struct.new(
|
5749
|
+
:image_id,
|
5750
|
+
:status)
|
5751
|
+
SENSITIVE = []
|
5752
|
+
include Aws::Structure
|
5753
|
+
end
|
5754
|
+
|
5672
5755
|
# A CEV with the specified name already exists.
|
5673
5756
|
#
|
5674
5757
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CustomDBEngineVersionAlreadyExistsFault AWS API Documentation
|
@@ -7088,6 +7171,15 @@ module Aws::RDS
|
|
7088
7171
|
# isn't specified.
|
7089
7172
|
# @return [Types::CharacterSet]
|
7090
7173
|
#
|
7174
|
+
# @!attribute [rw] image
|
7175
|
+
# The EC2 image
|
7176
|
+
# @return [Types::CustomDBEngineVersionAMI]
|
7177
|
+
#
|
7178
|
+
# @!attribute [rw] db_engine_media_type
|
7179
|
+
# A value that indicates the source media provider of the AMI based on
|
7180
|
+
# the usage operation. Applicable for RDS Custom for SQL Server.
|
7181
|
+
# @return [String]
|
7182
|
+
#
|
7091
7183
|
# @!attribute [rw] supported_character_sets
|
7092
7184
|
# A list of the character sets supported by this engine for the
|
7093
7185
|
# `CharacterSetName` parameter of the `CreateDBInstance` operation.
|
@@ -7220,6 +7312,25 @@ module Aws::RDS
|
|
7220
7312
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields
|
7221
7313
|
# @return [String]
|
7222
7314
|
#
|
7315
|
+
# @!attribute [rw] supports_certificate_rotation_without_restart
|
7316
|
+
# A value that indicates whether the engine version supports rotating
|
7317
|
+
# the server certificate without rebooting the DB instance.
|
7318
|
+
# @return [Boolean]
|
7319
|
+
#
|
7320
|
+
# @!attribute [rw] supported_ca_certificate_identifiers
|
7321
|
+
# A list of the supported CA certificate identifiers.
|
7322
|
+
#
|
7323
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
7324
|
+
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
7325
|
+
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
7326
|
+
# User Guide*.
|
7327
|
+
#
|
7328
|
+
#
|
7329
|
+
#
|
7330
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
7331
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
7332
|
+
# @return [Array<String>]
|
7333
|
+
#
|
7223
7334
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBEngineVersion AWS API Documentation
|
7224
7335
|
#
|
7225
7336
|
class DBEngineVersion < Struct.new(
|
@@ -7229,6 +7340,8 @@ module Aws::RDS
|
|
7229
7340
|
:db_engine_description,
|
7230
7341
|
:db_engine_version_description,
|
7231
7342
|
:default_character_set,
|
7343
|
+
:image,
|
7344
|
+
:db_engine_media_type,
|
7232
7345
|
:supported_character_sets,
|
7233
7346
|
:supported_nchar_character_sets,
|
7234
7347
|
:valid_upgrade_target,
|
@@ -7249,7 +7362,9 @@ module Aws::RDS
|
|
7249
7362
|
:create_time,
|
7250
7363
|
:tag_list,
|
7251
7364
|
:supports_babelfish,
|
7252
|
-
:custom_db_engine_version_manifest
|
7365
|
+
:custom_db_engine_version_manifest,
|
7366
|
+
:supports_certificate_rotation_without_restart,
|
7367
|
+
:supported_ca_certificate_identifiers)
|
7253
7368
|
SENSITIVE = []
|
7254
7369
|
include Aws::Structure
|
7255
7370
|
end
|
@@ -7552,6 +7667,16 @@ module Aws::RDS
|
|
7552
7667
|
#
|
7553
7668
|
# @!attribute [rw] ca_certificate_identifier
|
7554
7669
|
# The identifier of the CA certificate for this DB instance.
|
7670
|
+
#
|
7671
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
7672
|
+
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
7673
|
+
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
7674
|
+
# User Guide*.
|
7675
|
+
#
|
7676
|
+
#
|
7677
|
+
#
|
7678
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
7679
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
7555
7680
|
# @return [String]
|
7556
7681
|
#
|
7557
7682
|
# @!attribute [rw] domain_memberships
|
@@ -7858,6 +7983,10 @@ module Aws::RDS
|
|
7858
7983
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html
|
7859
7984
|
# @return [Types::MasterUserSecret]
|
7860
7985
|
#
|
7986
|
+
# @!attribute [rw] certificate_details
|
7987
|
+
# The details of the DB instance's server certificate.
|
7988
|
+
# @return [Types::CertificateDetails]
|
7989
|
+
#
|
7861
7990
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
7862
7991
|
#
|
7863
7992
|
class DBInstance < Struct.new(
|
@@ -7939,7 +8068,8 @@ module Aws::RDS
|
|
7939
8068
|
:activity_stream_policy_status,
|
7940
8069
|
:storage_throughput,
|
7941
8070
|
:db_system_id,
|
7942
|
-
:master_user_secret
|
8071
|
+
:master_user_secret,
|
8072
|
+
:certificate_details)
|
7943
8073
|
SENSITIVE = []
|
7944
8074
|
include Aws::Structure
|
7945
8075
|
end
|
@@ -12826,6 +12956,12 @@ module Aws::RDS
|
|
12826
12956
|
include Aws::Structure
|
12827
12957
|
end
|
12828
12958
|
|
12959
|
+
# The AMI configuration prerequisite has not been met.
|
12960
|
+
#
|
12961
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/Ec2ImagePropertiesNotSupportedFault AWS API Documentation
|
12962
|
+
#
|
12963
|
+
class Ec2ImagePropertiesNotSupportedFault < Aws::EmptyStructure; end
|
12964
|
+
|
12829
12965
|
# This data type represents the information you need to connect to an
|
12830
12966
|
# Amazon RDS DB instance. This data type is used as a response element
|
12831
12967
|
# in the following actions:
|
@@ -14029,6 +14165,16 @@ module Aws::RDS
|
|
14029
14165
|
|
14030
14166
|
# @!attribute [rw] certificate
|
14031
14167
|
# A CA certificate for an Amazon Web Services account.
|
14168
|
+
#
|
14169
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
14170
|
+
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
14171
|
+
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
14172
|
+
# User Guide*.
|
14173
|
+
#
|
14174
|
+
#
|
14175
|
+
#
|
14176
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
14177
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
14032
14178
|
# @return [Types::Certificate]
|
14033
14179
|
#
|
14034
14180
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCertificatesResult AWS API Documentation
|
@@ -14200,7 +14346,7 @@ module Aws::RDS
|
|
14200
14346
|
#
|
14201
14347
|
# Example: `my-cluster2`
|
14202
14348
|
#
|
14203
|
-
# Valid for: Aurora DB clusters
|
14349
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
14204
14350
|
# @return [String]
|
14205
14351
|
#
|
14206
14352
|
# @!attribute [rw] apply_immediately
|
@@ -15505,9 +15651,20 @@ module Aws::RDS
|
|
15505
15651
|
# @return [String]
|
15506
15652
|
#
|
15507
15653
|
# @!attribute [rw] ca_certificate_identifier
|
15508
|
-
# Specifies the certificate to
|
15654
|
+
# Specifies the CA certificate identifier to use for the DB instance’s
|
15655
|
+
# server certificate.
|
15509
15656
|
#
|
15510
15657
|
# This setting doesn't apply to RDS Custom.
|
15658
|
+
#
|
15659
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
15660
|
+
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
15661
|
+
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
15662
|
+
# User Guide*.
|
15663
|
+
#
|
15664
|
+
#
|
15665
|
+
#
|
15666
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
15667
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
15511
15668
|
# @return [String]
|
15512
15669
|
#
|
15513
15670
|
# @!attribute [rw] domain
|
@@ -17689,6 +17846,16 @@ module Aws::RDS
|
|
17689
17846
|
#
|
17690
17847
|
# @!attribute [rw] ca_certificate_identifier
|
17691
17848
|
# The identifier of the CA certificate for the DB instance.
|
17849
|
+
#
|
17850
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
17851
|
+
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
17852
|
+
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
17853
|
+
# User Guide*.
|
17854
|
+
#
|
17855
|
+
#
|
17856
|
+
#
|
17857
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
17858
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
17692
17859
|
# @return [String]
|
17693
17860
|
#
|
17694
17861
|
# @!attribute [rw] db_subnet_group_name
|
@@ -22581,27 +22748,27 @@ module Aws::RDS
|
|
22581
22748
|
# The ID of the Amazon Web Services KMS key to use to encrypt the
|
22582
22749
|
# snapshot exported to Amazon S3. The Amazon Web Services KMS key
|
22583
22750
|
# identifier is the key ARN, key ID, alias ARN, or alias name for the
|
22584
|
-
# KMS key. The caller of this operation must be authorized to
|
22585
|
-
#
|
22586
|
-
#
|
22751
|
+
# KMS key. The caller of this operation must be authorized to run the
|
22752
|
+
# following operations. These can be set in the Amazon Web Services
|
22753
|
+
# KMS key policy:
|
22587
22754
|
#
|
22588
|
-
# *
|
22755
|
+
# * kms:Encrypt
|
22589
22756
|
#
|
22590
|
-
# *
|
22757
|
+
# * kms:Decrypt
|
22591
22758
|
#
|
22592
|
-
# *
|
22759
|
+
# * kms:GenerateDataKey
|
22593
22760
|
#
|
22594
|
-
# *
|
22761
|
+
# * kms:GenerateDataKeyWithoutPlaintext
|
22595
22762
|
#
|
22596
|
-
# *
|
22763
|
+
# * kms:ReEncryptFrom
|
22597
22764
|
#
|
22598
|
-
# *
|
22765
|
+
# * kms:ReEncryptTo
|
22599
22766
|
#
|
22600
|
-
# *
|
22767
|
+
# * kms:CreateGrant
|
22601
22768
|
#
|
22602
|
-
# *
|
22769
|
+
# * kms:DescribeKey
|
22603
22770
|
#
|
22604
|
-
# *
|
22771
|
+
# * kms:RetireGrant
|
22605
22772
|
# @return [String]
|
22606
22773
|
#
|
22607
22774
|
# @!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.169.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-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|