@aws-sdk/client-rds 3.496.0 → 3.499.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.
- package/README.md +40 -0
- package/dist-cjs/commands/CreateDBShardGroupCommand.js +1 -0
- package/dist-cjs/commands/DeleteDBShardGroupCommand.js +1 -0
- package/dist-cjs/commands/DescribeDBShardGroupsCommand.js +1 -0
- package/dist-cjs/commands/ModifyDBShardGroupCommand.js +1 -0
- package/dist-cjs/commands/RebootDBShardGroupCommand.js +1 -0
- package/dist-cjs/index.js +963 -243
- package/dist-es/RDS.js +10 -0
- package/dist-es/commands/CreateDBShardGroupCommand.js +24 -0
- package/dist-es/commands/DeleteDBShardGroupCommand.js +24 -0
- package/dist-es/commands/DeleteTenantDatabaseCommand.js +1 -1
- package/dist-es/commands/DescribeDBShardGroupsCommand.js +24 -0
- package/dist-es/commands/ModifyDBShardGroupCommand.js +24 -0
- package/dist-es/commands/RebootDBShardGroupCommand.js +24 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +94 -28
- package/dist-es/models/models_1.js +16 -0
- package/dist-es/protocols/Aws_query.js +505 -10
- package/dist-types/RDS.d.ts +35 -0
- package/dist-types/RDSClient.d.ts +7 -2
- package/dist-types/commands/CreateDBClusterCommand.d.ts +9 -0
- package/dist-types/commands/CreateDBShardGroupCommand.d.ts +93 -0
- package/dist-types/commands/DeleteDBClusterCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDBShardGroupCommand.d.ts +74 -0
- package/dist-types/commands/DeleteTenantDatabaseCommand.d.ts +2 -1
- package/dist-types/commands/DeregisterDBProxyTargetsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAccountAttributesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeBlueGreenDeploymentsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeCertificatesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBClustersCommand.d.ts +4 -0
- package/dist-types/commands/DescribeDBShardGroupsCommand.d.ts +87 -0
- package/dist-types/commands/FailoverDBClusterCommand.d.ts +8 -2
- package/dist-types/commands/ModifyDBClusterCommand.d.ts +5 -0
- package/dist-types/commands/ModifyDBShardGroupCommand.d.ts +80 -0
- package/dist-types/commands/PromoteReadReplicaDBClusterCommand.d.ts +4 -0
- package/dist-types/commands/RebootDBClusterCommand.d.ts +4 -0
- package/dist-types/commands/RebootDBShardGroupCommand.d.ts +74 -0
- package/dist-types/commands/RestoreDBClusterFromS3Command.d.ts +4 -0
- package/dist-types/commands/RestoreDBClusterFromSnapshotCommand.d.ts +4 -0
- package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +4 -0
- package/dist-types/commands/StartDBClusterCommand.d.ts +4 -0
- package/dist-types/commands/StopDBClusterCommand.d.ts +4 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +282 -343
- package/dist-types/models/models_1.d.ts +413 -2
- package/dist-types/protocols/Aws_query.d.ts +45 -0
- package/dist-types/ts3.4/RDS.d.ts +85 -0
- package/dist-types/ts3.4/RDSClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateDBShardGroupCommand.d.ts +27 -0
- package/dist-types/ts3.4/commands/DeleteDBShardGroupCommand.d.ts +27 -0
- package/dist-types/ts3.4/commands/DeleteTenantDatabaseCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DeregisterDBProxyTargetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeAccountAttributesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeBlueGreenDeploymentsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeCertificatesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDBShardGroupsCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/ModifyDBShardGroupCommand.d.ts +28 -0
- package/dist-types/ts3.4/commands/RebootDBShardGroupCommand.d.ts +28 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +91 -66
- package/dist-types/ts3.4/models/models_1.d.ts +75 -2
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +60 -0
- package/package.json +3 -3
|
@@ -1,6 +1,331 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { ActivityStreamMode, ActivityStreamPolicyStatus, ActivityStreamStatus, AutomationMode, AvailabilityZone, BlueGreenDeployment,
|
|
2
|
+
import { ActivityStreamMode, ActivityStreamPolicyStatus, ActivityStreamStatus, AutomationMode, AvailabilityZone, BlueGreenDeployment, DBCluster, DBClusterAutomatedBackup, DBClusterBacktrack, DBClusterEndpoint, DBClusterParameterGroup, DBClusterSnapshot, DBEngineVersion, DBInstance, DBInstanceAutomatedBackup, DBParameterGroup, DBProxy, DBProxyEndpoint, DBSecurityGroup, DBShardGroup, DBSnapshot, DBSubnetGroup, EventSubscription, ExportSourceType, ExportTask, GlobalCluster, Integration, OptionGroup, OptionSetting, ProcessorFeature, RdsCustomClusterConfiguration, ReplicaMode, ResourcePendingMaintenanceActions, ScalingConfiguration, ServerlessV2ScalingConfiguration, Tag, TenantDatabase, UserAuthConfig } from "./models_0";
|
|
3
3
|
import { RDSServiceException as __BaseException } from "./RDSServiceException";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface DeleteTenantDatabaseResult {
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
* <p>A tenant database in the DB instance. This data type is an element in the response to
|
|
11
|
+
* the <code>DescribeTenantDatabases</code> action.</p>
|
|
12
|
+
*/
|
|
13
|
+
TenantDatabase?: TenantDatabase;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
* <p>The specified RDS DB instance or Aurora DB cluster isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.</p>
|
|
18
|
+
*/
|
|
19
|
+
export declare class DBProxyTargetNotFoundFault extends __BaseException {
|
|
20
|
+
readonly name: "DBProxyTargetNotFoundFault";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(opts: __ExceptionOptionType<DBProxyTargetNotFoundFault, __BaseException>);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
export interface DeregisterDBProxyTargetsRequest {
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
* <p>The identifier of the <code>DBProxy</code> that is associated with the <code>DBProxyTargetGroup</code>.</p>
|
|
34
|
+
*/
|
|
35
|
+
DBProxyName: string | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
* <p>The identifier of the <code>DBProxyTargetGroup</code>.</p>
|
|
39
|
+
*/
|
|
40
|
+
TargetGroupName?: string;
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
* <p>One or more DB instance identifiers.</p>
|
|
44
|
+
*/
|
|
45
|
+
DBInstanceIdentifiers?: string[];
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
* <p>One or more DB cluster identifiers.</p>
|
|
49
|
+
*/
|
|
50
|
+
DBClusterIdentifiers?: string[];
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export interface DeregisterDBProxyTargetsResponse {
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
* <p></p>
|
|
60
|
+
*/
|
|
61
|
+
export interface DescribeAccountAttributesMessage {
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
* <p>A filter name and value pair that is used to return a more specific list of results
|
|
66
|
+
* from a describe operation. Filters can be used to match a set of resources by specific
|
|
67
|
+
* criteria, such as IDs. The filters supported by a describe operation are documented
|
|
68
|
+
* with the describe operation.</p>
|
|
69
|
+
* <note>
|
|
70
|
+
* <p>Currently, wildcards are not supported in filters.</p>
|
|
71
|
+
* </note>
|
|
72
|
+
* <p>The following actions can be filtered:</p>
|
|
73
|
+
* <ul>
|
|
74
|
+
* <li>
|
|
75
|
+
* <p>
|
|
76
|
+
* <code>DescribeDBClusterBacktracks</code>
|
|
77
|
+
* </p>
|
|
78
|
+
* </li>
|
|
79
|
+
* <li>
|
|
80
|
+
* <p>
|
|
81
|
+
* <code>DescribeDBClusterEndpoints</code>
|
|
82
|
+
* </p>
|
|
83
|
+
* </li>
|
|
84
|
+
* <li>
|
|
85
|
+
* <p>
|
|
86
|
+
* <code>DescribeDBClusters</code>
|
|
87
|
+
* </p>
|
|
88
|
+
* </li>
|
|
89
|
+
* <li>
|
|
90
|
+
* <p>
|
|
91
|
+
* <code>DescribeDBInstances</code>
|
|
92
|
+
* </p>
|
|
93
|
+
* </li>
|
|
94
|
+
* <li>
|
|
95
|
+
* <p>
|
|
96
|
+
* <code>DescribeDBRecommendations</code>
|
|
97
|
+
* </p>
|
|
98
|
+
* </li>
|
|
99
|
+
* <li>
|
|
100
|
+
* <p>
|
|
101
|
+
* <code>DescribePendingMaintenanceActions</code>
|
|
102
|
+
* </p>
|
|
103
|
+
* </li>
|
|
104
|
+
* </ul>
|
|
105
|
+
*/
|
|
106
|
+
export interface Filter {
|
|
107
|
+
/**
|
|
108
|
+
* @public
|
|
109
|
+
* <p>The name of the filter. Filter names are case-sensitive.</p>
|
|
110
|
+
*/
|
|
111
|
+
Name: string | undefined;
|
|
112
|
+
/**
|
|
113
|
+
* @public
|
|
114
|
+
* <p>One or more filter values. Filter values are case-sensitive.</p>
|
|
115
|
+
*/
|
|
116
|
+
Values: string[] | undefined;
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
export interface DescribeBlueGreenDeploymentsRequest {
|
|
122
|
+
/**
|
|
123
|
+
* @public
|
|
124
|
+
* <p>The blue/green deployment identifier. If you specify this parameter, the response only
|
|
125
|
+
* includes information about the specific blue/green deployment. This parameter isn't
|
|
126
|
+
* case-sensitive.</p>
|
|
127
|
+
* <p>Constraints:</p>
|
|
128
|
+
* <ul>
|
|
129
|
+
* <li>
|
|
130
|
+
* <p>Must match an existing blue/green deployment identifier.</p>
|
|
131
|
+
* </li>
|
|
132
|
+
* </ul>
|
|
133
|
+
*/
|
|
134
|
+
BlueGreenDeploymentIdentifier?: string;
|
|
135
|
+
/**
|
|
136
|
+
* @public
|
|
137
|
+
* <p>A filter that specifies one or more blue/green deployments to describe.</p>
|
|
138
|
+
* <p>Valid Values:</p>
|
|
139
|
+
* <ul>
|
|
140
|
+
* <li>
|
|
141
|
+
* <p>
|
|
142
|
+
* <code>blue-green-deployment-identifier</code> - Accepts system-generated
|
|
143
|
+
* identifiers for blue/green deployments. The results list only includes
|
|
144
|
+
* information about the blue/green deployments with the specified
|
|
145
|
+
* identifiers.</p>
|
|
146
|
+
* </li>
|
|
147
|
+
* <li>
|
|
148
|
+
* <p>
|
|
149
|
+
* <code>blue-green-deployment-name</code> - Accepts user-supplied names for blue/green deployments.
|
|
150
|
+
* The results list only includes information about the blue/green deployments with the
|
|
151
|
+
* specified names.</p>
|
|
152
|
+
* </li>
|
|
153
|
+
* <li>
|
|
154
|
+
* <p>
|
|
155
|
+
* <code>source</code> - Accepts source databases for a blue/green deployment.
|
|
156
|
+
* The results list only includes information about the blue/green deployments with
|
|
157
|
+
* the specified source databases.</p>
|
|
158
|
+
* </li>
|
|
159
|
+
* <li>
|
|
160
|
+
* <p>
|
|
161
|
+
* <code>target</code> - Accepts target databases for a blue/green deployment.
|
|
162
|
+
* The results list only includes information about the blue/green deployments with
|
|
163
|
+
* the specified target databases.</p>
|
|
164
|
+
* </li>
|
|
165
|
+
* </ul>
|
|
166
|
+
*/
|
|
167
|
+
Filters?: Filter[];
|
|
168
|
+
/**
|
|
169
|
+
* @public
|
|
170
|
+
* <p>An optional pagination token provided by a previous
|
|
171
|
+
* <code>DescribeBlueGreenDeployments</code> request. If you specify this parameter,
|
|
172
|
+
* the response only includes records beyond the marker, up to the value specified by
|
|
173
|
+
* <code>MaxRecords</code>.</p>
|
|
174
|
+
*/
|
|
175
|
+
Marker?: string;
|
|
176
|
+
/**
|
|
177
|
+
* @public
|
|
178
|
+
* <p>The maximum number of records to include in the response.
|
|
179
|
+
* If more records exist than the specified <code>MaxRecords</code> value,
|
|
180
|
+
* a pagination token called a marker is included in the response so you can retrieve the remaining results.</p>
|
|
181
|
+
* <p>Default: 100</p>
|
|
182
|
+
* <p>Constraints:</p>
|
|
183
|
+
* <ul>
|
|
184
|
+
* <li>
|
|
185
|
+
* <p>Must be a minimum of 20.</p>
|
|
186
|
+
* </li>
|
|
187
|
+
* <li>
|
|
188
|
+
* <p>Can't exceed 100.</p>
|
|
189
|
+
* </li>
|
|
190
|
+
* </ul>
|
|
191
|
+
*/
|
|
192
|
+
MaxRecords?: number;
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* @public
|
|
196
|
+
*/
|
|
197
|
+
export interface DescribeBlueGreenDeploymentsResponse {
|
|
198
|
+
/**
|
|
199
|
+
* @public
|
|
200
|
+
* <p>A list of blue/green deployments in the current account and Amazon Web Services Region.</p>
|
|
201
|
+
*/
|
|
202
|
+
BlueGreenDeployments?: BlueGreenDeployment[];
|
|
203
|
+
/**
|
|
204
|
+
* @public
|
|
205
|
+
* <p>A pagination token that can be used in a later
|
|
206
|
+
* <code>DescribeBlueGreenDeployments</code> request.</p>
|
|
207
|
+
*/
|
|
208
|
+
Marker?: string;
|
|
209
|
+
}
|
|
210
|
+
/**
|
|
211
|
+
* @public
|
|
212
|
+
* <p>A CA certificate for an Amazon Web Services account.</p>
|
|
213
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html">Using SSL/TLS to encrypt a connection to a DB
|
|
214
|
+
* instance</a> in the <i>Amazon RDS User Guide</i> and
|
|
215
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html">
|
|
216
|
+
* Using SSL/TLS to encrypt a connection to a DB cluster</a> in the <i>Amazon Aurora
|
|
217
|
+
* User Guide</i>.</p>
|
|
218
|
+
*/
|
|
219
|
+
export interface Certificate {
|
|
220
|
+
/**
|
|
221
|
+
* @public
|
|
222
|
+
* <p>The unique key that identifies a certificate.</p>
|
|
223
|
+
*/
|
|
224
|
+
CertificateIdentifier?: string;
|
|
225
|
+
/**
|
|
226
|
+
* @public
|
|
227
|
+
* <p>The type of the certificate.</p>
|
|
228
|
+
*/
|
|
229
|
+
CertificateType?: string;
|
|
230
|
+
/**
|
|
231
|
+
* @public
|
|
232
|
+
* <p>The thumbprint of the certificate.</p>
|
|
233
|
+
*/
|
|
234
|
+
Thumbprint?: string;
|
|
235
|
+
/**
|
|
236
|
+
* @public
|
|
237
|
+
* <p>The starting date from which the certificate is valid.</p>
|
|
238
|
+
*/
|
|
239
|
+
ValidFrom?: Date;
|
|
240
|
+
/**
|
|
241
|
+
* @public
|
|
242
|
+
* <p>The final date that the certificate continues to be valid.</p>
|
|
243
|
+
*/
|
|
244
|
+
ValidTill?: Date;
|
|
245
|
+
/**
|
|
246
|
+
* @public
|
|
247
|
+
* <p>The Amazon Resource Name (ARN) for the certificate.</p>
|
|
248
|
+
*/
|
|
249
|
+
CertificateArn?: string;
|
|
250
|
+
/**
|
|
251
|
+
* @public
|
|
252
|
+
* <p>Indicates whether there is an override for the default certificate identifier.</p>
|
|
253
|
+
*/
|
|
254
|
+
CustomerOverride?: boolean;
|
|
255
|
+
/**
|
|
256
|
+
* @public
|
|
257
|
+
* <p>If there is an override for the default certificate identifier, when the override
|
|
258
|
+
* expires.</p>
|
|
259
|
+
*/
|
|
260
|
+
CustomerOverrideValidTill?: Date;
|
|
261
|
+
}
|
|
262
|
+
/**
|
|
263
|
+
* @public
|
|
264
|
+
* <p>Data returned by the <b>DescribeCertificates</b> action.</p>
|
|
265
|
+
*/
|
|
266
|
+
export interface CertificateMessage {
|
|
267
|
+
/**
|
|
268
|
+
* @public
|
|
269
|
+
* <p>The default root CA for new databases created by your Amazon Web Services account. This is either the root CA override
|
|
270
|
+
* set on your Amazon Web Services account or the system default CA for the Region if no override exists. To override the default CA, use the
|
|
271
|
+
* <code>ModifyCertificates</code> operation.</p>
|
|
272
|
+
*/
|
|
273
|
+
DefaultCertificateForNewLaunches?: string;
|
|
274
|
+
/**
|
|
275
|
+
* @public
|
|
276
|
+
* <p>The list of <code>Certificate</code> objects for the Amazon Web Services account.</p>
|
|
277
|
+
*/
|
|
278
|
+
Certificates?: Certificate[];
|
|
279
|
+
/**
|
|
280
|
+
* @public
|
|
281
|
+
* <p>An optional pagination token provided by a previous
|
|
282
|
+
* <code>DescribeCertificates</code> request.
|
|
283
|
+
* If this parameter is specified, the response includes
|
|
284
|
+
* only records beyond the marker,
|
|
285
|
+
* up to the value specified by <code>MaxRecords</code> .</p>
|
|
286
|
+
*/
|
|
287
|
+
Marker?: string;
|
|
288
|
+
}
|
|
289
|
+
/**
|
|
290
|
+
* @public
|
|
291
|
+
* <p></p>
|
|
292
|
+
*/
|
|
293
|
+
export interface DescribeCertificatesMessage {
|
|
294
|
+
/**
|
|
295
|
+
* @public
|
|
296
|
+
* <p>The user-supplied certificate identifier. If this parameter is specified, information for only the identified certificate is returned. This parameter isn't case-sensitive.</p>
|
|
297
|
+
* <p>Constraints:</p>
|
|
298
|
+
* <ul>
|
|
299
|
+
* <li>
|
|
300
|
+
* <p>Must match an existing CertificateIdentifier.</p>
|
|
301
|
+
* </li>
|
|
302
|
+
* </ul>
|
|
303
|
+
*/
|
|
304
|
+
CertificateIdentifier?: string;
|
|
305
|
+
/**
|
|
306
|
+
* @public
|
|
307
|
+
* <p>This parameter isn't currently supported.</p>
|
|
308
|
+
*/
|
|
309
|
+
Filters?: Filter[];
|
|
310
|
+
/**
|
|
311
|
+
* @public
|
|
312
|
+
* <p>The maximum number of records to include in the response.
|
|
313
|
+
* If more records exist than the specified <code>MaxRecords</code> value,
|
|
314
|
+
* a pagination token called a marker is included in the response so you can retrieve the remaining results.</p>
|
|
315
|
+
* <p>Default: 100</p>
|
|
316
|
+
* <p>Constraints: Minimum 20, maximum 100.</p>
|
|
317
|
+
*/
|
|
318
|
+
MaxRecords?: number;
|
|
319
|
+
/**
|
|
320
|
+
* @public
|
|
321
|
+
* <p>An optional pagination token provided by a previous
|
|
322
|
+
* <code>DescribeCertificates</code> request.
|
|
323
|
+
* If this parameter is specified, the response includes
|
|
324
|
+
* only records beyond the marker,
|
|
325
|
+
* up to the value specified by <code>MaxRecords</code>.</p>
|
|
326
|
+
*/
|
|
327
|
+
Marker?: string;
|
|
328
|
+
}
|
|
4
329
|
/**
|
|
5
330
|
* @public
|
|
6
331
|
*/
|
|
@@ -570,7 +895,7 @@ export interface DescribeDBClustersMessage {
|
|
|
570
895
|
* If more records exist than the specified <code>MaxRecords</code> value,
|
|
571
896
|
* a pagination token called a marker is included in the response so you can retrieve the remaining results.</p>
|
|
572
897
|
* <p>Default: 100</p>
|
|
573
|
-
* <p>Constraints: Minimum 20, maximum 100
|
|
898
|
+
* <p>Constraints: Minimum 20, maximum 100</p>
|
|
574
899
|
*/
|
|
575
900
|
MaxRecords?: number;
|
|
576
901
|
/**
|
|
@@ -2684,6 +3009,57 @@ export interface DescribeDBSecurityGroupsMessage {
|
|
|
2684
3009
|
*/
|
|
2685
3010
|
Marker?: string;
|
|
2686
3011
|
}
|
|
3012
|
+
/**
|
|
3013
|
+
* @public
|
|
3014
|
+
*/
|
|
3015
|
+
export interface DescribeDBShardGroupsMessage {
|
|
3016
|
+
/**
|
|
3017
|
+
* @public
|
|
3018
|
+
* <p>The user-supplied DB shard group identifier or the Amazon Resource Name (ARN) of the DB shard group. If this parameter is specified,
|
|
3019
|
+
* information for only the specific DB shard group is returned. This parameter isn't case-sensitive.</p>
|
|
3020
|
+
* <p>Constraints:</p>
|
|
3021
|
+
* <ul>
|
|
3022
|
+
* <li>
|
|
3023
|
+
* <p>If supplied, must match an existing DB shard group identifier.</p>
|
|
3024
|
+
* </li>
|
|
3025
|
+
* </ul>
|
|
3026
|
+
*/
|
|
3027
|
+
DBShardGroupIdentifier?: string;
|
|
3028
|
+
/**
|
|
3029
|
+
* @public
|
|
3030
|
+
* <p>A filter that specifies one or more DB shard groups to describe.</p>
|
|
3031
|
+
*/
|
|
3032
|
+
Filters?: Filter[];
|
|
3033
|
+
/**
|
|
3034
|
+
* @public
|
|
3035
|
+
* <p>An optional pagination token provided by a previous <code>DescribeDBShardGroups</code> request. If this parameter is
|
|
3036
|
+
* specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p>
|
|
3037
|
+
*/
|
|
3038
|
+
Marker?: string;
|
|
3039
|
+
/**
|
|
3040
|
+
* @public
|
|
3041
|
+
* <p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code>
|
|
3042
|
+
* value, a pagination token called a marker is included in the response so you can retrieve the remaining results.</p>
|
|
3043
|
+
* <p>Default: 100</p>
|
|
3044
|
+
* <p>Constraints: Minimum 20, maximum 100</p>
|
|
3045
|
+
*/
|
|
3046
|
+
MaxRecords?: number;
|
|
3047
|
+
}
|
|
3048
|
+
/**
|
|
3049
|
+
* @public
|
|
3050
|
+
*/
|
|
3051
|
+
export interface DescribeDBShardGroupsResponse {
|
|
3052
|
+
/**
|
|
3053
|
+
* @public
|
|
3054
|
+
* <p>Contains a list of DB shard groups for the user.</p>
|
|
3055
|
+
*/
|
|
3056
|
+
DBShardGroups?: DBShardGroup[];
|
|
3057
|
+
/**
|
|
3058
|
+
* @public
|
|
3059
|
+
* <p>A pagination token that can be used in a later <code>DescribeDBClusters</code> request.</p>
|
|
3060
|
+
*/
|
|
3061
|
+
Marker?: string;
|
|
3062
|
+
}
|
|
2687
3063
|
/**
|
|
2688
3064
|
* @public
|
|
2689
3065
|
* <p></p>
|
|
@@ -6773,6 +7149,12 @@ export interface ModifyDBClusterMessage {
|
|
|
6773
7149
|
* <p>The Amazon Resource Name (ARN) of the recovery point in Amazon Web Services Backup.</p>
|
|
6774
7150
|
*/
|
|
6775
7151
|
AwsBackupRecoveryPointArn?: string;
|
|
7152
|
+
/**
|
|
7153
|
+
* @public
|
|
7154
|
+
* <p>Specifies whether to enable Aurora Limitless Database. You must enable Aurora Limitless Database to create a DB shard group.</p>
|
|
7155
|
+
* <p>Valid for: Aurora DB clusters only</p>
|
|
7156
|
+
*/
|
|
7157
|
+
EnableLimitlessDatabase?: boolean;
|
|
6776
7158
|
}
|
|
6777
7159
|
/**
|
|
6778
7160
|
* @public
|
|
@@ -8319,6 +8701,21 @@ export interface ModifyDBRecommendationMessage {
|
|
|
8319
8701
|
*/
|
|
8320
8702
|
RecommendedActionUpdates?: RecommendedActionUpdate[];
|
|
8321
8703
|
}
|
|
8704
|
+
/**
|
|
8705
|
+
* @public
|
|
8706
|
+
*/
|
|
8707
|
+
export interface ModifyDBShardGroupMessage {
|
|
8708
|
+
/**
|
|
8709
|
+
* @public
|
|
8710
|
+
* <p>The name of the DB shard group to modify.</p>
|
|
8711
|
+
*/
|
|
8712
|
+
DBShardGroupIdentifier: string | undefined;
|
|
8713
|
+
/**
|
|
8714
|
+
* @public
|
|
8715
|
+
* <p>The maximum capacity of the DB shard group in Aurora capacity units (ACUs).</p>
|
|
8716
|
+
*/
|
|
8717
|
+
MaxACU?: number;
|
|
8718
|
+
}
|
|
8322
8719
|
/**
|
|
8323
8720
|
* @public
|
|
8324
8721
|
*/
|
|
@@ -9053,6 +9450,16 @@ export interface RebootDBInstanceResult {
|
|
|
9053
9450
|
*/
|
|
9054
9451
|
DBInstance?: DBInstance;
|
|
9055
9452
|
}
|
|
9453
|
+
/**
|
|
9454
|
+
* @public
|
|
9455
|
+
*/
|
|
9456
|
+
export interface RebootDBShardGroupMessage {
|
|
9457
|
+
/**
|
|
9458
|
+
* @public
|
|
9459
|
+
* <p>The name of the DB shard group to reboot.</p>
|
|
9460
|
+
*/
|
|
9461
|
+
DBShardGroupIdentifier: string | undefined;
|
|
9462
|
+
}
|
|
9056
9463
|
/**
|
|
9057
9464
|
* @public
|
|
9058
9465
|
* <p>The proxy is already associated with the specified RDS DB instance or Aurora DB cluster.</p>
|
|
@@ -12953,6 +13360,10 @@ export interface SwitchoverReadReplicaResult {
|
|
|
12953
13360
|
*/
|
|
12954
13361
|
DBInstance?: DBInstance;
|
|
12955
13362
|
}
|
|
13363
|
+
/**
|
|
13364
|
+
* @internal
|
|
13365
|
+
*/
|
|
13366
|
+
export declare const DeleteTenantDatabaseResultFilterSensitiveLog: (obj: DeleteTenantDatabaseResult) => any;
|
|
12956
13367
|
/**
|
|
12957
13368
|
* @internal
|
|
12958
13369
|
*/
|
|
@@ -25,6 +25,7 @@ import { CreateDBParameterGroupCommandInput, CreateDBParameterGroupCommandOutput
|
|
|
25
25
|
import { CreateDBProxyCommandInput, CreateDBProxyCommandOutput } from "../commands/CreateDBProxyCommand";
|
|
26
26
|
import { CreateDBProxyEndpointCommandInput, CreateDBProxyEndpointCommandOutput } from "../commands/CreateDBProxyEndpointCommand";
|
|
27
27
|
import { CreateDBSecurityGroupCommandInput, CreateDBSecurityGroupCommandOutput } from "../commands/CreateDBSecurityGroupCommand";
|
|
28
|
+
import { CreateDBShardGroupCommandInput, CreateDBShardGroupCommandOutput } from "../commands/CreateDBShardGroupCommand";
|
|
28
29
|
import { CreateDBSnapshotCommandInput, CreateDBSnapshotCommandOutput } from "../commands/CreateDBSnapshotCommand";
|
|
29
30
|
import { CreateDBSubnetGroupCommandInput, CreateDBSubnetGroupCommandOutput } from "../commands/CreateDBSubnetGroupCommand";
|
|
30
31
|
import { CreateEventSubscriptionCommandInput, CreateEventSubscriptionCommandOutput } from "../commands/CreateEventSubscriptionCommand";
|
|
@@ -45,6 +46,7 @@ import { DeleteDBParameterGroupCommandInput, DeleteDBParameterGroupCommandOutput
|
|
|
45
46
|
import { DeleteDBProxyCommandInput, DeleteDBProxyCommandOutput } from "../commands/DeleteDBProxyCommand";
|
|
46
47
|
import { DeleteDBProxyEndpointCommandInput, DeleteDBProxyEndpointCommandOutput } from "../commands/DeleteDBProxyEndpointCommand";
|
|
47
48
|
import { DeleteDBSecurityGroupCommandInput, DeleteDBSecurityGroupCommandOutput } from "../commands/DeleteDBSecurityGroupCommand";
|
|
49
|
+
import { DeleteDBShardGroupCommandInput, DeleteDBShardGroupCommandOutput } from "../commands/DeleteDBShardGroupCommand";
|
|
48
50
|
import { DeleteDBSnapshotCommandInput, DeleteDBSnapshotCommandOutput } from "../commands/DeleteDBSnapshotCommand";
|
|
49
51
|
import { DeleteDBSubnetGroupCommandInput, DeleteDBSubnetGroupCommandOutput } from "../commands/DeleteDBSubnetGroupCommand";
|
|
50
52
|
import { DeleteEventSubscriptionCommandInput, DeleteEventSubscriptionCommandOutput } from "../commands/DeleteEventSubscriptionCommand";
|
|
@@ -76,6 +78,7 @@ import { DescribeDBProxyTargetGroupsCommandInput, DescribeDBProxyTargetGroupsCom
|
|
|
76
78
|
import { DescribeDBProxyTargetsCommandInput, DescribeDBProxyTargetsCommandOutput } from "../commands/DescribeDBProxyTargetsCommand";
|
|
77
79
|
import { DescribeDBRecommendationsCommandInput, DescribeDBRecommendationsCommandOutput } from "../commands/DescribeDBRecommendationsCommand";
|
|
78
80
|
import { DescribeDBSecurityGroupsCommandInput, DescribeDBSecurityGroupsCommandOutput } from "../commands/DescribeDBSecurityGroupsCommand";
|
|
81
|
+
import { DescribeDBShardGroupsCommandInput, DescribeDBShardGroupsCommandOutput } from "../commands/DescribeDBShardGroupsCommand";
|
|
79
82
|
import { DescribeDBSnapshotAttributesCommandInput, DescribeDBSnapshotAttributesCommandOutput } from "../commands/DescribeDBSnapshotAttributesCommand";
|
|
80
83
|
import { DescribeDBSnapshotsCommandInput, DescribeDBSnapshotsCommandOutput } from "../commands/DescribeDBSnapshotsCommand";
|
|
81
84
|
import { DescribeDBSnapshotTenantDatabasesCommandInput, DescribeDBSnapshotTenantDatabasesCommandOutput } from "../commands/DescribeDBSnapshotTenantDatabasesCommand";
|
|
@@ -117,6 +120,7 @@ import { ModifyDBProxyCommandInput, ModifyDBProxyCommandOutput } from "../comman
|
|
|
117
120
|
import { ModifyDBProxyEndpointCommandInput, ModifyDBProxyEndpointCommandOutput } from "../commands/ModifyDBProxyEndpointCommand";
|
|
118
121
|
import { ModifyDBProxyTargetGroupCommandInput, ModifyDBProxyTargetGroupCommandOutput } from "../commands/ModifyDBProxyTargetGroupCommand";
|
|
119
122
|
import { ModifyDBRecommendationCommandInput, ModifyDBRecommendationCommandOutput } from "../commands/ModifyDBRecommendationCommand";
|
|
123
|
+
import { ModifyDBShardGroupCommandInput, ModifyDBShardGroupCommandOutput } from "../commands/ModifyDBShardGroupCommand";
|
|
120
124
|
import { ModifyDBSnapshotAttributeCommandInput, ModifyDBSnapshotAttributeCommandOutput } from "../commands/ModifyDBSnapshotAttributeCommand";
|
|
121
125
|
import { ModifyDBSnapshotCommandInput, ModifyDBSnapshotCommandOutput } from "../commands/ModifyDBSnapshotCommand";
|
|
122
126
|
import { ModifyDBSubnetGroupCommandInput, ModifyDBSubnetGroupCommandOutput } from "../commands/ModifyDBSubnetGroupCommand";
|
|
@@ -129,6 +133,7 @@ import { PromoteReadReplicaDBClusterCommandInput, PromoteReadReplicaDBClusterCom
|
|
|
129
133
|
import { PurchaseReservedDBInstancesOfferingCommandInput, PurchaseReservedDBInstancesOfferingCommandOutput } from "../commands/PurchaseReservedDBInstancesOfferingCommand";
|
|
130
134
|
import { RebootDBClusterCommandInput, RebootDBClusterCommandOutput } from "../commands/RebootDBClusterCommand";
|
|
131
135
|
import { RebootDBInstanceCommandInput, RebootDBInstanceCommandOutput } from "../commands/RebootDBInstanceCommand";
|
|
136
|
+
import { RebootDBShardGroupCommandInput, RebootDBShardGroupCommandOutput } from "../commands/RebootDBShardGroupCommand";
|
|
132
137
|
import { RegisterDBProxyTargetsCommandInput, RegisterDBProxyTargetsCommandOutput } from "../commands/RegisterDBProxyTargetsCommand";
|
|
133
138
|
import { RemoveFromGlobalClusterCommandInput, RemoveFromGlobalClusterCommandOutput } from "../commands/RemoveFromGlobalClusterCommand";
|
|
134
139
|
import { RemoveRoleFromDBClusterCommandInput, RemoveRoleFromDBClusterCommandOutput } from "../commands/RemoveRoleFromDBClusterCommand";
|
|
@@ -256,6 +261,10 @@ export declare const se_CreateDBProxyEndpointCommand: (input: CreateDBProxyEndpo
|
|
|
256
261
|
* serializeAws_queryCreateDBSecurityGroupCommand
|
|
257
262
|
*/
|
|
258
263
|
export declare const se_CreateDBSecurityGroupCommand: (input: CreateDBSecurityGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
264
|
+
/**
|
|
265
|
+
* serializeAws_queryCreateDBShardGroupCommand
|
|
266
|
+
*/
|
|
267
|
+
export declare const se_CreateDBShardGroupCommand: (input: CreateDBShardGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
259
268
|
/**
|
|
260
269
|
* serializeAws_queryCreateDBSnapshotCommand
|
|
261
270
|
*/
|
|
@@ -336,6 +345,10 @@ export declare const se_DeleteDBProxyEndpointCommand: (input: DeleteDBProxyEndpo
|
|
|
336
345
|
* serializeAws_queryDeleteDBSecurityGroupCommand
|
|
337
346
|
*/
|
|
338
347
|
export declare const se_DeleteDBSecurityGroupCommand: (input: DeleteDBSecurityGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
348
|
+
/**
|
|
349
|
+
* serializeAws_queryDeleteDBShardGroupCommand
|
|
350
|
+
*/
|
|
351
|
+
export declare const se_DeleteDBShardGroupCommand: (input: DeleteDBShardGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
339
352
|
/**
|
|
340
353
|
* serializeAws_queryDeleteDBSnapshotCommand
|
|
341
354
|
*/
|
|
@@ -460,6 +473,10 @@ export declare const se_DescribeDBRecommendationsCommand: (input: DescribeDBReco
|
|
|
460
473
|
* serializeAws_queryDescribeDBSecurityGroupsCommand
|
|
461
474
|
*/
|
|
462
475
|
export declare const se_DescribeDBSecurityGroupsCommand: (input: DescribeDBSecurityGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
476
|
+
/**
|
|
477
|
+
* serializeAws_queryDescribeDBShardGroupsCommand
|
|
478
|
+
*/
|
|
479
|
+
export declare const se_DescribeDBShardGroupsCommand: (input: DescribeDBShardGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
463
480
|
/**
|
|
464
481
|
* serializeAws_queryDescribeDBSnapshotAttributesCommand
|
|
465
482
|
*/
|
|
@@ -624,6 +641,10 @@ export declare const se_ModifyDBProxyTargetGroupCommand: (input: ModifyDBProxyTa
|
|
|
624
641
|
* serializeAws_queryModifyDBRecommendationCommand
|
|
625
642
|
*/
|
|
626
643
|
export declare const se_ModifyDBRecommendationCommand: (input: ModifyDBRecommendationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
644
|
+
/**
|
|
645
|
+
* serializeAws_queryModifyDBShardGroupCommand
|
|
646
|
+
*/
|
|
647
|
+
export declare const se_ModifyDBShardGroupCommand: (input: ModifyDBShardGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
627
648
|
/**
|
|
628
649
|
* serializeAws_queryModifyDBSnapshotCommand
|
|
629
650
|
*/
|
|
@@ -672,6 +693,10 @@ export declare const se_RebootDBClusterCommand: (input: RebootDBClusterCommandIn
|
|
|
672
693
|
* serializeAws_queryRebootDBInstanceCommand
|
|
673
694
|
*/
|
|
674
695
|
export declare const se_RebootDBInstanceCommand: (input: RebootDBInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
696
|
+
/**
|
|
697
|
+
* serializeAws_queryRebootDBShardGroupCommand
|
|
698
|
+
*/
|
|
699
|
+
export declare const se_RebootDBShardGroupCommand: (input: RebootDBShardGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
675
700
|
/**
|
|
676
701
|
* serializeAws_queryRegisterDBProxyTargetsCommand
|
|
677
702
|
*/
|
|
@@ -880,6 +905,10 @@ export declare const de_CreateDBProxyEndpointCommand: (output: __HttpResponse, c
|
|
|
880
905
|
* deserializeAws_queryCreateDBSecurityGroupCommand
|
|
881
906
|
*/
|
|
882
907
|
export declare const de_CreateDBSecurityGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDBSecurityGroupCommandOutput>;
|
|
908
|
+
/**
|
|
909
|
+
* deserializeAws_queryCreateDBShardGroupCommand
|
|
910
|
+
*/
|
|
911
|
+
export declare const de_CreateDBShardGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDBShardGroupCommandOutput>;
|
|
883
912
|
/**
|
|
884
913
|
* deserializeAws_queryCreateDBSnapshotCommand
|
|
885
914
|
*/
|
|
@@ -960,6 +989,10 @@ export declare const de_DeleteDBProxyEndpointCommand: (output: __HttpResponse, c
|
|
|
960
989
|
* deserializeAws_queryDeleteDBSecurityGroupCommand
|
|
961
990
|
*/
|
|
962
991
|
export declare const de_DeleteDBSecurityGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDBSecurityGroupCommandOutput>;
|
|
992
|
+
/**
|
|
993
|
+
* deserializeAws_queryDeleteDBShardGroupCommand
|
|
994
|
+
*/
|
|
995
|
+
export declare const de_DeleteDBShardGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDBShardGroupCommandOutput>;
|
|
963
996
|
/**
|
|
964
997
|
* deserializeAws_queryDeleteDBSnapshotCommand
|
|
965
998
|
*/
|
|
@@ -1084,6 +1117,10 @@ export declare const de_DescribeDBRecommendationsCommand: (output: __HttpRespons
|
|
|
1084
1117
|
* deserializeAws_queryDescribeDBSecurityGroupsCommand
|
|
1085
1118
|
*/
|
|
1086
1119
|
export declare const de_DescribeDBSecurityGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDBSecurityGroupsCommandOutput>;
|
|
1120
|
+
/**
|
|
1121
|
+
* deserializeAws_queryDescribeDBShardGroupsCommand
|
|
1122
|
+
*/
|
|
1123
|
+
export declare const de_DescribeDBShardGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDBShardGroupsCommandOutput>;
|
|
1087
1124
|
/**
|
|
1088
1125
|
* deserializeAws_queryDescribeDBSnapshotAttributesCommand
|
|
1089
1126
|
*/
|
|
@@ -1248,6 +1285,10 @@ export declare const de_ModifyDBProxyTargetGroupCommand: (output: __HttpResponse
|
|
|
1248
1285
|
* deserializeAws_queryModifyDBRecommendationCommand
|
|
1249
1286
|
*/
|
|
1250
1287
|
export declare const de_ModifyDBRecommendationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyDBRecommendationCommandOutput>;
|
|
1288
|
+
/**
|
|
1289
|
+
* deserializeAws_queryModifyDBShardGroupCommand
|
|
1290
|
+
*/
|
|
1291
|
+
export declare const de_ModifyDBShardGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyDBShardGroupCommandOutput>;
|
|
1251
1292
|
/**
|
|
1252
1293
|
* deserializeAws_queryModifyDBSnapshotCommand
|
|
1253
1294
|
*/
|
|
@@ -1296,6 +1337,10 @@ export declare const de_RebootDBClusterCommand: (output: __HttpResponse, context
|
|
|
1296
1337
|
* deserializeAws_queryRebootDBInstanceCommand
|
|
1297
1338
|
*/
|
|
1298
1339
|
export declare const de_RebootDBInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RebootDBInstanceCommandOutput>;
|
|
1340
|
+
/**
|
|
1341
|
+
* deserializeAws_queryRebootDBShardGroupCommand
|
|
1342
|
+
*/
|
|
1343
|
+
export declare const de_RebootDBShardGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RebootDBShardGroupCommandOutput>;
|
|
1299
1344
|
/**
|
|
1300
1345
|
* deserializeAws_queryRegisterDBProxyTargetsCommand
|
|
1301
1346
|
*/
|