@aws-sdk/client-ssm-contacts 3.168.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.
Files changed (50) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/SSMContacts.d.ts +490 -140
  3. package/dist-types/ts3.4/SSMContactsClient.d.ts +291 -100
  4. package/dist-types/ts3.4/commands/AcceptPageCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/ActivateContactChannelCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateContactChannelCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/CreateContactCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeactivateContactChannelCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/DeleteContactChannelCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/DeleteContactCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/DescribeEngagementCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/DescribePageCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/GetContactChannelCommand.d.ts +38 -17
  14. package/dist-types/ts3.4/commands/GetContactCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/GetContactPolicyCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/ListContactChannelsCommand.d.ts +38 -17
  17. package/dist-types/ts3.4/commands/ListContactsCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/ListEngagementsCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/ListPageReceiptsCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/ListPagesByContactCommand.d.ts +38 -17
  21. package/dist-types/ts3.4/commands/ListPagesByEngagementCommand.d.ts +41 -17
  22. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  23. package/dist-types/ts3.4/commands/PutContactPolicyCommand.d.ts +37 -17
  24. package/dist-types/ts3.4/commands/SendActivationCodeCommand.d.ts +38 -17
  25. package/dist-types/ts3.4/commands/StartEngagementCommand.d.ts +37 -17
  26. package/dist-types/ts3.4/commands/StopEngagementCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -17
  29. package/dist-types/ts3.4/commands/UpdateContactChannelCommand.d.ts +41 -17
  30. package/dist-types/ts3.4/commands/UpdateContactCommand.d.ts +34 -17
  31. package/dist-types/ts3.4/commands/index.d.ts +27 -27
  32. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  33. package/dist-types/ts3.4/index.d.ts +6 -6
  34. package/dist-types/ts3.4/models/SSMContactsServiceException.d.ts +8 -6
  35. package/dist-types/ts3.4/models/index.d.ts +1 -1
  36. package/dist-types/ts3.4/models/models_0.d.ts +812 -748
  37. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  38. package/dist-types/ts3.4/pagination/ListContactChannelsPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListContactsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/ListEngagementsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/ListPageReceiptsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/ListPagesByContactPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListPagesByEngagementPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/index.d.ts +7 -7
  45. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +329 -83
  46. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  49. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  50. package/package.json +34 -34
