@aws-sdk/client-connectcampaigns 3.169.0 → 3.170.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/dist-types/ts3.4/ConnectCampaigns.d.ts +400 -115
- package/dist-types/ts3.4/ConnectCampaignsClient.d.ts +262 -95
- package/dist-types/ts3.4/commands/CreateCampaignCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteCampaignCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteConnectInstanceConfigCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteInstanceOnboardingJobCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeCampaignCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetCampaignStateBatchCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetCampaignStateCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetConnectInstanceConfigCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetInstanceOnboardingJobStatusCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListCampaignsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PauseCampaignCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/PutDialRequestBatchCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ResumeCampaignCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/StartCampaignCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/StartInstanceOnboardingJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StopCampaignCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateCampaignDialerConfigCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateCampaignNameCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/UpdateCampaignOutboundCallConfigCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +22 -22
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ConnectCampaignsServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +650 -595
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListCampaignsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +269 -68
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,595 +1,650 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { ConnectCampaignsServiceException as __BaseException } from "./ConnectCampaignsServiceException";
|
|
3
|
-
|
|
4
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
export declare type DialerConfig =
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
export interface
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
export interface
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
}
|
|
202
|
-
export declare enum CampaignState {
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
export interface
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
export interface
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
export interface
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
export
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
}
|
|
309
|
-
|
|
310
|
-
export interface
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
export
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
export interface
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
}
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
export interface
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
export
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ConnectCampaignsServiceException as __BaseException } from "./ConnectCampaignsServiceException";
|
|
3
|
+
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
|
|
8
|
+
xAmzErrorType?: string;
|
|
9
|
+
|
|
10
|
+
constructor(
|
|
11
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
12
|
+
);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export declare class ConflictException extends __BaseException {
|
|
16
|
+
readonly name: "ConflictException";
|
|
17
|
+
readonly $fault: "client";
|
|
18
|
+
|
|
19
|
+
xAmzErrorType?: string;
|
|
20
|
+
|
|
21
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface PredictiveDialerConfig {
|
|
25
|
+
bandwidthAllocation: number | undefined;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export interface ProgressiveDialerConfig {
|
|
29
|
+
bandwidthAllocation: number | undefined;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export declare type DialerConfig =
|
|
33
|
+
| DialerConfig.PredictiveDialerConfigMember
|
|
34
|
+
| DialerConfig.ProgressiveDialerConfigMember
|
|
35
|
+
| DialerConfig.$UnknownMember;
|
|
36
|
+
export declare namespace DialerConfig {
|
|
37
|
+
interface ProgressiveDialerConfigMember {
|
|
38
|
+
progressiveDialerConfig: ProgressiveDialerConfig;
|
|
39
|
+
predictiveDialerConfig?: never;
|
|
40
|
+
$unknown?: never;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
interface PredictiveDialerConfigMember {
|
|
44
|
+
progressiveDialerConfig?: never;
|
|
45
|
+
predictiveDialerConfig: PredictiveDialerConfig;
|
|
46
|
+
$unknown?: never;
|
|
47
|
+
}
|
|
48
|
+
interface $UnknownMember {
|
|
49
|
+
progressiveDialerConfig?: never;
|
|
50
|
+
predictiveDialerConfig?: never;
|
|
51
|
+
$unknown: [string, any];
|
|
52
|
+
}
|
|
53
|
+
interface Visitor<T> {
|
|
54
|
+
progressiveDialerConfig: (value: ProgressiveDialerConfig) => T;
|
|
55
|
+
predictiveDialerConfig: (value: PredictiveDialerConfig) => T;
|
|
56
|
+
_: (name: string, value: any) => T;
|
|
57
|
+
}
|
|
58
|
+
const visit: <T>(value: DialerConfig, visitor: Visitor<T>) => T;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export interface AnswerMachineDetectionConfig {
|
|
62
|
+
enableAnswerMachineDetection: boolean | undefined;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export interface OutboundCallConfig {
|
|
66
|
+
connectContactFlowId: string | undefined;
|
|
67
|
+
|
|
68
|
+
connectSourcePhoneNumber?: string;
|
|
69
|
+
|
|
70
|
+
connectQueueId: string | undefined;
|
|
71
|
+
|
|
72
|
+
answerMachineDetectionConfig?: AnswerMachineDetectionConfig;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export interface CreateCampaignRequest {
|
|
76
|
+
name: string | undefined;
|
|
77
|
+
|
|
78
|
+
connectInstanceId: string | undefined;
|
|
79
|
+
|
|
80
|
+
dialerConfig: DialerConfig | undefined;
|
|
81
|
+
|
|
82
|
+
outboundCallConfig: OutboundCallConfig | undefined;
|
|
83
|
+
|
|
84
|
+
tags?: Record<string, string>;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export interface CreateCampaignResponse {
|
|
88
|
+
id?: string;
|
|
89
|
+
|
|
90
|
+
arn?: string;
|
|
91
|
+
|
|
92
|
+
tags?: Record<string, string>;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
export declare class InternalServerException extends __BaseException {
|
|
96
|
+
readonly name: "InternalServerException";
|
|
97
|
+
readonly $fault: "server";
|
|
98
|
+
$retryable: {};
|
|
99
|
+
|
|
100
|
+
xAmzErrorType?: string;
|
|
101
|
+
|
|
102
|
+
constructor(
|
|
103
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
104
|
+
);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
108
|
+
readonly name: "ResourceNotFoundException";
|
|
109
|
+
readonly $fault: "client";
|
|
110
|
+
|
|
111
|
+
xAmzErrorType?: string;
|
|
112
|
+
|
|
113
|
+
constructor(
|
|
114
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
115
|
+
);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
119
|
+
readonly name: "ServiceQuotaExceededException";
|
|
120
|
+
readonly $fault: "client";
|
|
121
|
+
|
|
122
|
+
xAmzErrorType?: string;
|
|
123
|
+
|
|
124
|
+
constructor(
|
|
125
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
126
|
+
);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
export declare class ThrottlingException extends __BaseException {
|
|
130
|
+
readonly name: "ThrottlingException";
|
|
131
|
+
readonly $fault: "client";
|
|
132
|
+
$retryable: {};
|
|
133
|
+
|
|
134
|
+
xAmzErrorType?: string;
|
|
135
|
+
|
|
136
|
+
constructor(
|
|
137
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
138
|
+
);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
export declare class ValidationException extends __BaseException {
|
|
142
|
+
readonly name: "ValidationException";
|
|
143
|
+
readonly $fault: "client";
|
|
144
|
+
|
|
145
|
+
xAmzErrorType?: string;
|
|
146
|
+
|
|
147
|
+
constructor(
|
|
148
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
149
|
+
);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
export interface DeleteCampaignRequest {
|
|
153
|
+
id: string | undefined;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export interface DeleteConnectInstanceConfigRequest {
|
|
157
|
+
connectInstanceId: string | undefined;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
export declare class InvalidStateException extends __BaseException {
|
|
161
|
+
readonly name: "InvalidStateException";
|
|
162
|
+
readonly $fault: "client";
|
|
163
|
+
|
|
164
|
+
xAmzErrorType?: string;
|
|
165
|
+
|
|
166
|
+
constructor(
|
|
167
|
+
opts: __ExceptionOptionType<InvalidStateException, __BaseException>
|
|
168
|
+
);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
export interface DeleteInstanceOnboardingJobRequest {
|
|
172
|
+
connectInstanceId: string | undefined;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
export interface DescribeCampaignRequest {
|
|
176
|
+
id: string | undefined;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
export interface Campaign {
|
|
180
|
+
id: string | undefined;
|
|
181
|
+
|
|
182
|
+
arn: string | undefined;
|
|
183
|
+
|
|
184
|
+
name: string | undefined;
|
|
185
|
+
|
|
186
|
+
connectInstanceId: string | undefined;
|
|
187
|
+
|
|
188
|
+
dialerConfig: DialerConfig | undefined;
|
|
189
|
+
|
|
190
|
+
outboundCallConfig: OutboundCallConfig | undefined;
|
|
191
|
+
|
|
192
|
+
tags?: Record<string, string>;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
export interface DescribeCampaignResponse {
|
|
196
|
+
campaign?: Campaign;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
export interface GetCampaignStateRequest {
|
|
200
|
+
id: string | undefined;
|
|
201
|
+
}
|
|
202
|
+
export declare enum CampaignState {
|
|
203
|
+
FAILED = "Failed",
|
|
204
|
+
|
|
205
|
+
INITIALIZED = "Initialized",
|
|
206
|
+
|
|
207
|
+
PAUSED = "Paused",
|
|
208
|
+
|
|
209
|
+
RUNNING = "Running",
|
|
210
|
+
|
|
211
|
+
STOPPED = "Stopped",
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
export interface GetCampaignStateResponse {
|
|
215
|
+
state?: CampaignState | string;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
export interface GetCampaignStateBatchRequest {
|
|
219
|
+
campaignIds: string[] | undefined;
|
|
220
|
+
}
|
|
221
|
+
export declare enum GetCampaignStateBatchFailureCode {
|
|
222
|
+
RESOURCE_NOT_FOUND = "ResourceNotFound",
|
|
223
|
+
|
|
224
|
+
UNKNOWN_ERROR = "UnknownError",
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
export interface FailedCampaignStateResponse {
|
|
228
|
+
campaignId?: string;
|
|
229
|
+
|
|
230
|
+
failureCode?: GetCampaignStateBatchFailureCode | string;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
export interface SuccessfulCampaignStateResponse {
|
|
234
|
+
campaignId?: string;
|
|
235
|
+
|
|
236
|
+
state?: CampaignState | string;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
export interface GetCampaignStateBatchResponse {
|
|
240
|
+
successfulRequests?: SuccessfulCampaignStateResponse[];
|
|
241
|
+
|
|
242
|
+
failedRequests?: FailedCampaignStateResponse[];
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
export interface GetConnectInstanceConfigRequest {
|
|
246
|
+
connectInstanceId: string | undefined;
|
|
247
|
+
}
|
|
248
|
+
export declare enum EncryptionType {
|
|
249
|
+
KMS = "KMS",
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
export interface EncryptionConfig {
|
|
253
|
+
enabled: boolean | undefined;
|
|
254
|
+
|
|
255
|
+
encryptionType?: EncryptionType | string;
|
|
256
|
+
|
|
257
|
+
keyArn?: string;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
export interface InstanceConfig {
|
|
261
|
+
connectInstanceId: string | undefined;
|
|
262
|
+
|
|
263
|
+
serviceLinkedRoleArn: string | undefined;
|
|
264
|
+
|
|
265
|
+
encryptionConfig: EncryptionConfig | undefined;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
export interface GetConnectInstanceConfigResponse {
|
|
269
|
+
connectInstanceConfig?: InstanceConfig;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
export interface GetInstanceOnboardingJobStatusRequest {
|
|
273
|
+
connectInstanceId: string | undefined;
|
|
274
|
+
}
|
|
275
|
+
export declare enum InstanceOnboardingJobFailureCode {
|
|
276
|
+
EVENT_BRIDGE_ACCESS_DENIED = "EVENT_BRIDGE_ACCESS_DENIED",
|
|
277
|
+
EVENT_BRIDGE_MANAGED_RULE_LIMIT_EXCEEDED = "EVENT_BRIDGE_MANAGED_RULE_LIMIT_EXCEEDED",
|
|
278
|
+
IAM_ACCESS_DENIED = "IAM_ACCESS_DENIED",
|
|
279
|
+
INTERNAL_FAILURE = "INTERNAL_FAILURE",
|
|
280
|
+
KMS_ACCESS_DENIED = "KMS_ACCESS_DENIED",
|
|
281
|
+
KMS_KEY_NOT_FOUND = "KMS_KEY_NOT_FOUND",
|
|
282
|
+
}
|
|
283
|
+
export declare enum InstanceOnboardingJobStatusCode {
|
|
284
|
+
FAILED = "FAILED",
|
|
285
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
286
|
+
SUCCEEDED = "SUCCEEDED",
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
export interface InstanceOnboardingJobStatus {
|
|
290
|
+
connectInstanceId: string | undefined;
|
|
291
|
+
|
|
292
|
+
status: InstanceOnboardingJobStatusCode | string | undefined;
|
|
293
|
+
|
|
294
|
+
failureCode?: InstanceOnboardingJobFailureCode | string;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
export interface GetInstanceOnboardingJobStatusResponse {
|
|
298
|
+
connectInstanceOnboardingJobStatus?: InstanceOnboardingJobStatus;
|
|
299
|
+
}
|
|
300
|
+
export declare enum InstanceIdFilterOperator {
|
|
301
|
+
EQ = "Eq",
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
export interface InstanceIdFilter {
|
|
305
|
+
value: string | undefined;
|
|
306
|
+
|
|
307
|
+
operator: InstanceIdFilterOperator | string | undefined;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
export interface CampaignFilters {
|
|
311
|
+
instanceIdFilter?: InstanceIdFilter;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
export interface ListCampaignsRequest {
|
|
315
|
+
maxResults?: number;
|
|
316
|
+
|
|
317
|
+
nextToken?: string;
|
|
318
|
+
|
|
319
|
+
filters?: CampaignFilters;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
export interface CampaignSummary {
|
|
323
|
+
id: string | undefined;
|
|
324
|
+
|
|
325
|
+
arn: string | undefined;
|
|
326
|
+
|
|
327
|
+
name: string | undefined;
|
|
328
|
+
|
|
329
|
+
connectInstanceId: string | undefined;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
export interface ListCampaignsResponse {
|
|
333
|
+
nextToken?: string;
|
|
334
|
+
|
|
335
|
+
campaignSummaryList?: CampaignSummary[];
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
export interface ListTagsForResourceRequest {
|
|
339
|
+
arn: string | undefined;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
export interface ListTagsForResourceResponse {
|
|
343
|
+
tags?: Record<string, string>;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
export declare class InvalidCampaignStateException extends __BaseException {
|
|
347
|
+
readonly name: "InvalidCampaignStateException";
|
|
348
|
+
readonly $fault: "client";
|
|
349
|
+
|
|
350
|
+
state: CampaignState | string | undefined;
|
|
351
|
+
|
|
352
|
+
xAmzErrorType?: string;
|
|
353
|
+
|
|
354
|
+
constructor(
|
|
355
|
+
opts: __ExceptionOptionType<InvalidCampaignStateException, __BaseException>
|
|
356
|
+
);
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
export interface PauseCampaignRequest {
|
|
360
|
+
id: string | undefined;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
export interface DialRequest {
|
|
364
|
+
clientToken: string | undefined;
|
|
365
|
+
|
|
366
|
+
phoneNumber: string | undefined;
|
|
367
|
+
|
|
368
|
+
expirationTime: Date | undefined;
|
|
369
|
+
|
|
370
|
+
attributes: Record<string, string> | undefined;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
export interface PutDialRequestBatchRequest {
|
|
374
|
+
id: string | undefined;
|
|
375
|
+
|
|
376
|
+
dialRequests: DialRequest[] | undefined;
|
|
377
|
+
}
|
|
378
|
+
export declare enum FailureCode {
|
|
379
|
+
INVALID_INPUT = "InvalidInput",
|
|
380
|
+
|
|
381
|
+
REQUEST_THROTTLED = "RequestThrottled",
|
|
382
|
+
|
|
383
|
+
UNKNOWN_ERROR = "UnknownError",
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
export interface FailedRequest {
|
|
387
|
+
clientToken?: string;
|
|
388
|
+
|
|
389
|
+
id?: string;
|
|
390
|
+
|
|
391
|
+
failureCode?: FailureCode | string;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
export interface SuccessfulRequest {
|
|
395
|
+
clientToken?: string;
|
|
396
|
+
|
|
397
|
+
id?: string;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
export interface PutDialRequestBatchResponse {
|
|
401
|
+
successfulRequests?: SuccessfulRequest[];
|
|
402
|
+
|
|
403
|
+
failedRequests?: FailedRequest[];
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
export interface ResumeCampaignRequest {
|
|
407
|
+
id: string | undefined;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
export interface StartCampaignRequest {
|
|
411
|
+
id: string | undefined;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
export interface StartInstanceOnboardingJobRequest {
|
|
415
|
+
connectInstanceId: string | undefined;
|
|
416
|
+
|
|
417
|
+
encryptionConfig: EncryptionConfig | undefined;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
export interface StartInstanceOnboardingJobResponse {
|
|
421
|
+
connectInstanceOnboardingJobStatus?: InstanceOnboardingJobStatus;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
export interface StopCampaignRequest {
|
|
425
|
+
id: string | undefined;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
export interface TagResourceRequest {
|
|
429
|
+
arn: string | undefined;
|
|
430
|
+
|
|
431
|
+
tags: Record<string, string> | undefined;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
export interface UntagResourceRequest {
|
|
435
|
+
arn: string | undefined;
|
|
436
|
+
|
|
437
|
+
tagKeys: string[] | undefined;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
export interface UpdateCampaignDialerConfigRequest {
|
|
441
|
+
id: string | undefined;
|
|
442
|
+
|
|
443
|
+
dialerConfig: DialerConfig | undefined;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
export interface UpdateCampaignNameRequest {
|
|
447
|
+
id: string | undefined;
|
|
448
|
+
|
|
449
|
+
name: string | undefined;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
export interface UpdateCampaignOutboundCallConfigRequest {
|
|
453
|
+
id: string | undefined;
|
|
454
|
+
|
|
455
|
+
connectContactFlowId?: string;
|
|
456
|
+
|
|
457
|
+
connectSourcePhoneNumber?: string;
|
|
458
|
+
|
|
459
|
+
answerMachineDetectionConfig?: AnswerMachineDetectionConfig;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
export declare const PredictiveDialerConfigFilterSensitiveLog: (
|
|
463
|
+
obj: PredictiveDialerConfig
|
|
464
|
+
) => any;
|
|
465
|
+
|
|
466
|
+
export declare const ProgressiveDialerConfigFilterSensitiveLog: (
|
|
467
|
+
obj: ProgressiveDialerConfig
|
|
468
|
+
) => any;
|
|
469
|
+
|
|
470
|
+
export declare const DialerConfigFilterSensitiveLog: (obj: DialerConfig) => any;
|
|
471
|
+
|
|
472
|
+
export declare const AnswerMachineDetectionConfigFilterSensitiveLog: (
|
|
473
|
+
obj: AnswerMachineDetectionConfig
|
|
474
|
+
) => any;
|
|
475
|
+
|
|
476
|
+
export declare const OutboundCallConfigFilterSensitiveLog: (
|
|
477
|
+
obj: OutboundCallConfig
|
|
478
|
+
) => any;
|
|
479
|
+
|
|
480
|
+
export declare const CreateCampaignRequestFilterSensitiveLog: (
|
|
481
|
+
obj: CreateCampaignRequest
|
|
482
|
+
) => any;
|
|
483
|
+
|
|
484
|
+
export declare const CreateCampaignResponseFilterSensitiveLog: (
|
|
485
|
+
obj: CreateCampaignResponse
|
|
486
|
+
) => any;
|
|
487
|
+
|
|
488
|
+
export declare const DeleteCampaignRequestFilterSensitiveLog: (
|
|
489
|
+
obj: DeleteCampaignRequest
|
|
490
|
+
) => any;
|
|
491
|
+
|
|
492
|
+
export declare const DeleteConnectInstanceConfigRequestFilterSensitiveLog: (
|
|
493
|
+
obj: DeleteConnectInstanceConfigRequest
|
|
494
|
+
) => any;
|
|
495
|
+
|
|
496
|
+
export declare const DeleteInstanceOnboardingJobRequestFilterSensitiveLog: (
|
|
497
|
+
obj: DeleteInstanceOnboardingJobRequest
|
|
498
|
+
) => any;
|
|
499
|
+
|
|
500
|
+
export declare const DescribeCampaignRequestFilterSensitiveLog: (
|
|
501
|
+
obj: DescribeCampaignRequest
|
|
502
|
+
) => any;
|
|
503
|
+
|
|
504
|
+
export declare const CampaignFilterSensitiveLog: (obj: Campaign) => any;
|
|
505
|
+
|
|
506
|
+
export declare const DescribeCampaignResponseFilterSensitiveLog: (
|
|
507
|
+
obj: DescribeCampaignResponse
|
|
508
|
+
) => any;
|
|
509
|
+
|
|
510
|
+
export declare const GetCampaignStateRequestFilterSensitiveLog: (
|
|
511
|
+
obj: GetCampaignStateRequest
|
|
512
|
+
) => any;
|
|
513
|
+
|
|
514
|
+
export declare const GetCampaignStateResponseFilterSensitiveLog: (
|
|
515
|
+
obj: GetCampaignStateResponse
|
|
516
|
+
) => any;
|
|
517
|
+
|
|
518
|
+
export declare const GetCampaignStateBatchRequestFilterSensitiveLog: (
|
|
519
|
+
obj: GetCampaignStateBatchRequest
|
|
520
|
+
) => any;
|
|
521
|
+
|
|
522
|
+
export declare const FailedCampaignStateResponseFilterSensitiveLog: (
|
|
523
|
+
obj: FailedCampaignStateResponse
|
|
524
|
+
) => any;
|
|
525
|
+
|
|
526
|
+
export declare const SuccessfulCampaignStateResponseFilterSensitiveLog: (
|
|
527
|
+
obj: SuccessfulCampaignStateResponse
|
|
528
|
+
) => any;
|
|
529
|
+
|
|
530
|
+
export declare const GetCampaignStateBatchResponseFilterSensitiveLog: (
|
|
531
|
+
obj: GetCampaignStateBatchResponse
|
|
532
|
+
) => any;
|
|
533
|
+
|
|
534
|
+
export declare const GetConnectInstanceConfigRequestFilterSensitiveLog: (
|
|
535
|
+
obj: GetConnectInstanceConfigRequest
|
|
536
|
+
) => any;
|
|
537
|
+
|
|
538
|
+
export declare const EncryptionConfigFilterSensitiveLog: (
|
|
539
|
+
obj: EncryptionConfig
|
|
540
|
+
) => any;
|
|
541
|
+
|
|
542
|
+
export declare const InstanceConfigFilterSensitiveLog: (
|
|
543
|
+
obj: InstanceConfig
|
|
544
|
+
) => any;
|
|
545
|
+
|
|
546
|
+
export declare const GetConnectInstanceConfigResponseFilterSensitiveLog: (
|
|
547
|
+
obj: GetConnectInstanceConfigResponse
|
|
548
|
+
) => any;
|
|
549
|
+
|
|
550
|
+
export declare const GetInstanceOnboardingJobStatusRequestFilterSensitiveLog: (
|
|
551
|
+
obj: GetInstanceOnboardingJobStatusRequest
|
|
552
|
+
) => any;
|
|
553
|
+
|
|
554
|
+
export declare const InstanceOnboardingJobStatusFilterSensitiveLog: (
|
|
555
|
+
obj: InstanceOnboardingJobStatus
|
|
556
|
+
) => any;
|
|
557
|
+
|
|
558
|
+
export declare const GetInstanceOnboardingJobStatusResponseFilterSensitiveLog: (
|
|
559
|
+
obj: GetInstanceOnboardingJobStatusResponse
|
|
560
|
+
) => any;
|
|
561
|
+
|
|
562
|
+
export declare const InstanceIdFilterFilterSensitiveLog: (
|
|
563
|
+
obj: InstanceIdFilter
|
|
564
|
+
) => any;
|
|
565
|
+
|
|
566
|
+
export declare const CampaignFiltersFilterSensitiveLog: (
|
|
567
|
+
obj: CampaignFilters
|
|
568
|
+
) => any;
|
|
569
|
+
|
|
570
|
+
export declare const ListCampaignsRequestFilterSensitiveLog: (
|
|
571
|
+
obj: ListCampaignsRequest
|
|
572
|
+
) => any;
|
|
573
|
+
|
|
574
|
+
export declare const CampaignSummaryFilterSensitiveLog: (
|
|
575
|
+
obj: CampaignSummary
|
|
576
|
+
) => any;
|
|
577
|
+
|
|
578
|
+
export declare const ListCampaignsResponseFilterSensitiveLog: (
|
|
579
|
+
obj: ListCampaignsResponse
|
|
580
|
+
) => any;
|
|
581
|
+
|
|
582
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
583
|
+
obj: ListTagsForResourceRequest
|
|
584
|
+
) => any;
|
|
585
|
+
|
|
586
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
587
|
+
obj: ListTagsForResourceResponse
|
|
588
|
+
) => any;
|
|
589
|
+
|
|
590
|
+
export declare const PauseCampaignRequestFilterSensitiveLog: (
|
|
591
|
+
obj: PauseCampaignRequest
|
|
592
|
+
) => any;
|
|
593
|
+
|
|
594
|
+
export declare const DialRequestFilterSensitiveLog: (obj: DialRequest) => any;
|
|
595
|
+
|
|
596
|
+
export declare const PutDialRequestBatchRequestFilterSensitiveLog: (
|
|
597
|
+
obj: PutDialRequestBatchRequest
|
|
598
|
+
) => any;
|
|
599
|
+
|
|
600
|
+
export declare const FailedRequestFilterSensitiveLog: (
|
|
601
|
+
obj: FailedRequest
|
|
602
|
+
) => any;
|
|
603
|
+
|
|
604
|
+
export declare const SuccessfulRequestFilterSensitiveLog: (
|
|
605
|
+
obj: SuccessfulRequest
|
|
606
|
+
) => any;
|
|
607
|
+
|
|
608
|
+
export declare const PutDialRequestBatchResponseFilterSensitiveLog: (
|
|
609
|
+
obj: PutDialRequestBatchResponse
|
|
610
|
+
) => any;
|
|
611
|
+
|
|
612
|
+
export declare const ResumeCampaignRequestFilterSensitiveLog: (
|
|
613
|
+
obj: ResumeCampaignRequest
|
|
614
|
+
) => any;
|
|
615
|
+
|
|
616
|
+
export declare const StartCampaignRequestFilterSensitiveLog: (
|
|
617
|
+
obj: StartCampaignRequest
|
|
618
|
+
) => any;
|
|
619
|
+
|
|
620
|
+
export declare const StartInstanceOnboardingJobRequestFilterSensitiveLog: (
|
|
621
|
+
obj: StartInstanceOnboardingJobRequest
|
|
622
|
+
) => any;
|
|
623
|
+
|
|
624
|
+
export declare const StartInstanceOnboardingJobResponseFilterSensitiveLog: (
|
|
625
|
+
obj: StartInstanceOnboardingJobResponse
|
|
626
|
+
) => any;
|
|
627
|
+
|
|
628
|
+
export declare const StopCampaignRequestFilterSensitiveLog: (
|
|
629
|
+
obj: StopCampaignRequest
|
|
630
|
+
) => any;
|
|
631
|
+
|
|
632
|
+
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
633
|
+
obj: TagResourceRequest
|
|
634
|
+
) => any;
|
|
635
|
+
|
|
636
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
637
|
+
obj: UntagResourceRequest
|
|
638
|
+
) => any;
|
|
639
|
+
|
|
640
|
+
export declare const UpdateCampaignDialerConfigRequestFilterSensitiveLog: (
|
|
641
|
+
obj: UpdateCampaignDialerConfigRequest
|
|
642
|
+
) => any;
|
|
643
|
+
|
|
644
|
+
export declare const UpdateCampaignNameRequestFilterSensitiveLog: (
|
|
645
|
+
obj: UpdateCampaignNameRequest
|
|
646
|
+
) => any;
|
|
647
|
+
|
|
648
|
+
export declare const UpdateCampaignOutboundCallConfigRequestFilterSensitiveLog: (
|
|
649
|
+
obj: UpdateCampaignOutboundCallConfigRequest
|
|
650
|
+
) => any;
|