@aws-sdk/client-ssm-contacts 3.47.1 → 3.50.0

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