aws-sdk-rds 1.168.0 → 1.169.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +97 -15
- data/lib/aws-sdk-rds/client_api.rb +13 -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 +44 -1
- data/lib/aws-sdk-rds/resource.rb +16 -0
- data/lib/aws-sdk-rds/types.rb +142 -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,11 @@
|
|
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
|
+
|
4
9
|
1.168.0 (2022-12-28)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.169.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
|
#
|
@@ -5795,6 +5819,8 @@ module Aws::RDS
|
|
5795
5819
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
5796
5820
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
5797
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
|
5798
5824
|
#
|
5799
5825
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
5800
5826
|
#
|
@@ -7013,6 +7039,8 @@ module Aws::RDS
|
|
7013
7039
|
# * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
|
7014
7040
|
# * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
|
7015
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>
|
7016
7044
|
#
|
7017
7045
|
# @example Request syntax with placeholder values
|
7018
7046
|
#
|
@@ -7074,6 +7102,9 @@ module Aws::RDS
|
|
7074
7102
|
# resp.tag_list[0].value #=> String
|
7075
7103
|
# resp.supports_babelfish #=> Boolean
|
7076
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
|
7077
7108
|
#
|
7078
7109
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomDBEngineVersion AWS API Documentation
|
7079
7110
|
#
|
@@ -7755,6 +7786,8 @@ module Aws::RDS
|
|
7755
7786
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
7756
7787
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
7757
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
|
7758
7791
|
#
|
7759
7792
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
7760
7793
|
#
|
@@ -8496,6 +8529,16 @@ module Aws::RDS
|
|
8496
8529
|
# Lists the set of CA certificates provided by Amazon RDS for this
|
8497
8530
|
# Amazon Web Services account.
|
8498
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
|
+
#
|
8499
8542
|
# @option params [String] :certificate_identifier
|
8500
8543
|
# The user-supplied certificate identifier. If this parameter is
|
8501
8544
|
# specified, information for only the identified certificate is
|
@@ -9745,6 +9788,9 @@ module Aws::RDS
|
|
9745
9788
|
# resp.db_engine_versions[0].tag_list[0].value #=> String
|
9746
9789
|
# resp.db_engine_versions[0].supports_babelfish #=> Boolean
|
9747
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
|
9748
9794
|
#
|
9749
9795
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
|
9750
9796
|
#
|
@@ -10130,6 +10176,8 @@ module Aws::RDS
|
|
10130
10176
|
# resp.db_instances[0].master_user_secret.secret_arn #=> String
|
10131
10177
|
# resp.db_instances[0].master_user_secret.secret_status #=> String
|
10132
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
|
10133
10181
|
#
|
10134
10182
|
#
|
10135
10183
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -13831,6 +13879,8 @@ module Aws::RDS
|
|
13831
13879
|
# * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
|
13832
13880
|
# * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
|
13833
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>
|
13834
13884
|
#
|
13835
13885
|
# @example Request syntax with placeholder values
|
13836
13886
|
#
|
@@ -13894,6 +13944,9 @@ module Aws::RDS
|
|
13894
13944
|
# resp.tag_list[0].value #=> String
|
13895
13945
|
# resp.supports_babelfish #=> Boolean
|
13896
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
|
13897
13950
|
#
|
13898
13951
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCustomDBEngineVersion AWS API Documentation
|
13899
13952
|
#
|
@@ -13943,7 +13996,7 @@ module Aws::RDS
|
|
13943
13996
|
#
|
13944
13997
|
# Example: `my-cluster2`
|
13945
13998
|
#
|
13946
|
-
# Valid for: Aurora DB clusters
|
13999
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
13947
14000
|
#
|
13948
14001
|
# @option params [Boolean] :apply_immediately
|
13949
14002
|
# A value that indicates whether the modifications in this request and
|
@@ -15498,10 +15551,21 @@ module Aws::RDS
|
|
15498
15551
|
# This setting doesn't apply to RDS Custom.
|
15499
15552
|
#
|
15500
15553
|
# @option params [String] :ca_certificate_identifier
|
15501
|
-
# Specifies the certificate to
|
15554
|
+
# Specifies the CA certificate identifier to use for the DB instance’s
|
15555
|
+
# server certificate.
|
15502
15556
|
#
|
15503
15557
|
# This setting doesn't apply to RDS Custom.
|
15504
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
|
+
#
|
15505
15569
|
# @option params [String] :domain
|
15506
15570
|
# The Active Directory directory ID to move the DB instance to. Specify
|
15507
15571
|
# `none` to remove the instance from its current domain. You must create
|
@@ -16208,6 +16272,8 @@ module Aws::RDS
|
|
16208
16272
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
16209
16273
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
16210
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
|
16211
16277
|
#
|
16212
16278
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
16213
16279
|
#
|
@@ -17451,6 +17517,8 @@ module Aws::RDS
|
|
17451
17517
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
17452
17518
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
17453
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
|
17454
17522
|
#
|
17455
17523
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
17456
17524
|
#
|
@@ -18070,6 +18138,8 @@ module Aws::RDS
|
|
18070
18138
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
18071
18139
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
18072
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
|
18073
18143
|
#
|
18074
18144
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
18075
18145
|
#
|
@@ -21165,6 +21235,8 @@ module Aws::RDS
|
|
21165
21235
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
21166
21236
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
21167
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
|
21168
21240
|
#
|
21169
21241
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
21170
21242
|
#
|
@@ -21889,6 +21961,8 @@ module Aws::RDS
|
|
21889
21961
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
21890
21962
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
21891
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
|
21892
21966
|
#
|
21893
21967
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
21894
21968
|
#
|
@@ -22640,6 +22714,8 @@ module Aws::RDS
|
|
22640
22714
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
22641
22715
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
22642
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
|
22643
22719
|
#
|
22644
22720
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
22645
22721
|
#
|
@@ -23153,6 +23229,8 @@ module Aws::RDS
|
|
23153
23229
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
23154
23230
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
23155
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
|
23156
23234
|
#
|
23157
23235
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
23158
23236
|
#
|
@@ -23305,27 +23383,27 @@ module Aws::RDS
|
|
23305
23383
|
# The ID of the Amazon Web Services KMS key to use to encrypt the
|
23306
23384
|
# snapshot exported to Amazon S3. The Amazon Web Services KMS key
|
23307
23385
|
# 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
|
-
#
|
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:
|
23311
23389
|
#
|
23312
|
-
# *
|
23390
|
+
# * kms:Encrypt
|
23313
23391
|
#
|
23314
|
-
# *
|
23392
|
+
# * kms:Decrypt
|
23315
23393
|
#
|
23316
|
-
# *
|
23394
|
+
# * kms:GenerateDataKey
|
23317
23395
|
#
|
23318
|
-
# *
|
23396
|
+
# * kms:GenerateDataKeyWithoutPlaintext
|
23319
23397
|
#
|
23320
|
-
# *
|
23398
|
+
# * kms:ReEncryptFrom
|
23321
23399
|
#
|
23322
|
-
# *
|
23400
|
+
# * kms:ReEncryptTo
|
23323
23401
|
#
|
23324
|
-
# *
|
23402
|
+
# * kms:CreateGrant
|
23325
23403
|
#
|
23326
|
-
# *
|
23404
|
+
# * kms:DescribeKey
|
23327
23405
|
#
|
23328
|
-
# *
|
23406
|
+
# * kms:RetireGrant
|
23329
23407
|
#
|
23330
23408
|
# @option params [String] :s3_prefix
|
23331
23409
|
# The Amazon S3 bucket prefix to use as the file name and path of the
|
@@ -23795,6 +23873,8 @@ module Aws::RDS
|
|
23795
23873
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
23796
23874
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
23797
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
|
23798
23878
|
#
|
23799
23879
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
23800
23880
|
#
|
@@ -24120,6 +24200,8 @@ module Aws::RDS
|
|
24120
24200
|
# resp.db_instance.master_user_secret.secret_arn #=> String
|
24121
24201
|
# resp.db_instance.master_user_secret.secret_status #=> String
|
24122
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
|
24123
24205
|
#
|
24124
24206
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica AWS API Documentation
|
24125
24207
|
#
|
@@ -24143,7 +24225,7 @@ module Aws::RDS
|
|
24143
24225
|
params: params,
|
24144
24226
|
config: config)
|
24145
24227
|
context[:gem_name] = 'aws-sdk-rds'
|
24146
|
-
context[:gem_version] = '1.
|
24228
|
+
context[:gem_version] = '1.169.0'
|
24147
24229
|
Seahorse::Client::Request.new(handlers, context)
|
24148
24230
|
end
|
24149
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')
|
@@ -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"))
|
@@ -1421,6 +1430,8 @@ module Aws::RDS
|
|
1421
1430
|
DBEngineVersion.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1422
1431
|
DBEngineVersion.add_member(:supports_babelfish, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsBabelfish"))
|
1423
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"))
|
1424
1435
|
DBEngineVersion.struct_class = Types::DBEngineVersion
|
1425
1436
|
|
1426
1437
|
DBEngineVersionList.member = Shapes::ShapeRef.new(shape: DBEngineVersion, location_name: "DBEngineVersion")
|
@@ -1508,6 +1519,7 @@ module Aws::RDS
|
|
1508
1519
|
DBInstance.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
|
1509
1520
|
DBInstance.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
|
1510
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"))
|
1511
1523
|
DBInstance.struct_class = Types::DBInstance
|
1512
1524
|
|
1513
1525
|
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
@@ -3928,6 +3940,7 @@ module Aws::RDS
|
|
3928
3940
|
o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
|
3929
3941
|
o.errors << Shapes::ShapeRef.new(shape: BackupPolicyNotFoundFault)
|
3930
3942
|
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
3943
|
+
o.errors << Shapes::ShapeRef.new(shape: CertificateNotFoundFault)
|
3931
3944
|
end)
|
3932
3945
|
|
3933
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
|
@@ -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)
|
@@ -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/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
|
@@ -7254,6 +7312,25 @@ module Aws::RDS
|
|
7254
7312
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields
|
7255
7313
|
# @return [String]
|
7256
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
|
+
#
|
7257
7334
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBEngineVersion AWS API Documentation
|
7258
7335
|
#
|
7259
7336
|
class DBEngineVersion < Struct.new(
|
@@ -7285,7 +7362,9 @@ module Aws::RDS
|
|
7285
7362
|
:create_time,
|
7286
7363
|
:tag_list,
|
7287
7364
|
:supports_babelfish,
|
7288
|
-
:custom_db_engine_version_manifest
|
7365
|
+
:custom_db_engine_version_manifest,
|
7366
|
+
:supports_certificate_rotation_without_restart,
|
7367
|
+
:supported_ca_certificate_identifiers)
|
7289
7368
|
SENSITIVE = []
|
7290
7369
|
include Aws::Structure
|
7291
7370
|
end
|
@@ -7588,6 +7667,16 @@ module Aws::RDS
|
|
7588
7667
|
#
|
7589
7668
|
# @!attribute [rw] ca_certificate_identifier
|
7590
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
|
7591
7680
|
# @return [String]
|
7592
7681
|
#
|
7593
7682
|
# @!attribute [rw] domain_memberships
|
@@ -7894,6 +7983,10 @@ module Aws::RDS
|
|
7894
7983
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html
|
7895
7984
|
# @return [Types::MasterUserSecret]
|
7896
7985
|
#
|
7986
|
+
# @!attribute [rw] certificate_details
|
7987
|
+
# The details of the DB instance's server certificate.
|
7988
|
+
# @return [Types::CertificateDetails]
|
7989
|
+
#
|
7897
7990
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
7898
7991
|
#
|
7899
7992
|
class DBInstance < Struct.new(
|
@@ -7975,7 +8068,8 @@ module Aws::RDS
|
|
7975
8068
|
:activity_stream_policy_status,
|
7976
8069
|
:storage_throughput,
|
7977
8070
|
:db_system_id,
|
7978
|
-
:master_user_secret
|
8071
|
+
:master_user_secret,
|
8072
|
+
:certificate_details)
|
7979
8073
|
SENSITIVE = []
|
7980
8074
|
include Aws::Structure
|
7981
8075
|
end
|
@@ -14071,6 +14165,16 @@ module Aws::RDS
|
|
14071
14165
|
|
14072
14166
|
# @!attribute [rw] certificate
|
14073
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
|
14074
14178
|
# @return [Types::Certificate]
|
14075
14179
|
#
|
14076
14180
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCertificatesResult AWS API Documentation
|
@@ -14242,7 +14346,7 @@ module Aws::RDS
|
|
14242
14346
|
#
|
14243
14347
|
# Example: `my-cluster2`
|
14244
14348
|
#
|
14245
|
-
# Valid for: Aurora DB clusters
|
14349
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
14246
14350
|
# @return [String]
|
14247
14351
|
#
|
14248
14352
|
# @!attribute [rw] apply_immediately
|
@@ -15547,9 +15651,20 @@ module Aws::RDS
|
|
15547
15651
|
# @return [String]
|
15548
15652
|
#
|
15549
15653
|
# @!attribute [rw] ca_certificate_identifier
|
15550
|
-
# Specifies the certificate to
|
15654
|
+
# Specifies the CA certificate identifier to use for the DB instance’s
|
15655
|
+
# server certificate.
|
15551
15656
|
#
|
15552
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
|
15553
15668
|
# @return [String]
|
15554
15669
|
#
|
15555
15670
|
# @!attribute [rw] domain
|
@@ -17731,6 +17846,16 @@ module Aws::RDS
|
|
17731
17846
|
#
|
17732
17847
|
# @!attribute [rw] ca_certificate_identifier
|
17733
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
|
17734
17859
|
# @return [String]
|
17735
17860
|
#
|
17736
17861
|
# @!attribute [rw] db_subnet_group_name
|
@@ -22623,27 +22748,27 @@ module Aws::RDS
|
|
22623
22748
|
# The ID of the Amazon Web Services KMS key to use to encrypt the
|
22624
22749
|
# snapshot exported to Amazon S3. The Amazon Web Services KMS key
|
22625
22750
|
# 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
|
-
#
|
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:
|
22629
22754
|
#
|
22630
|
-
# *
|
22755
|
+
# * kms:Encrypt
|
22631
22756
|
#
|
22632
|
-
# *
|
22757
|
+
# * kms:Decrypt
|
22633
22758
|
#
|
22634
|
-
# *
|
22759
|
+
# * kms:GenerateDataKey
|
22635
22760
|
#
|
22636
|
-
# *
|
22761
|
+
# * kms:GenerateDataKeyWithoutPlaintext
|
22637
22762
|
#
|
22638
|
-
# *
|
22763
|
+
# * kms:ReEncryptFrom
|
22639
22764
|
#
|
22640
|
-
# *
|
22765
|
+
# * kms:ReEncryptTo
|
22641
22766
|
#
|
22642
|
-
# *
|
22767
|
+
# * kms:CreateGrant
|
22643
22768
|
#
|
22644
|
-
# *
|
22769
|
+
# * kms:DescribeKey
|
22645
22770
|
#
|
22646
|
-
# *
|
22771
|
+
# * kms:RetireGrant
|
22647
22772
|
# @return [String]
|
22648
22773
|
#
|
22649
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
|