@aws-sdk/client-synthetics 3.47.1 → 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 +32 -0
- package/package.json +39 -33
- package/dist-types/ts3.4/Synthetics.d.ts +0 -70
- package/dist-types/ts3.4/SyntheticsClient.d.ts +0 -86
- package/dist-types/ts3.4/commands/CreateCanaryCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DeleteCanaryCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeCanariesCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeCanariesLastRunCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeRuntimeVersionsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetCanaryCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetCanaryRunsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/StartCanaryCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/StopCanaryCommand.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/UpdateCanaryCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/index.d.ts +0 -13
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/index.d.ts +0 -5
- package/dist-types/ts3.4/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -624
- package/dist-types/ts3.4/pagination/DescribeCanariesLastRunPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/DescribeCanariesPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/DescribeRuntimeVersionsPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/GetCanaryRunsPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +0 -6
- package/dist-types/ts3.4/pagination/index.d.ts +0 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -41
- 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,624 +0,0 @@
|
|
|
1
|
-
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
-
export declare enum EncryptionMode {
|
|
3
|
-
SSE_KMS = "SSE_KMS",
|
|
4
|
-
SSE_S3 = "SSE_S3"
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
export interface S3EncryptionConfig {
|
|
8
|
-
|
|
9
|
-
EncryptionMode?: EncryptionMode | string;
|
|
10
|
-
|
|
11
|
-
KmsKeyArn?: string;
|
|
12
|
-
}
|
|
13
|
-
export declare namespace S3EncryptionConfig {
|
|
14
|
-
|
|
15
|
-
const filterSensitiveLog: (obj: S3EncryptionConfig) => any;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
export interface ArtifactConfigInput {
|
|
19
|
-
|
|
20
|
-
S3Encryption?: S3EncryptionConfig;
|
|
21
|
-
}
|
|
22
|
-
export declare namespace ArtifactConfigInput {
|
|
23
|
-
|
|
24
|
-
const filterSensitiveLog: (obj: ArtifactConfigInput) => any;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export interface ArtifactConfigOutput {
|
|
28
|
-
|
|
29
|
-
S3Encryption?: S3EncryptionConfig;
|
|
30
|
-
}
|
|
31
|
-
export declare namespace ArtifactConfigOutput {
|
|
32
|
-
|
|
33
|
-
const filterSensitiveLog: (obj: ArtifactConfigOutput) => any;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
export interface BaseScreenshot {
|
|
37
|
-
|
|
38
|
-
ScreenshotName: string | undefined;
|
|
39
|
-
|
|
40
|
-
IgnoreCoordinates?: string[];
|
|
41
|
-
}
|
|
42
|
-
export declare namespace BaseScreenshot {
|
|
43
|
-
|
|
44
|
-
const filterSensitiveLog: (obj: BaseScreenshot) => any;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
export interface CanaryCodeOutput {
|
|
48
|
-
|
|
49
|
-
SourceLocationArn?: string;
|
|
50
|
-
|
|
51
|
-
Handler?: string;
|
|
52
|
-
}
|
|
53
|
-
export declare namespace CanaryCodeOutput {
|
|
54
|
-
|
|
55
|
-
const filterSensitiveLog: (obj: CanaryCodeOutput) => any;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
export interface CanaryRunConfigOutput {
|
|
59
|
-
|
|
60
|
-
TimeoutInSeconds?: number;
|
|
61
|
-
|
|
62
|
-
MemoryInMB?: number;
|
|
63
|
-
|
|
64
|
-
ActiveTracing?: boolean;
|
|
65
|
-
}
|
|
66
|
-
export declare namespace CanaryRunConfigOutput {
|
|
67
|
-
|
|
68
|
-
const filterSensitiveLog: (obj: CanaryRunConfigOutput) => any;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
export interface CanaryScheduleOutput {
|
|
72
|
-
|
|
73
|
-
Expression?: string;
|
|
74
|
-
|
|
75
|
-
DurationInSeconds?: number;
|
|
76
|
-
}
|
|
77
|
-
export declare namespace CanaryScheduleOutput {
|
|
78
|
-
|
|
79
|
-
const filterSensitiveLog: (obj: CanaryScheduleOutput) => any;
|
|
80
|
-
}
|
|
81
|
-
export declare enum CanaryState {
|
|
82
|
-
CREATING = "CREATING",
|
|
83
|
-
DELETING = "DELETING",
|
|
84
|
-
ERROR = "ERROR",
|
|
85
|
-
READY = "READY",
|
|
86
|
-
RUNNING = "RUNNING",
|
|
87
|
-
STARTING = "STARTING",
|
|
88
|
-
STOPPED = "STOPPED",
|
|
89
|
-
STOPPING = "STOPPING",
|
|
90
|
-
UPDATING = "UPDATING"
|
|
91
|
-
}
|
|
92
|
-
export declare enum CanaryStateReasonCode {
|
|
93
|
-
INVALID_PERMISSIONS = "INVALID_PERMISSIONS"
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
export interface CanaryStatus {
|
|
97
|
-
|
|
98
|
-
State?: CanaryState | string;
|
|
99
|
-
|
|
100
|
-
StateReason?: string;
|
|
101
|
-
|
|
102
|
-
StateReasonCode?: CanaryStateReasonCode | string;
|
|
103
|
-
}
|
|
104
|
-
export declare namespace CanaryStatus {
|
|
105
|
-
|
|
106
|
-
const filterSensitiveLog: (obj: CanaryStatus) => any;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
export interface CanaryTimeline {
|
|
110
|
-
|
|
111
|
-
Created?: Date;
|
|
112
|
-
|
|
113
|
-
LastModified?: Date;
|
|
114
|
-
|
|
115
|
-
LastStarted?: Date;
|
|
116
|
-
|
|
117
|
-
LastStopped?: Date;
|
|
118
|
-
}
|
|
119
|
-
export declare namespace CanaryTimeline {
|
|
120
|
-
|
|
121
|
-
const filterSensitiveLog: (obj: CanaryTimeline) => any;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
export interface VisualReferenceOutput {
|
|
125
|
-
|
|
126
|
-
BaseScreenshots?: BaseScreenshot[];
|
|
127
|
-
|
|
128
|
-
BaseCanaryRunId?: string;
|
|
129
|
-
}
|
|
130
|
-
export declare namespace VisualReferenceOutput {
|
|
131
|
-
|
|
132
|
-
const filterSensitiveLog: (obj: VisualReferenceOutput) => any;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
export interface VpcConfigOutput {
|
|
136
|
-
|
|
137
|
-
VpcId?: string;
|
|
138
|
-
|
|
139
|
-
SubnetIds?: string[];
|
|
140
|
-
|
|
141
|
-
SecurityGroupIds?: string[];
|
|
142
|
-
}
|
|
143
|
-
export declare namespace VpcConfigOutput {
|
|
144
|
-
|
|
145
|
-
const filterSensitiveLog: (obj: VpcConfigOutput) => any;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
export interface Canary {
|
|
149
|
-
|
|
150
|
-
Id?: string;
|
|
151
|
-
|
|
152
|
-
Name?: string;
|
|
153
|
-
|
|
154
|
-
Code?: CanaryCodeOutput;
|
|
155
|
-
|
|
156
|
-
ExecutionRoleArn?: string;
|
|
157
|
-
|
|
158
|
-
Schedule?: CanaryScheduleOutput;
|
|
159
|
-
|
|
160
|
-
RunConfig?: CanaryRunConfigOutput;
|
|
161
|
-
|
|
162
|
-
SuccessRetentionPeriodInDays?: number;
|
|
163
|
-
|
|
164
|
-
FailureRetentionPeriodInDays?: number;
|
|
165
|
-
|
|
166
|
-
Status?: CanaryStatus;
|
|
167
|
-
|
|
168
|
-
Timeline?: CanaryTimeline;
|
|
169
|
-
|
|
170
|
-
ArtifactS3Location?: string;
|
|
171
|
-
|
|
172
|
-
EngineArn?: string;
|
|
173
|
-
|
|
174
|
-
RuntimeVersion?: string;
|
|
175
|
-
|
|
176
|
-
VpcConfig?: VpcConfigOutput;
|
|
177
|
-
|
|
178
|
-
VisualReference?: VisualReferenceOutput;
|
|
179
|
-
|
|
180
|
-
Tags?: {
|
|
181
|
-
[key: string]: string;
|
|
182
|
-
};
|
|
183
|
-
|
|
184
|
-
ArtifactConfig?: ArtifactConfigOutput;
|
|
185
|
-
}
|
|
186
|
-
export declare namespace Canary {
|
|
187
|
-
|
|
188
|
-
const filterSensitiveLog: (obj: Canary) => any;
|
|
189
|
-
}
|
|
190
|
-
export declare enum CanaryRunState {
|
|
191
|
-
FAILED = "FAILED",
|
|
192
|
-
PASSED = "PASSED",
|
|
193
|
-
RUNNING = "RUNNING"
|
|
194
|
-
}
|
|
195
|
-
export declare enum CanaryRunStateReasonCode {
|
|
196
|
-
CANARY_FAILURE = "CANARY_FAILURE",
|
|
197
|
-
EXECUTION_FAILURE = "EXECUTION_FAILURE"
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
export interface CanaryRunStatus {
|
|
201
|
-
|
|
202
|
-
State?: CanaryRunState | string;
|
|
203
|
-
|
|
204
|
-
StateReason?: string;
|
|
205
|
-
|
|
206
|
-
StateReasonCode?: CanaryRunStateReasonCode | string;
|
|
207
|
-
}
|
|
208
|
-
export declare namespace CanaryRunStatus {
|
|
209
|
-
|
|
210
|
-
const filterSensitiveLog: (obj: CanaryRunStatus) => any;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
export interface CanaryRunTimeline {
|
|
214
|
-
|
|
215
|
-
Started?: Date;
|
|
216
|
-
|
|
217
|
-
Completed?: Date;
|
|
218
|
-
}
|
|
219
|
-
export declare namespace CanaryRunTimeline {
|
|
220
|
-
|
|
221
|
-
const filterSensitiveLog: (obj: CanaryRunTimeline) => any;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
export interface CanaryRun {
|
|
225
|
-
|
|
226
|
-
Id?: string;
|
|
227
|
-
|
|
228
|
-
Name?: string;
|
|
229
|
-
|
|
230
|
-
Status?: CanaryRunStatus;
|
|
231
|
-
|
|
232
|
-
Timeline?: CanaryRunTimeline;
|
|
233
|
-
|
|
234
|
-
ArtifactS3Location?: string;
|
|
235
|
-
}
|
|
236
|
-
export declare namespace CanaryRun {
|
|
237
|
-
|
|
238
|
-
const filterSensitiveLog: (obj: CanaryRun) => any;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
export interface CanaryLastRun {
|
|
242
|
-
|
|
243
|
-
CanaryName?: string;
|
|
244
|
-
|
|
245
|
-
LastRun?: CanaryRun;
|
|
246
|
-
}
|
|
247
|
-
export declare namespace CanaryLastRun {
|
|
248
|
-
|
|
249
|
-
const filterSensitiveLog: (obj: CanaryLastRun) => any;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
export interface CanaryCodeInput {
|
|
253
|
-
|
|
254
|
-
S3Bucket?: string;
|
|
255
|
-
|
|
256
|
-
S3Key?: string;
|
|
257
|
-
|
|
258
|
-
S3Version?: string;
|
|
259
|
-
|
|
260
|
-
ZipFile?: Uint8Array;
|
|
261
|
-
|
|
262
|
-
Handler: string | undefined;
|
|
263
|
-
}
|
|
264
|
-
export declare namespace CanaryCodeInput {
|
|
265
|
-
|
|
266
|
-
const filterSensitiveLog: (obj: CanaryCodeInput) => any;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
export interface CanaryRunConfigInput {
|
|
270
|
-
|
|
271
|
-
TimeoutInSeconds?: number;
|
|
272
|
-
|
|
273
|
-
MemoryInMB?: number;
|
|
274
|
-
|
|
275
|
-
ActiveTracing?: boolean;
|
|
276
|
-
|
|
277
|
-
EnvironmentVariables?: {
|
|
278
|
-
[key: string]: string;
|
|
279
|
-
};
|
|
280
|
-
}
|
|
281
|
-
export declare namespace CanaryRunConfigInput {
|
|
282
|
-
|
|
283
|
-
const filterSensitiveLog: (obj: CanaryRunConfigInput) => any;
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
export interface CanaryScheduleInput {
|
|
287
|
-
|
|
288
|
-
Expression: string | undefined;
|
|
289
|
-
|
|
290
|
-
DurationInSeconds?: number;
|
|
291
|
-
}
|
|
292
|
-
export declare namespace CanaryScheduleInput {
|
|
293
|
-
|
|
294
|
-
const filterSensitiveLog: (obj: CanaryScheduleInput) => any;
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
298
|
-
name: "ConflictException";
|
|
299
|
-
$fault: "client";
|
|
300
|
-
Message?: string;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
export interface VpcConfigInput {
|
|
304
|
-
|
|
305
|
-
SubnetIds?: string[];
|
|
306
|
-
|
|
307
|
-
SecurityGroupIds?: string[];
|
|
308
|
-
}
|
|
309
|
-
export declare namespace VpcConfigInput {
|
|
310
|
-
|
|
311
|
-
const filterSensitiveLog: (obj: VpcConfigInput) => any;
|
|
312
|
-
}
|
|
313
|
-
export interface CreateCanaryRequest {
|
|
314
|
-
|
|
315
|
-
Name: string | undefined;
|
|
316
|
-
|
|
317
|
-
Code: CanaryCodeInput | undefined;
|
|
318
|
-
|
|
319
|
-
ArtifactS3Location: string | undefined;
|
|
320
|
-
|
|
321
|
-
ExecutionRoleArn: string | undefined;
|
|
322
|
-
|
|
323
|
-
Schedule: CanaryScheduleInput | undefined;
|
|
324
|
-
|
|
325
|
-
RunConfig?: CanaryRunConfigInput;
|
|
326
|
-
|
|
327
|
-
SuccessRetentionPeriodInDays?: number;
|
|
328
|
-
|
|
329
|
-
FailureRetentionPeriodInDays?: number;
|
|
330
|
-
|
|
331
|
-
RuntimeVersion: string | undefined;
|
|
332
|
-
|
|
333
|
-
VpcConfig?: VpcConfigInput;
|
|
334
|
-
|
|
335
|
-
Tags?: {
|
|
336
|
-
[key: string]: string;
|
|
337
|
-
};
|
|
338
|
-
|
|
339
|
-
ArtifactConfig?: ArtifactConfigInput;
|
|
340
|
-
}
|
|
341
|
-
export declare namespace CreateCanaryRequest {
|
|
342
|
-
|
|
343
|
-
const filterSensitiveLog: (obj: CreateCanaryRequest) => any;
|
|
344
|
-
}
|
|
345
|
-
export interface CreateCanaryResponse {
|
|
346
|
-
|
|
347
|
-
Canary?: Canary;
|
|
348
|
-
}
|
|
349
|
-
export declare namespace CreateCanaryResponse {
|
|
350
|
-
|
|
351
|
-
const filterSensitiveLog: (obj: CreateCanaryResponse) => any;
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
export interface InternalServerException extends __SmithyException, $MetadataBearer {
|
|
355
|
-
name: "InternalServerException";
|
|
356
|
-
$fault: "server";
|
|
357
|
-
Message?: string;
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
export interface ValidationException extends __SmithyException, $MetadataBearer {
|
|
361
|
-
name: "ValidationException";
|
|
362
|
-
$fault: "client";
|
|
363
|
-
Message?: string;
|
|
364
|
-
}
|
|
365
|
-
export interface DeleteCanaryRequest {
|
|
366
|
-
|
|
367
|
-
Name: string | undefined;
|
|
368
|
-
}
|
|
369
|
-
export declare namespace DeleteCanaryRequest {
|
|
370
|
-
|
|
371
|
-
const filterSensitiveLog: (obj: DeleteCanaryRequest) => any;
|
|
372
|
-
}
|
|
373
|
-
export interface DeleteCanaryResponse {
|
|
374
|
-
}
|
|
375
|
-
export declare namespace DeleteCanaryResponse {
|
|
376
|
-
|
|
377
|
-
const filterSensitiveLog: (obj: DeleteCanaryResponse) => any;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
381
|
-
name: "ResourceNotFoundException";
|
|
382
|
-
$fault: "client";
|
|
383
|
-
Message?: string;
|
|
384
|
-
}
|
|
385
|
-
export interface DescribeCanariesRequest {
|
|
386
|
-
|
|
387
|
-
NextToken?: string;
|
|
388
|
-
|
|
389
|
-
MaxResults?: number;
|
|
390
|
-
}
|
|
391
|
-
export declare namespace DescribeCanariesRequest {
|
|
392
|
-
|
|
393
|
-
const filterSensitiveLog: (obj: DescribeCanariesRequest) => any;
|
|
394
|
-
}
|
|
395
|
-
export interface DescribeCanariesResponse {
|
|
396
|
-
|
|
397
|
-
Canaries?: Canary[];
|
|
398
|
-
|
|
399
|
-
NextToken?: string;
|
|
400
|
-
}
|
|
401
|
-
export declare namespace DescribeCanariesResponse {
|
|
402
|
-
|
|
403
|
-
const filterSensitiveLog: (obj: DescribeCanariesResponse) => any;
|
|
404
|
-
}
|
|
405
|
-
export interface DescribeCanariesLastRunRequest {
|
|
406
|
-
|
|
407
|
-
NextToken?: string;
|
|
408
|
-
|
|
409
|
-
MaxResults?: number;
|
|
410
|
-
}
|
|
411
|
-
export declare namespace DescribeCanariesLastRunRequest {
|
|
412
|
-
|
|
413
|
-
const filterSensitiveLog: (obj: DescribeCanariesLastRunRequest) => any;
|
|
414
|
-
}
|
|
415
|
-
export interface DescribeCanariesLastRunResponse {
|
|
416
|
-
|
|
417
|
-
CanariesLastRun?: CanaryLastRun[];
|
|
418
|
-
|
|
419
|
-
NextToken?: string;
|
|
420
|
-
}
|
|
421
|
-
export declare namespace DescribeCanariesLastRunResponse {
|
|
422
|
-
|
|
423
|
-
const filterSensitiveLog: (obj: DescribeCanariesLastRunResponse) => any;
|
|
424
|
-
}
|
|
425
|
-
export interface DescribeRuntimeVersionsRequest {
|
|
426
|
-
|
|
427
|
-
NextToken?: string;
|
|
428
|
-
|
|
429
|
-
MaxResults?: number;
|
|
430
|
-
}
|
|
431
|
-
export declare namespace DescribeRuntimeVersionsRequest {
|
|
432
|
-
|
|
433
|
-
const filterSensitiveLog: (obj: DescribeRuntimeVersionsRequest) => any;
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
export interface RuntimeVersion {
|
|
437
|
-
|
|
438
|
-
VersionName?: string;
|
|
439
|
-
|
|
440
|
-
Description?: string;
|
|
441
|
-
|
|
442
|
-
ReleaseDate?: Date;
|
|
443
|
-
|
|
444
|
-
DeprecationDate?: Date;
|
|
445
|
-
}
|
|
446
|
-
export declare namespace RuntimeVersion {
|
|
447
|
-
|
|
448
|
-
const filterSensitiveLog: (obj: RuntimeVersion) => any;
|
|
449
|
-
}
|
|
450
|
-
export interface DescribeRuntimeVersionsResponse {
|
|
451
|
-
|
|
452
|
-
RuntimeVersions?: RuntimeVersion[];
|
|
453
|
-
|
|
454
|
-
NextToken?: string;
|
|
455
|
-
}
|
|
456
|
-
export declare namespace DescribeRuntimeVersionsResponse {
|
|
457
|
-
|
|
458
|
-
const filterSensitiveLog: (obj: DescribeRuntimeVersionsResponse) => any;
|
|
459
|
-
}
|
|
460
|
-
export interface GetCanaryRequest {
|
|
461
|
-
|
|
462
|
-
Name: string | undefined;
|
|
463
|
-
}
|
|
464
|
-
export declare namespace GetCanaryRequest {
|
|
465
|
-
|
|
466
|
-
const filterSensitiveLog: (obj: GetCanaryRequest) => any;
|
|
467
|
-
}
|
|
468
|
-
export interface GetCanaryResponse {
|
|
469
|
-
|
|
470
|
-
Canary?: Canary;
|
|
471
|
-
}
|
|
472
|
-
export declare namespace GetCanaryResponse {
|
|
473
|
-
|
|
474
|
-
const filterSensitiveLog: (obj: GetCanaryResponse) => any;
|
|
475
|
-
}
|
|
476
|
-
export interface GetCanaryRunsRequest {
|
|
477
|
-
|
|
478
|
-
Name: string | undefined;
|
|
479
|
-
|
|
480
|
-
NextToken?: string;
|
|
481
|
-
|
|
482
|
-
MaxResults?: number;
|
|
483
|
-
}
|
|
484
|
-
export declare namespace GetCanaryRunsRequest {
|
|
485
|
-
|
|
486
|
-
const filterSensitiveLog: (obj: GetCanaryRunsRequest) => any;
|
|
487
|
-
}
|
|
488
|
-
export interface GetCanaryRunsResponse {
|
|
489
|
-
|
|
490
|
-
CanaryRuns?: CanaryRun[];
|
|
491
|
-
|
|
492
|
-
NextToken?: string;
|
|
493
|
-
}
|
|
494
|
-
export declare namespace GetCanaryRunsResponse {
|
|
495
|
-
|
|
496
|
-
const filterSensitiveLog: (obj: GetCanaryRunsResponse) => any;
|
|
497
|
-
}
|
|
498
|
-
export interface ListTagsForResourceRequest {
|
|
499
|
-
|
|
500
|
-
ResourceArn: string | undefined;
|
|
501
|
-
}
|
|
502
|
-
export declare namespace ListTagsForResourceRequest {
|
|
503
|
-
|
|
504
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
505
|
-
}
|
|
506
|
-
export interface ListTagsForResourceResponse {
|
|
507
|
-
|
|
508
|
-
Tags?: {
|
|
509
|
-
[key: string]: string;
|
|
510
|
-
};
|
|
511
|
-
}
|
|
512
|
-
export declare namespace ListTagsForResourceResponse {
|
|
513
|
-
|
|
514
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
515
|
-
}
|
|
516
|
-
export interface StartCanaryRequest {
|
|
517
|
-
|
|
518
|
-
Name: string | undefined;
|
|
519
|
-
}
|
|
520
|
-
export declare namespace StartCanaryRequest {
|
|
521
|
-
|
|
522
|
-
const filterSensitiveLog: (obj: StartCanaryRequest) => any;
|
|
523
|
-
}
|
|
524
|
-
export interface StartCanaryResponse {
|
|
525
|
-
}
|
|
526
|
-
export declare namespace StartCanaryResponse {
|
|
527
|
-
|
|
528
|
-
const filterSensitiveLog: (obj: StartCanaryResponse) => any;
|
|
529
|
-
}
|
|
530
|
-
export interface StopCanaryRequest {
|
|
531
|
-
|
|
532
|
-
Name: string | undefined;
|
|
533
|
-
}
|
|
534
|
-
export declare namespace StopCanaryRequest {
|
|
535
|
-
|
|
536
|
-
const filterSensitiveLog: (obj: StopCanaryRequest) => any;
|
|
537
|
-
}
|
|
538
|
-
export interface StopCanaryResponse {
|
|
539
|
-
}
|
|
540
|
-
export declare namespace StopCanaryResponse {
|
|
541
|
-
|
|
542
|
-
const filterSensitiveLog: (obj: StopCanaryResponse) => any;
|
|
543
|
-
}
|
|
544
|
-
export interface TagResourceRequest {
|
|
545
|
-
|
|
546
|
-
ResourceArn: string | undefined;
|
|
547
|
-
|
|
548
|
-
Tags: {
|
|
549
|
-
[key: string]: string;
|
|
550
|
-
} | undefined;
|
|
551
|
-
}
|
|
552
|
-
export declare namespace TagResourceRequest {
|
|
553
|
-
|
|
554
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
555
|
-
}
|
|
556
|
-
export interface TagResourceResponse {
|
|
557
|
-
}
|
|
558
|
-
export declare namespace TagResourceResponse {
|
|
559
|
-
|
|
560
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
561
|
-
}
|
|
562
|
-
export interface UntagResourceRequest {
|
|
563
|
-
|
|
564
|
-
ResourceArn: string | undefined;
|
|
565
|
-
|
|
566
|
-
TagKeys: string[] | undefined;
|
|
567
|
-
}
|
|
568
|
-
export declare namespace UntagResourceRequest {
|
|
569
|
-
|
|
570
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
571
|
-
}
|
|
572
|
-
export interface UntagResourceResponse {
|
|
573
|
-
}
|
|
574
|
-
export declare namespace UntagResourceResponse {
|
|
575
|
-
|
|
576
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
577
|
-
}
|
|
578
|
-
|
|
579
|
-
export interface VisualReferenceInput {
|
|
580
|
-
|
|
581
|
-
BaseScreenshots?: BaseScreenshot[];
|
|
582
|
-
|
|
583
|
-
BaseCanaryRunId: string | undefined;
|
|
584
|
-
}
|
|
585
|
-
export declare namespace VisualReferenceInput {
|
|
586
|
-
|
|
587
|
-
const filterSensitiveLog: (obj: VisualReferenceInput) => any;
|
|
588
|
-
}
|
|
589
|
-
export interface UpdateCanaryRequest {
|
|
590
|
-
|
|
591
|
-
Name: string | undefined;
|
|
592
|
-
|
|
593
|
-
Code?: CanaryCodeInput;
|
|
594
|
-
|
|
595
|
-
ExecutionRoleArn?: string;
|
|
596
|
-
|
|
597
|
-
RuntimeVersion?: string;
|
|
598
|
-
|
|
599
|
-
Schedule?: CanaryScheduleInput;
|
|
600
|
-
|
|
601
|
-
RunConfig?: CanaryRunConfigInput;
|
|
602
|
-
|
|
603
|
-
SuccessRetentionPeriodInDays?: number;
|
|
604
|
-
|
|
605
|
-
FailureRetentionPeriodInDays?: number;
|
|
606
|
-
|
|
607
|
-
VpcConfig?: VpcConfigInput;
|
|
608
|
-
|
|
609
|
-
VisualReference?: VisualReferenceInput;
|
|
610
|
-
|
|
611
|
-
ArtifactS3Location?: string;
|
|
612
|
-
|
|
613
|
-
ArtifactConfig?: ArtifactConfigInput;
|
|
614
|
-
}
|
|
615
|
-
export declare namespace UpdateCanaryRequest {
|
|
616
|
-
|
|
617
|
-
const filterSensitiveLog: (obj: UpdateCanaryRequest) => any;
|
|
618
|
-
}
|
|
619
|
-
export interface UpdateCanaryResponse {
|
|
620
|
-
}
|
|
621
|
-
export declare namespace UpdateCanaryResponse {
|
|
622
|
-
|
|
623
|
-
const filterSensitiveLog: (obj: UpdateCanaryResponse) => any;
|
|
624
|
-
}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import { DescribeCanariesLastRunCommandInput, DescribeCanariesLastRunCommandOutput } from "../commands/DescribeCanariesLastRunCommand";
|
|
3
|
-
import { SyntheticsPaginationConfiguration } from "./Interfaces";
|
|
4
|
-
export declare function paginateDescribeCanariesLastRun(config: SyntheticsPaginationConfiguration, input: DescribeCanariesLastRunCommandInput, ...additionalArguments: any): Paginator<DescribeCanariesLastRunCommandOutput>;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import { DescribeCanariesCommandInput, DescribeCanariesCommandOutput } from "../commands/DescribeCanariesCommand";
|
|
3
|
-
import { SyntheticsPaginationConfiguration } from "./Interfaces";
|
|
4
|
-
export declare function paginateDescribeCanaries(config: SyntheticsPaginationConfiguration, input: DescribeCanariesCommandInput, ...additionalArguments: any): Paginator<DescribeCanariesCommandOutput>;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import { DescribeRuntimeVersionsCommandInput, DescribeRuntimeVersionsCommandOutput } from "../commands/DescribeRuntimeVersionsCommand";
|
|
3
|
-
import { SyntheticsPaginationConfiguration } from "./Interfaces";
|
|
4
|
-
export declare function paginateDescribeRuntimeVersions(config: SyntheticsPaginationConfiguration, input: DescribeRuntimeVersionsCommandInput, ...additionalArguments: any): Paginator<DescribeRuntimeVersionsCommandOutput>;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import { GetCanaryRunsCommandInput, GetCanaryRunsCommandOutput } from "../commands/GetCanaryRunsCommand";
|
|
3
|
-
import { SyntheticsPaginationConfiguration } from "./Interfaces";
|
|
4
|
-
export declare function paginateGetCanaryRuns(config: SyntheticsPaginationConfiguration, input: GetCanaryRunsCommandInput, ...additionalArguments: any): Paginator<GetCanaryRunsCommandOutput>;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { Synthetics } from "../Synthetics";
|
|
3
|
-
import { SyntheticsClient } from "../SyntheticsClient";
|
|
4
|
-
export interface SyntheticsPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
-
client: Synthetics | SyntheticsClient;
|
|
6
|
-
}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
-
import { CreateCanaryCommandInput, CreateCanaryCommandOutput } from "../commands/CreateCanaryCommand";
|
|
4
|
-
import { DeleteCanaryCommandInput, DeleteCanaryCommandOutput } from "../commands/DeleteCanaryCommand";
|
|
5
|
-
import { DescribeCanariesCommandInput, DescribeCanariesCommandOutput } from "../commands/DescribeCanariesCommand";
|
|
6
|
-
import { DescribeCanariesLastRunCommandInput, DescribeCanariesLastRunCommandOutput } from "../commands/DescribeCanariesLastRunCommand";
|
|
7
|
-
import { DescribeRuntimeVersionsCommandInput, DescribeRuntimeVersionsCommandOutput } from "../commands/DescribeRuntimeVersionsCommand";
|
|
8
|
-
import { GetCanaryCommandInput, GetCanaryCommandOutput } from "../commands/GetCanaryCommand";
|
|
9
|
-
import { GetCanaryRunsCommandInput, GetCanaryRunsCommandOutput } from "../commands/GetCanaryRunsCommand";
|
|
10
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
11
|
-
import { StartCanaryCommandInput, StartCanaryCommandOutput } from "../commands/StartCanaryCommand";
|
|
12
|
-
import { StopCanaryCommandInput, StopCanaryCommandOutput } from "../commands/StopCanaryCommand";
|
|
13
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
14
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
15
|
-
import { UpdateCanaryCommandInput, UpdateCanaryCommandOutput } from "../commands/UpdateCanaryCommand";
|
|
16
|
-
export declare const serializeAws_restJson1CreateCanaryCommand: (input: CreateCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
|
-
export declare const serializeAws_restJson1DeleteCanaryCommand: (input: DeleteCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
18
|
-
export declare const serializeAws_restJson1DescribeCanariesCommand: (input: DescribeCanariesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
19
|
-
export declare const serializeAws_restJson1DescribeCanariesLastRunCommand: (input: DescribeCanariesLastRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
20
|
-
export declare const serializeAws_restJson1DescribeRuntimeVersionsCommand: (input: DescribeRuntimeVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
21
|
-
export declare const serializeAws_restJson1GetCanaryCommand: (input: GetCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
22
|
-
export declare const serializeAws_restJson1GetCanaryRunsCommand: (input: GetCanaryRunsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
|
-
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
|
-
export declare const serializeAws_restJson1StartCanaryCommand: (input: StartCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
|
-
export declare const serializeAws_restJson1StopCanaryCommand: (input: StopCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
-
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
|
-
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
|
-
export declare const serializeAws_restJson1UpdateCanaryCommand: (input: UpdateCanaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
|
-
export declare const deserializeAws_restJson1CreateCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCanaryCommandOutput>;
|
|
30
|
-
export declare const deserializeAws_restJson1DeleteCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCanaryCommandOutput>;
|
|
31
|
-
export declare const deserializeAws_restJson1DescribeCanariesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCanariesCommandOutput>;
|
|
32
|
-
export declare const deserializeAws_restJson1DescribeCanariesLastRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCanariesLastRunCommandOutput>;
|
|
33
|
-
export declare const deserializeAws_restJson1DescribeRuntimeVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRuntimeVersionsCommandOutput>;
|
|
34
|
-
export declare const deserializeAws_restJson1GetCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCanaryCommandOutput>;
|
|
35
|
-
export declare const deserializeAws_restJson1GetCanaryRunsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCanaryRunsCommandOutput>;
|
|
36
|
-
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
37
|
-
export declare const deserializeAws_restJson1StartCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartCanaryCommandOutput>;
|
|
38
|
-
export declare const deserializeAws_restJson1StopCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopCanaryCommandOutput>;
|
|
39
|
-
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
40
|
-
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
41
|
-
export declare const deserializeAws_restJson1UpdateCanaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCanaryCommandOutput>;
|