@@ -1,748 +1,812 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { SSMContactsServiceException as __BaseException } from "./SSMContactsServiceException";
3
- export declare enum AcceptCodeValidation {
4
- ENFORCE = "ENFORCE",
5
- IGNORE = "IGNORE"
6
- }
7
- export declare enum AcceptType {
8
- DELIVERED = "DELIVERED",
9
- READ = "READ"
10
- }
11
- export interface AcceptPageRequest {
12
-
13
- PageId: string | undefined;
14
-
15
- ContactChannelId?: string;
16
-
17
- AcceptType: AcceptType | string | undefined;
18
-
19
- Note?: string;
20
-
21
- AcceptCode: string | undefined;
22
-
23
- AcceptCodeValidation?: AcceptCodeValidation | string;
24
- }
25
- export interface AcceptPageResult {
26
- }
27
-
28
- export declare class AccessDeniedException extends __BaseException {
29
- readonly name: "AccessDeniedException";
30
- readonly $fault: "client";
31
- Message: string | undefined;
32
-
33
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
34
- }
35
-
36
- export declare class InternalServerException extends __BaseException {
37
- readonly name: "InternalServerException";
38
- readonly $fault: "server";
39
- Message: string | undefined;
40
-
41
- RetryAfterSeconds?: number;
42
-
43
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
44
- }
45
-
46
- export declare class ResourceNotFoundException extends __BaseException {
47
- readonly name: "ResourceNotFoundException";
48
- readonly $fault: "client";
49
- Message: string | undefined;
50
-
51
- ResourceId: string | undefined;
52
-
53
- ResourceType: string | undefined;
54
-
55
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
56
- }
57
-
58
- export declare class ThrottlingException extends __BaseException {
59
- readonly name: "ThrottlingException";
60
- readonly $fault: "client";
61
- Message: string | undefined;
62
-
63
- QuotaCode?: string;
64
-
65
- ServiceCode?: string;
66
-
67
- RetryAfterSeconds?: number;
68
-
69
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
70
- }
71
-
72
- export interface ValidationExceptionField {
73
-
74
- Name: string | undefined;
75
-
76
- Message: string | undefined;
77
- }
78
- export declare enum ValidationExceptionReason {
79
- CANNOT_PARSE = "CANNOT_PARSE",
80
- FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
81
- OTHER = "OTHER",
82
- UNKNOWN_OPERATION = "UNKNOWN_OPERATION"
83
- }
84
-
85
- export declare class ValidationException extends __BaseException {
86
- readonly name: "ValidationException";
87
- readonly $fault: "client";
88
- Message: string | undefined;
89
-
90
- Reason?: ValidationExceptionReason | string;
91
-
92
- Fields?: ValidationExceptionField[];
93
-
94
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
95
- }
96
- export interface ActivateContactChannelRequest {
97
-
98
- ContactChannelId: string | undefined;
99
-
100
- ActivationCode: string | undefined;
101
- }
102
- export interface ActivateContactChannelResult {
103
- }
104
- export declare enum ActivationStatus {
105
- ACTIVATED = "ACTIVATED",
106
- NOT_ACTIVATED = "NOT_ACTIVATED"
107
- }
108
-
109
- export interface ChannelTargetInfo {
110
-
111
- ContactChannelId: string | undefined;
112
-
113
- RetryIntervalInMinutes?: number;
114
- }
115
- export declare enum ChannelType {
116
- EMAIL = "EMAIL",
117
- SMS = "SMS",
118
- VOICE = "VOICE"
119
- }
120
-
121
- export declare class ConflictException extends __BaseException {
122
- readonly name: "ConflictException";
123
- readonly $fault: "client";
124
- Message: string | undefined;
125
-
126
- ResourceId: string | undefined;
127
-
128
- ResourceType: string | undefined;
129
-
130
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
131
- }
132
- export declare enum ContactType {
133
- ESCALATION = "ESCALATION",
134
- PERSONAL = "PERSONAL"
135
- }
136
-
137
- export interface Contact {
138
-
139
- ContactArn: string | undefined;
140
-
141
- Alias: string | undefined;
142
-
143
- DisplayName?: string;
144
-
145
- Type: ContactType | string | undefined;
146
- }
147
-
148
- export interface ContactChannelAddress {
149
-
150
- SimpleAddress?: string;
151
- }
152
-
153
- export interface ContactChannel {
154
-
155
- ContactChannelArn: string | undefined;
156
-
157
- ContactArn: string | undefined;
158
-
159
- Name: string | undefined;
160
-
161
- Type?: ChannelType | string;
162
-
163
- DeliveryAddress: ContactChannelAddress | undefined;
164
-
165
- ActivationStatus: ActivationStatus | string | undefined;
166
- }
167
-
168
- export interface ContactTargetInfo {
169
-
170
- ContactId?: string;
171
-
172
- IsEssential: boolean | undefined;
173
- }
174
-
175
- export interface Target {
176
-
177
- ChannelTargetInfo?: ChannelTargetInfo;
178
-
179
- ContactTargetInfo?: ContactTargetInfo;
180
- }
181
-
182
- export interface Stage {
183
-
184
- DurationInMinutes: number | undefined;
185
-
186
- Targets: Target[] | undefined;
187
- }
188
-
189
- export interface Plan {
190
-
191
- Stages: Stage[] | undefined;
192
- }
193
-
194
- export interface Tag {
195
-
196
- Key?: string;
197
-
198
- Value?: string;
199
- }
200
- export interface CreateContactRequest {
201
-
202
- Alias: string | undefined;
203
-
204
- DisplayName?: string;
205
-
206
- Type: ContactType | string | undefined;
207
-
208
- Plan: Plan | undefined;
209
-
210
- Tags?: Tag[];
211
-
212
- IdempotencyToken?: string;
213
- }
214
- export interface CreateContactResult {
215
-
216
- ContactArn: string | undefined;
217
- }
218
-
219
- export declare class DataEncryptionException extends __BaseException {
220
- readonly name: "DataEncryptionException";
221
- readonly $fault: "client";
222
- Message: string | undefined;
223
-
224
- constructor(opts: __ExceptionOptionType<DataEncryptionException, __BaseException>);
225
- }
226
-
227
- export declare class ServiceQuotaExceededException extends __BaseException {
228
- readonly name: "ServiceQuotaExceededException";
229
- readonly $fault: "client";
230
- Message: string | undefined;
231
-
232
- ResourceId?: string;
233
-
234
- ResourceType?: string;
235
-
236
- QuotaCode: string | undefined;
237
-
238
- ServiceCode: string | undefined;
239
-
240
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
241
- }
242
- export interface CreateContactChannelRequest {
243
-
244
- ContactId: string | undefined;
245
-
246
- Name: string | undefined;
247
-
248
- Type: ChannelType | string | undefined;
249
-
250
- DeliveryAddress: ContactChannelAddress | undefined;
251
-
252
- DeferActivation?: boolean;
253
-
254
- IdempotencyToken?: string;
255
- }
256
- export interface CreateContactChannelResult {
257
-
258
- ContactChannelArn: string | undefined;
259
- }
260
- export interface DeactivateContactChannelRequest {
261
-
262
- ContactChannelId: string | undefined;
263
- }
264
- export interface DeactivateContactChannelResult {
265
- }
266
- export interface DeleteContactRequest {
267
-
268
- ContactId: string | undefined;
269
- }
270
- export interface DeleteContactResult {
271
- }
272
- export interface DeleteContactChannelRequest {
273
-
274
- ContactChannelId: string | undefined;
275
- }
276
- export interface DeleteContactChannelResult {
277
- }
278
- export interface DescribeEngagementRequest {
279
-
280
- EngagementId: string | undefined;
281
- }
282
- export interface DescribeEngagementResult {
283
-
284
- ContactArn: string | undefined;
285
-
286
- EngagementArn: string | undefined;
287
-
288
- Sender: string | undefined;
289
-
290
- Subject: string | undefined;
291
-
292
- Content: string | undefined;
293
-
294
- PublicSubject?: string;
295
-
296
- PublicContent?: string;
297
-
298
- IncidentId?: string;
299
-
300
- StartTime?: Date;
301
-
302
- StopTime?: Date;
303
- }
304
- export interface DescribePageRequest {
305
-
306
- PageId: string | undefined;
307
- }
308
- export interface DescribePageResult {
309
-
310
- PageArn: string | undefined;
311
-
312
- EngagementArn: string | undefined;
313
-
314
- ContactArn: string | undefined;
315
-
316
- Sender: string | undefined;
317
-
318
- Subject: string | undefined;
319
-
320
- Content: string | undefined;
321
-
322
- PublicSubject?: string;
323
-
324
- PublicContent?: string;
325
-
326
- IncidentId?: string;
327
-
328
- SentTime?: Date;
329
-
330
- ReadTime?: Date;
331
-
332
- DeliveryTime?: Date;
333
- }
334
-
335
- export interface Engagement {
336
-
337
- EngagementArn: string | undefined;
338
-
339
- ContactArn: string | undefined;
340
-
341
- Sender: string | undefined;
342
-
343
- IncidentId?: string;
344
-
345
- StartTime?: Date;
346
-
347
- StopTime?: Date;
348
- }
349
- export interface GetContactRequest {
350
-
351
- ContactId: string | undefined;
352
- }
353
- export interface GetContactResult {
354
-
355
- ContactArn: string | undefined;
356
-
357
- Alias: string | undefined;
358
-
359
- DisplayName?: string;
360
-
361
- Type: ContactType | string | undefined;
362
-
363
- Plan: Plan | undefined;
364
- }
365
- export interface GetContactChannelRequest {
366
-
367
- ContactChannelId: string | undefined;
368
- }
369
- export interface GetContactChannelResult {
370
-
371
- ContactArn: string | undefined;
372
-
373
- ContactChannelArn: string | undefined;
374
-
375
- Name: string | undefined;
376
-
377
- Type: ChannelType | string | undefined;
378
-
379
- DeliveryAddress: ContactChannelAddress | undefined;
380
-
381
- ActivationStatus?: ActivationStatus | string;
382
- }
383
- export interface GetContactPolicyRequest {
384
-
385
- ContactArn: string | undefined;
386
- }
387
- export interface GetContactPolicyResult {
388
-
389
- ContactArn?: string;
390
-
391
- Policy?: string;
392
- }
393
- export interface ListContactChannelsRequest {
394
-
395
- ContactId: string | undefined;
396
-
397
- NextToken?: string;
398
-
399
- MaxResults?: number;
400
- }
401
- export interface ListContactChannelsResult {
402
-
403
- NextToken?: string;
404
-
405
- ContactChannels: ContactChannel[] | undefined;
406
- }
407
- export interface ListContactsRequest {
408
-
409
- NextToken?: string;
410
-
411
- MaxResults?: number;
412
-
413
- AliasPrefix?: string;
414
-
415
- Type?: ContactType | string;
416
- }
417
- export interface ListContactsResult {
418
-
419
- NextToken?: string;
420
-
421
- Contacts?: Contact[];
422
- }
423
-
424
- export interface TimeRange {
425
-
426
- StartTime?: Date;
427
-
428
- EndTime?: Date;
429
- }
430
- export interface ListEngagementsRequest {
431
-
432
- NextToken?: string;
433
-
434
- MaxResults?: number;
435
-
436
- IncidentId?: string;
437
-
438
- TimeRangeValue?: TimeRange;
439
- }
440
- export interface ListEngagementsResult {
441
-
442
- NextToken?: string;
443
-
444
- Engagements: Engagement[] | undefined;
445
- }
446
- export interface ListPageReceiptsRequest {
447
-
448
- PageId: string | undefined;
449
-
450
- NextToken?: string;
451
-
452
- MaxResults?: number;
453
- }
454
- export declare enum ReceiptType {
455
- DELIVERED = "DELIVERED",
456
- ERROR = "ERROR",
457
- READ = "READ",
458
- SENT = "SENT",
459
- STOP = "STOP"
460
- }
461
-
462
- export interface Receipt {
463
-
464
- ContactChannelArn?: string;
465
-
466
- ReceiptType: ReceiptType | string | undefined;
467
-
468
- ReceiptInfo?: string;
469
-
470
- ReceiptTime: Date | undefined;
471
- }
472
- export interface ListPageReceiptsResult {
473
-
474
- NextToken?: string;
475
-
476
- Receipts?: Receipt[];
477
- }
478
- export interface ListPagesByContactRequest {
479
-
480
- ContactId: string | undefined;
481
-
482
- NextToken?: string;
483
-
484
- MaxResults?: number;
485
- }
486
-
487
- export interface Page {
488
-
489
- PageArn: string | undefined;
490
-
491
- EngagementArn: string | undefined;
492
-
493
- ContactArn: string | undefined;
494
-
495
- Sender: string | undefined;
496
-
497
- IncidentId?: string;
498
-
499
- SentTime?: Date;
500
-
501
- DeliveryTime?: Date;
502
-
503
- ReadTime?: Date;
504
- }
505
- export interface ListPagesByContactResult {
506
-
507
- NextToken?: string;
508
-
509
- Pages: Page[] | undefined;
510
- }
511
- export interface ListPagesByEngagementRequest {
512
-
513
- EngagementId: string | undefined;
514
-
515
- NextToken?: string;
516
-
517
- MaxResults?: number;
518
- }
519
- export interface ListPagesByEngagementResult {
520
-
521
- NextToken?: string;
522
-
523
- Pages: Page[] | undefined;
524
- }
525
- export interface ListTagsForResourceRequest {
526
-
527
- ResourceARN: string | undefined;
528
- }
529
- export interface ListTagsForResourceResult {
530
-
531
- Tags?: Tag[];
532
- }
533
- export interface PutContactPolicyRequest {
534
-
535
- ContactArn: string | undefined;
536
-
537
- Policy: string | undefined;
538
- }
539
- export interface PutContactPolicyResult {
540
- }
541
- export interface SendActivationCodeRequest {
542
-
543
- ContactChannelId: string | undefined;
544
- }
545
- export interface SendActivationCodeResult {
546
- }
547
- export interface StartEngagementRequest {
548
-
549
- ContactId: string | undefined;
550
-
551
- Sender: string | undefined;
552
-
553
- Subject: string | undefined;
554
-
555
- Content: string | undefined;
556
-
557
- PublicSubject?: string;
558
-
559
- PublicContent?: string;
560
-
561
- IncidentId?: string;
562
-
563
- IdempotencyToken?: string;
564
- }
565
- export interface StartEngagementResult {
566
-
567
- EngagementArn: string | undefined;
568
- }
569
- export interface StopEngagementRequest {
570
-
571
- EngagementId: string | undefined;
572
-
573
- Reason?: string;
574
- }
575
- export interface StopEngagementResult {
576
- }
577
- export interface TagResourceRequest {
578
-
579
- ResourceARN: string | undefined;
580
-
581
- Tags: Tag[] | undefined;
582
- }
583
- export interface TagResourceResult {
584
- }
585
- export interface UntagResourceRequest {
586
-
587
- ResourceARN: string | undefined;
588
-
589
- TagKeys: string[] | undefined;
590
- }
591
- export interface UntagResourceResult {
592
- }
593
- export interface UpdateContactRequest {
594
-
595
- ContactId: string | undefined;
596
-
597
- DisplayName?: string;
598
-
599
- Plan?: Plan;
600
- }
601
- export interface UpdateContactResult {
602
- }
603
- export interface UpdateContactChannelRequest {
604
-
605
- ContactChannelId: string | undefined;
606
-
607
- Name?: string;
608
-
609
- DeliveryAddress?: ContactChannelAddress;
610
- }
611
- export interface UpdateContactChannelResult {
612
- }
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;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { SSMContactsServiceException as __BaseException } from "./SSMContactsServiceException";
3
+ export declare enum AcceptCodeValidation {
4
+ ENFORCE = "ENFORCE",
5
+ IGNORE = "IGNORE",
6
+ }
7
+ export declare enum AcceptType {
8
+ DELIVERED = "DELIVERED",
9
+ READ = "READ",
10
+ }
11
+ export interface AcceptPageRequest {
12
+ PageId: string | undefined;
13
+
14
+ ContactChannelId?: string;
15
+
16
+ AcceptType: AcceptType | string | undefined;
17
+
18
+ Note?: string;
19
+
20
+ AcceptCode: string | undefined;
21
+
22
+ AcceptCodeValidation?: AcceptCodeValidation | string;
23
+ }
24
+ export interface AcceptPageResult {}
25
+
26
+ export declare class AccessDeniedException extends __BaseException {
27
+ readonly name: "AccessDeniedException";
28
+ readonly $fault: "client";
29
+ Message: string | undefined;
30
+
31
+ constructor(
32
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
33
+ );
34
+ }
35
+
36
+ export declare class InternalServerException extends __BaseException {
37
+ readonly name: "InternalServerException";
38
+ readonly $fault: "server";
39
+ Message: string | undefined;
40
+
41
+ RetryAfterSeconds?: number;
42
+
43
+ constructor(
44
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
45
+ );
46
+ }
47
+
48
+ export declare class ResourceNotFoundException extends __BaseException {
49
+ readonly name: "ResourceNotFoundException";
50
+ readonly $fault: "client";
51
+ Message: string | undefined;
52
+
53
+ ResourceId: string | undefined;
54
+
55
+ ResourceType: string | undefined;
56
+
57
+ constructor(
58
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
59
+ );
60
+ }
61
+
62
+ export declare class ThrottlingException extends __BaseException {
63
+ readonly name: "ThrottlingException";
64
+ readonly $fault: "client";
65
+ Message: string | undefined;
66
+
67
+ QuotaCode?: string;
68
+
69
+ ServiceCode?: string;
70
+
71
+ RetryAfterSeconds?: number;
72
+
73
+ constructor(
74
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
75
+ );
76
+ }
77
+
78
+ export interface ValidationExceptionField {
79
+ Name: string | undefined;
80
+
81
+ Message: string | undefined;
82
+ }
83
+ export declare enum ValidationExceptionReason {
84
+ CANNOT_PARSE = "CANNOT_PARSE",
85
+ FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
86
+ OTHER = "OTHER",
87
+ UNKNOWN_OPERATION = "UNKNOWN_OPERATION",
88
+ }
89
+
90
+ export declare class ValidationException extends __BaseException {
91
+ readonly name: "ValidationException";
92
+ readonly $fault: "client";
93
+ Message: string | undefined;
94
+
95
+ Reason?: ValidationExceptionReason | string;
96
+
97
+ Fields?: ValidationExceptionField[];
98
+
99
+ constructor(
100
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
101
+ );
102
+ }
103
+ export interface ActivateContactChannelRequest {
104
+ ContactChannelId: string | undefined;
105
+
106
+ ActivationCode: string | undefined;
107
+ }
108
+ export interface ActivateContactChannelResult {}
109
+ export declare enum ActivationStatus {
110
+ ACTIVATED = "ACTIVATED",
111
+ NOT_ACTIVATED = "NOT_ACTIVATED",
112
+ }
113
+
114
+ export interface ChannelTargetInfo {
115
+ ContactChannelId: string | undefined;
116
+
117
+ RetryIntervalInMinutes?: number;
118
+ }
119
+ export declare enum ChannelType {
120
+ EMAIL = "EMAIL",
121
+ SMS = "SMS",
122
+ VOICE = "VOICE",
123
+ }
124
+
125
+ export declare class ConflictException extends __BaseException {
126
+ readonly name: "ConflictException";
127
+ readonly $fault: "client";
128
+ Message: string | undefined;
129
+
130
+ ResourceId: string | undefined;
131
+
132
+ ResourceType: string | undefined;
133
+
134
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
135
+ }
136
+ export declare enum ContactType {
137
+ ESCALATION = "ESCALATION",
138
+ PERSONAL = "PERSONAL",
139
+ }
140
+
141
+ export interface Contact {
142
+ ContactArn: string | undefined;
143
+
144
+ Alias: string | undefined;
145
+
146
+ DisplayName?: string;
147
+
148
+ Type: ContactType | string | undefined;
149
+ }
150
+
151
+ export interface ContactChannelAddress {
152
+ SimpleAddress?: string;
153
+ }
154
+
155
+ export interface ContactChannel {
156
+ ContactChannelArn: string | undefined;
157
+
158
+ ContactArn: string | undefined;
159
+
160
+ Name: string | undefined;
161
+
162
+ Type?: ChannelType | string;
163
+
164
+ DeliveryAddress: ContactChannelAddress | undefined;
165
+
166
+ ActivationStatus: ActivationStatus | string | undefined;
167
+ }
168
+
169
+ export interface ContactTargetInfo {
170
+ ContactId?: string;
171
+
172
+ IsEssential: boolean | undefined;
173
+ }
174
+
175
+ export interface Target {
176
+ ChannelTargetInfo?: ChannelTargetInfo;
177
+
178
+ ContactTargetInfo?: ContactTargetInfo;
179
+ }
180
+
181
+ export interface Stage {
182
+ DurationInMinutes: number | undefined;
183
+
184
+ Targets: Target[] | undefined;
185
+ }
186
+
187
+ export interface Plan {
188
+ Stages: Stage[] | undefined;
189
+ }
190
+
191
+ export interface Tag {
192
+ Key?: string;
193
+
194
+ Value?: string;
195
+ }
196
+ export interface CreateContactRequest {
197
+ Alias: string | undefined;
198
+
199
+ DisplayName?: string;
200
+
201
+ Type: ContactType | string | undefined;
202
+
203
+ Plan: Plan | undefined;
204
+
205
+ Tags?: Tag[];
206
+
207
+ IdempotencyToken?: string;
208
+ }
209
+ export interface CreateContactResult {
210
+ ContactArn: string | undefined;
211
+ }
212
+
213
+ export declare class DataEncryptionException extends __BaseException {
214
+ readonly name: "DataEncryptionException";
215
+ readonly $fault: "client";
216
+ Message: string | undefined;
217
+
218
+ constructor(
219
+ opts: __ExceptionOptionType<DataEncryptionException, __BaseException>
220
+ );
221
+ }
222
+
223
+ export declare class ServiceQuotaExceededException extends __BaseException {
224
+ readonly name: "ServiceQuotaExceededException";
225
+ readonly $fault: "client";
226
+ Message: string | undefined;
227
+
228
+ ResourceId?: string;
229
+
230
+ ResourceType?: string;
231
+
232
+ QuotaCode: string | undefined;
233
+
234
+ ServiceCode: string | undefined;
235
+
236
+ constructor(
237
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
238
+ );
239
+ }
240
+ export interface CreateContactChannelRequest {
241
+ ContactId: string | undefined;
242
+
243
+ Name: string | undefined;
244
+
245
+ Type: ChannelType | string | undefined;
246
+
247
+ DeliveryAddress: ContactChannelAddress | undefined;
248
+
249
+ DeferActivation?: boolean;
250
+
251
+ IdempotencyToken?: string;
252
+ }
253
+ export interface CreateContactChannelResult {
254
+ ContactChannelArn: string | undefined;
255
+ }
256
+ export interface DeactivateContactChannelRequest {
257
+ ContactChannelId: string | undefined;
258
+ }
259
+ export interface DeactivateContactChannelResult {}
260
+ export interface DeleteContactRequest {
261
+ ContactId: string | undefined;
262
+ }
263
+ export interface DeleteContactResult {}
264
+ export interface DeleteContactChannelRequest {
265
+ ContactChannelId: string | undefined;
266
+ }
267
+ export interface DeleteContactChannelResult {}
268
+ export interface DescribeEngagementRequest {
269
+ EngagementId: string | undefined;
270
+ }
271
+ export interface DescribeEngagementResult {
272
+ ContactArn: string | undefined;
273
+
274
+ EngagementArn: string | undefined;
275
+
276
+ Sender: string | undefined;
277
+
278
+ Subject: string | undefined;
279
+
280
+ Content: string | undefined;
281
+
282
+ PublicSubject?: string;
283
+
284
+ PublicContent?: string;
285
+
286
+ IncidentId?: string;
287
+
288
+ StartTime?: Date;
289
+
290
+ StopTime?: Date;
291
+ }
292
+ export interface DescribePageRequest {
293
+ PageId: string | undefined;
294
+ }
295
+ export interface DescribePageResult {
296
+ PageArn: string | undefined;
297
+
298
+ EngagementArn: string | undefined;
299
+
300
+ ContactArn: string | undefined;
301
+
302
+ Sender: string | undefined;
303
+
304
+ Subject: string | undefined;
305
+
306
+ Content: string | undefined;
307
+
308
+ PublicSubject?: string;
309
+
310
+ PublicContent?: string;
311
+
312
+ IncidentId?: string;
313
+
314
+ SentTime?: Date;
315
+
316
+ ReadTime?: Date;
317
+
318
+ DeliveryTime?: Date;
319
+ }
320
+
321
+ export interface Engagement {
322
+ EngagementArn: string | undefined;
323
+
324
+ ContactArn: string | undefined;
325
+
326
+ Sender: string | undefined;
327
+
328
+ IncidentId?: string;
329
+
330
+ StartTime?: Date;
331
+
332
+ StopTime?: Date;
333
+ }
334
+ export interface GetContactRequest {
335
+ ContactId: string | undefined;
336
+ }
337
+ export interface GetContactResult {
338
+ ContactArn: string | undefined;
339
+
340
+ Alias: string | undefined;
341
+
342
+ DisplayName?: string;
343
+
344
+ Type: ContactType | string | undefined;
345
+
346
+ Plan: Plan | undefined;
347
+ }
348
+ export interface GetContactChannelRequest {
349
+ ContactChannelId: string | undefined;
350
+ }
351
+ export interface GetContactChannelResult {
352
+ ContactArn: string | undefined;
353
+
354
+ ContactChannelArn: string | undefined;
355
+
356
+ Name: string | undefined;
357
+
358
+ Type: ChannelType | string | undefined;
359
+
360
+ DeliveryAddress: ContactChannelAddress | undefined;
361
+
362
+ ActivationStatus?: ActivationStatus | string;
363
+ }
364
+ export interface GetContactPolicyRequest {
365
+ ContactArn: string | undefined;
366
+ }
367
+ export interface GetContactPolicyResult {
368
+ ContactArn?: string;
369
+
370
+ Policy?: string;
371
+ }
372
+ export interface ListContactChannelsRequest {
373
+ ContactId: string | undefined;
374
+
375
+ NextToken?: string;
376
+
377
+ MaxResults?: number;
378
+ }
379
+ export interface ListContactChannelsResult {
380
+ NextToken?: string;
381
+
382
+ ContactChannels: ContactChannel[] | undefined;
383
+ }
384
+ export interface ListContactsRequest {
385
+ NextToken?: string;
386
+
387
+ MaxResults?: number;
388
+
389
+ AliasPrefix?: string;
390
+
391
+ Type?: ContactType | string;
392
+ }
393
+ export interface ListContactsResult {
394
+ NextToken?: string;
395
+
396
+ Contacts?: Contact[];
397
+ }
398
+
399
+ export interface TimeRange {
400
+ StartTime?: Date;
401
+
402
+ EndTime?: Date;
403
+ }
404
+ export interface ListEngagementsRequest {
405
+ NextToken?: string;
406
+
407
+ MaxResults?: number;
408
+
409
+ IncidentId?: string;
410
+
411
+ TimeRangeValue?: TimeRange;
412
+ }
413
+ export interface ListEngagementsResult {
414
+ NextToken?: string;
415
+
416
+ Engagements: Engagement[] | undefined;
417
+ }
418
+ export interface ListPageReceiptsRequest {
419
+ PageId: string | undefined;
420
+
421
+ NextToken?: string;
422
+
423
+ MaxResults?: number;
424
+ }
425
+ export declare enum ReceiptType {
426
+ DELIVERED = "DELIVERED",
427
+ ERROR = "ERROR",
428
+ READ = "READ",
429
+ SENT = "SENT",
430
+ STOP = "STOP",
431
+ }
432
+
433
+ export interface Receipt {
434
+ ContactChannelArn?: string;
435
+
436
+ ReceiptType: ReceiptType | string | undefined;
437
+
438
+ ReceiptInfo?: string;
439
+
440
+ ReceiptTime: Date | undefined;
441
+ }
442
+ export interface ListPageReceiptsResult {
443
+ NextToken?: string;
444
+
445
+ Receipts?: Receipt[];
446
+ }
447
+ export interface ListPagesByContactRequest {
448
+ ContactId: string | undefined;
449
+
450
+ NextToken?: string;
451
+
452
+ MaxResults?: number;
453
+ }
454
+
455
+ export interface Page {
456
+ PageArn: string | undefined;
457
+
458
+ EngagementArn: string | undefined;
459
+
460
+ ContactArn: string | undefined;
461
+
462
+ Sender: string | undefined;
463
+
464
+ IncidentId?: string;
465
+
466
+ SentTime?: Date;
467
+
468
+ DeliveryTime?: Date;
469
+
470
+ ReadTime?: Date;
471
+ }
472
+ export interface ListPagesByContactResult {
473
+ NextToken?: string;
474
+
475
+ Pages: Page[] | undefined;
476
+ }
477
+ export interface ListPagesByEngagementRequest {
478
+ EngagementId: string | undefined;
479
+
480
+ NextToken?: string;
481
+
482
+ MaxResults?: number;
483
+ }
484
+ export interface ListPagesByEngagementResult {
485
+ NextToken?: string;
486
+
487
+ Pages: Page[] | undefined;
488
+ }
489
+ export interface ListTagsForResourceRequest {
490
+ ResourceARN: string | undefined;
491
+ }
492
+ export interface ListTagsForResourceResult {
493
+ Tags?: Tag[];
494
+ }
495
+ export interface PutContactPolicyRequest {
496
+ ContactArn: string | undefined;
497
+
498
+ Policy: string | undefined;
499
+ }
500
+ export interface PutContactPolicyResult {}
501
+ export interface SendActivationCodeRequest {
502
+ ContactChannelId: string | undefined;
503
+ }
504
+ export interface SendActivationCodeResult {}
505
+ export interface StartEngagementRequest {
506
+ ContactId: string | undefined;
507
+
508
+ Sender: string | undefined;
509
+
510
+ Subject: string | undefined;
511
+
512
+ Content: string | undefined;
513
+
514
+ PublicSubject?: string;
515
+
516
+ PublicContent?: string;
517
+
518
+ IncidentId?: string;
519
+
520
+ IdempotencyToken?: string;
521
+ }
522
+ export interface StartEngagementResult {
523
+ EngagementArn: string | undefined;
524
+ }
525
+ export interface StopEngagementRequest {
526
+ EngagementId: string | undefined;
527
+
528
+ Reason?: string;
529
+ }
530
+ export interface StopEngagementResult {}
531
+ export interface TagResourceRequest {
532
+ ResourceARN: string | undefined;
533
+
534
+ Tags: Tag[] | undefined;
535
+ }
536
+ export interface TagResourceResult {}
537
+ export interface UntagResourceRequest {
538
+ ResourceARN: string | undefined;
539
+
540
+ TagKeys: string[] | undefined;
541
+ }
542
+ export interface UntagResourceResult {}
543
+ export interface UpdateContactRequest {
544
+ ContactId: string | undefined;
545
+
546
+ DisplayName?: string;
547
+
548
+ Plan?: Plan;
549
+ }
550
+ export interface UpdateContactResult {}
551
+ export interface UpdateContactChannelRequest {
552
+ ContactChannelId: string | undefined;
553
+
554
+ Name?: string;
555
+
556
+ DeliveryAddress?: ContactChannelAddress;
557
+ }
558
+ export interface UpdateContactChannelResult {}
559
+
560
+ export declare const AcceptPageRequestFilterSensitiveLog: (
561
+ obj: AcceptPageRequest
562
+ ) => any;
563
+
564
+ export declare const AcceptPageResultFilterSensitiveLog: (
565
+ obj: AcceptPageResult
566
+ ) => any;
567
+
568
+ export declare const ValidationExceptionFieldFilterSensitiveLog: (
569
+ obj: ValidationExceptionField
570
+ ) => any;
571
+
572
+ export declare const ActivateContactChannelRequestFilterSensitiveLog: (
573
+ obj: ActivateContactChannelRequest
574
+ ) => any;
575
+
576
+ export declare const ActivateContactChannelResultFilterSensitiveLog: (
577
+ obj: ActivateContactChannelResult
578
+ ) => any;
579
+
580
+ export declare const ChannelTargetInfoFilterSensitiveLog: (
581
+ obj: ChannelTargetInfo
582
+ ) => any;
583
+
584
+ export declare const ContactFilterSensitiveLog: (obj: Contact) => any;
585
+
586
+ export declare const ContactChannelAddressFilterSensitiveLog: (
587
+ obj: ContactChannelAddress
588
+ ) => any;
589
+
590
+ export declare const ContactChannelFilterSensitiveLog: (
591
+ obj: ContactChannel
592
+ ) => any;
593
+
594
+ export declare const ContactTargetInfoFilterSensitiveLog: (
595
+ obj: ContactTargetInfo
596
+ ) => any;
597
+
598
+ export declare const TargetFilterSensitiveLog: (obj: Target) => any;
599
+
600
+ export declare const StageFilterSensitiveLog: (obj: Stage) => any;
601
+
602
+ export declare const PlanFilterSensitiveLog: (obj: Plan) => any;
603
+
604
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
605
+
606
+ export declare const CreateContactRequestFilterSensitiveLog: (
607
+ obj: CreateContactRequest
608
+ ) => any;
609
+
610
+ export declare const CreateContactResultFilterSensitiveLog: (
611
+ obj: CreateContactResult
612
+ ) => any;
613
+
614
+ export declare const CreateContactChannelRequestFilterSensitiveLog: (
615
+ obj: CreateContactChannelRequest
616
+ ) => any;
617
+
618
+ export declare const CreateContactChannelResultFilterSensitiveLog: (
619
+ obj: CreateContactChannelResult
620
+ ) => any;
621
+
622
+ export declare const DeactivateContactChannelRequestFilterSensitiveLog: (
623
+ obj: DeactivateContactChannelRequest
624
+ ) => any;
625
+
626
+ export declare const DeactivateContactChannelResultFilterSensitiveLog: (
627
+ obj: DeactivateContactChannelResult
628
+ ) => any;
629
+
630
+ export declare const DeleteContactRequestFilterSensitiveLog: (
631
+ obj: DeleteContactRequest
632
+ ) => any;
633
+
634
+ export declare const DeleteContactResultFilterSensitiveLog: (
635
+ obj: DeleteContactResult
636
+ ) => any;
637
+
638
+ export declare const DeleteContactChannelRequestFilterSensitiveLog: (
639
+ obj: DeleteContactChannelRequest
640
+ ) => any;
641
+
642
+ export declare const DeleteContactChannelResultFilterSensitiveLog: (
643
+ obj: DeleteContactChannelResult
644
+ ) => any;
645
+
646
+ export declare const DescribeEngagementRequestFilterSensitiveLog: (
647
+ obj: DescribeEngagementRequest
648
+ ) => any;
649
+
650
+ export declare const DescribeEngagementResultFilterSensitiveLog: (
651
+ obj: DescribeEngagementResult
652
+ ) => any;
653
+
654
+ export declare const DescribePageRequestFilterSensitiveLog: (
655
+ obj: DescribePageRequest
656
+ ) => any;
657
+
658
+ export declare const DescribePageResultFilterSensitiveLog: (
659
+ obj: DescribePageResult
660
+ ) => any;
661
+
662
+ export declare const EngagementFilterSensitiveLog: (obj: Engagement) => any;
663
+
664
+ export declare const GetContactRequestFilterSensitiveLog: (
665
+ obj: GetContactRequest
666
+ ) => any;
667
+
668
+ export declare const GetContactResultFilterSensitiveLog: (
669
+ obj: GetContactResult
670
+ ) => any;
671
+
672
+ export declare const GetContactChannelRequestFilterSensitiveLog: (
673
+ obj: GetContactChannelRequest
674
+ ) => any;
675
+
676
+ export declare const GetContactChannelResultFilterSensitiveLog: (
677
+ obj: GetContactChannelResult
678
+ ) => any;
679
+
680
+ export declare const GetContactPolicyRequestFilterSensitiveLog: (
681
+ obj: GetContactPolicyRequest
682
+ ) => any;
683
+
684
+ export declare const GetContactPolicyResultFilterSensitiveLog: (
685
+ obj: GetContactPolicyResult
686
+ ) => any;
687
+
688
+ export declare const ListContactChannelsRequestFilterSensitiveLog: (
689
+ obj: ListContactChannelsRequest
690
+ ) => any;
691
+
692
+ export declare const ListContactChannelsResultFilterSensitiveLog: (
693
+ obj: ListContactChannelsResult
694
+ ) => any;
695
+
696
+ export declare const ListContactsRequestFilterSensitiveLog: (
697
+ obj: ListContactsRequest
698
+ ) => any;
699
+
700
+ export declare const ListContactsResultFilterSensitiveLog: (
701
+ obj: ListContactsResult
702
+ ) => any;
703
+
704
+ export declare const TimeRangeFilterSensitiveLog: (obj: TimeRange) => any;
705
+
706
+ export declare const ListEngagementsRequestFilterSensitiveLog: (
707
+ obj: ListEngagementsRequest
708
+ ) => any;
709
+
710
+ export declare const ListEngagementsResultFilterSensitiveLog: (
711
+ obj: ListEngagementsResult
712
+ ) => any;
713
+
714
+ export declare const ListPageReceiptsRequestFilterSensitiveLog: (
715
+ obj: ListPageReceiptsRequest
716
+ ) => any;
717
+
718
+ export declare const ReceiptFilterSensitiveLog: (obj: Receipt) => any;
719
+
720
+ export declare const ListPageReceiptsResultFilterSensitiveLog: (
721
+ obj: ListPageReceiptsResult
722
+ ) => any;
723
+
724
+ export declare const ListPagesByContactRequestFilterSensitiveLog: (
725
+ obj: ListPagesByContactRequest
726
+ ) => any;
727
+
728
+ export declare const PageFilterSensitiveLog: (obj: Page) => any;
729
+
730
+ export declare const ListPagesByContactResultFilterSensitiveLog: (
731
+ obj: ListPagesByContactResult
732
+ ) => any;
733
+
734
+ export declare const ListPagesByEngagementRequestFilterSensitiveLog: (
735
+ obj: ListPagesByEngagementRequest
736
+ ) => any;
737
+
738
+ export declare const ListPagesByEngagementResultFilterSensitiveLog: (
739
+ obj: ListPagesByEngagementResult
740
+ ) => any;
741
+
742
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
743
+ obj: ListTagsForResourceRequest
744
+ ) => any;
745
+
746
+ export declare const ListTagsForResourceResultFilterSensitiveLog: (
747
+ obj: ListTagsForResourceResult
748
+ ) => any;
749
+
750
+ export declare const PutContactPolicyRequestFilterSensitiveLog: (
751
+ obj: PutContactPolicyRequest
752
+ ) => any;
753
+
754
+ export declare const PutContactPolicyResultFilterSensitiveLog: (
755
+ obj: PutContactPolicyResult
756
+ ) => any;
757
+
758
+ export declare const SendActivationCodeRequestFilterSensitiveLog: (
759
+ obj: SendActivationCodeRequest
760
+ ) => any;
761
+
762
+ export declare const SendActivationCodeResultFilterSensitiveLog: (
763
+ obj: SendActivationCodeResult
764
+ ) => any;
765
+
766
+ export declare const StartEngagementRequestFilterSensitiveLog: (
767
+ obj: StartEngagementRequest
768
+ ) => any;
769
+
770
+ export declare const StartEngagementResultFilterSensitiveLog: (
771
+ obj: StartEngagementResult
772
+ ) => any;
773
+
774
+ export declare const StopEngagementRequestFilterSensitiveLog: (
775
+ obj: StopEngagementRequest
776
+ ) => any;
777
+
778
+ export declare const StopEngagementResultFilterSensitiveLog: (
779
+ obj: StopEngagementResult
780
+ ) => any;
781
+
782
+ export declare const TagResourceRequestFilterSensitiveLog: (
783
+ obj: TagResourceRequest
784
+ ) => any;
785
+
786
+ export declare const TagResourceResultFilterSensitiveLog: (
787
+ obj: TagResourceResult
788
+ ) => any;
789
+
790
+ export declare const UntagResourceRequestFilterSensitiveLog: (
791
+ obj: UntagResourceRequest
792
+ ) => any;
793
+
794
+ export declare const UntagResourceResultFilterSensitiveLog: (
795
+ obj: UntagResourceResult
796
+ ) => any;
797
+
798
+ export declare const UpdateContactRequestFilterSensitiveLog: (
799
+ obj: UpdateContactRequest
800
+ ) => any;
801
+
802
+ export declare const UpdateContactResultFilterSensitiveLog: (
803
+ obj: UpdateContactResult
804
+ ) => any;
805
+
806
+ export declare const UpdateContactChannelRequestFilterSensitiveLog: (
807
+ obj: UpdateContactChannelRequest
808
+ ) => any;
809
+
810
+ export declare const UpdateContactChannelResultFilterSensitiveLog: (
811
+ obj: UpdateContactChannelResult
812
+ ) => any;