@aws-sdk/client-redshift-serverless 3.170.0 → 3.178.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 +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/RedshiftServerless.d.ts +0 -37
- package/dist-types/ts3.4/RedshiftServerlessClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/ConvertRecoveryPointToSnapshotCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateEndpointAccessCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateNamespaceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateSnapshotCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateUsageLimitCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateWorkgroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteEndpointAccessCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteNamespaceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteSnapshotCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteUsageLimitCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteWorkgroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetCredentialsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetEndpointAccessCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetNamespaceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetRecoveryPointCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetSnapshotCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetUsageLimitCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetWorkgroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListEndpointAccessCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListNamespacesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListRecoveryPointsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListSnapshotsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListUsageLimitsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListWorkgroupsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RestoreFromRecoveryPointCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RestoreFromSnapshotCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateEndpointAccessCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateNamespaceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateSnapshotCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateUsageLimitCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateWorkgroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/RedshiftServerlessServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -281
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,33 +1,25 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { RedshiftServerlessServiceException as __BaseException } from "./RedshiftServerlessServiceException";
|
|
3
|
-
|
|
4
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
4
|
readonly name: "AccessDeniedException";
|
|
6
5
|
readonly $fault: "client";
|
|
7
6
|
code?: string;
|
|
8
|
-
|
|
9
7
|
constructor(
|
|
10
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
11
9
|
);
|
|
12
10
|
}
|
|
13
|
-
|
|
14
11
|
export interface ConfigParameter {
|
|
15
12
|
parameterKey?: string;
|
|
16
|
-
|
|
17
13
|
parameterValue?: string;
|
|
18
14
|
}
|
|
19
|
-
|
|
20
15
|
export declare class ConflictException extends __BaseException {
|
|
21
16
|
readonly name: "ConflictException";
|
|
22
17
|
readonly $fault: "client";
|
|
23
|
-
|
|
24
18
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
25
19
|
}
|
|
26
20
|
export interface ConvertRecoveryPointToSnapshotRequest {
|
|
27
21
|
recoveryPointId: string | undefined;
|
|
28
|
-
|
|
29
22
|
snapshotName: string | undefined;
|
|
30
|
-
|
|
31
23
|
retentionPeriod?: number;
|
|
32
24
|
}
|
|
33
25
|
export declare enum SnapshotStatus {
|
|
@@ -38,143 +30,92 @@ export declare enum SnapshotStatus {
|
|
|
38
30
|
DELETED = "DELETED",
|
|
39
31
|
FAILED = "FAILED",
|
|
40
32
|
}
|
|
41
|
-
|
|
42
33
|
export interface Snapshot {
|
|
43
34
|
namespaceName?: string;
|
|
44
|
-
|
|
45
35
|
namespaceArn?: string;
|
|
46
|
-
|
|
47
36
|
snapshotName?: string;
|
|
48
|
-
|
|
49
37
|
snapshotCreateTime?: Date;
|
|
50
|
-
|
|
51
38
|
adminUsername?: string;
|
|
52
|
-
|
|
53
39
|
status?: SnapshotStatus | string;
|
|
54
|
-
|
|
55
40
|
kmsKeyId?: string;
|
|
56
|
-
|
|
57
41
|
ownerAccount?: string;
|
|
58
|
-
|
|
59
42
|
totalBackupSizeInMegaBytes?: number;
|
|
60
|
-
|
|
61
43
|
actualIncrementalBackupSizeInMegaBytes?: number;
|
|
62
|
-
|
|
63
44
|
backupProgressInMegaBytes?: number;
|
|
64
|
-
|
|
65
45
|
currentBackupRateInMegaBytesPerSecond?: number;
|
|
66
|
-
|
|
67
46
|
estimatedSecondsToCompletion?: number;
|
|
68
|
-
|
|
69
47
|
elapsedTimeInSeconds?: number;
|
|
70
|
-
|
|
71
48
|
snapshotRetentionPeriod?: number;
|
|
72
|
-
|
|
73
49
|
snapshotRemainingDays?: number;
|
|
74
|
-
|
|
75
50
|
snapshotRetentionStartTime?: Date;
|
|
76
|
-
|
|
77
51
|
snapshotArn?: string;
|
|
78
|
-
|
|
79
52
|
accountsWithRestoreAccess?: string[];
|
|
80
|
-
|
|
81
53
|
accountsWithProvisionedRestoreAccess?: string[];
|
|
82
54
|
}
|
|
83
55
|
export interface ConvertRecoveryPointToSnapshotResponse {
|
|
84
56
|
snapshot?: Snapshot;
|
|
85
57
|
}
|
|
86
|
-
|
|
87
58
|
export declare class InternalServerException extends __BaseException {
|
|
88
59
|
readonly name: "InternalServerException";
|
|
89
60
|
readonly $fault: "server";
|
|
90
61
|
$retryable: {};
|
|
91
|
-
|
|
92
62
|
constructor(
|
|
93
63
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
94
64
|
);
|
|
95
65
|
}
|
|
96
|
-
|
|
97
66
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
98
67
|
readonly name: "ResourceNotFoundException";
|
|
99
68
|
readonly $fault: "client";
|
|
100
|
-
|
|
101
69
|
resourceName?: string;
|
|
102
|
-
|
|
103
70
|
constructor(
|
|
104
71
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
105
72
|
);
|
|
106
73
|
}
|
|
107
|
-
|
|
108
74
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
109
75
|
readonly name: "ServiceQuotaExceededException";
|
|
110
76
|
readonly $fault: "client";
|
|
111
|
-
|
|
112
77
|
constructor(
|
|
113
78
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
114
79
|
);
|
|
115
80
|
}
|
|
116
|
-
|
|
117
81
|
export declare class ValidationException extends __BaseException {
|
|
118
82
|
readonly name: "ValidationException";
|
|
119
83
|
readonly $fault: "client";
|
|
120
|
-
|
|
121
84
|
constructor(
|
|
122
85
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
123
86
|
);
|
|
124
87
|
}
|
|
125
88
|
export interface CreateEndpointAccessRequest {
|
|
126
89
|
endpointName: string | undefined;
|
|
127
|
-
|
|
128
90
|
subnetIds: string[] | undefined;
|
|
129
|
-
|
|
130
91
|
workgroupName: string | undefined;
|
|
131
|
-
|
|
132
92
|
vpcSecurityGroupIds?: string[];
|
|
133
93
|
}
|
|
134
|
-
|
|
135
94
|
export interface NetworkInterface {
|
|
136
95
|
networkInterfaceId?: string;
|
|
137
|
-
|
|
138
96
|
subnetId?: string;
|
|
139
|
-
|
|
140
97
|
privateIpAddress?: string;
|
|
141
|
-
|
|
142
98
|
availabilityZone?: string;
|
|
143
99
|
}
|
|
144
|
-
|
|
145
100
|
export interface VpcEndpoint {
|
|
146
101
|
vpcEndpointId?: string;
|
|
147
|
-
|
|
148
102
|
vpcId?: string;
|
|
149
|
-
|
|
150
103
|
networkInterfaces?: NetworkInterface[];
|
|
151
104
|
}
|
|
152
|
-
|
|
153
105
|
export interface VpcSecurityGroupMembership {
|
|
154
106
|
vpcSecurityGroupId?: string;
|
|
155
|
-
|
|
156
107
|
status?: string;
|
|
157
108
|
}
|
|
158
|
-
|
|
159
109
|
export interface EndpointAccess {
|
|
160
110
|
endpointName?: string;
|
|
161
|
-
|
|
162
111
|
endpointStatus?: string;
|
|
163
|
-
|
|
164
112
|
workgroupName?: string;
|
|
165
|
-
|
|
166
113
|
endpointCreateTime?: Date;
|
|
167
|
-
|
|
168
114
|
port?: number;
|
|
169
|
-
|
|
170
115
|
address?: string;
|
|
171
|
-
|
|
172
116
|
subnetIds?: string[];
|
|
173
|
-
|
|
174
117
|
vpcSecurityGroups?: VpcSecurityGroupMembership[];
|
|
175
|
-
|
|
176
118
|
vpcEndpoint?: VpcEndpoint;
|
|
177
|
-
|
|
178
119
|
endpointArn?: string;
|
|
179
120
|
}
|
|
180
121
|
export interface CreateEndpointAccessResponse {
|
|
@@ -185,29 +126,19 @@ export declare enum LogExport {
|
|
|
185
126
|
USER_ACTIVITY_LOG = "useractivitylog",
|
|
186
127
|
USER_LOG = "userlog",
|
|
187
128
|
}
|
|
188
|
-
|
|
189
129
|
export interface Tag {
|
|
190
130
|
key: string | undefined;
|
|
191
|
-
|
|
192
131
|
value: string | undefined;
|
|
193
132
|
}
|
|
194
133
|
export interface CreateNamespaceRequest {
|
|
195
134
|
namespaceName: string | undefined;
|
|
196
|
-
|
|
197
135
|
adminUsername?: string;
|
|
198
|
-
|
|
199
136
|
adminUserPassword?: string;
|
|
200
|
-
|
|
201
137
|
dbName?: string;
|
|
202
|
-
|
|
203
138
|
kmsKeyId?: string;
|
|
204
|
-
|
|
205
139
|
defaultIamRoleArn?: string;
|
|
206
|
-
|
|
207
140
|
iamRoles?: string[];
|
|
208
|
-
|
|
209
141
|
logExports?: (LogExport | string)[];
|
|
210
|
-
|
|
211
142
|
tags?: Tag[];
|
|
212
143
|
}
|
|
213
144
|
export declare enum NamespaceStatus {
|
|
@@ -215,49 +146,33 @@ export declare enum NamespaceStatus {
|
|
|
215
146
|
DELETING = "DELETING",
|
|
216
147
|
MODIFYING = "MODIFYING",
|
|
217
148
|
}
|
|
218
|
-
|
|
219
149
|
export interface Namespace {
|
|
220
150
|
namespaceArn?: string;
|
|
221
|
-
|
|
222
151
|
namespaceId?: string;
|
|
223
|
-
|
|
224
152
|
namespaceName?: string;
|
|
225
|
-
|
|
226
153
|
adminUsername?: string;
|
|
227
|
-
|
|
228
154
|
dbName?: string;
|
|
229
|
-
|
|
230
155
|
kmsKeyId?: string;
|
|
231
|
-
|
|
232
156
|
defaultIamRoleArn?: string;
|
|
233
|
-
|
|
234
157
|
iamRoles?: string[];
|
|
235
|
-
|
|
236
158
|
logExports?: (LogExport | string)[];
|
|
237
|
-
|
|
238
159
|
status?: NamespaceStatus | string;
|
|
239
|
-
|
|
240
160
|
creationDate?: Date;
|
|
241
161
|
}
|
|
242
162
|
export interface CreateNamespaceResponse {
|
|
243
163
|
namespace?: Namespace;
|
|
244
164
|
}
|
|
245
|
-
|
|
246
165
|
export declare class TooManyTagsException extends __BaseException {
|
|
247
166
|
readonly name: "TooManyTagsException";
|
|
248
167
|
readonly $fault: "client";
|
|
249
|
-
|
|
250
168
|
resourceName?: string;
|
|
251
|
-
|
|
252
169
|
constructor(
|
|
253
170
|
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
254
171
|
);
|
|
255
172
|
}
|
|
256
173
|
export interface CreateSnapshotRequest {
|
|
257
174
|
namespaceName: string | undefined;
|
|
258
|
-
|
|
259
175
|
snapshotName: string | undefined;
|
|
260
|
-
|
|
261
176
|
retentionPeriod?: number;
|
|
262
177
|
}
|
|
263
178
|
export interface CreateSnapshotResponse {
|
|
@@ -279,29 +194,18 @@ export declare enum UsageLimitUsageType {
|
|
|
279
194
|
}
|
|
280
195
|
export interface CreateUsageLimitRequest {
|
|
281
196
|
resourceArn: string | undefined;
|
|
282
|
-
|
|
283
197
|
usageType: UsageLimitUsageType | string | undefined;
|
|
284
|
-
|
|
285
198
|
amount: number | undefined;
|
|
286
|
-
|
|
287
199
|
period?: UsageLimitPeriod | string;
|
|
288
|
-
|
|
289
200
|
breachAction?: UsageLimitBreachAction | string;
|
|
290
201
|
}
|
|
291
|
-
|
|
292
202
|
export interface UsageLimit {
|
|
293
203
|
usageLimitId?: string;
|
|
294
|
-
|
|
295
204
|
usageLimitArn?: string;
|
|
296
|
-
|
|
297
205
|
resourceArn?: string;
|
|
298
|
-
|
|
299
206
|
usageType?: UsageLimitUsageType | string;
|
|
300
|
-
|
|
301
207
|
amount?: number;
|
|
302
|
-
|
|
303
208
|
period?: UsageLimitPeriod | string;
|
|
304
|
-
|
|
305
209
|
breachAction?: UsageLimitBreachAction | string;
|
|
306
210
|
}
|
|
307
211
|
export interface CreateUsageLimitResponse {
|
|
@@ -309,29 +213,18 @@ export interface CreateUsageLimitResponse {
|
|
|
309
213
|
}
|
|
310
214
|
export interface CreateWorkgroupRequest {
|
|
311
215
|
workgroupName: string | undefined;
|
|
312
|
-
|
|
313
216
|
namespaceName: string | undefined;
|
|
314
|
-
|
|
315
217
|
baseCapacity?: number;
|
|
316
|
-
|
|
317
218
|
enhancedVpcRouting?: boolean;
|
|
318
|
-
|
|
319
219
|
configParameters?: ConfigParameter[];
|
|
320
|
-
|
|
321
220
|
securityGroupIds?: string[];
|
|
322
|
-
|
|
323
221
|
subnetIds?: string[];
|
|
324
|
-
|
|
325
222
|
publiclyAccessible?: boolean;
|
|
326
|
-
|
|
327
223
|
tags?: Tag[];
|
|
328
224
|
}
|
|
329
|
-
|
|
330
225
|
export interface Endpoint {
|
|
331
226
|
address?: string;
|
|
332
|
-
|
|
333
227
|
port?: number;
|
|
334
|
-
|
|
335
228
|
vpcEndpoints?: VpcEndpoint[];
|
|
336
229
|
}
|
|
337
230
|
export declare enum WorkgroupStatus {
|
|
@@ -340,43 +233,28 @@ export declare enum WorkgroupStatus {
|
|
|
340
233
|
DELETING = "DELETING",
|
|
341
234
|
MODIFYING = "MODIFYING",
|
|
342
235
|
}
|
|
343
|
-
|
|
344
236
|
export interface Workgroup {
|
|
345
237
|
workgroupId?: string;
|
|
346
|
-
|
|
347
238
|
workgroupArn?: string;
|
|
348
|
-
|
|
349
239
|
workgroupName?: string;
|
|
350
|
-
|
|
351
240
|
namespaceName?: string;
|
|
352
|
-
|
|
353
241
|
baseCapacity?: number;
|
|
354
|
-
|
|
355
242
|
enhancedVpcRouting?: boolean;
|
|
356
|
-
|
|
357
243
|
configParameters?: ConfigParameter[];
|
|
358
|
-
|
|
359
244
|
securityGroupIds?: string[];
|
|
360
|
-
|
|
361
245
|
subnetIds?: string[];
|
|
362
|
-
|
|
363
246
|
status?: WorkgroupStatus | string;
|
|
364
|
-
|
|
365
247
|
endpoint?: Endpoint;
|
|
366
|
-
|
|
367
248
|
publiclyAccessible?: boolean;
|
|
368
|
-
|
|
369
249
|
creationDate?: Date;
|
|
370
250
|
}
|
|
371
251
|
export interface CreateWorkgroupResponse {
|
|
372
252
|
workgroup?: Workgroup;
|
|
373
253
|
}
|
|
374
|
-
|
|
375
254
|
export declare class InsufficientCapacityException extends __BaseException {
|
|
376
255
|
readonly name: "InsufficientCapacityException";
|
|
377
256
|
readonly $fault: "client";
|
|
378
257
|
$retryable: {};
|
|
379
|
-
|
|
380
258
|
constructor(
|
|
381
259
|
opts: __ExceptionOptionType<InsufficientCapacityException, __BaseException>
|
|
382
260
|
);
|
|
@@ -395,21 +273,16 @@ export interface GetEndpointAccessResponse {
|
|
|
395
273
|
}
|
|
396
274
|
export interface ListEndpointAccessRequest {
|
|
397
275
|
nextToken?: string;
|
|
398
|
-
|
|
399
276
|
maxResults?: number;
|
|
400
|
-
|
|
401
277
|
workgroupName?: string;
|
|
402
|
-
|
|
403
278
|
vpcId?: string;
|
|
404
279
|
}
|
|
405
280
|
export interface ListEndpointAccessResponse {
|
|
406
281
|
nextToken?: string;
|
|
407
|
-
|
|
408
282
|
endpoints: EndpointAccess[] | undefined;
|
|
409
283
|
}
|
|
410
284
|
export interface UpdateEndpointAccessRequest {
|
|
411
285
|
endpointName: string | undefined;
|
|
412
|
-
|
|
413
286
|
vpcSecurityGroupIds?: string[];
|
|
414
287
|
}
|
|
415
288
|
export interface UpdateEndpointAccessResponse {
|
|
@@ -417,9 +290,7 @@ export interface UpdateEndpointAccessResponse {
|
|
|
417
290
|
}
|
|
418
291
|
export interface DeleteNamespaceRequest {
|
|
419
292
|
namespaceName: string | undefined;
|
|
420
|
-
|
|
421
293
|
finalSnapshotName?: string;
|
|
422
|
-
|
|
423
294
|
finalSnapshotRetentionPeriod?: number;
|
|
424
295
|
}
|
|
425
296
|
export interface DeleteNamespaceResponse {
|
|
@@ -449,18 +320,13 @@ export interface DeleteWorkgroupResponse {
|
|
|
449
320
|
}
|
|
450
321
|
export interface GetCredentialsRequest {
|
|
451
322
|
workgroupName: string | undefined;
|
|
452
|
-
|
|
453
323
|
dbName?: string;
|
|
454
|
-
|
|
455
324
|
durationSeconds?: number;
|
|
456
325
|
}
|
|
457
326
|
export interface GetCredentialsResponse {
|
|
458
327
|
dbUser?: string;
|
|
459
|
-
|
|
460
328
|
dbPassword?: string;
|
|
461
|
-
|
|
462
329
|
expiration?: Date;
|
|
463
|
-
|
|
464
330
|
nextRefreshTime?: Date;
|
|
465
331
|
}
|
|
466
332
|
export interface GetNamespaceRequest {
|
|
@@ -472,16 +338,11 @@ export interface GetNamespaceResponse {
|
|
|
472
338
|
export interface GetRecoveryPointRequest {
|
|
473
339
|
recoveryPointId: string | undefined;
|
|
474
340
|
}
|
|
475
|
-
|
|
476
341
|
export interface RecoveryPoint {
|
|
477
342
|
recoveryPointId?: string;
|
|
478
|
-
|
|
479
343
|
recoveryPointCreateTime?: Date;
|
|
480
|
-
|
|
481
344
|
totalSizeInMegaBytes?: number;
|
|
482
|
-
|
|
483
345
|
namespaceName?: string;
|
|
484
|
-
|
|
485
346
|
workgroupName?: string;
|
|
486
347
|
}
|
|
487
348
|
export interface GetRecoveryPointResponse {
|
|
@@ -490,10 +351,8 @@ export interface GetRecoveryPointResponse {
|
|
|
490
351
|
export interface GetResourcePolicyRequest {
|
|
491
352
|
resourceArn: string | undefined;
|
|
492
353
|
}
|
|
493
|
-
|
|
494
354
|
export interface ResourcePolicy {
|
|
495
355
|
resourceArn?: string;
|
|
496
|
-
|
|
497
356
|
policy?: string;
|
|
498
357
|
}
|
|
499
358
|
export interface GetResourcePolicyResponse {
|
|
@@ -501,9 +360,7 @@ export interface GetResourcePolicyResponse {
|
|
|
501
360
|
}
|
|
502
361
|
export interface GetSnapshotRequest {
|
|
503
362
|
snapshotName?: string;
|
|
504
|
-
|
|
505
363
|
ownerAccount?: string;
|
|
506
|
-
|
|
507
364
|
snapshotArn?: string;
|
|
508
365
|
}
|
|
509
366
|
export interface GetSnapshotResponse {
|
|
@@ -521,59 +378,43 @@ export interface GetWorkgroupRequest {
|
|
|
521
378
|
export interface GetWorkgroupResponse {
|
|
522
379
|
workgroup: Workgroup | undefined;
|
|
523
380
|
}
|
|
524
|
-
|
|
525
381
|
export declare class InvalidPaginationException extends __BaseException {
|
|
526
382
|
readonly name: "InvalidPaginationException";
|
|
527
383
|
readonly $fault: "client";
|
|
528
|
-
|
|
529
384
|
constructor(
|
|
530
385
|
opts: __ExceptionOptionType<InvalidPaginationException, __BaseException>
|
|
531
386
|
);
|
|
532
387
|
}
|
|
533
388
|
export interface ListNamespacesRequest {
|
|
534
389
|
nextToken?: string;
|
|
535
|
-
|
|
536
390
|
maxResults?: number;
|
|
537
391
|
}
|
|
538
392
|
export interface ListNamespacesResponse {
|
|
539
393
|
nextToken?: string;
|
|
540
|
-
|
|
541
394
|
namespaces: Namespace[] | undefined;
|
|
542
395
|
}
|
|
543
396
|
export interface ListRecoveryPointsRequest {
|
|
544
397
|
nextToken?: string;
|
|
545
|
-
|
|
546
398
|
maxResults?: number;
|
|
547
|
-
|
|
548
399
|
startTime?: Date;
|
|
549
|
-
|
|
550
400
|
endTime?: Date;
|
|
551
|
-
|
|
552
401
|
namespaceName?: string;
|
|
553
402
|
}
|
|
554
403
|
export interface ListRecoveryPointsResponse {
|
|
555
404
|
recoveryPoints?: RecoveryPoint[];
|
|
556
|
-
|
|
557
405
|
nextToken?: string;
|
|
558
406
|
}
|
|
559
407
|
export interface ListSnapshotsRequest {
|
|
560
408
|
nextToken?: string;
|
|
561
|
-
|
|
562
409
|
maxResults?: number;
|
|
563
|
-
|
|
564
410
|
namespaceName?: string;
|
|
565
|
-
|
|
566
411
|
namespaceArn?: string;
|
|
567
|
-
|
|
568
412
|
ownerAccount?: string;
|
|
569
|
-
|
|
570
413
|
startTime?: Date;
|
|
571
|
-
|
|
572
414
|
endTime?: Date;
|
|
573
415
|
}
|
|
574
416
|
export interface ListSnapshotsResponse {
|
|
575
417
|
nextToken?: string;
|
|
576
|
-
|
|
577
418
|
snapshots?: Snapshot[];
|
|
578
419
|
}
|
|
579
420
|
export interface ListTagsForResourceRequest {
|
|
@@ -582,54 +423,40 @@ export interface ListTagsForResourceRequest {
|
|
|
582
423
|
export interface ListTagsForResourceResponse {
|
|
583
424
|
tags?: Tag[];
|
|
584
425
|
}
|
|
585
|
-
|
|
586
426
|
export declare class ThrottlingException extends __BaseException {
|
|
587
427
|
readonly name: "ThrottlingException";
|
|
588
428
|
readonly $fault: "client";
|
|
589
429
|
$retryable: {};
|
|
590
430
|
code?: string;
|
|
591
|
-
|
|
592
431
|
constructor(
|
|
593
432
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
594
433
|
);
|
|
595
434
|
}
|
|
596
435
|
export interface ListUsageLimitsRequest {
|
|
597
436
|
resourceArn?: string;
|
|
598
|
-
|
|
599
437
|
usageType?: UsageLimitUsageType | string;
|
|
600
|
-
|
|
601
438
|
nextToken?: string;
|
|
602
|
-
|
|
603
439
|
maxResults?: number;
|
|
604
440
|
}
|
|
605
441
|
export interface ListUsageLimitsResponse {
|
|
606
442
|
usageLimits?: UsageLimit[];
|
|
607
|
-
|
|
608
443
|
nextToken?: string;
|
|
609
444
|
}
|
|
610
445
|
export interface ListWorkgroupsRequest {
|
|
611
446
|
nextToken?: string;
|
|
612
|
-
|
|
613
447
|
maxResults?: number;
|
|
614
448
|
}
|
|
615
449
|
export interface ListWorkgroupsResponse {
|
|
616
450
|
nextToken?: string;
|
|
617
|
-
|
|
618
451
|
workgroups: Workgroup[] | undefined;
|
|
619
452
|
}
|
|
620
453
|
export interface UpdateNamespaceRequest {
|
|
621
454
|
namespaceName: string | undefined;
|
|
622
|
-
|
|
623
455
|
adminUserPassword?: string;
|
|
624
|
-
|
|
625
456
|
adminUsername?: string;
|
|
626
|
-
|
|
627
457
|
kmsKeyId?: string;
|
|
628
|
-
|
|
629
458
|
defaultIamRoleArn?: string;
|
|
630
|
-
|
|
631
459
|
iamRoles?: string[];
|
|
632
|
-
|
|
633
460
|
logExports?: (LogExport | string)[];
|
|
634
461
|
}
|
|
635
462
|
export interface UpdateNamespaceResponse {
|
|
@@ -637,7 +464,6 @@ export interface UpdateNamespaceResponse {
|
|
|
637
464
|
}
|
|
638
465
|
export interface PutResourcePolicyRequest {
|
|
639
466
|
resourceArn: string | undefined;
|
|
640
|
-
|
|
641
467
|
policy: string | undefined;
|
|
642
468
|
}
|
|
643
469
|
export interface PutResourcePolicyResponse {
|
|
@@ -645,37 +471,27 @@ export interface PutResourcePolicyResponse {
|
|
|
645
471
|
}
|
|
646
472
|
export interface RestoreFromRecoveryPointRequest {
|
|
647
473
|
recoveryPointId: string | undefined;
|
|
648
|
-
|
|
649
474
|
namespaceName: string | undefined;
|
|
650
|
-
|
|
651
475
|
workgroupName: string | undefined;
|
|
652
476
|
}
|
|
653
477
|
export interface RestoreFromRecoveryPointResponse {
|
|
654
478
|
recoveryPointId?: string;
|
|
655
|
-
|
|
656
479
|
namespace?: Namespace;
|
|
657
480
|
}
|
|
658
481
|
export interface RestoreFromSnapshotRequest {
|
|
659
482
|
namespaceName: string | undefined;
|
|
660
|
-
|
|
661
483
|
workgroupName: string | undefined;
|
|
662
|
-
|
|
663
484
|
snapshotName?: string;
|
|
664
|
-
|
|
665
485
|
snapshotArn?: string;
|
|
666
|
-
|
|
667
486
|
ownerAccount?: string;
|
|
668
487
|
}
|
|
669
488
|
export interface RestoreFromSnapshotResponse {
|
|
670
489
|
snapshotName?: string;
|
|
671
|
-
|
|
672
490
|
ownerAccount?: string;
|
|
673
|
-
|
|
674
491
|
namespace?: Namespace;
|
|
675
492
|
}
|
|
676
493
|
export interface UpdateSnapshotRequest {
|
|
677
494
|
snapshotName: string | undefined;
|
|
678
|
-
|
|
679
495
|
retentionPeriod?: number;
|
|
680
496
|
}
|
|
681
497
|
export interface UpdateSnapshotResponse {
|
|
@@ -683,21 +499,17 @@ export interface UpdateSnapshotResponse {
|
|
|
683
499
|
}
|
|
684
500
|
export interface TagResourceRequest {
|
|
685
501
|
resourceArn: string | undefined;
|
|
686
|
-
|
|
687
502
|
tags: Tag[] | undefined;
|
|
688
503
|
}
|
|
689
504
|
export interface TagResourceResponse {}
|
|
690
505
|
export interface UntagResourceRequest {
|
|
691
506
|
resourceArn: string | undefined;
|
|
692
|
-
|
|
693
507
|
tagKeys: string[] | undefined;
|
|
694
508
|
}
|
|
695
509
|
export interface UntagResourceResponse {}
|
|
696
510
|
export interface UpdateUsageLimitRequest {
|
|
697
511
|
usageLimitId: string | undefined;
|
|
698
|
-
|
|
699
512
|
amount?: number;
|
|
700
|
-
|
|
701
513
|
breachAction?: UsageLimitBreachAction | string;
|
|
702
514
|
}
|
|
703
515
|
export interface UpdateUsageLimitResponse {
|
|
@@ -705,353 +517,260 @@ export interface UpdateUsageLimitResponse {
|
|
|
705
517
|
}
|
|
706
518
|
export interface UpdateWorkgroupRequest {
|
|
707
519
|
workgroupName: string | undefined;
|
|
708
|
-
|
|
709
520
|
baseCapacity?: number;
|
|
710
|
-
|
|
711
521
|
enhancedVpcRouting?: boolean;
|
|
712
|
-
|
|
713
522
|
configParameters?: ConfigParameter[];
|
|
714
|
-
|
|
715
523
|
publiclyAccessible?: boolean;
|
|
716
|
-
|
|
717
524
|
subnetIds?: string[];
|
|
718
|
-
|
|
719
525
|
securityGroupIds?: string[];
|
|
720
526
|
}
|
|
721
527
|
export interface UpdateWorkgroupResponse {
|
|
722
528
|
workgroup: Workgroup | undefined;
|
|
723
529
|
}
|
|
724
|
-
|
|
725
530
|
export declare const ConfigParameterFilterSensitiveLog: (
|
|
726
531
|
obj: ConfigParameter
|
|
727
532
|
) => any;
|
|
728
|
-
|
|
729
533
|
export declare const ConvertRecoveryPointToSnapshotRequestFilterSensitiveLog: (
|
|
730
534
|
obj: ConvertRecoveryPointToSnapshotRequest
|
|
731
535
|
) => any;
|
|
732
|
-
|
|
733
536
|
export declare const SnapshotFilterSensitiveLog: (obj: Snapshot) => any;
|
|
734
|
-
|
|
735
537
|
export declare const ConvertRecoveryPointToSnapshotResponseFilterSensitiveLog: (
|
|
736
538
|
obj: ConvertRecoveryPointToSnapshotResponse
|
|
737
539
|
) => any;
|
|
738
|
-
|
|
739
540
|
export declare const CreateEndpointAccessRequestFilterSensitiveLog: (
|
|
740
541
|
obj: CreateEndpointAccessRequest
|
|
741
542
|
) => any;
|
|
742
|
-
|
|
743
543
|
export declare const NetworkInterfaceFilterSensitiveLog: (
|
|
744
544
|
obj: NetworkInterface
|
|
745
545
|
) => any;
|
|
746
|
-
|
|
747
546
|
export declare const VpcEndpointFilterSensitiveLog: (obj: VpcEndpoint) => any;
|
|
748
|
-
|
|
749
547
|
export declare const VpcSecurityGroupMembershipFilterSensitiveLog: (
|
|
750
548
|
obj: VpcSecurityGroupMembership
|
|
751
549
|
) => any;
|
|
752
|
-
|
|
753
550
|
export declare const EndpointAccessFilterSensitiveLog: (
|
|
754
551
|
obj: EndpointAccess
|
|
755
552
|
) => any;
|
|
756
|
-
|
|
757
553
|
export declare const CreateEndpointAccessResponseFilterSensitiveLog: (
|
|
758
554
|
obj: CreateEndpointAccessResponse
|
|
759
555
|
) => any;
|
|
760
|
-
|
|
761
556
|
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
762
|
-
|
|
763
557
|
export declare const CreateNamespaceRequestFilterSensitiveLog: (
|
|
764
558
|
obj: CreateNamespaceRequest
|
|
765
559
|
) => any;
|
|
766
|
-
|
|
767
560
|
export declare const NamespaceFilterSensitiveLog: (obj: Namespace) => any;
|
|
768
|
-
|
|
769
561
|
export declare const CreateNamespaceResponseFilterSensitiveLog: (
|
|
770
562
|
obj: CreateNamespaceResponse
|
|
771
563
|
) => any;
|
|
772
|
-
|
|
773
564
|
export declare const CreateSnapshotRequestFilterSensitiveLog: (
|
|
774
565
|
obj: CreateSnapshotRequest
|
|
775
566
|
) => any;
|
|
776
|
-
|
|
777
567
|
export declare const CreateSnapshotResponseFilterSensitiveLog: (
|
|
778
568
|
obj: CreateSnapshotResponse
|
|
779
569
|
) => any;
|
|
780
|
-
|
|
781
570
|
export declare const CreateUsageLimitRequestFilterSensitiveLog: (
|
|
782
571
|
obj: CreateUsageLimitRequest
|
|
783
572
|
) => any;
|
|
784
|
-
|
|
785
573
|
export declare const UsageLimitFilterSensitiveLog: (obj: UsageLimit) => any;
|
|
786
|
-
|
|
787
574
|
export declare const CreateUsageLimitResponseFilterSensitiveLog: (
|
|
788
575
|
obj: CreateUsageLimitResponse
|
|
789
576
|
) => any;
|
|
790
|
-
|
|
791
577
|
export declare const CreateWorkgroupRequestFilterSensitiveLog: (
|
|
792
578
|
obj: CreateWorkgroupRequest
|
|
793
579
|
) => any;
|
|
794
|
-
|
|
795
580
|
export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
|
|
796
|
-
|
|
797
581
|
export declare const WorkgroupFilterSensitiveLog: (obj: Workgroup) => any;
|
|
798
|
-
|
|
799
582
|
export declare const CreateWorkgroupResponseFilterSensitiveLog: (
|
|
800
583
|
obj: CreateWorkgroupResponse
|
|
801
584
|
) => any;
|
|
802
|
-
|
|
803
585
|
export declare const DeleteEndpointAccessRequestFilterSensitiveLog: (
|
|
804
586
|
obj: DeleteEndpointAccessRequest
|
|
805
587
|
) => any;
|
|
806
|
-
|
|
807
588
|
export declare const DeleteEndpointAccessResponseFilterSensitiveLog: (
|
|
808
589
|
obj: DeleteEndpointAccessResponse
|
|
809
590
|
) => any;
|
|
810
|
-
|
|
811
591
|
export declare const GetEndpointAccessRequestFilterSensitiveLog: (
|
|
812
592
|
obj: GetEndpointAccessRequest
|
|
813
593
|
) => any;
|
|
814
|
-
|
|
815
594
|
export declare const GetEndpointAccessResponseFilterSensitiveLog: (
|
|
816
595
|
obj: GetEndpointAccessResponse
|
|
817
596
|
) => any;
|
|
818
|
-
|
|
819
597
|
export declare const ListEndpointAccessRequestFilterSensitiveLog: (
|
|
820
598
|
obj: ListEndpointAccessRequest
|
|
821
599
|
) => any;
|
|
822
|
-
|
|
823
600
|
export declare const ListEndpointAccessResponseFilterSensitiveLog: (
|
|
824
601
|
obj: ListEndpointAccessResponse
|
|
825
602
|
) => any;
|
|
826
|
-
|
|
827
603
|
export declare const UpdateEndpointAccessRequestFilterSensitiveLog: (
|
|
828
604
|
obj: UpdateEndpointAccessRequest
|
|
829
605
|
) => any;
|
|
830
|
-
|
|
831
606
|
export declare const UpdateEndpointAccessResponseFilterSensitiveLog: (
|
|
832
607
|
obj: UpdateEndpointAccessResponse
|
|
833
608
|
) => any;
|
|
834
|
-
|
|
835
609
|
export declare const DeleteNamespaceRequestFilterSensitiveLog: (
|
|
836
610
|
obj: DeleteNamespaceRequest
|
|
837
611
|
) => any;
|
|
838
|
-
|
|
839
612
|
export declare const DeleteNamespaceResponseFilterSensitiveLog: (
|
|
840
613
|
obj: DeleteNamespaceResponse
|
|
841
614
|
) => any;
|
|
842
|
-
|
|
843
615
|
export declare const DeleteResourcePolicyRequestFilterSensitiveLog: (
|
|
844
616
|
obj: DeleteResourcePolicyRequest
|
|
845
617
|
) => any;
|
|
846
|
-
|
|
847
618
|
export declare const DeleteResourcePolicyResponseFilterSensitiveLog: (
|
|
848
619
|
obj: DeleteResourcePolicyResponse
|
|
849
620
|
) => any;
|
|
850
|
-
|
|
851
621
|
export declare const DeleteSnapshotRequestFilterSensitiveLog: (
|
|
852
622
|
obj: DeleteSnapshotRequest
|
|
853
623
|
) => any;
|
|
854
|
-
|
|
855
624
|
export declare const DeleteSnapshotResponseFilterSensitiveLog: (
|
|
856
625
|
obj: DeleteSnapshotResponse
|
|
857
626
|
) => any;
|
|
858
|
-
|
|
859
627
|
export declare const DeleteUsageLimitRequestFilterSensitiveLog: (
|
|
860
628
|
obj: DeleteUsageLimitRequest
|
|
861
629
|
) => any;
|
|
862
|
-
|
|
863
630
|
export declare const DeleteUsageLimitResponseFilterSensitiveLog: (
|
|
864
631
|
obj: DeleteUsageLimitResponse
|
|
865
632
|
) => any;
|
|
866
|
-
|
|
867
633
|
export declare const DeleteWorkgroupRequestFilterSensitiveLog: (
|
|
868
634
|
obj: DeleteWorkgroupRequest
|
|
869
635
|
) => any;
|
|
870
|
-
|
|
871
636
|
export declare const DeleteWorkgroupResponseFilterSensitiveLog: (
|
|
872
637
|
obj: DeleteWorkgroupResponse
|
|
873
638
|
) => any;
|
|
874
|
-
|
|
875
639
|
export declare const GetCredentialsRequestFilterSensitiveLog: (
|
|
876
640
|
obj: GetCredentialsRequest
|
|
877
641
|
) => any;
|
|
878
|
-
|
|
879
642
|
export declare const GetCredentialsResponseFilterSensitiveLog: (
|
|
880
643
|
obj: GetCredentialsResponse
|
|
881
644
|
) => any;
|
|
882
|
-
|
|
883
645
|
export declare const GetNamespaceRequestFilterSensitiveLog: (
|
|
884
646
|
obj: GetNamespaceRequest
|
|
885
647
|
) => any;
|
|
886
|
-
|
|
887
648
|
export declare const GetNamespaceResponseFilterSensitiveLog: (
|
|
888
649
|
obj: GetNamespaceResponse
|
|
889
650
|
) => any;
|
|
890
|
-
|
|
891
651
|
export declare const GetRecoveryPointRequestFilterSensitiveLog: (
|
|
892
652
|
obj: GetRecoveryPointRequest
|
|
893
653
|
) => any;
|
|
894
|
-
|
|
895
654
|
export declare const RecoveryPointFilterSensitiveLog: (
|
|
896
655
|
obj: RecoveryPoint
|
|
897
656
|
) => any;
|
|
898
|
-
|
|
899
657
|
export declare const GetRecoveryPointResponseFilterSensitiveLog: (
|
|
900
658
|
obj: GetRecoveryPointResponse
|
|
901
659
|
) => any;
|
|
902
|
-
|
|
903
660
|
export declare const GetResourcePolicyRequestFilterSensitiveLog: (
|
|
904
661
|
obj: GetResourcePolicyRequest
|
|
905
662
|
) => any;
|
|
906
|
-
|
|
907
663
|
export declare const ResourcePolicyFilterSensitiveLog: (
|
|
908
664
|
obj: ResourcePolicy
|
|
909
665
|
) => any;
|
|
910
|
-
|
|
911
666
|
export declare const GetResourcePolicyResponseFilterSensitiveLog: (
|
|
912
667
|
obj: GetResourcePolicyResponse
|
|
913
668
|
) => any;
|
|
914
|
-
|
|
915
669
|
export declare const GetSnapshotRequestFilterSensitiveLog: (
|
|
916
670
|
obj: GetSnapshotRequest
|
|
917
671
|
) => any;
|
|
918
|
-
|
|
919
672
|
export declare const GetSnapshotResponseFilterSensitiveLog: (
|
|
920
673
|
obj: GetSnapshotResponse
|
|
921
674
|
) => any;
|
|
922
|
-
|
|
923
675
|
export declare const GetUsageLimitRequestFilterSensitiveLog: (
|
|
924
676
|
obj: GetUsageLimitRequest
|
|
925
677
|
) => any;
|
|
926
|
-
|
|
927
678
|
export declare const GetUsageLimitResponseFilterSensitiveLog: (
|
|
928
679
|
obj: GetUsageLimitResponse
|
|
929
680
|
) => any;
|
|
930
|
-
|
|
931
681
|
export declare const GetWorkgroupRequestFilterSensitiveLog: (
|
|
932
682
|
obj: GetWorkgroupRequest
|
|
933
683
|
) => any;
|
|
934
|
-
|
|
935
684
|
export declare const GetWorkgroupResponseFilterSensitiveLog: (
|
|
936
685
|
obj: GetWorkgroupResponse
|
|
937
686
|
) => any;
|
|
938
|
-
|
|
939
687
|
export declare const ListNamespacesRequestFilterSensitiveLog: (
|
|
940
688
|
obj: ListNamespacesRequest
|
|
941
689
|
) => any;
|
|
942
|
-
|
|
943
690
|
export declare const ListNamespacesResponseFilterSensitiveLog: (
|
|
944
691
|
obj: ListNamespacesResponse
|
|
945
692
|
) => any;
|
|
946
|
-
|
|
947
693
|
export declare const ListRecoveryPointsRequestFilterSensitiveLog: (
|
|
948
694
|
obj: ListRecoveryPointsRequest
|
|
949
695
|
) => any;
|
|
950
|
-
|
|
951
696
|
export declare const ListRecoveryPointsResponseFilterSensitiveLog: (
|
|
952
697
|
obj: ListRecoveryPointsResponse
|
|
953
698
|
) => any;
|
|
954
|
-
|
|
955
699
|
export declare const ListSnapshotsRequestFilterSensitiveLog: (
|
|
956
700
|
obj: ListSnapshotsRequest
|
|
957
701
|
) => any;
|
|
958
|
-
|
|
959
702
|
export declare const ListSnapshotsResponseFilterSensitiveLog: (
|
|
960
703
|
obj: ListSnapshotsResponse
|
|
961
704
|
) => any;
|
|
962
|
-
|
|
963
705
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
964
706
|
obj: ListTagsForResourceRequest
|
|
965
707
|
) => any;
|
|
966
|
-
|
|
967
708
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
968
709
|
obj: ListTagsForResourceResponse
|
|
969
710
|
) => any;
|
|
970
|
-
|
|
971
711
|
export declare const ListUsageLimitsRequestFilterSensitiveLog: (
|
|
972
712
|
obj: ListUsageLimitsRequest
|
|
973
713
|
) => any;
|
|
974
|
-
|
|
975
714
|
export declare const ListUsageLimitsResponseFilterSensitiveLog: (
|
|
976
715
|
obj: ListUsageLimitsResponse
|
|
977
716
|
) => any;
|
|
978
|
-
|
|
979
717
|
export declare const ListWorkgroupsRequestFilterSensitiveLog: (
|
|
980
718
|
obj: ListWorkgroupsRequest
|
|
981
719
|
) => any;
|
|
982
|
-
|
|
983
720
|
export declare const ListWorkgroupsResponseFilterSensitiveLog: (
|
|
984
721
|
obj: ListWorkgroupsResponse
|
|
985
722
|
) => any;
|
|
986
|
-
|
|
987
723
|
export declare const UpdateNamespaceRequestFilterSensitiveLog: (
|
|
988
724
|
obj: UpdateNamespaceRequest
|
|
989
725
|
) => any;
|
|
990
|
-
|
|
991
726
|
export declare const UpdateNamespaceResponseFilterSensitiveLog: (
|
|
992
727
|
obj: UpdateNamespaceResponse
|
|
993
728
|
) => any;
|
|
994
|
-
|
|
995
729
|
export declare const PutResourcePolicyRequestFilterSensitiveLog: (
|
|
996
730
|
obj: PutResourcePolicyRequest
|
|
997
731
|
) => any;
|
|
998
|
-
|
|
999
732
|
export declare const PutResourcePolicyResponseFilterSensitiveLog: (
|
|
1000
733
|
obj: PutResourcePolicyResponse
|
|
1001
734
|
) => any;
|
|
1002
|
-
|
|
1003
735
|
export declare const RestoreFromRecoveryPointRequestFilterSensitiveLog: (
|
|
1004
736
|
obj: RestoreFromRecoveryPointRequest
|
|
1005
737
|
) => any;
|
|
1006
|
-
|
|
1007
738
|
export declare const RestoreFromRecoveryPointResponseFilterSensitiveLog: (
|
|
1008
739
|
obj: RestoreFromRecoveryPointResponse
|
|
1009
740
|
) => any;
|
|
1010
|
-
|
|
1011
741
|
export declare const RestoreFromSnapshotRequestFilterSensitiveLog: (
|
|
1012
742
|
obj: RestoreFromSnapshotRequest
|
|
1013
743
|
) => any;
|
|
1014
|
-
|
|
1015
744
|
export declare const RestoreFromSnapshotResponseFilterSensitiveLog: (
|
|
1016
745
|
obj: RestoreFromSnapshotResponse
|
|
1017
746
|
) => any;
|
|
1018
|
-
|
|
1019
747
|
export declare const UpdateSnapshotRequestFilterSensitiveLog: (
|
|
1020
748
|
obj: UpdateSnapshotRequest
|
|
1021
749
|
) => any;
|
|
1022
|
-
|
|
1023
750
|
export declare const UpdateSnapshotResponseFilterSensitiveLog: (
|
|
1024
751
|
obj: UpdateSnapshotResponse
|
|
1025
752
|
) => any;
|
|
1026
|
-
|
|
1027
753
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1028
754
|
obj: TagResourceRequest
|
|
1029
755
|
) => any;
|
|
1030
|
-
|
|
1031
756
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
1032
757
|
obj: TagResourceResponse
|
|
1033
758
|
) => any;
|
|
1034
|
-
|
|
1035
759
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1036
760
|
obj: UntagResourceRequest
|
|
1037
761
|
) => any;
|
|
1038
|
-
|
|
1039
762
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
1040
763
|
obj: UntagResourceResponse
|
|
1041
764
|
) => any;
|
|
1042
|
-
|
|
1043
765
|
export declare const UpdateUsageLimitRequestFilterSensitiveLog: (
|
|
1044
766
|
obj: UpdateUsageLimitRequest
|
|
1045
767
|
) => any;
|
|
1046
|
-
|
|
1047
768
|
export declare const UpdateUsageLimitResponseFilterSensitiveLog: (
|
|
1048
769
|
obj: UpdateUsageLimitResponse
|
|
1049
770
|
) => any;
|
|
1050
|
-
|
|
1051
771
|
export declare const UpdateWorkgroupRequestFilterSensitiveLog: (
|
|
1052
772
|
obj: UpdateWorkgroupRequest
|
|
1053
773
|
) => any;
|
|
1054
|
-
|
|
1055
774
|
export declare const UpdateWorkgroupResponseFilterSensitiveLog: (
|
|
1056
775
|
obj: UpdateWorkgroupResponse
|
|
1057
776
|
) => any;
|