aws-sdk-rds 1.114.0 → 1.119.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 +707 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-rds.rb +2 -2
- data/lib/aws-sdk-rds/account_quota.rb +1 -1
- data/lib/aws-sdk-rds/certificate.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +423 -61
- data/lib/aws-sdk-rds/client_api.rb +135 -1
- data/lib/aws-sdk-rds/db_cluster.rb +8 -10
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +42 -1
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/db_engine.rb +1 -1
- data/lib/aws-sdk-rds/db_engine_version.rb +1 -1
- data/lib/aws-sdk-rds/db_instance.rb +38 -17
- data/lib/aws-sdk-rds/db_log_file.rb +1 -1
- data/lib/aws-sdk-rds/db_parameter_group.rb +55 -12
- data/lib/aws-sdk-rds/db_parameter_group_family.rb +1 -1
- data/lib/aws-sdk-rds/db_security_group.rb +1 -1
- data/lib/aws-sdk-rds/db_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/db_snapshot_attribute.rb +1 -1
- data/lib/aws-sdk-rds/db_subnet_group.rb +1 -1
- data/lib/aws-sdk-rds/errors.rb +45 -1
- data/lib/aws-sdk-rds/event.rb +1 -1
- data/lib/aws-sdk-rds/event_category_map.rb +1 -1
- data/lib/aws-sdk-rds/event_subscription.rb +2 -3
- data/lib/aws-sdk-rds/option_group.rb +1 -1
- data/lib/aws-sdk-rds/option_group_option.rb +1 -1
- data/lib/aws-sdk-rds/parameter.rb +1 -1
- data/lib/aws-sdk-rds/pending_maintenance_action.rb +1 -1
- data/lib/aws-sdk-rds/reserved_db_instance.rb +1 -1
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +73 -19
- data/lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb +1 -1
- data/lib/aws-sdk-rds/types.rb +526 -51
- data/lib/aws-sdk-rds/waiters.rb +1 -1
- metadata +9 -7
data/LICENSE.txt
ADDED
@@ -0,0 +1,202 @@
|
|
1
|
+
|
2
|
+
Apache License
|
3
|
+
Version 2.0, January 2004
|
4
|
+
http://www.apache.org/licenses/
|
5
|
+
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
+
|
8
|
+
1. Definitions.
|
9
|
+
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
+
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
+
the copyright owner that is granting the License.
|
15
|
+
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
+
other entities that control, are controlled by, or are under common
|
18
|
+
control with that entity. For the purposes of this definition,
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20
|
+
direction or management of such entity, whether by contract or
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
+
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
+
exercising permissions granted by this License.
|
26
|
+
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
28
|
+
including but not limited to software source code, documentation
|
29
|
+
source, and configuration files.
|
30
|
+
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
32
|
+
transformation or translation of a Source form, including but
|
33
|
+
not limited to compiled object code, generated documentation,
|
34
|
+
and conversions to other media types.
|
35
|
+
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
37
|
+
Object form, made available under the License, as indicated by a
|
38
|
+
copyright notice that is included in or attached to the work
|
39
|
+
(an example is provided in the Appendix below).
|
40
|
+
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
+
the Work and Derivative Works thereof.
|
48
|
+
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
50
|
+
the original version of the Work and any modifications or additions
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
+
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
65
|
+
subsequently incorporated within the Work.
|
66
|
+
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
73
|
+
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
+
where such license applies only to those patent claims licensable
|
80
|
+
by such Contributor that are necessarily infringed by their
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
83
|
+
institute patent litigation against any entity (including a
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
86
|
+
or contributory patent infringement, then any patent licenses
|
87
|
+
granted to You under this License for that Work shall terminate
|
88
|
+
as of the date such litigation is filed.
|
89
|
+
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
92
|
+
modifications, and in Source or Object form, provided that You
|
93
|
+
meet the following conditions:
|
94
|
+
|
95
|
+
(a) You must give any other recipients of the Work or
|
96
|
+
Derivative Works a copy of this License; and
|
97
|
+
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
99
|
+
stating that You changed the files; and
|
100
|
+
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
103
|
+
attribution notices from the Source form of the Work,
|
104
|
+
excluding those notices that do not pertain to any part of
|
105
|
+
the Derivative Works; and
|
106
|
+
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
109
|
+
include a readable copy of the attribution notices contained
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
112
|
+
of the following places: within a NOTICE text file distributed
|
113
|
+
as part of the Derivative Works; within the Source form or
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
115
|
+
within a display generated by the Derivative Works, if and
|
116
|
+
wherever such third-party notices normally appear. The contents
|
117
|
+
of the NOTICE file are for informational purposes only and
|
118
|
+
do not modify the License. You may add Your own attribution
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
121
|
+
that such additional attribution notices cannot be construed
|
122
|
+
as modifying the License.
|
123
|
+
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
125
|
+
may provide additional or different license terms and conditions
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
129
|
+
the conditions stated in this License.
|
130
|
+
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
134
|
+
this License, without any additional terms or conditions.
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
+
the terms of any separate license agreement you may have executed
|
137
|
+
with Licensor regarding such Contributions.
|
138
|
+
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
141
|
+
except as required for reasonable and customary use in describing the
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
+
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
153
|
+
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
159
|
+
incidental, or consequential damages of any character arising as a
|
160
|
+
result of this License or out of the use or inability to use the
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
163
|
+
other commercial damages or losses), even if such Contributor
|
164
|
+
has been advised of the possibility of such damages.
|
165
|
+
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
+
or other liability obligations and/or rights consistent with this
|
170
|
+
License. However, in accepting such obligations, You may act only
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
175
|
+
of your accepting any such warranty or additional liability.
|
176
|
+
|
177
|
+
END OF TERMS AND CONDITIONS
|
178
|
+
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
180
|
+
|
181
|
+
To apply the Apache License to your work, attach the following
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
+
replaced with your own identifying information. (Don't include
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
185
|
+
comment syntax for the file format. We also recommend that a
|
186
|
+
file or class name and description of purpose be included on the
|
187
|
+
same "printed page" as the copyright notice for easier
|
188
|
+
identification within third-party archives.
|
189
|
+
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
191
|
+
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
+
you may not use this file except in compliance with the License.
|
194
|
+
You may obtain a copy of the License at
|
195
|
+
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
+
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
+
See the License for the specific language governing permissions and
|
202
|
+
limitations under the License.
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.119.0
|
data/lib/aws-sdk-rds.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -74,6 +74,6 @@ require_relative 'aws-sdk-rds/customizations'
|
|
74
74
|
# @!group service
|
75
75
|
module Aws::RDS
|
76
76
|
|
77
|
-
GEM_VERSION = '1.
|
77
|
+
GEM_VERSION = '1.119.0'
|
78
78
|
|
79
79
|
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -1981,9 +1981,8 @@ module Aws::RDS
|
|
1981
1981
|
# parameter.
|
1982
1982
|
#
|
1983
1983
|
# The default is a 30-minute window selected at random from an 8-hour
|
1984
|
-
# block of time for each AWS Region. To
|
1985
|
-
# see [
|
1986
|
-
# *Amazon Aurora User Guide.*
|
1984
|
+
# block of time for each AWS Region. To view the time blocks available,
|
1985
|
+
# see [ Backup window][1] in the *Amazon Aurora User Guide.*
|
1987
1986
|
#
|
1988
1987
|
# Constraints:
|
1989
1988
|
#
|
@@ -1997,7 +1996,7 @@ module Aws::RDS
|
|
1997
1996
|
#
|
1998
1997
|
#
|
1999
1998
|
#
|
2000
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/
|
1999
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow
|
2001
2000
|
#
|
2002
2001
|
# @option params [String] :preferred_maintenance_window
|
2003
2002
|
# The weekly time range during which system maintenance can occur, in
|
@@ -2142,7 +2141,7 @@ module Aws::RDS
|
|
2142
2141
|
#
|
2143
2142
|
# **Aurora PostgreSQL**
|
2144
2143
|
#
|
2145
|
-
# Possible
|
2144
|
+
# Possible value is `postgresql`.
|
2146
2145
|
#
|
2147
2146
|
#
|
2148
2147
|
#
|
@@ -2587,6 +2586,31 @@ module Aws::RDS
|
|
2587
2586
|
#
|
2588
2587
|
# Example: `aurora-postgresql9.6`
|
2589
2588
|
#
|
2589
|
+
# To list all of the available parameter group families for a DB engine,
|
2590
|
+
# use the following command:
|
2591
|
+
#
|
2592
|
+
# `aws rds describe-db-engine-versions --query
|
2593
|
+
# "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`
|
2594
|
+
#
|
2595
|
+
# For example, to list all of the available parameter group families for
|
2596
|
+
# the Aurora PostgreSQL DB engine, use the following command:
|
2597
|
+
#
|
2598
|
+
# `aws rds describe-db-engine-versions --query
|
2599
|
+
# "DBEngineVersions[].DBParameterGroupFamily" --engine
|
2600
|
+
# aurora-postgresql`
|
2601
|
+
#
|
2602
|
+
# <note markdown="1"> The output contains duplicates.
|
2603
|
+
#
|
2604
|
+
# </note>
|
2605
|
+
#
|
2606
|
+
# The following are the valid DB engine values:
|
2607
|
+
#
|
2608
|
+
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
2609
|
+
#
|
2610
|
+
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
2611
|
+
#
|
2612
|
+
# * `aurora-postgresql`
|
2613
|
+
#
|
2590
2614
|
# @option params [required, String] :description
|
2591
2615
|
# The description for the DB cluster parameter group.
|
2592
2616
|
#
|
@@ -3200,19 +3224,15 @@ module Aws::RDS
|
|
3200
3224
|
# @option params [String] :preferred_backup_window
|
3201
3225
|
# The daily time range during which automated backups are created if
|
3202
3226
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
3203
|
-
# parameter.
|
3204
|
-
#
|
3227
|
+
# parameter. The default is a 30-minute window selected at random from
|
3228
|
+
# an 8-hour block of time for each AWS Region. For more information, see
|
3229
|
+
# [Backup window][1] in the *Amazon RDS User Guide*.
|
3205
3230
|
#
|
3206
3231
|
# **Amazon Aurora**
|
3207
3232
|
#
|
3208
3233
|
# Not applicable. The daily time range for creating automated backups is
|
3209
3234
|
# managed by the DB cluster.
|
3210
3235
|
#
|
3211
|
-
# The default is a 30-minute window selected at random from an 8-hour
|
3212
|
-
# block of time for each AWS Region. To see the time blocks available,
|
3213
|
-
# see [ Adjusting the Preferred DB Instance Maintenance Window][2] in
|
3214
|
-
# the *Amazon RDS User Guide*.
|
3215
|
-
#
|
3216
3236
|
# Constraints:
|
3217
3237
|
#
|
3218
3238
|
# * Must be in the format `hh24:mi-hh24:mi`.
|
@@ -3226,7 +3246,6 @@ module Aws::RDS
|
|
3226
3246
|
#
|
3227
3247
|
#
|
3228
3248
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
|
3229
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow
|
3230
3249
|
#
|
3231
3250
|
# @option params [Integer] :port
|
3232
3251
|
# The port number on which the database accepts connections.
|
@@ -3874,6 +3893,7 @@ module Aws::RDS
|
|
3874
3893
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
3875
3894
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
3876
3895
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
3896
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
3877
3897
|
#
|
3878
3898
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
3879
3899
|
#
|
@@ -4531,6 +4551,7 @@ module Aws::RDS
|
|
4531
4551
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
4532
4552
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
4533
4553
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
4554
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
4534
4555
|
#
|
4535
4556
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
4536
4557
|
#
|
@@ -4590,16 +4611,52 @@ module Aws::RDS
|
|
4590
4611
|
# applied only to a DB instance running a database engine and engine
|
4591
4612
|
# version compatible with that DB parameter group family.
|
4592
4613
|
#
|
4593
|
-
# To list all of the available parameter group families
|
4594
|
-
# following command:
|
4614
|
+
# To list all of the available parameter group families for a DB engine,
|
4615
|
+
# use the following command:
|
4595
4616
|
#
|
4596
4617
|
# `aws rds describe-db-engine-versions --query
|
4597
|
-
# "DBEngineVersions[].DBParameterGroupFamily"
|
4618
|
+
# "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`
|
4619
|
+
#
|
4620
|
+
# For example, to list all of the available parameter group families for
|
4621
|
+
# the MySQL DB engine, use the following command:
|
4622
|
+
#
|
4623
|
+
# `aws rds describe-db-engine-versions --query
|
4624
|
+
# "DBEngineVersions[].DBParameterGroupFamily" --engine mysql`
|
4598
4625
|
#
|
4599
4626
|
# <note markdown="1"> The output contains duplicates.
|
4600
4627
|
#
|
4601
4628
|
# </note>
|
4602
4629
|
#
|
4630
|
+
# The following are the valid DB engine values:
|
4631
|
+
#
|
4632
|
+
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
4633
|
+
#
|
4634
|
+
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
4635
|
+
#
|
4636
|
+
# * `aurora-postgresql`
|
4637
|
+
#
|
4638
|
+
# * `mariadb`
|
4639
|
+
#
|
4640
|
+
# * `mysql`
|
4641
|
+
#
|
4642
|
+
# * `oracle-ee`
|
4643
|
+
#
|
4644
|
+
# * `oracle-se2`
|
4645
|
+
#
|
4646
|
+
# * `oracle-se1`
|
4647
|
+
#
|
4648
|
+
# * `oracle-se`
|
4649
|
+
#
|
4650
|
+
# * `postgres`
|
4651
|
+
#
|
4652
|
+
# * `sqlserver-ee`
|
4653
|
+
#
|
4654
|
+
# * `sqlserver-se`
|
4655
|
+
#
|
4656
|
+
# * `sqlserver-ex`
|
4657
|
+
#
|
4658
|
+
# * `sqlserver-web`
|
4659
|
+
#
|
4603
4660
|
# @option params [required, String] :description
|
4604
4661
|
# The description for the DB parameter group.
|
4605
4662
|
#
|
@@ -4746,6 +4803,7 @@ module Aws::RDS
|
|
4746
4803
|
# resp.db_proxy.db_proxy_arn #=> String
|
4747
4804
|
# resp.db_proxy.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting", "suspended", "suspending", "reactivating"
|
4748
4805
|
# resp.db_proxy.engine_family #=> String
|
4806
|
+
# resp.db_proxy.vpc_id #=> String
|
4749
4807
|
# resp.db_proxy.vpc_security_group_ids #=> Array
|
4750
4808
|
# resp.db_proxy.vpc_security_group_ids[0] #=> String
|
4751
4809
|
# resp.db_proxy.vpc_subnet_ids #=> Array
|
@@ -4773,6 +4831,86 @@ module Aws::RDS
|
|
4773
4831
|
req.send_request(options)
|
4774
4832
|
end
|
4775
4833
|
|
4834
|
+
# Creates a `DBProxyEndpoint`. Only applies to proxies that are
|
4835
|
+
# associated with Aurora DB clusters. You can use DB proxy endpoints to
|
4836
|
+
# specify read/write or read-only access to the DB cluster. You can also
|
4837
|
+
# use DB proxy endpoints to access a DB proxy through a different VPC
|
4838
|
+
# than the proxy's default VPC.
|
4839
|
+
#
|
4840
|
+
# @option params [required, String] :db_proxy_name
|
4841
|
+
# The name of the DB proxy associated with the DB proxy endpoint that
|
4842
|
+
# you create.
|
4843
|
+
#
|
4844
|
+
# @option params [required, String] :db_proxy_endpoint_name
|
4845
|
+
# The name of the DB proxy endpoint to create.
|
4846
|
+
#
|
4847
|
+
# @option params [required, Array<String>] :vpc_subnet_ids
|
4848
|
+
# The VPC subnet IDs for the DB proxy endpoint that you create. You can
|
4849
|
+
# specify a different set of subnet IDs than for the original DB proxy.
|
4850
|
+
#
|
4851
|
+
# @option params [Array<String>] :vpc_security_group_ids
|
4852
|
+
# The VPC security group IDs for the DB proxy endpoint that you create.
|
4853
|
+
# You can specify a different set of security group IDs than for the
|
4854
|
+
# original DB proxy. The default is the default security group for the
|
4855
|
+
# VPC.
|
4856
|
+
#
|
4857
|
+
# @option params [String] :target_role
|
4858
|
+
# A value that indicates whether the DB proxy endpoint can be used for
|
4859
|
+
# read/write or read-only operations. The default is `READ_WRITE`.
|
4860
|
+
#
|
4861
|
+
# @option params [Array<Types::Tag>] :tags
|
4862
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
4863
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
4864
|
+
#
|
4865
|
+
#
|
4866
|
+
#
|
4867
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
4868
|
+
#
|
4869
|
+
# @return [Types::CreateDBProxyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4870
|
+
#
|
4871
|
+
# * {Types::CreateDBProxyEndpointResponse#db_proxy_endpoint #db_proxy_endpoint} => Types::DBProxyEndpoint
|
4872
|
+
#
|
4873
|
+
# @example Request syntax with placeholder values
|
4874
|
+
#
|
4875
|
+
# resp = client.create_db_proxy_endpoint({
|
4876
|
+
# db_proxy_name: "DBProxyName", # required
|
4877
|
+
# db_proxy_endpoint_name: "DBProxyEndpointName", # required
|
4878
|
+
# vpc_subnet_ids: ["String"], # required
|
4879
|
+
# vpc_security_group_ids: ["String"],
|
4880
|
+
# target_role: "READ_WRITE", # accepts READ_WRITE, READ_ONLY
|
4881
|
+
# tags: [
|
4882
|
+
# {
|
4883
|
+
# key: "String",
|
4884
|
+
# value: "String",
|
4885
|
+
# },
|
4886
|
+
# ],
|
4887
|
+
# })
|
4888
|
+
#
|
4889
|
+
# @example Response structure
|
4890
|
+
#
|
4891
|
+
# resp.db_proxy_endpoint.db_proxy_endpoint_name #=> String
|
4892
|
+
# resp.db_proxy_endpoint.db_proxy_endpoint_arn #=> String
|
4893
|
+
# resp.db_proxy_endpoint.db_proxy_name #=> String
|
4894
|
+
# resp.db_proxy_endpoint.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting"
|
4895
|
+
# resp.db_proxy_endpoint.vpc_id #=> String
|
4896
|
+
# resp.db_proxy_endpoint.vpc_security_group_ids #=> Array
|
4897
|
+
# resp.db_proxy_endpoint.vpc_security_group_ids[0] #=> String
|
4898
|
+
# resp.db_proxy_endpoint.vpc_subnet_ids #=> Array
|
4899
|
+
# resp.db_proxy_endpoint.vpc_subnet_ids[0] #=> String
|
4900
|
+
# resp.db_proxy_endpoint.endpoint #=> String
|
4901
|
+
# resp.db_proxy_endpoint.created_date #=> Time
|
4902
|
+
# resp.db_proxy_endpoint.target_role #=> String, one of "READ_WRITE", "READ_ONLY"
|
4903
|
+
# resp.db_proxy_endpoint.is_default #=> Boolean
|
4904
|
+
#
|
4905
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxyEndpoint AWS API Documentation
|
4906
|
+
#
|
4907
|
+
# @overload create_db_proxy_endpoint(params = {})
|
4908
|
+
# @param [Hash] params ({})
|
4909
|
+
def create_db_proxy_endpoint(params = {}, options = {})
|
4910
|
+
req = build_request(:create_db_proxy_endpoint, params)
|
4911
|
+
req.send_request(options)
|
4912
|
+
end
|
4913
|
+
|
4776
4914
|
# Creates a new DB security group. DB security groups control access to
|
4777
4915
|
# a DB instance.
|
4778
4916
|
#
|
@@ -5123,8 +5261,7 @@ module Aws::RDS
|
|
5123
5261
|
#
|
5124
5262
|
# Constraints:
|
5125
5263
|
#
|
5126
|
-
# * If
|
5127
|
-
# provided.
|
5264
|
+
# * If `SourceIds` are supplied, `SourceType` must also be provided.
|
5128
5265
|
#
|
5129
5266
|
# * If the source type is a DB instance, a `DBInstanceIdentifier` value
|
5130
5267
|
# must be supplied.
|
@@ -6108,6 +6245,7 @@ module Aws::RDS
|
|
6108
6245
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
6109
6246
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
6110
6247
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
6248
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
6111
6249
|
#
|
6112
6250
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
6113
6251
|
#
|
@@ -6222,7 +6360,7 @@ module Aws::RDS
|
|
6222
6360
|
req.send_request(options)
|
6223
6361
|
end
|
6224
6362
|
|
6225
|
-
# Deletes an existing proxy.
|
6363
|
+
# Deletes an existing DB proxy.
|
6226
6364
|
#
|
6227
6365
|
# @option params [required, String] :db_proxy_name
|
6228
6366
|
# The name of the DB proxy to delete.
|
@@ -6243,6 +6381,7 @@ module Aws::RDS
|
|
6243
6381
|
# resp.db_proxy.db_proxy_arn #=> String
|
6244
6382
|
# resp.db_proxy.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting", "suspended", "suspending", "reactivating"
|
6245
6383
|
# resp.db_proxy.engine_family #=> String
|
6384
|
+
# resp.db_proxy.vpc_id #=> String
|
6246
6385
|
# resp.db_proxy.vpc_security_group_ids #=> Array
|
6247
6386
|
# resp.db_proxy.vpc_security_group_ids[0] #=> String
|
6248
6387
|
# resp.db_proxy.vpc_subnet_ids #=> Array
|
@@ -6270,6 +6409,50 @@ module Aws::RDS
|
|
6270
6409
|
req.send_request(options)
|
6271
6410
|
end
|
6272
6411
|
|
6412
|
+
# Deletes a `DBProxyEndpoint`. Doing so removes the ability to access
|
6413
|
+
# the DB proxy using the endpoint that you defined. The endpoint that
|
6414
|
+
# you delete might have provided capabilities such as read/write or
|
6415
|
+
# read-only operations, or using a different VPC than the DB proxy's
|
6416
|
+
# default VPC.
|
6417
|
+
#
|
6418
|
+
# @option params [required, String] :db_proxy_endpoint_name
|
6419
|
+
# The name of the DB proxy endpoint to delete.
|
6420
|
+
#
|
6421
|
+
# @return [Types::DeleteDBProxyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6422
|
+
#
|
6423
|
+
# * {Types::DeleteDBProxyEndpointResponse#db_proxy_endpoint #db_proxy_endpoint} => Types::DBProxyEndpoint
|
6424
|
+
#
|
6425
|
+
# @example Request syntax with placeholder values
|
6426
|
+
#
|
6427
|
+
# resp = client.delete_db_proxy_endpoint({
|
6428
|
+
# db_proxy_endpoint_name: "DBProxyEndpointName", # required
|
6429
|
+
# })
|
6430
|
+
#
|
6431
|
+
# @example Response structure
|
6432
|
+
#
|
6433
|
+
# resp.db_proxy_endpoint.db_proxy_endpoint_name #=> String
|
6434
|
+
# resp.db_proxy_endpoint.db_proxy_endpoint_arn #=> String
|
6435
|
+
# resp.db_proxy_endpoint.db_proxy_name #=> String
|
6436
|
+
# resp.db_proxy_endpoint.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting"
|
6437
|
+
# resp.db_proxy_endpoint.vpc_id #=> String
|
6438
|
+
# resp.db_proxy_endpoint.vpc_security_group_ids #=> Array
|
6439
|
+
# resp.db_proxy_endpoint.vpc_security_group_ids[0] #=> String
|
6440
|
+
# resp.db_proxy_endpoint.vpc_subnet_ids #=> Array
|
6441
|
+
# resp.db_proxy_endpoint.vpc_subnet_ids[0] #=> String
|
6442
|
+
# resp.db_proxy_endpoint.endpoint #=> String
|
6443
|
+
# resp.db_proxy_endpoint.created_date #=> Time
|
6444
|
+
# resp.db_proxy_endpoint.target_role #=> String, one of "READ_WRITE", "READ_ONLY"
|
6445
|
+
# resp.db_proxy_endpoint.is_default #=> Boolean
|
6446
|
+
#
|
6447
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBProxyEndpoint AWS API Documentation
|
6448
|
+
#
|
6449
|
+
# @overload delete_db_proxy_endpoint(params = {})
|
6450
|
+
# @param [Hash] params ({})
|
6451
|
+
def delete_db_proxy_endpoint(params = {}, options = {})
|
6452
|
+
req = build_request(:delete_db_proxy_endpoint, params)
|
6453
|
+
req.send_request(options)
|
6454
|
+
end
|
6455
|
+
|
6273
6456
|
# Deletes a DB security group.
|
6274
6457
|
#
|
6275
6458
|
# <note markdown="1"> The specified DB security group must not be associated with any DB
|
@@ -8292,6 +8475,7 @@ module Aws::RDS
|
|
8292
8475
|
# resp.db_instances[0].db_instance_automated_backups_replications #=> Array
|
8293
8476
|
# resp.db_instances[0].db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
8294
8477
|
# resp.db_instances[0].customer_owned_ip_enabled #=> Boolean
|
8478
|
+
# resp.db_instances[0].aws_backup_recovery_point_arn #=> String
|
8295
8479
|
#
|
8296
8480
|
#
|
8297
8481
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -8593,7 +8777,9 @@ module Aws::RDS
|
|
8593
8777
|
# Returns information about DB proxies.
|
8594
8778
|
#
|
8595
8779
|
# @option params [String] :db_proxy_name
|
8596
|
-
# The name of the DB proxy.
|
8780
|
+
# The name of the DB proxy. If you omit this parameter, the output
|
8781
|
+
# includes information about all DB proxies owned by your AWS account
|
8782
|
+
# ID.
|
8597
8783
|
#
|
8598
8784
|
# @option params [Array<Types::Filter>] :filters
|
8599
8785
|
# This parameter is not currently supported.
|
@@ -8641,6 +8827,7 @@ module Aws::RDS
|
|
8641
8827
|
# resp.db_proxies[0].db_proxy_arn #=> String
|
8642
8828
|
# resp.db_proxies[0].status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting", "suspended", "suspending", "reactivating"
|
8643
8829
|
# resp.db_proxies[0].engine_family #=> String
|
8830
|
+
# resp.db_proxies[0].vpc_id #=> String
|
8644
8831
|
# resp.db_proxies[0].vpc_security_group_ids #=> Array
|
8645
8832
|
# resp.db_proxies[0].vpc_security_group_ids[0] #=> String
|
8646
8833
|
# resp.db_proxies[0].vpc_subnet_ids #=> Array
|
@@ -8669,6 +8856,85 @@ module Aws::RDS
|
|
8669
8856
|
req.send_request(options)
|
8670
8857
|
end
|
8671
8858
|
|
8859
|
+
# Returns information about DB proxy endpoints.
|
8860
|
+
#
|
8861
|
+
# @option params [String] :db_proxy_name
|
8862
|
+
# The name of the DB proxy whose endpoints you want to describe. If you
|
8863
|
+
# omit this parameter, the output includes information about all DB
|
8864
|
+
# proxy endpoints associated with all your DB proxies.
|
8865
|
+
#
|
8866
|
+
# @option params [String] :db_proxy_endpoint_name
|
8867
|
+
# The name of a DB proxy endpoint to describe. If you omit this
|
8868
|
+
# parameter, the output includes information about all DB proxy
|
8869
|
+
# endpoints associated with the specified proxy.
|
8870
|
+
#
|
8871
|
+
# @option params [Array<Types::Filter>] :filters
|
8872
|
+
# This parameter is not currently supported.
|
8873
|
+
#
|
8874
|
+
# @option params [String] :marker
|
8875
|
+
# An optional pagination token provided by a previous request. If this
|
8876
|
+
# parameter is specified, the response includes only records beyond the
|
8877
|
+
# marker, up to the value specified by `MaxRecords`.
|
8878
|
+
#
|
8879
|
+
# @option params [Integer] :max_records
|
8880
|
+
# The maximum number of records to include in the response. If more
|
8881
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
8882
|
+
# token called a marker is included in the response so that the
|
8883
|
+
# remaining results can be retrieved.
|
8884
|
+
#
|
8885
|
+
# Default: 100
|
8886
|
+
#
|
8887
|
+
# Constraints: Minimum 20, maximum 100.
|
8888
|
+
#
|
8889
|
+
# @return [Types::DescribeDBProxyEndpointsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8890
|
+
#
|
8891
|
+
# * {Types::DescribeDBProxyEndpointsResponse#db_proxy_endpoints #db_proxy_endpoints} => Array<Types::DBProxyEndpoint>
|
8892
|
+
# * {Types::DescribeDBProxyEndpointsResponse#marker #marker} => String
|
8893
|
+
#
|
8894
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8895
|
+
#
|
8896
|
+
# @example Request syntax with placeholder values
|
8897
|
+
#
|
8898
|
+
# resp = client.describe_db_proxy_endpoints({
|
8899
|
+
# db_proxy_name: "DBProxyName",
|
8900
|
+
# db_proxy_endpoint_name: "DBProxyEndpointName",
|
8901
|
+
# filters: [
|
8902
|
+
# {
|
8903
|
+
# name: "String", # required
|
8904
|
+
# values: ["String"], # required
|
8905
|
+
# },
|
8906
|
+
# ],
|
8907
|
+
# marker: "String",
|
8908
|
+
# max_records: 1,
|
8909
|
+
# })
|
8910
|
+
#
|
8911
|
+
# @example Response structure
|
8912
|
+
#
|
8913
|
+
# resp.db_proxy_endpoints #=> Array
|
8914
|
+
# resp.db_proxy_endpoints[0].db_proxy_endpoint_name #=> String
|
8915
|
+
# resp.db_proxy_endpoints[0].db_proxy_endpoint_arn #=> String
|
8916
|
+
# resp.db_proxy_endpoints[0].db_proxy_name #=> String
|
8917
|
+
# resp.db_proxy_endpoints[0].status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting"
|
8918
|
+
# resp.db_proxy_endpoints[0].vpc_id #=> String
|
8919
|
+
# resp.db_proxy_endpoints[0].vpc_security_group_ids #=> Array
|
8920
|
+
# resp.db_proxy_endpoints[0].vpc_security_group_ids[0] #=> String
|
8921
|
+
# resp.db_proxy_endpoints[0].vpc_subnet_ids #=> Array
|
8922
|
+
# resp.db_proxy_endpoints[0].vpc_subnet_ids[0] #=> String
|
8923
|
+
# resp.db_proxy_endpoints[0].endpoint #=> String
|
8924
|
+
# resp.db_proxy_endpoints[0].created_date #=> Time
|
8925
|
+
# resp.db_proxy_endpoints[0].target_role #=> String, one of "READ_WRITE", "READ_ONLY"
|
8926
|
+
# resp.db_proxy_endpoints[0].is_default #=> Boolean
|
8927
|
+
# resp.marker #=> String
|
8928
|
+
#
|
8929
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxyEndpoints AWS API Documentation
|
8930
|
+
#
|
8931
|
+
# @overload describe_db_proxy_endpoints(params = {})
|
8932
|
+
# @param [Hash] params ({})
|
8933
|
+
def describe_db_proxy_endpoints(params = {}, options = {})
|
8934
|
+
req = build_request(:describe_db_proxy_endpoints, params)
|
8935
|
+
req.send_request(options)
|
8936
|
+
end
|
8937
|
+
|
8672
8938
|
# Returns information about DB proxy target groups, represented by
|
8673
8939
|
# `DBProxyTargetGroup` data structures.
|
8674
8940
|
#
|
@@ -8803,8 +9069,9 @@ module Aws::RDS
|
|
8803
9069
|
# resp.targets[0].rds_resource_id #=> String
|
8804
9070
|
# resp.targets[0].port #=> Integer
|
8805
9071
|
# resp.targets[0].type #=> String, one of "RDS_INSTANCE", "RDS_SERVERLESS_ENDPOINT", "TRACKED_CLUSTER"
|
9072
|
+
# resp.targets[0].role #=> String, one of "READ_WRITE", "READ_ONLY", "UNKNOWN"
|
8806
9073
|
# resp.targets[0].target_health.state #=> String, one of "REGISTERING", "AVAILABLE", "UNAVAILABLE"
|
8807
|
-
# resp.targets[0].target_health.reason #=> String, one of "UNREACHABLE", "CONNECTION_FAILED", "AUTH_FAILURE", "PENDING_PROXY_CAPACITY"
|
9074
|
+
# resp.targets[0].target_health.reason #=> String, one of "UNREACHABLE", "CONNECTION_FAILED", "AUTH_FAILURE", "PENDING_PROXY_CAPACITY", "INVALID_REPLICATION_STATE"
|
8808
9075
|
# resp.targets[0].target_health.description #=> String
|
8809
9076
|
# resp.marker #=> String
|
8810
9077
|
#
|
@@ -11303,7 +11570,7 @@ module Aws::RDS
|
|
11303
11570
|
#
|
11304
11571
|
#
|
11305
11572
|
#
|
11306
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database-disaster-recovery.managed-failover
|
11573
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database-disaster-recovery.html#aurora-global-database-disaster-recovery.managed-failover
|
11307
11574
|
#
|
11308
11575
|
# @option params [required, String] :global_cluster_identifier
|
11309
11576
|
# Identifier of the Aurora global database (GlobalCluster) that should
|
@@ -11816,9 +12083,8 @@ module Aws::RDS
|
|
11816
12083
|
# parameter.
|
11817
12084
|
#
|
11818
12085
|
# The default is a 30-minute window selected at random from an 8-hour
|
11819
|
-
# block of time for each AWS Region. To
|
11820
|
-
# see [
|
11821
|
-
# *Amazon Aurora User Guide.*
|
12086
|
+
# block of time for each AWS Region. To view the time blocks available,
|
12087
|
+
# see [ Backup window][1] in the *Amazon Aurora User Guide.*
|
11822
12088
|
#
|
11823
12089
|
# Constraints:
|
11824
12090
|
#
|
@@ -11832,7 +12098,7 @@ module Aws::RDS
|
|
11832
12098
|
#
|
11833
12099
|
#
|
11834
12100
|
#
|
11835
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/
|
12101
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow
|
11836
12102
|
#
|
11837
12103
|
# @option params [String] :preferred_maintenance_window
|
11838
12104
|
# The weekly time range during which system maintenance can occur, in
|
@@ -12237,12 +12503,6 @@ module Aws::RDS
|
|
12237
12503
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
12238
12504
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
12239
12505
|
#
|
12240
|
-
# <note markdown="1"> Changes to dynamic parameters are applied immediately. Changes to
|
12241
|
-
# static parameters require a reboot without failover to the DB cluster
|
12242
|
-
# associated with the parameter group before the change can take effect.
|
12243
|
-
#
|
12244
|
-
# </note>
|
12245
|
-
#
|
12246
12506
|
# After you create a DB cluster parameter group, you should wait at
|
12247
12507
|
# least 5 minutes before creating your first DB cluster that uses that
|
12248
12508
|
# DB cluster parameter group as the default parameter group. This allows
|
@@ -12276,6 +12536,22 @@ module Aws::RDS
|
|
12276
12536
|
# @option params [required, Array<Types::Parameter>] :parameters
|
12277
12537
|
# A list of parameters in the DB cluster parameter group to modify.
|
12278
12538
|
#
|
12539
|
+
# Valid Values (for the application method): `immediate |
|
12540
|
+
# pending-reboot`
|
12541
|
+
#
|
12542
|
+
# <note markdown="1"> You can use the `immediate` value with dynamic parameters only. You
|
12543
|
+
# can use the `pending-reboot` value for both dynamic and static
|
12544
|
+
# parameters.
|
12545
|
+
#
|
12546
|
+
# When the application method is `immediate`, changes to dynamic
|
12547
|
+
# parameters are applied immediately to the DB clusters associated with
|
12548
|
+
# the parameter group. When the application method is `pending-reboot`,
|
12549
|
+
# changes to dynamic and static parameters are applied after a reboot
|
12550
|
+
# without failover to the DB clusters associated with the parameter
|
12551
|
+
# group.
|
12552
|
+
#
|
12553
|
+
# </note>
|
12554
|
+
#
|
12279
12555
|
# @return [Types::DBClusterParameterGroupNameMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12280
12556
|
#
|
12281
12557
|
# * {Types::DBClusterParameterGroupNameMessage#db_cluster_parameter_group_name #db_cluster_parameter_group_name} => String
|
@@ -12629,10 +12905,14 @@ module Aws::RDS
|
|
12629
12905
|
# to a positive number enables backups. Setting this parameter to 0
|
12630
12906
|
# disables automated backups.
|
12631
12907
|
#
|
12632
|
-
#
|
12633
|
-
#
|
12634
|
-
#
|
12635
|
-
#
|
12908
|
+
# <note markdown="1"> Enabling and disabling backups can result in a brief I/O suspension
|
12909
|
+
# that lasts from a few seconds to a few minutes, depending on the size
|
12910
|
+
# and class of your DB instance.
|
12911
|
+
#
|
12912
|
+
# </note>
|
12913
|
+
#
|
12914
|
+
# These changes are applied during the next maintenance window unless
|
12915
|
+
# the `ApplyImmediately` parameter is enabled for this request. If you
|
12636
12916
|
# change the parameter from one non-zero value to another non-zero
|
12637
12917
|
# value, the change is asynchronously applied as soon as possible.
|
12638
12918
|
#
|
@@ -12660,7 +12940,9 @@ module Aws::RDS
|
|
12660
12940
|
# automated backups are enabled, as determined by the
|
12661
12941
|
# `BackupRetentionPeriod` parameter. Changing this parameter doesn't
|
12662
12942
|
# result in an outage and the change is asynchronously applied as soon
|
12663
|
-
# as possible.
|
12943
|
+
# as possible. The default is a 30-minute window selected at random from
|
12944
|
+
# an 8-hour block of time for each AWS Region. For more information, see
|
12945
|
+
# [Backup window][1] in the *Amazon RDS User Guide.*
|
12664
12946
|
#
|
12665
12947
|
# **Amazon Aurora**
|
12666
12948
|
#
|
@@ -12678,6 +12960,10 @@ module Aws::RDS
|
|
12678
12960
|
#
|
12679
12961
|
# * Must be at least 30 minutes
|
12680
12962
|
#
|
12963
|
+
#
|
12964
|
+
#
|
12965
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
|
12966
|
+
#
|
12681
12967
|
# @option params [String] :preferred_maintenance_window
|
12682
12968
|
# The weekly time range (in UTC) during which system maintenance can
|
12683
12969
|
# occur, which might result in an outage. Changing this parameter
|
@@ -12689,6 +12975,9 @@ module Aws::RDS
|
|
12689
12975
|
# current time, there must be at least 30 minutes between the current
|
12690
12976
|
# time and end of the window to ensure pending changes are applied.
|
12691
12977
|
#
|
12978
|
+
# For more information, see [Amazon RDS Maintenance Window][1] in the
|
12979
|
+
# *Amazon RDS User Guide.*
|
12980
|
+
#
|
12692
12981
|
# Default: Uses existing setting
|
12693
12982
|
#
|
12694
12983
|
# Format: ddd:hh24:mi-ddd:hh24:mi
|
@@ -12697,6 +12986,10 @@ module Aws::RDS
|
|
12697
12986
|
#
|
12698
12987
|
# Constraints: Must be at least 30 minutes
|
12699
12988
|
#
|
12989
|
+
#
|
12990
|
+
#
|
12991
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance
|
12992
|
+
#
|
12700
12993
|
# @option params [Boolean] :multi_az
|
12701
12994
|
# A value that indicates whether the DB instance is a Multi-AZ
|
12702
12995
|
# deployment. Changing this parameter doesn't result in an outage and
|
@@ -13129,6 +13422,9 @@ module Aws::RDS
|
|
13129
13422
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
13130
13423
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
13131
13424
|
#
|
13425
|
+
# @option params [String] :aws_backup_recovery_point_arn
|
13426
|
+
# The Amazon Resource Name (ARN) of the recovery point in AWS Backup.
|
13427
|
+
#
|
13132
13428
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13133
13429
|
#
|
13134
13430
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -13210,6 +13506,7 @@ module Aws::RDS
|
|
13210
13506
|
# certificate_rotation_restart: false,
|
13211
13507
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
13212
13508
|
# enable_customer_owned_ip: false,
|
13509
|
+
# aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
|
13213
13510
|
# })
|
13214
13511
|
#
|
13215
13512
|
# @example Response structure
|
@@ -13337,6 +13634,7 @@ module Aws::RDS
|
|
13337
13634
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
13338
13635
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
13339
13636
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
13637
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
13340
13638
|
#
|
13341
13639
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
13342
13640
|
#
|
@@ -13352,12 +13650,6 @@ module Aws::RDS
|
|
13352
13650
|
# `ParameterValue`, and `ApplyMethod`. A maximum of 20 parameters can be
|
13353
13651
|
# modified in a single request.
|
13354
13652
|
#
|
13355
|
-
# <note markdown="1"> Changes to dynamic parameters are applied immediately. Changes to
|
13356
|
-
# static parameters require a reboot without failover to the DB instance
|
13357
|
-
# associated with the parameter group before the change can take effect.
|
13358
|
-
#
|
13359
|
-
# </note>
|
13360
|
-
#
|
13361
13653
|
# After you modify a DB parameter group, you should wait at least 5
|
13362
13654
|
# minutes before creating your first DB instance that uses that DB
|
13363
13655
|
# parameter group as the default parameter group. This allows Amazon RDS
|
@@ -13384,18 +13676,25 @@ module Aws::RDS
|
|
13384
13676
|
# ^
|
13385
13677
|
#
|
13386
13678
|
# @option params [required, Array<Types::Parameter>] :parameters
|
13387
|
-
# An array of parameter names, values, and the
|
13388
|
-
# parameter update. At least one parameter name, value, and
|
13389
|
-
# must be supplied; later arguments are
|
13390
|
-
# parameters can be modified in a single
|
13679
|
+
# An array of parameter names, values, and the application methods for
|
13680
|
+
# the parameter update. At least one parameter name, value, and
|
13681
|
+
# application method method must be supplied; later arguments are
|
13682
|
+
# optional. A maximum of 20 parameters can be modified in a single
|
13683
|
+
# request.
|
13391
13684
|
#
|
13392
13685
|
# Valid Values (for the application method): `immediate |
|
13393
13686
|
# pending-reboot`
|
13394
13687
|
#
|
13395
|
-
# <note markdown="1"> You can use the immediate value with dynamic parameters only. You
|
13396
|
-
# use the pending-reboot value for both dynamic and static
|
13397
|
-
#
|
13398
|
-
#
|
13688
|
+
# <note markdown="1"> You can use the `immediate` value with dynamic parameters only. You
|
13689
|
+
# can use the `pending-reboot` value for both dynamic and static
|
13690
|
+
# parameters.
|
13691
|
+
#
|
13692
|
+
# When the application method is `immediate`, changes to dynamic
|
13693
|
+
# parameters are applied immediately to the DB instances associated with
|
13694
|
+
# the parameter group. When the application method is `pending-reboot`,
|
13695
|
+
# changes to dynamic and static parameters are applied after a reboot
|
13696
|
+
# without failover to the DB instances associated with the parameter
|
13697
|
+
# group.
|
13399
13698
|
#
|
13400
13699
|
# </note>
|
13401
13700
|
#
|
@@ -13528,6 +13827,7 @@ module Aws::RDS
|
|
13528
13827
|
# resp.db_proxy.db_proxy_arn #=> String
|
13529
13828
|
# resp.db_proxy.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting", "suspended", "suspending", "reactivating"
|
13530
13829
|
# resp.db_proxy.engine_family #=> String
|
13830
|
+
# resp.db_proxy.vpc_id #=> String
|
13531
13831
|
# resp.db_proxy.vpc_security_group_ids #=> Array
|
13532
13832
|
# resp.db_proxy.vpc_security_group_ids[0] #=> String
|
13533
13833
|
# resp.db_proxy.vpc_subnet_ids #=> Array
|
@@ -13555,6 +13855,61 @@ module Aws::RDS
|
|
13555
13855
|
req.send_request(options)
|
13556
13856
|
end
|
13557
13857
|
|
13858
|
+
# Changes the settings for an existing DB proxy endpoint.
|
13859
|
+
#
|
13860
|
+
# @option params [required, String] :db_proxy_endpoint_name
|
13861
|
+
# The name of the DB proxy sociated with the DB proxy endpoint that you
|
13862
|
+
# want to modify.
|
13863
|
+
#
|
13864
|
+
# @option params [String] :new_db_proxy_endpoint_name
|
13865
|
+
# The new identifier for the `DBProxyEndpoint`. An identifier must begin
|
13866
|
+
# with a letter and must contain only ASCII letters, digits, and
|
13867
|
+
# hyphens; it can't end with a hyphen or contain two consecutive
|
13868
|
+
# hyphens.
|
13869
|
+
#
|
13870
|
+
# @option params [Array<String>] :vpc_security_group_ids
|
13871
|
+
# The VPC security group IDs for the DB proxy endpoint. When the DB
|
13872
|
+
# proxy endpoint uses a different VPC than the original proxy, you also
|
13873
|
+
# specify a different set of security group IDs than for the original
|
13874
|
+
# proxy.
|
13875
|
+
#
|
13876
|
+
# @return [Types::ModifyDBProxyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13877
|
+
#
|
13878
|
+
# * {Types::ModifyDBProxyEndpointResponse#db_proxy_endpoint #db_proxy_endpoint} => Types::DBProxyEndpoint
|
13879
|
+
#
|
13880
|
+
# @example Request syntax with placeholder values
|
13881
|
+
#
|
13882
|
+
# resp = client.modify_db_proxy_endpoint({
|
13883
|
+
# db_proxy_endpoint_name: "DBProxyEndpointName", # required
|
13884
|
+
# new_db_proxy_endpoint_name: "DBProxyEndpointName",
|
13885
|
+
# vpc_security_group_ids: ["String"],
|
13886
|
+
# })
|
13887
|
+
#
|
13888
|
+
# @example Response structure
|
13889
|
+
#
|
13890
|
+
# resp.db_proxy_endpoint.db_proxy_endpoint_name #=> String
|
13891
|
+
# resp.db_proxy_endpoint.db_proxy_endpoint_arn #=> String
|
13892
|
+
# resp.db_proxy_endpoint.db_proxy_name #=> String
|
13893
|
+
# resp.db_proxy_endpoint.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting"
|
13894
|
+
# resp.db_proxy_endpoint.vpc_id #=> String
|
13895
|
+
# resp.db_proxy_endpoint.vpc_security_group_ids #=> Array
|
13896
|
+
# resp.db_proxy_endpoint.vpc_security_group_ids[0] #=> String
|
13897
|
+
# resp.db_proxy_endpoint.vpc_subnet_ids #=> Array
|
13898
|
+
# resp.db_proxy_endpoint.vpc_subnet_ids[0] #=> String
|
13899
|
+
# resp.db_proxy_endpoint.endpoint #=> String
|
13900
|
+
# resp.db_proxy_endpoint.created_date #=> Time
|
13901
|
+
# resp.db_proxy_endpoint.target_role #=> String, one of "READ_WRITE", "READ_ONLY"
|
13902
|
+
# resp.db_proxy_endpoint.is_default #=> Boolean
|
13903
|
+
#
|
13904
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBProxyEndpoint AWS API Documentation
|
13905
|
+
#
|
13906
|
+
# @overload modify_db_proxy_endpoint(params = {})
|
13907
|
+
# @param [Hash] params ({})
|
13908
|
+
def modify_db_proxy_endpoint(params = {}, options = {})
|
13909
|
+
req = build_request(:modify_db_proxy_endpoint, params)
|
13910
|
+
req.send_request(options)
|
13911
|
+
end
|
13912
|
+
|
13558
13913
|
# Modifies the properties of a `DBProxyTargetGroup`.
|
13559
13914
|
#
|
13560
13915
|
# @option params [required, String] :target_group_name
|
@@ -14473,6 +14828,7 @@ module Aws::RDS
|
|
14473
14828
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
14474
14829
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
14475
14830
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
14831
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
14476
14832
|
#
|
14477
14833
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
14478
14834
|
#
|
@@ -14885,6 +15241,7 @@ module Aws::RDS
|
|
14885
15241
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
14886
15242
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
14887
15243
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
15244
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
14888
15245
|
#
|
14889
15246
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
14890
15247
|
#
|
@@ -14933,8 +15290,9 @@ module Aws::RDS
|
|
14933
15290
|
# resp.db_proxy_targets[0].rds_resource_id #=> String
|
14934
15291
|
# resp.db_proxy_targets[0].port #=> Integer
|
14935
15292
|
# resp.db_proxy_targets[0].type #=> String, one of "RDS_INSTANCE", "RDS_SERVERLESS_ENDPOINT", "TRACKED_CLUSTER"
|
15293
|
+
# resp.db_proxy_targets[0].role #=> String, one of "READ_WRITE", "READ_ONLY", "UNKNOWN"
|
14936
15294
|
# resp.db_proxy_targets[0].target_health.state #=> String, one of "REGISTERING", "AVAILABLE", "UNAVAILABLE"
|
14937
|
-
# resp.db_proxy_targets[0].target_health.reason #=> String, one of "UNREACHABLE", "CONNECTION_FAILED", "AUTH_FAILURE", "PENDING_PROXY_CAPACITY"
|
15295
|
+
# resp.db_proxy_targets[0].target_health.reason #=> String, one of "UNREACHABLE", "CONNECTION_FAILED", "AUTH_FAILURE", "PENDING_PROXY_CAPACITY", "INVALID_REPLICATION_STATE"
|
14938
15296
|
# resp.db_proxy_targets[0].target_health.description #=> String
|
14939
15297
|
#
|
14940
15298
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RegisterDBProxyTargets AWS API Documentation
|
@@ -15555,9 +15913,8 @@ module Aws::RDS
|
|
15555
15913
|
# parameter.
|
15556
15914
|
#
|
15557
15915
|
# The default is a 30-minute window selected at random from an 8-hour
|
15558
|
-
# block of time for each AWS Region. To
|
15559
|
-
# see [
|
15560
|
-
# Aurora User Guide.*
|
15916
|
+
# block of time for each AWS Region. To view the time blocks available,
|
15917
|
+
# see [ Backup window][1] in the *Amazon Aurora User Guide.*
|
15561
15918
|
#
|
15562
15919
|
# Constraints:
|
15563
15920
|
#
|
@@ -15571,7 +15928,7 @@ module Aws::RDS
|
|
15571
15928
|
#
|
15572
15929
|
#
|
15573
15930
|
#
|
15574
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/
|
15931
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow
|
15575
15932
|
#
|
15576
15933
|
# @option params [String] :preferred_maintenance_window
|
15577
15934
|
# The weekly time range during which system maintenance can occur, in
|
@@ -17225,6 +17582,7 @@ module Aws::RDS
|
|
17225
17582
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
17226
17583
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
17227
17584
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
17585
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
17228
17586
|
#
|
17229
17587
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
17230
17588
|
#
|
@@ -17373,8 +17731,8 @@ module Aws::RDS
|
|
17373
17731
|
#
|
17374
17732
|
# @option params [String] :preferred_backup_window
|
17375
17733
|
# The time range each day during which automated backups are created if
|
17376
|
-
# automated backups are enabled. For more information, see [
|
17377
|
-
#
|
17734
|
+
# automated backups are enabled. For more information, see [Backup
|
17735
|
+
# window][1] in the *Amazon RDS User Guide.*
|
17378
17736
|
#
|
17379
17737
|
# Constraints:
|
17380
17738
|
#
|
@@ -17803,6 +18161,7 @@ module Aws::RDS
|
|
17803
18161
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
17804
18162
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
17805
18163
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
18164
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
17806
18165
|
#
|
17807
18166
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
17808
18167
|
#
|
@@ -18429,6 +18788,7 @@ module Aws::RDS
|
|
18429
18788
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
18430
18789
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
18431
18790
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
18791
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
18432
18792
|
#
|
18433
18793
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
18434
18794
|
#
|
@@ -18440,7 +18800,7 @@ module Aws::RDS
|
|
18440
18800
|
end
|
18441
18801
|
|
18442
18802
|
# Revokes ingress from a DBSecurityGroup for previously authorized IP
|
18443
|
-
# ranges or EC2 or VPC
|
18803
|
+
# ranges or EC2 or VPC security groups. Required parameters for this API
|
18444
18804
|
# are one of CIDRIP, EC2SecurityGroupId for VPC, or
|
18445
18805
|
# (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or
|
18446
18806
|
# EC2SecurityGroupId).
|
@@ -18873,6 +19233,7 @@ module Aws::RDS
|
|
18873
19233
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
18874
19234
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
18875
19235
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
19236
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
18876
19237
|
#
|
18877
19238
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
18878
19239
|
#
|
@@ -19436,6 +19797,7 @@ module Aws::RDS
|
|
19436
19797
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
19437
19798
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
19438
19799
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
19800
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
19439
19801
|
#
|
19440
19802
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
19441
19803
|
#
|
@@ -19523,7 +19885,7 @@ module Aws::RDS
|
|
19523
19885
|
params: params,
|
19524
19886
|
config: config)
|
19525
19887
|
context[:gem_name] = 'aws-sdk-rds'
|
19526
|
-
context[:gem_version] = '1.
|
19888
|
+
context[:gem_version] = '1.119.0'
|
19527
19889
|
Seahorse::Client::Request.new(handlers, context)
|
19528
19890
|
end
|
19529
19891
|
|