@aws-sdk/client-dax 3.49.0 → 3.50.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/CHANGELOG.md +8 -0
- package/package.json +25 -25
- package/dist-types/ts3.4/DAX.d.ts +0 -110
- package/dist-types/ts3.4/DAXClient.d.ts +0 -94
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/CreateParameterGroupCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/CreateSubnetGroupCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DecreaseReplicationFactorCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DeleteParameterGroupCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DeleteSubnetGroupCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeDefaultParametersCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeParameterGroupsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeSubnetGroupsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/IncreaseReplicationFactorCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/RebootNodeCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/UpdateParameterGroupCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/UpdateSubnetGroupCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/index.d.ts +0 -21
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/index.d.ts +0 -4
- package/dist-types/ts3.4/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -861
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -65
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -11
|
@@ -1,861 +0,0 @@
|
|
|
1
|
-
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
-
|
|
3
|
-
export interface ClusterAlreadyExistsFault extends __SmithyException, $MetadataBearer {
|
|
4
|
-
name: "ClusterAlreadyExistsFault";
|
|
5
|
-
$fault: "client";
|
|
6
|
-
message?: string;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
export interface ClusterQuotaForCustomerExceededFault extends __SmithyException, $MetadataBearer {
|
|
10
|
-
name: "ClusterQuotaForCustomerExceededFault";
|
|
11
|
-
$fault: "client";
|
|
12
|
-
message?: string;
|
|
13
|
-
}
|
|
14
|
-
export declare enum ClusterEndpointEncryptionType {
|
|
15
|
-
NONE = "NONE",
|
|
16
|
-
TLS = "TLS"
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export interface SSESpecification {
|
|
20
|
-
|
|
21
|
-
Enabled: boolean | undefined;
|
|
22
|
-
}
|
|
23
|
-
export declare namespace SSESpecification {
|
|
24
|
-
|
|
25
|
-
const filterSensitiveLog: (obj: SSESpecification) => any;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
export interface Tag {
|
|
29
|
-
|
|
30
|
-
Key?: string;
|
|
31
|
-
|
|
32
|
-
Value?: string;
|
|
33
|
-
}
|
|
34
|
-
export declare namespace Tag {
|
|
35
|
-
|
|
36
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
37
|
-
}
|
|
38
|
-
export interface CreateClusterRequest {
|
|
39
|
-
|
|
40
|
-
ClusterName: string | undefined;
|
|
41
|
-
|
|
42
|
-
NodeType: string | undefined;
|
|
43
|
-
|
|
44
|
-
Description?: string;
|
|
45
|
-
|
|
46
|
-
ReplicationFactor: number | undefined;
|
|
47
|
-
|
|
48
|
-
AvailabilityZones?: string[];
|
|
49
|
-
|
|
50
|
-
SubnetGroupName?: string;
|
|
51
|
-
|
|
52
|
-
SecurityGroupIds?: string[];
|
|
53
|
-
|
|
54
|
-
PreferredMaintenanceWindow?: string;
|
|
55
|
-
|
|
56
|
-
NotificationTopicArn?: string;
|
|
57
|
-
|
|
58
|
-
IamRoleArn: string | undefined;
|
|
59
|
-
|
|
60
|
-
ParameterGroupName?: string;
|
|
61
|
-
|
|
62
|
-
Tags?: Tag[];
|
|
63
|
-
|
|
64
|
-
SSESpecification?: SSESpecification;
|
|
65
|
-
|
|
66
|
-
ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType | string;
|
|
67
|
-
}
|
|
68
|
-
export declare namespace CreateClusterRequest {
|
|
69
|
-
|
|
70
|
-
const filterSensitiveLog: (obj: CreateClusterRequest) => any;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
export interface Endpoint {
|
|
74
|
-
|
|
75
|
-
Address?: string;
|
|
76
|
-
|
|
77
|
-
Port?: number;
|
|
78
|
-
|
|
79
|
-
URL?: string;
|
|
80
|
-
}
|
|
81
|
-
export declare namespace Endpoint {
|
|
82
|
-
|
|
83
|
-
const filterSensitiveLog: (obj: Endpoint) => any;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
export interface Node {
|
|
87
|
-
|
|
88
|
-
NodeId?: string;
|
|
89
|
-
|
|
90
|
-
Endpoint?: Endpoint;
|
|
91
|
-
|
|
92
|
-
NodeCreateTime?: Date;
|
|
93
|
-
|
|
94
|
-
AvailabilityZone?: string;
|
|
95
|
-
|
|
96
|
-
NodeStatus?: string;
|
|
97
|
-
|
|
98
|
-
ParameterGroupStatus?: string;
|
|
99
|
-
}
|
|
100
|
-
export declare namespace Node {
|
|
101
|
-
|
|
102
|
-
const filterSensitiveLog: (obj: Node) => any;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
export interface NotificationConfiguration {
|
|
106
|
-
|
|
107
|
-
TopicArn?: string;
|
|
108
|
-
|
|
109
|
-
TopicStatus?: string;
|
|
110
|
-
}
|
|
111
|
-
export declare namespace NotificationConfiguration {
|
|
112
|
-
|
|
113
|
-
const filterSensitiveLog: (obj: NotificationConfiguration) => any;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
export interface ParameterGroupStatus {
|
|
117
|
-
|
|
118
|
-
ParameterGroupName?: string;
|
|
119
|
-
|
|
120
|
-
ParameterApplyStatus?: string;
|
|
121
|
-
|
|
122
|
-
NodeIdsToReboot?: string[];
|
|
123
|
-
}
|
|
124
|
-
export declare namespace ParameterGroupStatus {
|
|
125
|
-
|
|
126
|
-
const filterSensitiveLog: (obj: ParameterGroupStatus) => any;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
export interface SecurityGroupMembership {
|
|
130
|
-
|
|
131
|
-
SecurityGroupIdentifier?: string;
|
|
132
|
-
|
|
133
|
-
Status?: string;
|
|
134
|
-
}
|
|
135
|
-
export declare namespace SecurityGroupMembership {
|
|
136
|
-
|
|
137
|
-
const filterSensitiveLog: (obj: SecurityGroupMembership) => any;
|
|
138
|
-
}
|
|
139
|
-
export declare type SSEStatus = "DISABLED" | "DISABLING" | "ENABLED" | "ENABLING";
|
|
140
|
-
|
|
141
|
-
export interface SSEDescription {
|
|
142
|
-
|
|
143
|
-
Status?: SSEStatus | string;
|
|
144
|
-
}
|
|
145
|
-
export declare namespace SSEDescription {
|
|
146
|
-
|
|
147
|
-
const filterSensitiveLog: (obj: SSEDescription) => any;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
export interface Cluster {
|
|
151
|
-
|
|
152
|
-
ClusterName?: string;
|
|
153
|
-
|
|
154
|
-
Description?: string;
|
|
155
|
-
|
|
156
|
-
ClusterArn?: string;
|
|
157
|
-
|
|
158
|
-
TotalNodes?: number;
|
|
159
|
-
|
|
160
|
-
ActiveNodes?: number;
|
|
161
|
-
|
|
162
|
-
NodeType?: string;
|
|
163
|
-
|
|
164
|
-
Status?: string;
|
|
165
|
-
|
|
166
|
-
ClusterDiscoveryEndpoint?: Endpoint;
|
|
167
|
-
|
|
168
|
-
NodeIdsToRemove?: string[];
|
|
169
|
-
|
|
170
|
-
Nodes?: Node[];
|
|
171
|
-
|
|
172
|
-
PreferredMaintenanceWindow?: string;
|
|
173
|
-
|
|
174
|
-
NotificationConfiguration?: NotificationConfiguration;
|
|
175
|
-
|
|
176
|
-
SubnetGroup?: string;
|
|
177
|
-
|
|
178
|
-
SecurityGroups?: SecurityGroupMembership[];
|
|
179
|
-
|
|
180
|
-
IamRoleArn?: string;
|
|
181
|
-
|
|
182
|
-
ParameterGroup?: ParameterGroupStatus;
|
|
183
|
-
|
|
184
|
-
SSEDescription?: SSEDescription;
|
|
185
|
-
|
|
186
|
-
ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType | string;
|
|
187
|
-
}
|
|
188
|
-
export declare namespace Cluster {
|
|
189
|
-
|
|
190
|
-
const filterSensitiveLog: (obj: Cluster) => any;
|
|
191
|
-
}
|
|
192
|
-
export interface CreateClusterResponse {
|
|
193
|
-
|
|
194
|
-
Cluster?: Cluster;
|
|
195
|
-
}
|
|
196
|
-
export declare namespace CreateClusterResponse {
|
|
197
|
-
|
|
198
|
-
const filterSensitiveLog: (obj: CreateClusterResponse) => any;
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
export interface InsufficientClusterCapacityFault extends __SmithyException, $MetadataBearer {
|
|
202
|
-
name: "InsufficientClusterCapacityFault";
|
|
203
|
-
$fault: "client";
|
|
204
|
-
message?: string;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
export interface InvalidClusterStateFault extends __SmithyException, $MetadataBearer {
|
|
208
|
-
name: "InvalidClusterStateFault";
|
|
209
|
-
$fault: "client";
|
|
210
|
-
message?: string;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
export interface InvalidParameterCombinationException extends __SmithyException, $MetadataBearer {
|
|
214
|
-
name: "InvalidParameterCombinationException";
|
|
215
|
-
$fault: "client";
|
|
216
|
-
message?: string;
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
export interface InvalidParameterGroupStateFault extends __SmithyException, $MetadataBearer {
|
|
220
|
-
name: "InvalidParameterGroupStateFault";
|
|
221
|
-
$fault: "client";
|
|
222
|
-
message?: string;
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
export interface InvalidParameterValueException extends __SmithyException, $MetadataBearer {
|
|
226
|
-
name: "InvalidParameterValueException";
|
|
227
|
-
$fault: "client";
|
|
228
|
-
message?: string;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
export interface InvalidVPCNetworkStateFault extends __SmithyException, $MetadataBearer {
|
|
232
|
-
name: "InvalidVPCNetworkStateFault";
|
|
233
|
-
$fault: "client";
|
|
234
|
-
message?: string;
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
export interface NodeQuotaForClusterExceededFault extends __SmithyException, $MetadataBearer {
|
|
238
|
-
name: "NodeQuotaForClusterExceededFault";
|
|
239
|
-
$fault: "client";
|
|
240
|
-
message?: string;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
export interface NodeQuotaForCustomerExceededFault extends __SmithyException, $MetadataBearer {
|
|
244
|
-
name: "NodeQuotaForCustomerExceededFault";
|
|
245
|
-
$fault: "client";
|
|
246
|
-
message?: string;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
export interface ParameterGroupNotFoundFault extends __SmithyException, $MetadataBearer {
|
|
250
|
-
name: "ParameterGroupNotFoundFault";
|
|
251
|
-
$fault: "client";
|
|
252
|
-
message?: string;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
export interface ServiceLinkedRoleNotFoundFault extends __SmithyException, $MetadataBearer {
|
|
256
|
-
name: "ServiceLinkedRoleNotFoundFault";
|
|
257
|
-
$fault: "client";
|
|
258
|
-
message?: string;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
|
|
262
|
-
name: "ServiceQuotaExceededException";
|
|
263
|
-
$fault: "client";
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
export interface SubnetGroupNotFoundFault extends __SmithyException, $MetadataBearer {
|
|
267
|
-
name: "SubnetGroupNotFoundFault";
|
|
268
|
-
$fault: "client";
|
|
269
|
-
message?: string;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
export interface TagQuotaPerResourceExceeded extends __SmithyException, $MetadataBearer {
|
|
273
|
-
name: "TagQuotaPerResourceExceeded";
|
|
274
|
-
$fault: "client";
|
|
275
|
-
message?: string;
|
|
276
|
-
}
|
|
277
|
-
export interface CreateParameterGroupRequest {
|
|
278
|
-
|
|
279
|
-
ParameterGroupName: string | undefined;
|
|
280
|
-
|
|
281
|
-
Description?: string;
|
|
282
|
-
}
|
|
283
|
-
export declare namespace CreateParameterGroupRequest {
|
|
284
|
-
|
|
285
|
-
const filterSensitiveLog: (obj: CreateParameterGroupRequest) => any;
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
export interface ParameterGroup {
|
|
289
|
-
|
|
290
|
-
ParameterGroupName?: string;
|
|
291
|
-
|
|
292
|
-
Description?: string;
|
|
293
|
-
}
|
|
294
|
-
export declare namespace ParameterGroup {
|
|
295
|
-
|
|
296
|
-
const filterSensitiveLog: (obj: ParameterGroup) => any;
|
|
297
|
-
}
|
|
298
|
-
export interface CreateParameterGroupResponse {
|
|
299
|
-
|
|
300
|
-
ParameterGroup?: ParameterGroup;
|
|
301
|
-
}
|
|
302
|
-
export declare namespace CreateParameterGroupResponse {
|
|
303
|
-
|
|
304
|
-
const filterSensitiveLog: (obj: CreateParameterGroupResponse) => any;
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
export interface ParameterGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
|
|
308
|
-
name: "ParameterGroupAlreadyExistsFault";
|
|
309
|
-
$fault: "client";
|
|
310
|
-
message?: string;
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
export interface ParameterGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
|
|
314
|
-
name: "ParameterGroupQuotaExceededFault";
|
|
315
|
-
$fault: "client";
|
|
316
|
-
message?: string;
|
|
317
|
-
}
|
|
318
|
-
export interface CreateSubnetGroupRequest {
|
|
319
|
-
|
|
320
|
-
SubnetGroupName: string | undefined;
|
|
321
|
-
|
|
322
|
-
Description?: string;
|
|
323
|
-
|
|
324
|
-
SubnetIds: string[] | undefined;
|
|
325
|
-
}
|
|
326
|
-
export declare namespace CreateSubnetGroupRequest {
|
|
327
|
-
|
|
328
|
-
const filterSensitiveLog: (obj: CreateSubnetGroupRequest) => any;
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
export interface Subnet {
|
|
332
|
-
|
|
333
|
-
SubnetIdentifier?: string;
|
|
334
|
-
|
|
335
|
-
SubnetAvailabilityZone?: string;
|
|
336
|
-
}
|
|
337
|
-
export declare namespace Subnet {
|
|
338
|
-
|
|
339
|
-
const filterSensitiveLog: (obj: Subnet) => any;
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
export interface SubnetGroup {
|
|
343
|
-
|
|
344
|
-
SubnetGroupName?: string;
|
|
345
|
-
|
|
346
|
-
Description?: string;
|
|
347
|
-
|
|
348
|
-
VpcId?: string;
|
|
349
|
-
|
|
350
|
-
Subnets?: Subnet[];
|
|
351
|
-
}
|
|
352
|
-
export declare namespace SubnetGroup {
|
|
353
|
-
|
|
354
|
-
const filterSensitiveLog: (obj: SubnetGroup) => any;
|
|
355
|
-
}
|
|
356
|
-
export interface CreateSubnetGroupResponse {
|
|
357
|
-
|
|
358
|
-
SubnetGroup?: SubnetGroup;
|
|
359
|
-
}
|
|
360
|
-
export declare namespace CreateSubnetGroupResponse {
|
|
361
|
-
|
|
362
|
-
const filterSensitiveLog: (obj: CreateSubnetGroupResponse) => any;
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
export interface InvalidSubnet extends __SmithyException, $MetadataBearer {
|
|
366
|
-
name: "InvalidSubnet";
|
|
367
|
-
$fault: "client";
|
|
368
|
-
message?: string;
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
export interface SubnetGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
|
|
372
|
-
name: "SubnetGroupAlreadyExistsFault";
|
|
373
|
-
$fault: "client";
|
|
374
|
-
message?: string;
|
|
375
|
-
}
|
|
376
|
-
|
|
377
|
-
export interface SubnetGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
|
|
378
|
-
name: "SubnetGroupQuotaExceededFault";
|
|
379
|
-
$fault: "client";
|
|
380
|
-
message?: string;
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
export interface SubnetQuotaExceededFault extends __SmithyException, $MetadataBearer {
|
|
384
|
-
name: "SubnetQuotaExceededFault";
|
|
385
|
-
$fault: "client";
|
|
386
|
-
message?: string;
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
export interface ClusterNotFoundFault extends __SmithyException, $MetadataBearer {
|
|
390
|
-
name: "ClusterNotFoundFault";
|
|
391
|
-
$fault: "client";
|
|
392
|
-
message?: string;
|
|
393
|
-
}
|
|
394
|
-
export interface DecreaseReplicationFactorRequest {
|
|
395
|
-
|
|
396
|
-
ClusterName: string | undefined;
|
|
397
|
-
|
|
398
|
-
NewReplicationFactor: number | undefined;
|
|
399
|
-
|
|
400
|
-
AvailabilityZones?: string[];
|
|
401
|
-
|
|
402
|
-
NodeIdsToRemove?: string[];
|
|
403
|
-
}
|
|
404
|
-
export declare namespace DecreaseReplicationFactorRequest {
|
|
405
|
-
|
|
406
|
-
const filterSensitiveLog: (obj: DecreaseReplicationFactorRequest) => any;
|
|
407
|
-
}
|
|
408
|
-
export interface DecreaseReplicationFactorResponse {
|
|
409
|
-
|
|
410
|
-
Cluster?: Cluster;
|
|
411
|
-
}
|
|
412
|
-
export declare namespace DecreaseReplicationFactorResponse {
|
|
413
|
-
|
|
414
|
-
const filterSensitiveLog: (obj: DecreaseReplicationFactorResponse) => any;
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
export interface NodeNotFoundFault extends __SmithyException, $MetadataBearer {
|
|
418
|
-
name: "NodeNotFoundFault";
|
|
419
|
-
$fault: "client";
|
|
420
|
-
message?: string;
|
|
421
|
-
}
|
|
422
|
-
export interface DeleteClusterRequest {
|
|
423
|
-
|
|
424
|
-
ClusterName: string | undefined;
|
|
425
|
-
}
|
|
426
|
-
export declare namespace DeleteClusterRequest {
|
|
427
|
-
|
|
428
|
-
const filterSensitiveLog: (obj: DeleteClusterRequest) => any;
|
|
429
|
-
}
|
|
430
|
-
export interface DeleteClusterResponse {
|
|
431
|
-
|
|
432
|
-
Cluster?: Cluster;
|
|
433
|
-
}
|
|
434
|
-
export declare namespace DeleteClusterResponse {
|
|
435
|
-
|
|
436
|
-
const filterSensitiveLog: (obj: DeleteClusterResponse) => any;
|
|
437
|
-
}
|
|
438
|
-
export interface DeleteParameterGroupRequest {
|
|
439
|
-
|
|
440
|
-
ParameterGroupName: string | undefined;
|
|
441
|
-
}
|
|
442
|
-
export declare namespace DeleteParameterGroupRequest {
|
|
443
|
-
|
|
444
|
-
const filterSensitiveLog: (obj: DeleteParameterGroupRequest) => any;
|
|
445
|
-
}
|
|
446
|
-
export interface DeleteParameterGroupResponse {
|
|
447
|
-
|
|
448
|
-
DeletionMessage?: string;
|
|
449
|
-
}
|
|
450
|
-
export declare namespace DeleteParameterGroupResponse {
|
|
451
|
-
|
|
452
|
-
const filterSensitiveLog: (obj: DeleteParameterGroupResponse) => any;
|
|
453
|
-
}
|
|
454
|
-
export interface DeleteSubnetGroupRequest {
|
|
455
|
-
|
|
456
|
-
SubnetGroupName: string | undefined;
|
|
457
|
-
}
|
|
458
|
-
export declare namespace DeleteSubnetGroupRequest {
|
|
459
|
-
|
|
460
|
-
const filterSensitiveLog: (obj: DeleteSubnetGroupRequest) => any;
|
|
461
|
-
}
|
|
462
|
-
export interface DeleteSubnetGroupResponse {
|
|
463
|
-
|
|
464
|
-
DeletionMessage?: string;
|
|
465
|
-
}
|
|
466
|
-
export declare namespace DeleteSubnetGroupResponse {
|
|
467
|
-
|
|
468
|
-
const filterSensitiveLog: (obj: DeleteSubnetGroupResponse) => any;
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
export interface SubnetGroupInUseFault extends __SmithyException, $MetadataBearer {
|
|
472
|
-
name: "SubnetGroupInUseFault";
|
|
473
|
-
$fault: "client";
|
|
474
|
-
message?: string;
|
|
475
|
-
}
|
|
476
|
-
export interface DescribeClustersRequest {
|
|
477
|
-
|
|
478
|
-
ClusterNames?: string[];
|
|
479
|
-
|
|
480
|
-
MaxResults?: number;
|
|
481
|
-
|
|
482
|
-
NextToken?: string;
|
|
483
|
-
}
|
|
484
|
-
export declare namespace DescribeClustersRequest {
|
|
485
|
-
|
|
486
|
-
const filterSensitiveLog: (obj: DescribeClustersRequest) => any;
|
|
487
|
-
}
|
|
488
|
-
export interface DescribeClustersResponse {
|
|
489
|
-
|
|
490
|
-
NextToken?: string;
|
|
491
|
-
|
|
492
|
-
Clusters?: Cluster[];
|
|
493
|
-
}
|
|
494
|
-
export declare namespace DescribeClustersResponse {
|
|
495
|
-
|
|
496
|
-
const filterSensitiveLog: (obj: DescribeClustersResponse) => any;
|
|
497
|
-
}
|
|
498
|
-
export interface DescribeDefaultParametersRequest {
|
|
499
|
-
|
|
500
|
-
MaxResults?: number;
|
|
501
|
-
|
|
502
|
-
NextToken?: string;
|
|
503
|
-
}
|
|
504
|
-
export declare namespace DescribeDefaultParametersRequest {
|
|
505
|
-
|
|
506
|
-
const filterSensitiveLog: (obj: DescribeDefaultParametersRequest) => any;
|
|
507
|
-
}
|
|
508
|
-
export declare type ChangeType = "IMMEDIATE" | "REQUIRES_REBOOT";
|
|
509
|
-
export declare type IsModifiable = "CONDITIONAL" | "FALSE" | "TRUE";
|
|
510
|
-
|
|
511
|
-
export interface NodeTypeSpecificValue {
|
|
512
|
-
|
|
513
|
-
NodeType?: string;
|
|
514
|
-
|
|
515
|
-
Value?: string;
|
|
516
|
-
}
|
|
517
|
-
export declare namespace NodeTypeSpecificValue {
|
|
518
|
-
|
|
519
|
-
const filterSensitiveLog: (obj: NodeTypeSpecificValue) => any;
|
|
520
|
-
}
|
|
521
|
-
export declare type ParameterType = "DEFAULT" | "NODE_TYPE_SPECIFIC";
|
|
522
|
-
|
|
523
|
-
export interface Parameter {
|
|
524
|
-
|
|
525
|
-
ParameterName?: string;
|
|
526
|
-
|
|
527
|
-
ParameterType?: ParameterType | string;
|
|
528
|
-
|
|
529
|
-
ParameterValue?: string;
|
|
530
|
-
|
|
531
|
-
NodeTypeSpecificValues?: NodeTypeSpecificValue[];
|
|
532
|
-
|
|
533
|
-
Description?: string;
|
|
534
|
-
|
|
535
|
-
Source?: string;
|
|
536
|
-
|
|
537
|
-
DataType?: string;
|
|
538
|
-
|
|
539
|
-
AllowedValues?: string;
|
|
540
|
-
|
|
541
|
-
IsModifiable?: IsModifiable | string;
|
|
542
|
-
|
|
543
|
-
ChangeType?: ChangeType | string;
|
|
544
|
-
}
|
|
545
|
-
export declare namespace Parameter {
|
|
546
|
-
|
|
547
|
-
const filterSensitiveLog: (obj: Parameter) => any;
|
|
548
|
-
}
|
|
549
|
-
export interface DescribeDefaultParametersResponse {
|
|
550
|
-
|
|
551
|
-
NextToken?: string;
|
|
552
|
-
|
|
553
|
-
Parameters?: Parameter[];
|
|
554
|
-
}
|
|
555
|
-
export declare namespace DescribeDefaultParametersResponse {
|
|
556
|
-
|
|
557
|
-
const filterSensitiveLog: (obj: DescribeDefaultParametersResponse) => any;
|
|
558
|
-
}
|
|
559
|
-
export declare type SourceType = "CLUSTER" | "PARAMETER_GROUP" | "SUBNET_GROUP";
|
|
560
|
-
export interface DescribeEventsRequest {
|
|
561
|
-
|
|
562
|
-
SourceName?: string;
|
|
563
|
-
|
|
564
|
-
SourceType?: SourceType | string;
|
|
565
|
-
|
|
566
|
-
StartTime?: Date;
|
|
567
|
-
|
|
568
|
-
EndTime?: Date;
|
|
569
|
-
|
|
570
|
-
Duration?: number;
|
|
571
|
-
|
|
572
|
-
MaxResults?: number;
|
|
573
|
-
|
|
574
|
-
NextToken?: string;
|
|
575
|
-
}
|
|
576
|
-
export declare namespace DescribeEventsRequest {
|
|
577
|
-
|
|
578
|
-
const filterSensitiveLog: (obj: DescribeEventsRequest) => any;
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
export interface Event {
|
|
582
|
-
|
|
583
|
-
SourceName?: string;
|
|
584
|
-
|
|
585
|
-
SourceType?: SourceType | string;
|
|
586
|
-
|
|
587
|
-
Message?: string;
|
|
588
|
-
|
|
589
|
-
Date?: Date;
|
|
590
|
-
}
|
|
591
|
-
export declare namespace Event {
|
|
592
|
-
|
|
593
|
-
const filterSensitiveLog: (obj: Event) => any;
|
|
594
|
-
}
|
|
595
|
-
export interface DescribeEventsResponse {
|
|
596
|
-
|
|
597
|
-
NextToken?: string;
|
|
598
|
-
|
|
599
|
-
Events?: Event[];
|
|
600
|
-
}
|
|
601
|
-
export declare namespace DescribeEventsResponse {
|
|
602
|
-
|
|
603
|
-
const filterSensitiveLog: (obj: DescribeEventsResponse) => any;
|
|
604
|
-
}
|
|
605
|
-
export interface DescribeParameterGroupsRequest {
|
|
606
|
-
|
|
607
|
-
ParameterGroupNames?: string[];
|
|
608
|
-
|
|
609
|
-
MaxResults?: number;
|
|
610
|
-
|
|
611
|
-
NextToken?: string;
|
|
612
|
-
}
|
|
613
|
-
export declare namespace DescribeParameterGroupsRequest {
|
|
614
|
-
|
|
615
|
-
const filterSensitiveLog: (obj: DescribeParameterGroupsRequest) => any;
|
|
616
|
-
}
|
|
617
|
-
export interface DescribeParameterGroupsResponse {
|
|
618
|
-
|
|
619
|
-
NextToken?: string;
|
|
620
|
-
|
|
621
|
-
ParameterGroups?: ParameterGroup[];
|
|
622
|
-
}
|
|
623
|
-
export declare namespace DescribeParameterGroupsResponse {
|
|
624
|
-
|
|
625
|
-
const filterSensitiveLog: (obj: DescribeParameterGroupsResponse) => any;
|
|
626
|
-
}
|
|
627
|
-
export interface DescribeParametersRequest {
|
|
628
|
-
|
|
629
|
-
ParameterGroupName: string | undefined;
|
|
630
|
-
|
|
631
|
-
Source?: string;
|
|
632
|
-
|
|
633
|
-
MaxResults?: number;
|
|
634
|
-
|
|
635
|
-
NextToken?: string;
|
|
636
|
-
}
|
|
637
|
-
export declare namespace DescribeParametersRequest {
|
|
638
|
-
|
|
639
|
-
const filterSensitiveLog: (obj: DescribeParametersRequest) => any;
|
|
640
|
-
}
|
|
641
|
-
export interface DescribeParametersResponse {
|
|
642
|
-
|
|
643
|
-
NextToken?: string;
|
|
644
|
-
|
|
645
|
-
Parameters?: Parameter[];
|
|
646
|
-
}
|
|
647
|
-
export declare namespace DescribeParametersResponse {
|
|
648
|
-
|
|
649
|
-
const filterSensitiveLog: (obj: DescribeParametersResponse) => any;
|
|
650
|
-
}
|
|
651
|
-
export interface DescribeSubnetGroupsRequest {
|
|
652
|
-
|
|
653
|
-
SubnetGroupNames?: string[];
|
|
654
|
-
|
|
655
|
-
MaxResults?: number;
|
|
656
|
-
|
|
657
|
-
NextToken?: string;
|
|
658
|
-
}
|
|
659
|
-
export declare namespace DescribeSubnetGroupsRequest {
|
|
660
|
-
|
|
661
|
-
const filterSensitiveLog: (obj: DescribeSubnetGroupsRequest) => any;
|
|
662
|
-
}
|
|
663
|
-
export interface DescribeSubnetGroupsResponse {
|
|
664
|
-
|
|
665
|
-
NextToken?: string;
|
|
666
|
-
|
|
667
|
-
SubnetGroups?: SubnetGroup[];
|
|
668
|
-
}
|
|
669
|
-
export declare namespace DescribeSubnetGroupsResponse {
|
|
670
|
-
|
|
671
|
-
const filterSensitiveLog: (obj: DescribeSubnetGroupsResponse) => any;
|
|
672
|
-
}
|
|
673
|
-
export interface IncreaseReplicationFactorRequest {
|
|
674
|
-
|
|
675
|
-
ClusterName: string | undefined;
|
|
676
|
-
|
|
677
|
-
NewReplicationFactor: number | undefined;
|
|
678
|
-
|
|
679
|
-
AvailabilityZones?: string[];
|
|
680
|
-
}
|
|
681
|
-
export declare namespace IncreaseReplicationFactorRequest {
|
|
682
|
-
|
|
683
|
-
const filterSensitiveLog: (obj: IncreaseReplicationFactorRequest) => any;
|
|
684
|
-
}
|
|
685
|
-
export interface IncreaseReplicationFactorResponse {
|
|
686
|
-
|
|
687
|
-
Cluster?: Cluster;
|
|
688
|
-
}
|
|
689
|
-
export declare namespace IncreaseReplicationFactorResponse {
|
|
690
|
-
|
|
691
|
-
const filterSensitiveLog: (obj: IncreaseReplicationFactorResponse) => any;
|
|
692
|
-
}
|
|
693
|
-
|
|
694
|
-
export interface InvalidARNFault extends __SmithyException, $MetadataBearer {
|
|
695
|
-
name: "InvalidARNFault";
|
|
696
|
-
$fault: "client";
|
|
697
|
-
message?: string;
|
|
698
|
-
}
|
|
699
|
-
export interface ListTagsRequest {
|
|
700
|
-
|
|
701
|
-
ResourceName: string | undefined;
|
|
702
|
-
|
|
703
|
-
NextToken?: string;
|
|
704
|
-
}
|
|
705
|
-
export declare namespace ListTagsRequest {
|
|
706
|
-
|
|
707
|
-
const filterSensitiveLog: (obj: ListTagsRequest) => any;
|
|
708
|
-
}
|
|
709
|
-
export interface ListTagsResponse {
|
|
710
|
-
|
|
711
|
-
Tags?: Tag[];
|
|
712
|
-
|
|
713
|
-
NextToken?: string;
|
|
714
|
-
}
|
|
715
|
-
export declare namespace ListTagsResponse {
|
|
716
|
-
|
|
717
|
-
const filterSensitiveLog: (obj: ListTagsResponse) => any;
|
|
718
|
-
}
|
|
719
|
-
export interface RebootNodeRequest {
|
|
720
|
-
|
|
721
|
-
ClusterName: string | undefined;
|
|
722
|
-
|
|
723
|
-
NodeId: string | undefined;
|
|
724
|
-
}
|
|
725
|
-
export declare namespace RebootNodeRequest {
|
|
726
|
-
|
|
727
|
-
const filterSensitiveLog: (obj: RebootNodeRequest) => any;
|
|
728
|
-
}
|
|
729
|
-
export interface RebootNodeResponse {
|
|
730
|
-
|
|
731
|
-
Cluster?: Cluster;
|
|
732
|
-
}
|
|
733
|
-
export declare namespace RebootNodeResponse {
|
|
734
|
-
|
|
735
|
-
const filterSensitiveLog: (obj: RebootNodeResponse) => any;
|
|
736
|
-
}
|
|
737
|
-
export interface TagResourceRequest {
|
|
738
|
-
|
|
739
|
-
ResourceName: string | undefined;
|
|
740
|
-
|
|
741
|
-
Tags: Tag[] | undefined;
|
|
742
|
-
}
|
|
743
|
-
export declare namespace TagResourceRequest {
|
|
744
|
-
|
|
745
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
746
|
-
}
|
|
747
|
-
export interface TagResourceResponse {
|
|
748
|
-
|
|
749
|
-
Tags?: Tag[];
|
|
750
|
-
}
|
|
751
|
-
export declare namespace TagResourceResponse {
|
|
752
|
-
|
|
753
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
754
|
-
}
|
|
755
|
-
|
|
756
|
-
export interface TagNotFoundFault extends __SmithyException, $MetadataBearer {
|
|
757
|
-
name: "TagNotFoundFault";
|
|
758
|
-
$fault: "client";
|
|
759
|
-
message?: string;
|
|
760
|
-
}
|
|
761
|
-
export interface UntagResourceRequest {
|
|
762
|
-
|
|
763
|
-
ResourceName: string | undefined;
|
|
764
|
-
|
|
765
|
-
TagKeys: string[] | undefined;
|
|
766
|
-
}
|
|
767
|
-
export declare namespace UntagResourceRequest {
|
|
768
|
-
|
|
769
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
770
|
-
}
|
|
771
|
-
export interface UntagResourceResponse {
|
|
772
|
-
|
|
773
|
-
Tags?: Tag[];
|
|
774
|
-
}
|
|
775
|
-
export declare namespace UntagResourceResponse {
|
|
776
|
-
|
|
777
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
778
|
-
}
|
|
779
|
-
export interface UpdateClusterRequest {
|
|
780
|
-
|
|
781
|
-
ClusterName: string | undefined;
|
|
782
|
-
|
|
783
|
-
Description?: string;
|
|
784
|
-
|
|
785
|
-
PreferredMaintenanceWindow?: string;
|
|
786
|
-
|
|
787
|
-
NotificationTopicArn?: string;
|
|
788
|
-
|
|
789
|
-
NotificationTopicStatus?: string;
|
|
790
|
-
|
|
791
|
-
ParameterGroupName?: string;
|
|
792
|
-
|
|
793
|
-
SecurityGroupIds?: string[];
|
|
794
|
-
}
|
|
795
|
-
export declare namespace UpdateClusterRequest {
|
|
796
|
-
|
|
797
|
-
const filterSensitiveLog: (obj: UpdateClusterRequest) => any;
|
|
798
|
-
}
|
|
799
|
-
export interface UpdateClusterResponse {
|
|
800
|
-
|
|
801
|
-
Cluster?: Cluster;
|
|
802
|
-
}
|
|
803
|
-
export declare namespace UpdateClusterResponse {
|
|
804
|
-
|
|
805
|
-
const filterSensitiveLog: (obj: UpdateClusterResponse) => any;
|
|
806
|
-
}
|
|
807
|
-
|
|
808
|
-
export interface ParameterNameValue {
|
|
809
|
-
|
|
810
|
-
ParameterName?: string;
|
|
811
|
-
|
|
812
|
-
ParameterValue?: string;
|
|
813
|
-
}
|
|
814
|
-
export declare namespace ParameterNameValue {
|
|
815
|
-
|
|
816
|
-
const filterSensitiveLog: (obj: ParameterNameValue) => any;
|
|
817
|
-
}
|
|
818
|
-
export interface UpdateParameterGroupRequest {
|
|
819
|
-
|
|
820
|
-
ParameterGroupName: string | undefined;
|
|
821
|
-
|
|
822
|
-
ParameterNameValues: ParameterNameValue[] | undefined;
|
|
823
|
-
}
|
|
824
|
-
export declare namespace UpdateParameterGroupRequest {
|
|
825
|
-
|
|
826
|
-
const filterSensitiveLog: (obj: UpdateParameterGroupRequest) => any;
|
|
827
|
-
}
|
|
828
|
-
export interface UpdateParameterGroupResponse {
|
|
829
|
-
|
|
830
|
-
ParameterGroup?: ParameterGroup;
|
|
831
|
-
}
|
|
832
|
-
export declare namespace UpdateParameterGroupResponse {
|
|
833
|
-
|
|
834
|
-
const filterSensitiveLog: (obj: UpdateParameterGroupResponse) => any;
|
|
835
|
-
}
|
|
836
|
-
|
|
837
|
-
export interface SubnetInUse extends __SmithyException, $MetadataBearer {
|
|
838
|
-
name: "SubnetInUse";
|
|
839
|
-
$fault: "client";
|
|
840
|
-
message?: string;
|
|
841
|
-
}
|
|
842
|
-
export interface UpdateSubnetGroupRequest {
|
|
843
|
-
|
|
844
|
-
SubnetGroupName: string | undefined;
|
|
845
|
-
|
|
846
|
-
Description?: string;
|
|
847
|
-
|
|
848
|
-
SubnetIds?: string[];
|
|
849
|
-
}
|
|
850
|
-
export declare namespace UpdateSubnetGroupRequest {
|
|
851
|
-
|
|
852
|
-
const filterSensitiveLog: (obj: UpdateSubnetGroupRequest) => any;
|
|
853
|
-
}
|
|
854
|
-
export interface UpdateSubnetGroupResponse {
|
|
855
|
-
|
|
856
|
-
SubnetGroup?: SubnetGroup;
|
|
857
|
-
}
|
|
858
|
-
export declare namespace UpdateSubnetGroupResponse {
|
|
859
|
-
|
|
860
|
-
const filterSensitiveLog: (obj: UpdateSubnetGroupResponse) => any;
|
|
861
|
-
}
|