@aws-sdk/client-ssm-contacts 3.128.0 → 3.137.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 +30 -0
- package/dist-cjs/commands/AcceptPageCommand.js +2 -2
- package/dist-cjs/commands/ActivateContactChannelCommand.js +2 -2
- package/dist-cjs/commands/CreateContactChannelCommand.js +2 -2
- package/dist-cjs/commands/CreateContactCommand.js +2 -2
- package/dist-cjs/commands/DeactivateContactChannelCommand.js +2 -2
- package/dist-cjs/commands/DeleteContactChannelCommand.js +2 -2
- package/dist-cjs/commands/DeleteContactCommand.js +2 -2
- package/dist-cjs/commands/DescribeEngagementCommand.js +2 -2
- package/dist-cjs/commands/DescribePageCommand.js +2 -2
- package/dist-cjs/commands/GetContactChannelCommand.js +2 -2
- package/dist-cjs/commands/GetContactCommand.js +2 -2
- package/dist-cjs/commands/GetContactPolicyCommand.js +2 -2
- package/dist-cjs/commands/ListContactChannelsCommand.js +2 -2
- package/dist-cjs/commands/ListContactsCommand.js +2 -2
- package/dist-cjs/commands/ListEngagementsCommand.js +2 -2
- package/dist-cjs/commands/ListPageReceiptsCommand.js +2 -2
- package/dist-cjs/commands/ListPagesByContactCommand.js +2 -2
- package/dist-cjs/commands/ListPagesByEngagementCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/PutContactPolicyCommand.js +2 -2
- package/dist-cjs/commands/SendActivationCodeCommand.js +2 -2
- package/dist-cjs/commands/StartEngagementCommand.js +2 -2
- package/dist-cjs/commands/StopEngagementCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateContactChannelCommand.js +2 -2
- package/dist-cjs/commands/UpdateContactCommand.js +2 -2
- package/dist-cjs/models/models_0.js +274 -410
- package/dist-cjs/protocols/Aws_json1_1.js +3 -0
- package/dist-es/commands/AcceptPageCommand.js +3 -3
- package/dist-es/commands/ActivateContactChannelCommand.js +3 -3
- package/dist-es/commands/CreateContactChannelCommand.js +3 -3
- package/dist-es/commands/CreateContactCommand.js +3 -3
- package/dist-es/commands/DeactivateContactChannelCommand.js +3 -3
- package/dist-es/commands/DeleteContactChannelCommand.js +3 -3
- package/dist-es/commands/DeleteContactCommand.js +3 -3
- package/dist-es/commands/DescribeEngagementCommand.js +3 -3
- package/dist-es/commands/DescribePageCommand.js +3 -3
- package/dist-es/commands/GetContactChannelCommand.js +3 -3
- package/dist-es/commands/GetContactCommand.js +3 -3
- package/dist-es/commands/GetContactPolicyCommand.js +3 -3
- package/dist-es/commands/ListContactChannelsCommand.js +3 -3
- package/dist-es/commands/ListContactsCommand.js +3 -3
- package/dist-es/commands/ListEngagementsCommand.js +3 -3
- package/dist-es/commands/ListPageReceiptsCommand.js +3 -3
- package/dist-es/commands/ListPagesByContactCommand.js +3 -3
- package/dist-es/commands/ListPagesByEngagementCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/PutContactPolicyCommand.js +3 -3
- package/dist-es/commands/SendActivationCodeCommand.js +3 -3
- package/dist-es/commands/StartEngagementCommand.js +3 -3
- package/dist-es/commands/StopEngagementCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateContactChannelCommand.js +3 -3
- package/dist-es/commands/UpdateContactCommand.js +3 -3
- package/dist-es/models/models_0.js +68 -272
- package/dist-es/protocols/Aws_json1_1.js +3 -0
- package/dist-types/models/models_0.d.ts +272 -408
- package/dist-types/ts3.4/models/models_0.d.ts +136 -272
- package/package.json +9 -9
|
@@ -22,16 +22,8 @@ export interface AcceptPageRequest {
|
|
|
22
22
|
|
|
23
23
|
AcceptCodeValidation?: AcceptCodeValidation | string;
|
|
24
24
|
}
|
|
25
|
-
export declare namespace AcceptPageRequest {
|
|
26
|
-
|
|
27
|
-
const filterSensitiveLog: (obj: AcceptPageRequest) => any;
|
|
28
|
-
}
|
|
29
25
|
export interface AcceptPageResult {
|
|
30
26
|
}
|
|
31
|
-
export declare namespace AcceptPageResult {
|
|
32
|
-
|
|
33
|
-
const filterSensitiveLog: (obj: AcceptPageResult) => any;
|
|
34
|
-
}
|
|
35
27
|
|
|
36
28
|
export declare class AccessDeniedException extends __BaseException {
|
|
37
29
|
readonly name: "AccessDeniedException";
|
|
@@ -83,10 +75,6 @@ export interface ValidationExceptionField {
|
|
|
83
75
|
|
|
84
76
|
Message: string | undefined;
|
|
85
77
|
}
|
|
86
|
-
export declare namespace ValidationExceptionField {
|
|
87
|
-
|
|
88
|
-
const filterSensitiveLog: (obj: ValidationExceptionField) => any;
|
|
89
|
-
}
|
|
90
78
|
export declare enum ValidationExceptionReason {
|
|
91
79
|
CANNOT_PARSE = "CANNOT_PARSE",
|
|
92
80
|
FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
|
|
@@ -111,16 +99,8 @@ export interface ActivateContactChannelRequest {
|
|
|
111
99
|
|
|
112
100
|
ActivationCode: string | undefined;
|
|
113
101
|
}
|
|
114
|
-
export declare namespace ActivateContactChannelRequest {
|
|
115
|
-
|
|
116
|
-
const filterSensitiveLog: (obj: ActivateContactChannelRequest) => any;
|
|
117
|
-
}
|
|
118
102
|
export interface ActivateContactChannelResult {
|
|
119
103
|
}
|
|
120
|
-
export declare namespace ActivateContactChannelResult {
|
|
121
|
-
|
|
122
|
-
const filterSensitiveLog: (obj: ActivateContactChannelResult) => any;
|
|
123
|
-
}
|
|
124
104
|
export declare enum ActivationStatus {
|
|
125
105
|
ACTIVATED = "ACTIVATED",
|
|
126
106
|
NOT_ACTIVATED = "NOT_ACTIVATED"
|
|
@@ -132,10 +112,6 @@ export interface ChannelTargetInfo {
|
|
|
132
112
|
|
|
133
113
|
RetryIntervalInMinutes?: number;
|
|
134
114
|
}
|
|
135
|
-
export declare namespace ChannelTargetInfo {
|
|
136
|
-
|
|
137
|
-
const filterSensitiveLog: (obj: ChannelTargetInfo) => any;
|
|
138
|
-
}
|
|
139
115
|
export declare enum ChannelType {
|
|
140
116
|
EMAIL = "EMAIL",
|
|
141
117
|
SMS = "SMS",
|
|
@@ -168,19 +144,11 @@ export interface Contact {
|
|
|
168
144
|
|
|
169
145
|
Type: ContactType | string | undefined;
|
|
170
146
|
}
|
|
171
|
-
export declare namespace Contact {
|
|
172
|
-
|
|
173
|
-
const filterSensitiveLog: (obj: Contact) => any;
|
|
174
|
-
}
|
|
175
147
|
|
|
176
148
|
export interface ContactChannelAddress {
|
|
177
149
|
|
|
178
150
|
SimpleAddress?: string;
|
|
179
151
|
}
|
|
180
|
-
export declare namespace ContactChannelAddress {
|
|
181
|
-
|
|
182
|
-
const filterSensitiveLog: (obj: ContactChannelAddress) => any;
|
|
183
|
-
}
|
|
184
152
|
|
|
185
153
|
export interface ContactChannel {
|
|
186
154
|
|
|
@@ -196,10 +164,6 @@ export interface ContactChannel {
|
|
|
196
164
|
|
|
197
165
|
ActivationStatus: ActivationStatus | string | undefined;
|
|
198
166
|
}
|
|
199
|
-
export declare namespace ContactChannel {
|
|
200
|
-
|
|
201
|
-
const filterSensitiveLog: (obj: ContactChannel) => any;
|
|
202
|
-
}
|
|
203
167
|
|
|
204
168
|
export interface ContactTargetInfo {
|
|
205
169
|
|
|
@@ -207,10 +171,6 @@ export interface ContactTargetInfo {
|
|
|
207
171
|
|
|
208
172
|
IsEssential: boolean | undefined;
|
|
209
173
|
}
|
|
210
|
-
export declare namespace ContactTargetInfo {
|
|
211
|
-
|
|
212
|
-
const filterSensitiveLog: (obj: ContactTargetInfo) => any;
|
|
213
|
-
}
|
|
214
174
|
|
|
215
175
|
export interface Target {
|
|
216
176
|
|
|
@@ -218,10 +178,6 @@ export interface Target {
|
|
|
218
178
|
|
|
219
179
|
ContactTargetInfo?: ContactTargetInfo;
|
|
220
180
|
}
|
|
221
|
-
export declare namespace Target {
|
|
222
|
-
|
|
223
|
-
const filterSensitiveLog: (obj: Target) => any;
|
|
224
|
-
}
|
|
225
181
|
|
|
226
182
|
export interface Stage {
|
|
227
183
|
|
|
@@ -229,19 +185,11 @@ export interface Stage {
|
|
|
229
185
|
|
|
230
186
|
Targets: Target[] | undefined;
|
|
231
187
|
}
|
|
232
|
-
export declare namespace Stage {
|
|
233
|
-
|
|
234
|
-
const filterSensitiveLog: (obj: Stage) => any;
|
|
235
|
-
}
|
|
236
188
|
|
|
237
189
|
export interface Plan {
|
|
238
190
|
|
|
239
191
|
Stages: Stage[] | undefined;
|
|
240
192
|
}
|
|
241
|
-
export declare namespace Plan {
|
|
242
|
-
|
|
243
|
-
const filterSensitiveLog: (obj: Plan) => any;
|
|
244
|
-
}
|
|
245
193
|
|
|
246
194
|
export interface Tag {
|
|
247
195
|
|
|
@@ -249,10 +197,6 @@ export interface Tag {
|
|
|
249
197
|
|
|
250
198
|
Value?: string;
|
|
251
199
|
}
|
|
252
|
-
export declare namespace Tag {
|
|
253
|
-
|
|
254
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
255
|
-
}
|
|
256
200
|
export interface CreateContactRequest {
|
|
257
201
|
|
|
258
202
|
Alias: string | undefined;
|
|
@@ -267,18 +211,10 @@ export interface CreateContactRequest {
|
|
|
267
211
|
|
|
268
212
|
IdempotencyToken?: string;
|
|
269
213
|
}
|
|
270
|
-
export declare namespace CreateContactRequest {
|
|
271
|
-
|
|
272
|
-
const filterSensitiveLog: (obj: CreateContactRequest) => any;
|
|
273
|
-
}
|
|
274
214
|
export interface CreateContactResult {
|
|
275
215
|
|
|
276
216
|
ContactArn: string | undefined;
|
|
277
217
|
}
|
|
278
|
-
export declare namespace CreateContactResult {
|
|
279
|
-
|
|
280
|
-
const filterSensitiveLog: (obj: CreateContactResult) => any;
|
|
281
|
-
}
|
|
282
218
|
|
|
283
219
|
export declare class DataEncryptionException extends __BaseException {
|
|
284
220
|
readonly name: "DataEncryptionException";
|
|
@@ -317,68 +253,32 @@ export interface CreateContactChannelRequest {
|
|
|
317
253
|
|
|
318
254
|
IdempotencyToken?: string;
|
|
319
255
|
}
|
|
320
|
-
export declare namespace CreateContactChannelRequest {
|
|
321
|
-
|
|
322
|
-
const filterSensitiveLog: (obj: CreateContactChannelRequest) => any;
|
|
323
|
-
}
|
|
324
256
|
export interface CreateContactChannelResult {
|
|
325
257
|
|
|
326
258
|
ContactChannelArn: string | undefined;
|
|
327
259
|
}
|
|
328
|
-
export declare namespace CreateContactChannelResult {
|
|
329
|
-
|
|
330
|
-
const filterSensitiveLog: (obj: CreateContactChannelResult) => any;
|
|
331
|
-
}
|
|
332
260
|
export interface DeactivateContactChannelRequest {
|
|
333
261
|
|
|
334
262
|
ContactChannelId: string | undefined;
|
|
335
263
|
}
|
|
336
|
-
export declare namespace DeactivateContactChannelRequest {
|
|
337
|
-
|
|
338
|
-
const filterSensitiveLog: (obj: DeactivateContactChannelRequest) => any;
|
|
339
|
-
}
|
|
340
264
|
export interface DeactivateContactChannelResult {
|
|
341
265
|
}
|
|
342
|
-
export declare namespace DeactivateContactChannelResult {
|
|
343
|
-
|
|
344
|
-
const filterSensitiveLog: (obj: DeactivateContactChannelResult) => any;
|
|
345
|
-
}
|
|
346
266
|
export interface DeleteContactRequest {
|
|
347
267
|
|
|
348
268
|
ContactId: string | undefined;
|
|
349
269
|
}
|
|
350
|
-
export declare namespace DeleteContactRequest {
|
|
351
|
-
|
|
352
|
-
const filterSensitiveLog: (obj: DeleteContactRequest) => any;
|
|
353
|
-
}
|
|
354
270
|
export interface DeleteContactResult {
|
|
355
271
|
}
|
|
356
|
-
export declare namespace DeleteContactResult {
|
|
357
|
-
|
|
358
|
-
const filterSensitiveLog: (obj: DeleteContactResult) => any;
|
|
359
|
-
}
|
|
360
272
|
export interface DeleteContactChannelRequest {
|
|
361
273
|
|
|
362
274
|
ContactChannelId: string | undefined;
|
|
363
275
|
}
|
|
364
|
-
export declare namespace DeleteContactChannelRequest {
|
|
365
|
-
|
|
366
|
-
const filterSensitiveLog: (obj: DeleteContactChannelRequest) => any;
|
|
367
|
-
}
|
|
368
276
|
export interface DeleteContactChannelResult {
|
|
369
277
|
}
|
|
370
|
-
export declare namespace DeleteContactChannelResult {
|
|
371
|
-
|
|
372
|
-
const filterSensitiveLog: (obj: DeleteContactChannelResult) => any;
|
|
373
|
-
}
|
|
374
278
|
export interface DescribeEngagementRequest {
|
|
375
279
|
|
|
376
280
|
EngagementId: string | undefined;
|
|
377
281
|
}
|
|
378
|
-
export declare namespace DescribeEngagementRequest {
|
|
379
|
-
|
|
380
|
-
const filterSensitiveLog: (obj: DescribeEngagementRequest) => any;
|
|
381
|
-
}
|
|
382
282
|
export interface DescribeEngagementResult {
|
|
383
283
|
|
|
384
284
|
ContactArn: string | undefined;
|
|
@@ -401,18 +301,10 @@ export interface DescribeEngagementResult {
|
|
|
401
301
|
|
|
402
302
|
StopTime?: Date;
|
|
403
303
|
}
|
|
404
|
-
export declare namespace DescribeEngagementResult {
|
|
405
|
-
|
|
406
|
-
const filterSensitiveLog: (obj: DescribeEngagementResult) => any;
|
|
407
|
-
}
|
|
408
304
|
export interface DescribePageRequest {
|
|
409
305
|
|
|
410
306
|
PageId: string | undefined;
|
|
411
307
|
}
|
|
412
|
-
export declare namespace DescribePageRequest {
|
|
413
|
-
|
|
414
|
-
const filterSensitiveLog: (obj: DescribePageRequest) => any;
|
|
415
|
-
}
|
|
416
308
|
export interface DescribePageResult {
|
|
417
309
|
|
|
418
310
|
PageArn: string | undefined;
|
|
@@ -439,10 +331,6 @@ export interface DescribePageResult {
|
|
|
439
331
|
|
|
440
332
|
DeliveryTime?: Date;
|
|
441
333
|
}
|
|
442
|
-
export declare namespace DescribePageResult {
|
|
443
|
-
|
|
444
|
-
const filterSensitiveLog: (obj: DescribePageResult) => any;
|
|
445
|
-
}
|
|
446
334
|
|
|
447
335
|
export interface Engagement {
|
|
448
336
|
|
|
@@ -458,18 +346,10 @@ export interface Engagement {
|
|
|
458
346
|
|
|
459
347
|
StopTime?: Date;
|
|
460
348
|
}
|
|
461
|
-
export declare namespace Engagement {
|
|
462
|
-
|
|
463
|
-
const filterSensitiveLog: (obj: Engagement) => any;
|
|
464
|
-
}
|
|
465
349
|
export interface GetContactRequest {
|
|
466
350
|
|
|
467
351
|
ContactId: string | undefined;
|
|
468
352
|
}
|
|
469
|
-
export declare namespace GetContactRequest {
|
|
470
|
-
|
|
471
|
-
const filterSensitiveLog: (obj: GetContactRequest) => any;
|
|
472
|
-
}
|
|
473
353
|
export interface GetContactResult {
|
|
474
354
|
|
|
475
355
|
ContactArn: string | undefined;
|
|
@@ -482,18 +362,10 @@ export interface GetContactResult {
|
|
|
482
362
|
|
|
483
363
|
Plan: Plan | undefined;
|
|
484
364
|
}
|
|
485
|
-
export declare namespace GetContactResult {
|
|
486
|
-
|
|
487
|
-
const filterSensitiveLog: (obj: GetContactResult) => any;
|
|
488
|
-
}
|
|
489
365
|
export interface GetContactChannelRequest {
|
|
490
366
|
|
|
491
367
|
ContactChannelId: string | undefined;
|
|
492
368
|
}
|
|
493
|
-
export declare namespace GetContactChannelRequest {
|
|
494
|
-
|
|
495
|
-
const filterSensitiveLog: (obj: GetContactChannelRequest) => any;
|
|
496
|
-
}
|
|
497
369
|
export interface GetContactChannelResult {
|
|
498
370
|
|
|
499
371
|
ContactArn: string | undefined;
|
|
@@ -508,28 +380,16 @@ export interface GetContactChannelResult {
|
|
|
508
380
|
|
|
509
381
|
ActivationStatus?: ActivationStatus | string;
|
|
510
382
|
}
|
|
511
|
-
export declare namespace GetContactChannelResult {
|
|
512
|
-
|
|
513
|
-
const filterSensitiveLog: (obj: GetContactChannelResult) => any;
|
|
514
|
-
}
|
|
515
383
|
export interface GetContactPolicyRequest {
|
|
516
384
|
|
|
517
385
|
ContactArn: string | undefined;
|
|
518
386
|
}
|
|
519
|
-
export declare namespace GetContactPolicyRequest {
|
|
520
|
-
|
|
521
|
-
const filterSensitiveLog: (obj: GetContactPolicyRequest) => any;
|
|
522
|
-
}
|
|
523
387
|
export interface GetContactPolicyResult {
|
|
524
388
|
|
|
525
389
|
ContactArn?: string;
|
|
526
390
|
|
|
527
391
|
Policy?: string;
|
|
528
392
|
}
|
|
529
|
-
export declare namespace GetContactPolicyResult {
|
|
530
|
-
|
|
531
|
-
const filterSensitiveLog: (obj: GetContactPolicyResult) => any;
|
|
532
|
-
}
|
|
533
393
|
export interface ListContactChannelsRequest {
|
|
534
394
|
|
|
535
395
|
ContactId: string | undefined;
|
|
@@ -538,20 +398,12 @@ export interface ListContactChannelsRequest {
|
|
|
538
398
|
|
|
539
399
|
MaxResults?: number;
|
|
540
400
|
}
|
|
541
|
-
export declare namespace ListContactChannelsRequest {
|
|
542
|
-
|
|
543
|
-
const filterSensitiveLog: (obj: ListContactChannelsRequest) => any;
|
|
544
|
-
}
|
|
545
401
|
export interface ListContactChannelsResult {
|
|
546
402
|
|
|
547
403
|
NextToken?: string;
|
|
548
404
|
|
|
549
405
|
ContactChannels: ContactChannel[] | undefined;
|
|
550
406
|
}
|
|
551
|
-
export declare namespace ListContactChannelsResult {
|
|
552
|
-
|
|
553
|
-
const filterSensitiveLog: (obj: ListContactChannelsResult) => any;
|
|
554
|
-
}
|
|
555
407
|
export interface ListContactsRequest {
|
|
556
408
|
|
|
557
409
|
NextToken?: string;
|
|
@@ -562,20 +414,12 @@ export interface ListContactsRequest {
|
|
|
562
414
|
|
|
563
415
|
Type?: ContactType | string;
|
|
564
416
|
}
|
|
565
|
-
export declare namespace ListContactsRequest {
|
|
566
|
-
|
|
567
|
-
const filterSensitiveLog: (obj: ListContactsRequest) => any;
|
|
568
|
-
}
|
|
569
417
|
export interface ListContactsResult {
|
|
570
418
|
|
|
571
419
|
NextToken?: string;
|
|
572
420
|
|
|
573
421
|
Contacts?: Contact[];
|
|
574
422
|
}
|
|
575
|
-
export declare namespace ListContactsResult {
|
|
576
|
-
|
|
577
|
-
const filterSensitiveLog: (obj: ListContactsResult) => any;
|
|
578
|
-
}
|
|
579
423
|
|
|
580
424
|
export interface TimeRange {
|
|
581
425
|
|
|
@@ -583,10 +427,6 @@ export interface TimeRange {
|
|
|
583
427
|
|
|
584
428
|
EndTime?: Date;
|
|
585
429
|
}
|
|
586
|
-
export declare namespace TimeRange {
|
|
587
|
-
|
|
588
|
-
const filterSensitiveLog: (obj: TimeRange) => any;
|
|
589
|
-
}
|
|
590
430
|
export interface ListEngagementsRequest {
|
|
591
431
|
|
|
592
432
|
NextToken?: string;
|
|
@@ -597,20 +437,12 @@ export interface ListEngagementsRequest {
|
|
|
597
437
|
|
|
598
438
|
TimeRangeValue?: TimeRange;
|
|
599
439
|
}
|
|
600
|
-
export declare namespace ListEngagementsRequest {
|
|
601
|
-
|
|
602
|
-
const filterSensitiveLog: (obj: ListEngagementsRequest) => any;
|
|
603
|
-
}
|
|
604
440
|
export interface ListEngagementsResult {
|
|
605
441
|
|
|
606
442
|
NextToken?: string;
|
|
607
443
|
|
|
608
444
|
Engagements: Engagement[] | undefined;
|
|
609
445
|
}
|
|
610
|
-
export declare namespace ListEngagementsResult {
|
|
611
|
-
|
|
612
|
-
const filterSensitiveLog: (obj: ListEngagementsResult) => any;
|
|
613
|
-
}
|
|
614
446
|
export interface ListPageReceiptsRequest {
|
|
615
447
|
|
|
616
448
|
PageId: string | undefined;
|
|
@@ -619,10 +451,6 @@ export interface ListPageReceiptsRequest {
|
|
|
619
451
|
|
|
620
452
|
MaxResults?: number;
|
|
621
453
|
}
|
|
622
|
-
export declare namespace ListPageReceiptsRequest {
|
|
623
|
-
|
|
624
|
-
const filterSensitiveLog: (obj: ListPageReceiptsRequest) => any;
|
|
625
|
-
}
|
|
626
454
|
export declare enum ReceiptType {
|
|
627
455
|
DELIVERED = "DELIVERED",
|
|
628
456
|
ERROR = "ERROR",
|
|
@@ -641,20 +469,12 @@ export interface Receipt {
|
|
|
641
469
|
|
|
642
470
|
ReceiptTime: Date | undefined;
|
|
643
471
|
}
|
|
644
|
-
export declare namespace Receipt {
|
|
645
|
-
|
|
646
|
-
const filterSensitiveLog: (obj: Receipt) => any;
|
|
647
|
-
}
|
|
648
472
|
export interface ListPageReceiptsResult {
|
|
649
473
|
|
|
650
474
|
NextToken?: string;
|
|
651
475
|
|
|
652
476
|
Receipts?: Receipt[];
|
|
653
477
|
}
|
|
654
|
-
export declare namespace ListPageReceiptsResult {
|
|
655
|
-
|
|
656
|
-
const filterSensitiveLog: (obj: ListPageReceiptsResult) => any;
|
|
657
|
-
}
|
|
658
478
|
export interface ListPagesByContactRequest {
|
|
659
479
|
|
|
660
480
|
ContactId: string | undefined;
|
|
@@ -663,10 +483,6 @@ export interface ListPagesByContactRequest {
|
|
|
663
483
|
|
|
664
484
|
MaxResults?: number;
|
|
665
485
|
}
|
|
666
|
-
export declare namespace ListPagesByContactRequest {
|
|
667
|
-
|
|
668
|
-
const filterSensitiveLog: (obj: ListPagesByContactRequest) => any;
|
|
669
|
-
}
|
|
670
486
|
|
|
671
487
|
export interface Page {
|
|
672
488
|
|
|
@@ -686,20 +502,12 @@ export interface Page {
|
|
|
686
502
|
|
|
687
503
|
ReadTime?: Date;
|
|
688
504
|
}
|
|
689
|
-
export declare namespace Page {
|
|
690
|
-
|
|
691
|
-
const filterSensitiveLog: (obj: Page) => any;
|
|
692
|
-
}
|
|
693
505
|
export interface ListPagesByContactResult {
|
|
694
506
|
|
|
695
507
|
NextToken?: string;
|
|
696
508
|
|
|
697
509
|
Pages: Page[] | undefined;
|
|
698
510
|
}
|
|
699
|
-
export declare namespace ListPagesByContactResult {
|
|
700
|
-
|
|
701
|
-
const filterSensitiveLog: (obj: ListPagesByContactResult) => any;
|
|
702
|
-
}
|
|
703
511
|
export interface ListPagesByEngagementRequest {
|
|
704
512
|
|
|
705
513
|
EngagementId: string | undefined;
|
|
@@ -708,66 +516,34 @@ export interface ListPagesByEngagementRequest {
|
|
|
708
516
|
|
|
709
517
|
MaxResults?: number;
|
|
710
518
|
}
|
|
711
|
-
export declare namespace ListPagesByEngagementRequest {
|
|
712
|
-
|
|
713
|
-
const filterSensitiveLog: (obj: ListPagesByEngagementRequest) => any;
|
|
714
|
-
}
|
|
715
519
|
export interface ListPagesByEngagementResult {
|
|
716
520
|
|
|
717
521
|
NextToken?: string;
|
|
718
522
|
|
|
719
523
|
Pages: Page[] | undefined;
|
|
720
524
|
}
|
|
721
|
-
export declare namespace ListPagesByEngagementResult {
|
|
722
|
-
|
|
723
|
-
const filterSensitiveLog: (obj: ListPagesByEngagementResult) => any;
|
|
724
|
-
}
|
|
725
525
|
export interface ListTagsForResourceRequest {
|
|
726
526
|
|
|
727
527
|
ResourceARN: string | undefined;
|
|
728
528
|
}
|
|
729
|
-
export declare namespace ListTagsForResourceRequest {
|
|
730
|
-
|
|
731
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
732
|
-
}
|
|
733
529
|
export interface ListTagsForResourceResult {
|
|
734
530
|
|
|
735
531
|
Tags?: Tag[];
|
|
736
532
|
}
|
|
737
|
-
export declare namespace ListTagsForResourceResult {
|
|
738
|
-
|
|
739
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResult) => any;
|
|
740
|
-
}
|
|
741
533
|
export interface PutContactPolicyRequest {
|
|
742
534
|
|
|
743
535
|
ContactArn: string | undefined;
|
|
744
536
|
|
|
745
537
|
Policy: string | undefined;
|
|
746
538
|
}
|
|
747
|
-
export declare namespace PutContactPolicyRequest {
|
|
748
|
-
|
|
749
|
-
const filterSensitiveLog: (obj: PutContactPolicyRequest) => any;
|
|
750
|
-
}
|
|
751
539
|
export interface PutContactPolicyResult {
|
|
752
540
|
}
|
|
753
|
-
export declare namespace PutContactPolicyResult {
|
|
754
|
-
|
|
755
|
-
const filterSensitiveLog: (obj: PutContactPolicyResult) => any;
|
|
756
|
-
}
|
|
757
541
|
export interface SendActivationCodeRequest {
|
|
758
542
|
|
|
759
543
|
ContactChannelId: string | undefined;
|
|
760
544
|
}
|
|
761
|
-
export declare namespace SendActivationCodeRequest {
|
|
762
|
-
|
|
763
|
-
const filterSensitiveLog: (obj: SendActivationCodeRequest) => any;
|
|
764
|
-
}
|
|
765
545
|
export interface SendActivationCodeResult {
|
|
766
546
|
}
|
|
767
|
-
export declare namespace SendActivationCodeResult {
|
|
768
|
-
|
|
769
|
-
const filterSensitiveLog: (obj: SendActivationCodeResult) => any;
|
|
770
|
-
}
|
|
771
547
|
export interface StartEngagementRequest {
|
|
772
548
|
|
|
773
549
|
ContactId: string | undefined;
|
|
@@ -786,66 +562,34 @@ export interface StartEngagementRequest {
|
|
|
786
562
|
|
|
787
563
|
IdempotencyToken?: string;
|
|
788
564
|
}
|
|
789
|
-
export declare namespace StartEngagementRequest {
|
|
790
|
-
|
|
791
|
-
const filterSensitiveLog: (obj: StartEngagementRequest) => any;
|
|
792
|
-
}
|
|
793
565
|
export interface StartEngagementResult {
|
|
794
566
|
|
|
795
567
|
EngagementArn: string | undefined;
|
|
796
568
|
}
|
|
797
|
-
export declare namespace StartEngagementResult {
|
|
798
|
-
|
|
799
|
-
const filterSensitiveLog: (obj: StartEngagementResult) => any;
|
|
800
|
-
}
|
|
801
569
|
export interface StopEngagementRequest {
|
|
802
570
|
|
|
803
571
|
EngagementId: string | undefined;
|
|
804
572
|
|
|
805
573
|
Reason?: string;
|
|
806
574
|
}
|
|
807
|
-
export declare namespace StopEngagementRequest {
|
|
808
|
-
|
|
809
|
-
const filterSensitiveLog: (obj: StopEngagementRequest) => any;
|
|
810
|
-
}
|
|
811
575
|
export interface StopEngagementResult {
|
|
812
576
|
}
|
|
813
|
-
export declare namespace StopEngagementResult {
|
|
814
|
-
|
|
815
|
-
const filterSensitiveLog: (obj: StopEngagementResult) => any;
|
|
816
|
-
}
|
|
817
577
|
export interface TagResourceRequest {
|
|
818
578
|
|
|
819
579
|
ResourceARN: string | undefined;
|
|
820
580
|
|
|
821
581
|
Tags: Tag[] | undefined;
|
|
822
582
|
}
|
|
823
|
-
export declare namespace TagResourceRequest {
|
|
824
|
-
|
|
825
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
826
|
-
}
|
|
827
583
|
export interface TagResourceResult {
|
|
828
584
|
}
|
|
829
|
-
export declare namespace TagResourceResult {
|
|
830
|
-
|
|
831
|
-
const filterSensitiveLog: (obj: TagResourceResult) => any;
|
|
832
|
-
}
|
|
833
585
|
export interface UntagResourceRequest {
|
|
834
586
|
|
|
835
587
|
ResourceARN: string | undefined;
|
|
836
588
|
|
|
837
589
|
TagKeys: string[] | undefined;
|
|
838
590
|
}
|
|
839
|
-
export declare namespace UntagResourceRequest {
|
|
840
|
-
|
|
841
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
842
|
-
}
|
|
843
591
|
export interface UntagResourceResult {
|
|
844
592
|
}
|
|
845
|
-
export declare namespace UntagResourceResult {
|
|
846
|
-
|
|
847
|
-
const filterSensitiveLog: (obj: UntagResourceResult) => any;
|
|
848
|
-
}
|
|
849
593
|
export interface UpdateContactRequest {
|
|
850
594
|
|
|
851
595
|
ContactId: string | undefined;
|
|
@@ -854,16 +598,8 @@ export interface UpdateContactRequest {
|
|
|
854
598
|
|
|
855
599
|
Plan?: Plan;
|
|
856
600
|
}
|
|
857
|
-
export declare namespace UpdateContactRequest {
|
|
858
|
-
|
|
859
|
-
const filterSensitiveLog: (obj: UpdateContactRequest) => any;
|
|
860
|
-
}
|
|
861
601
|
export interface UpdateContactResult {
|
|
862
602
|
}
|
|
863
|
-
export declare namespace UpdateContactResult {
|
|
864
|
-
|
|
865
|
-
const filterSensitiveLog: (obj: UpdateContactResult) => any;
|
|
866
|
-
}
|
|
867
603
|
export interface UpdateContactChannelRequest {
|
|
868
604
|
|
|
869
605
|
ContactChannelId: string | undefined;
|
|
@@ -872,13 +608,141 @@ export interface UpdateContactChannelRequest {
|
|
|
872
608
|
|
|
873
609
|
DeliveryAddress?: ContactChannelAddress;
|
|
874
610
|
}
|
|
875
|
-
export declare namespace UpdateContactChannelRequest {
|
|
876
|
-
|
|
877
|
-
const filterSensitiveLog: (obj: UpdateContactChannelRequest) => any;
|
|
878
|
-
}
|
|
879
611
|
export interface UpdateContactChannelResult {
|
|
880
612
|
}
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
613
|
+
|
|
614
|
+
export declare const AcceptPageRequestFilterSensitiveLog: (obj: AcceptPageRequest) => any;
|
|
615
|
+
|
|
616
|
+
export declare const AcceptPageResultFilterSensitiveLog: (obj: AcceptPageResult) => any;
|
|
617
|
+
|
|
618
|
+
export declare const ValidationExceptionFieldFilterSensitiveLog: (obj: ValidationExceptionField) => any;
|
|
619
|
+
|
|
620
|
+
export declare const ActivateContactChannelRequestFilterSensitiveLog: (obj: ActivateContactChannelRequest) => any;
|
|
621
|
+
|
|
622
|
+
export declare const ActivateContactChannelResultFilterSensitiveLog: (obj: ActivateContactChannelResult) => any;
|
|
623
|
+
|
|
624
|
+
export declare const ChannelTargetInfoFilterSensitiveLog: (obj: ChannelTargetInfo) => any;
|
|
625
|
+
|
|
626
|
+
export declare const ContactFilterSensitiveLog: (obj: Contact) => any;
|
|
627
|
+
|
|
628
|
+
export declare const ContactChannelAddressFilterSensitiveLog: (obj: ContactChannelAddress) => any;
|
|
629
|
+
|
|
630
|
+
export declare const ContactChannelFilterSensitiveLog: (obj: ContactChannel) => any;
|
|
631
|
+
|
|
632
|
+
export declare const ContactTargetInfoFilterSensitiveLog: (obj: ContactTargetInfo) => any;
|
|
633
|
+
|
|
634
|
+
export declare const TargetFilterSensitiveLog: (obj: Target) => any;
|
|
635
|
+
|
|
636
|
+
export declare const StageFilterSensitiveLog: (obj: Stage) => any;
|
|
637
|
+
|
|
638
|
+
export declare const PlanFilterSensitiveLog: (obj: Plan) => any;
|
|
639
|
+
|
|
640
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
641
|
+
|
|
642
|
+
export declare const CreateContactRequestFilterSensitiveLog: (obj: CreateContactRequest) => any;
|
|
643
|
+
|
|
644
|
+
export declare const CreateContactResultFilterSensitiveLog: (obj: CreateContactResult) => any;
|
|
645
|
+
|
|
646
|
+
export declare const CreateContactChannelRequestFilterSensitiveLog: (obj: CreateContactChannelRequest) => any;
|
|
647
|
+
|
|
648
|
+
export declare const CreateContactChannelResultFilterSensitiveLog: (obj: CreateContactChannelResult) => any;
|
|
649
|
+
|
|
650
|
+
export declare const DeactivateContactChannelRequestFilterSensitiveLog: (obj: DeactivateContactChannelRequest) => any;
|
|
651
|
+
|
|
652
|
+
export declare const DeactivateContactChannelResultFilterSensitiveLog: (obj: DeactivateContactChannelResult) => any;
|
|
653
|
+
|
|
654
|
+
export declare const DeleteContactRequestFilterSensitiveLog: (obj: DeleteContactRequest) => any;
|
|
655
|
+
|
|
656
|
+
export declare const DeleteContactResultFilterSensitiveLog: (obj: DeleteContactResult) => any;
|
|
657
|
+
|
|
658
|
+
export declare const DeleteContactChannelRequestFilterSensitiveLog: (obj: DeleteContactChannelRequest) => any;
|
|
659
|
+
|
|
660
|
+
export declare const DeleteContactChannelResultFilterSensitiveLog: (obj: DeleteContactChannelResult) => any;
|
|
661
|
+
|
|
662
|
+
export declare const DescribeEngagementRequestFilterSensitiveLog: (obj: DescribeEngagementRequest) => any;
|
|
663
|
+
|
|
664
|
+
export declare const DescribeEngagementResultFilterSensitiveLog: (obj: DescribeEngagementResult) => any;
|
|
665
|
+
|
|
666
|
+
export declare const DescribePageRequestFilterSensitiveLog: (obj: DescribePageRequest) => any;
|
|
667
|
+
|
|
668
|
+
export declare const DescribePageResultFilterSensitiveLog: (obj: DescribePageResult) => any;
|
|
669
|
+
|
|
670
|
+
export declare const EngagementFilterSensitiveLog: (obj: Engagement) => any;
|
|
671
|
+
|
|
672
|
+
export declare const GetContactRequestFilterSensitiveLog: (obj: GetContactRequest) => any;
|
|
673
|
+
|
|
674
|
+
export declare const GetContactResultFilterSensitiveLog: (obj: GetContactResult) => any;
|
|
675
|
+
|
|
676
|
+
export declare const GetContactChannelRequestFilterSensitiveLog: (obj: GetContactChannelRequest) => any;
|
|
677
|
+
|
|
678
|
+
export declare const GetContactChannelResultFilterSensitiveLog: (obj: GetContactChannelResult) => any;
|
|
679
|
+
|
|
680
|
+
export declare const GetContactPolicyRequestFilterSensitiveLog: (obj: GetContactPolicyRequest) => any;
|
|
681
|
+
|
|
682
|
+
export declare const GetContactPolicyResultFilterSensitiveLog: (obj: GetContactPolicyResult) => any;
|
|
683
|
+
|
|
684
|
+
export declare const ListContactChannelsRequestFilterSensitiveLog: (obj: ListContactChannelsRequest) => any;
|
|
685
|
+
|
|
686
|
+
export declare const ListContactChannelsResultFilterSensitiveLog: (obj: ListContactChannelsResult) => any;
|
|
687
|
+
|
|
688
|
+
export declare const ListContactsRequestFilterSensitiveLog: (obj: ListContactsRequest) => any;
|
|
689
|
+
|
|
690
|
+
export declare const ListContactsResultFilterSensitiveLog: (obj: ListContactsResult) => any;
|
|
691
|
+
|
|
692
|
+
export declare const TimeRangeFilterSensitiveLog: (obj: TimeRange) => any;
|
|
693
|
+
|
|
694
|
+
export declare const ListEngagementsRequestFilterSensitiveLog: (obj: ListEngagementsRequest) => any;
|
|
695
|
+
|
|
696
|
+
export declare const ListEngagementsResultFilterSensitiveLog: (obj: ListEngagementsResult) => any;
|
|
697
|
+
|
|
698
|
+
export declare const ListPageReceiptsRequestFilterSensitiveLog: (obj: ListPageReceiptsRequest) => any;
|
|
699
|
+
|
|
700
|
+
export declare const ReceiptFilterSensitiveLog: (obj: Receipt) => any;
|
|
701
|
+
|
|
702
|
+
export declare const ListPageReceiptsResultFilterSensitiveLog: (obj: ListPageReceiptsResult) => any;
|
|
703
|
+
|
|
704
|
+
export declare const ListPagesByContactRequestFilterSensitiveLog: (obj: ListPagesByContactRequest) => any;
|
|
705
|
+
|
|
706
|
+
export declare const PageFilterSensitiveLog: (obj: Page) => any;
|
|
707
|
+
|
|
708
|
+
export declare const ListPagesByContactResultFilterSensitiveLog: (obj: ListPagesByContactResult) => any;
|
|
709
|
+
|
|
710
|
+
export declare const ListPagesByEngagementRequestFilterSensitiveLog: (obj: ListPagesByEngagementRequest) => any;
|
|
711
|
+
|
|
712
|
+
export declare const ListPagesByEngagementResultFilterSensitiveLog: (obj: ListPagesByEngagementResult) => any;
|
|
713
|
+
|
|
714
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
715
|
+
|
|
716
|
+
export declare const ListTagsForResourceResultFilterSensitiveLog: (obj: ListTagsForResourceResult) => any;
|
|
717
|
+
|
|
718
|
+
export declare const PutContactPolicyRequestFilterSensitiveLog: (obj: PutContactPolicyRequest) => any;
|
|
719
|
+
|
|
720
|
+
export declare const PutContactPolicyResultFilterSensitiveLog: (obj: PutContactPolicyResult) => any;
|
|
721
|
+
|
|
722
|
+
export declare const SendActivationCodeRequestFilterSensitiveLog: (obj: SendActivationCodeRequest) => any;
|
|
723
|
+
|
|
724
|
+
export declare const SendActivationCodeResultFilterSensitiveLog: (obj: SendActivationCodeResult) => any;
|
|
725
|
+
|
|
726
|
+
export declare const StartEngagementRequestFilterSensitiveLog: (obj: StartEngagementRequest) => any;
|
|
727
|
+
|
|
728
|
+
export declare const StartEngagementResultFilterSensitiveLog: (obj: StartEngagementResult) => any;
|
|
729
|
+
|
|
730
|
+
export declare const StopEngagementRequestFilterSensitiveLog: (obj: StopEngagementRequest) => any;
|
|
731
|
+
|
|
732
|
+
export declare const StopEngagementResultFilterSensitiveLog: (obj: StopEngagementResult) => any;
|
|
733
|
+
|
|
734
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
735
|
+
|
|
736
|
+
export declare const TagResourceResultFilterSensitiveLog: (obj: TagResourceResult) => any;
|
|
737
|
+
|
|
738
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
739
|
+
|
|
740
|
+
export declare const UntagResourceResultFilterSensitiveLog: (obj: UntagResourceResult) => any;
|
|
741
|
+
|
|
742
|
+
export declare const UpdateContactRequestFilterSensitiveLog: (obj: UpdateContactRequest) => any;
|
|
743
|
+
|
|
744
|
+
export declare const UpdateContactResultFilterSensitiveLog: (obj: UpdateContactResult) => any;
|
|
745
|
+
|
|
746
|
+
export declare const UpdateContactChannelRequestFilterSensitiveLog: (obj: UpdateContactChannelRequest) => any;
|
|
747
|
+
|
|
748
|
+
export declare const UpdateContactChannelResultFilterSensitiveLog: (obj: UpdateContactChannelResult) => any;
|