@aws-sdk/client-ssm-contacts 3.169.0 → 3.171.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 +463 -140
  3. package/dist-types/ts3.4/SSMContactsClient.d.ts +266 -100
  4. package/dist-types/ts3.4/commands/AcceptPageCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/ActivateContactChannelCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CreateContactChannelCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/CreateContactCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/DeactivateContactChannelCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/DeleteContactChannelCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/DeleteContactCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/DescribeEngagementCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/DescribePageCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/GetContactChannelCommand.d.ts +36 -17
  14. package/dist-types/ts3.4/commands/GetContactCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/GetContactPolicyCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/ListContactChannelsCommand.d.ts +36 -17
  17. package/dist-types/ts3.4/commands/ListContactsCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/ListEngagementsCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/ListPageReceiptsCommand.d.ts +35 -17
  20. package/dist-types/ts3.4/commands/ListPagesByContactCommand.d.ts +36 -17
  21. package/dist-types/ts3.4/commands/ListPagesByEngagementCommand.d.ts +39 -17
  22. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  23. package/dist-types/ts3.4/commands/PutContactPolicyCommand.d.ts +35 -17
  24. package/dist-types/ts3.4/commands/SendActivationCodeCommand.d.ts +36 -17
  25. package/dist-types/ts3.4/commands/StartEngagementCommand.d.ts +35 -17
  26. package/dist-types/ts3.4/commands/StopEngagementCommand.d.ts +35 -17
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
  29. package/dist-types/ts3.4/commands/UpdateContactChannelCommand.d.ts +39 -17
  30. package/dist-types/ts3.4/commands/UpdateContactCommand.d.ts +32 -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 +7 -6
  35. package/dist-types/ts3.4/models/index.d.ts +1 -1
  36. package/dist-types/ts3.4/models/models_0.d.ts +589 -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 +65 -38
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  49. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  50. package/package.json +34 -34
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { SSMContacts } from "../SSMContacts";
3
- import { SSMContactsClient } from "../SSMContactsClient";
4
- export interface SSMContactsPaginationConfiguration extends PaginationConfiguration {
5
- client: SSMContacts | SSMContactsClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { SSMContacts } from "../SSMContacts";
3
+ import { SSMContactsClient } from "../SSMContactsClient";
4
+ export interface SSMContactsPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: SSMContacts | SSMContactsClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListContactChannelsCommandInput, ListContactChannelsCommandOutput } from "../commands/ListContactChannelsCommand";
3
- import { SSMContactsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListContactChannels(config: SSMContactsPaginationConfiguration, input: ListContactChannelsCommandInput, ...additionalArguments: any): Paginator<ListContactChannelsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListContactChannelsCommandInput,
4
+ ListContactChannelsCommandOutput,
5
+ } from "../commands/ListContactChannelsCommand";
6
+ import { SSMContactsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListContactChannels(
8
+ config: SSMContactsPaginationConfiguration,
9
+ input: ListContactChannelsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListContactChannelsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListContactsCommandInput, ListContactsCommandOutput } from "../commands/ListContactsCommand";
3
- import { SSMContactsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListContacts(config: SSMContactsPaginationConfiguration, input: ListContactsCommandInput, ...additionalArguments: any): Paginator<ListContactsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListContactsCommandInput,
4
+ ListContactsCommandOutput,
5
+ } from "../commands/ListContactsCommand";
6
+ import { SSMContactsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListContacts(
8
+ config: SSMContactsPaginationConfiguration,
9
+ input: ListContactsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListContactsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListEngagementsCommandInput, ListEngagementsCommandOutput } from "../commands/ListEngagementsCommand";
3
- import { SSMContactsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListEngagements(config: SSMContactsPaginationConfiguration, input: ListEngagementsCommandInput, ...additionalArguments: any): Paginator<ListEngagementsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListEngagementsCommandInput,
4
+ ListEngagementsCommandOutput,
5
+ } from "../commands/ListEngagementsCommand";
6
+ import { SSMContactsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListEngagements(
8
+ config: SSMContactsPaginationConfiguration,
9
+ input: ListEngagementsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListEngagementsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListPageReceiptsCommandInput, ListPageReceiptsCommandOutput } from "../commands/ListPageReceiptsCommand";
3
- import { SSMContactsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListPageReceipts(config: SSMContactsPaginationConfiguration, input: ListPageReceiptsCommandInput, ...additionalArguments: any): Paginator<ListPageReceiptsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListPageReceiptsCommandInput,
4
+ ListPageReceiptsCommandOutput,
5
+ } from "../commands/ListPageReceiptsCommand";
6
+ import { SSMContactsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListPageReceipts(
8
+ config: SSMContactsPaginationConfiguration,
9
+ input: ListPageReceiptsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListPageReceiptsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListPagesByContactCommandInput, ListPagesByContactCommandOutput } from "../commands/ListPagesByContactCommand";
3
- import { SSMContactsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListPagesByContact(config: SSMContactsPaginationConfiguration, input: ListPagesByContactCommandInput, ...additionalArguments: any): Paginator<ListPagesByContactCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListPagesByContactCommandInput,
4
+ ListPagesByContactCommandOutput,
5
+ } from "../commands/ListPagesByContactCommand";
6
+ import { SSMContactsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListPagesByContact(
8
+ config: SSMContactsPaginationConfiguration,
9
+ input: ListPagesByContactCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListPagesByContactCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListPagesByEngagementCommandInput, ListPagesByEngagementCommandOutput } from "../commands/ListPagesByEngagementCommand";
3
- import { SSMContactsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListPagesByEngagement(config: SSMContactsPaginationConfiguration, input: ListPagesByEngagementCommandInput, ...additionalArguments: any): Paginator<ListPagesByEngagementCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListPagesByEngagementCommandInput,
4
+ ListPagesByEngagementCommandOutput,
5
+ } from "../commands/ListPagesByEngagementCommand";
6
+ import { SSMContactsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListPagesByEngagement(
8
+ config: SSMContactsPaginationConfiguration,
9
+ input: ListPagesByEngagementCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListPagesByEngagementCommandOutput>;
@@ -1,7 +1,7 @@
1
- export * from "./Interfaces";
2
- export * from "./ListContactChannelsPaginator";
3
- export * from "./ListContactsPaginator";
4
- export * from "./ListEngagementsPaginator";
5
- export * from "./ListPageReceiptsPaginator";
6
- export * from "./ListPagesByContactPaginator";
7
- export * from "./ListPagesByEngagementPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListContactChannelsPaginator";
3
+ export * from "./ListContactsPaginator";
4
+ export * from "./ListEngagementsPaginator";
5
+ export * from "./ListPageReceiptsPaginator";
6
+ export * from "./ListPagesByContactPaginator";
7
+ export * from "./ListPagesByEngagementPaginator";
@@ -1,83 +1,329 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { AcceptPageCommandInput, AcceptPageCommandOutput } from "../commands/AcceptPageCommand";
4
- import { ActivateContactChannelCommandInput, ActivateContactChannelCommandOutput } from "../commands/ActivateContactChannelCommand";
5
- import { CreateContactChannelCommandInput, CreateContactChannelCommandOutput } from "../commands/CreateContactChannelCommand";
6
- import { CreateContactCommandInput, CreateContactCommandOutput } from "../commands/CreateContactCommand";
7
- import { DeactivateContactChannelCommandInput, DeactivateContactChannelCommandOutput } from "../commands/DeactivateContactChannelCommand";
8
- import { DeleteContactChannelCommandInput, DeleteContactChannelCommandOutput } from "../commands/DeleteContactChannelCommand";
9
- import { DeleteContactCommandInput, DeleteContactCommandOutput } from "../commands/DeleteContactCommand";
10
- import { DescribeEngagementCommandInput, DescribeEngagementCommandOutput } from "../commands/DescribeEngagementCommand";
11
- import { DescribePageCommandInput, DescribePageCommandOutput } from "../commands/DescribePageCommand";
12
- import { GetContactChannelCommandInput, GetContactChannelCommandOutput } from "../commands/GetContactChannelCommand";
13
- import { GetContactCommandInput, GetContactCommandOutput } from "../commands/GetContactCommand";
14
- import { GetContactPolicyCommandInput, GetContactPolicyCommandOutput } from "../commands/GetContactPolicyCommand";
15
- import { ListContactChannelsCommandInput, ListContactChannelsCommandOutput } from "../commands/ListContactChannelsCommand";
16
- import { ListContactsCommandInput, ListContactsCommandOutput } from "../commands/ListContactsCommand";
17
- import { ListEngagementsCommandInput, ListEngagementsCommandOutput } from "../commands/ListEngagementsCommand";
18
- import { ListPageReceiptsCommandInput, ListPageReceiptsCommandOutput } from "../commands/ListPageReceiptsCommand";
19
- import { ListPagesByContactCommandInput, ListPagesByContactCommandOutput } from "../commands/ListPagesByContactCommand";
20
- import { ListPagesByEngagementCommandInput, ListPagesByEngagementCommandOutput } from "../commands/ListPagesByEngagementCommand";
21
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
22
- import { PutContactPolicyCommandInput, PutContactPolicyCommandOutput } from "../commands/PutContactPolicyCommand";
23
- import { SendActivationCodeCommandInput, SendActivationCodeCommandOutput } from "../commands/SendActivationCodeCommand";
24
- import { StartEngagementCommandInput, StartEngagementCommandOutput } from "../commands/StartEngagementCommand";
25
- import { StopEngagementCommandInput, StopEngagementCommandOutput } from "../commands/StopEngagementCommand";
26
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
27
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
28
- import { UpdateContactChannelCommandInput, UpdateContactChannelCommandOutput } from "../commands/UpdateContactChannelCommand";
29
- import { UpdateContactCommandInput, UpdateContactCommandOutput } from "../commands/UpdateContactCommand";
30
- export declare const serializeAws_json1_1AcceptPageCommand: (input: AcceptPageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_json1_1ActivateContactChannelCommand: (input: ActivateContactChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_json1_1CreateContactCommand: (input: CreateContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_json1_1CreateContactChannelCommand: (input: CreateContactChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_json1_1DeactivateContactChannelCommand: (input: DeactivateContactChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_json1_1DeleteContactCommand: (input: DeleteContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_json1_1DeleteContactChannelCommand: (input: DeleteContactChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_json1_1DescribeEngagementCommand: (input: DescribeEngagementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_json1_1DescribePageCommand: (input: DescribePageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_json1_1GetContactCommand: (input: GetContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_json1_1GetContactChannelCommand: (input: GetContactChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_json1_1GetContactPolicyCommand: (input: GetContactPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_json1_1ListContactChannelsCommand: (input: ListContactChannelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_json1_1ListContactsCommand: (input: ListContactsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_json1_1ListEngagementsCommand: (input: ListEngagementsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_json1_1ListPageReceiptsCommand: (input: ListPageReceiptsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_json1_1ListPagesByContactCommand: (input: ListPagesByContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const serializeAws_json1_1ListPagesByEngagementCommand: (input: ListPagesByEngagementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
- export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
- export declare const serializeAws_json1_1PutContactPolicyCommand: (input: PutContactPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
- export declare const serializeAws_json1_1SendActivationCodeCommand: (input: SendActivationCodeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
- export declare const serializeAws_json1_1StartEngagementCommand: (input: StartEngagementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
- export declare const serializeAws_json1_1StopEngagementCommand: (input: StopEngagementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
- export declare const serializeAws_json1_1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
- export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
- export declare const serializeAws_json1_1UpdateContactCommand: (input: UpdateContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
- export declare const serializeAws_json1_1UpdateContactChannelCommand: (input: UpdateContactChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
- export declare const deserializeAws_json1_1AcceptPageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AcceptPageCommandOutput>;
58
- export declare const deserializeAws_json1_1ActivateContactChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ActivateContactChannelCommandOutput>;
59
- export declare const deserializeAws_json1_1CreateContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateContactCommandOutput>;
60
- export declare const deserializeAws_json1_1CreateContactChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateContactChannelCommandOutput>;
61
- export declare const deserializeAws_json1_1DeactivateContactChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeactivateContactChannelCommandOutput>;
62
- export declare const deserializeAws_json1_1DeleteContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteContactCommandOutput>;
63
- export declare const deserializeAws_json1_1DeleteContactChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteContactChannelCommandOutput>;
64
- export declare const deserializeAws_json1_1DescribeEngagementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEngagementCommandOutput>;
65
- export declare const deserializeAws_json1_1DescribePageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribePageCommandOutput>;
66
- export declare const deserializeAws_json1_1GetContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetContactCommandOutput>;
67
- export declare const deserializeAws_json1_1GetContactChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetContactChannelCommandOutput>;
68
- export declare const deserializeAws_json1_1GetContactPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetContactPolicyCommandOutput>;
69
- export declare const deserializeAws_json1_1ListContactChannelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListContactChannelsCommandOutput>;
70
- export declare const deserializeAws_json1_1ListContactsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListContactsCommandOutput>;
71
- export declare const deserializeAws_json1_1ListEngagementsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEngagementsCommandOutput>;
72
- export declare const deserializeAws_json1_1ListPageReceiptsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPageReceiptsCommandOutput>;
73
- export declare const deserializeAws_json1_1ListPagesByContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPagesByContactCommandOutput>;
74
- export declare const deserializeAws_json1_1ListPagesByEngagementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPagesByEngagementCommandOutput>;
75
- export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
76
- export declare const deserializeAws_json1_1PutContactPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutContactPolicyCommandOutput>;
77
- export declare const deserializeAws_json1_1SendActivationCodeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendActivationCodeCommandOutput>;
78
- export declare const deserializeAws_json1_1StartEngagementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartEngagementCommandOutput>;
79
- export declare const deserializeAws_json1_1StopEngagementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopEngagementCommandOutput>;
80
- export declare const deserializeAws_json1_1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
81
- export declare const deserializeAws_json1_1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
82
- export declare const deserializeAws_json1_1UpdateContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateContactCommandOutput>;
83
- export declare const deserializeAws_json1_1UpdateContactChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateContactChannelCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ AcceptPageCommandInput,
8
+ AcceptPageCommandOutput,
9
+ } from "../commands/AcceptPageCommand";
10
+ import {
11
+ ActivateContactChannelCommandInput,
12
+ ActivateContactChannelCommandOutput,
13
+ } from "../commands/ActivateContactChannelCommand";
14
+ import {
15
+ CreateContactChannelCommandInput,
16
+ CreateContactChannelCommandOutput,
17
+ } from "../commands/CreateContactChannelCommand";
18
+ import {
19
+ CreateContactCommandInput,
20
+ CreateContactCommandOutput,
21
+ } from "../commands/CreateContactCommand";
22
+ import {
23
+ DeactivateContactChannelCommandInput,
24
+ DeactivateContactChannelCommandOutput,
25
+ } from "../commands/DeactivateContactChannelCommand";
26
+ import {
27
+ DeleteContactChannelCommandInput,
28
+ DeleteContactChannelCommandOutput,
29
+ } from "../commands/DeleteContactChannelCommand";
30
+ import {
31
+ DeleteContactCommandInput,
32
+ DeleteContactCommandOutput,
33
+ } from "../commands/DeleteContactCommand";
34
+ import {
35
+ DescribeEngagementCommandInput,
36
+ DescribeEngagementCommandOutput,
37
+ } from "../commands/DescribeEngagementCommand";
38
+ import {
39
+ DescribePageCommandInput,
40
+ DescribePageCommandOutput,
41
+ } from "../commands/DescribePageCommand";
42
+ import {
43
+ GetContactChannelCommandInput,
44
+ GetContactChannelCommandOutput,
45
+ } from "../commands/GetContactChannelCommand";
46
+ import {
47
+ GetContactCommandInput,
48
+ GetContactCommandOutput,
49
+ } from "../commands/GetContactCommand";
50
+ import {
51
+ GetContactPolicyCommandInput,
52
+ GetContactPolicyCommandOutput,
53
+ } from "../commands/GetContactPolicyCommand";
54
+ import {
55
+ ListContactChannelsCommandInput,
56
+ ListContactChannelsCommandOutput,
57
+ } from "../commands/ListContactChannelsCommand";
58
+ import {
59
+ ListContactsCommandInput,
60
+ ListContactsCommandOutput,
61
+ } from "../commands/ListContactsCommand";
62
+ import {
63
+ ListEngagementsCommandInput,
64
+ ListEngagementsCommandOutput,
65
+ } from "../commands/ListEngagementsCommand";
66
+ import {
67
+ ListPageReceiptsCommandInput,
68
+ ListPageReceiptsCommandOutput,
69
+ } from "../commands/ListPageReceiptsCommand";
70
+ import {
71
+ ListPagesByContactCommandInput,
72
+ ListPagesByContactCommandOutput,
73
+ } from "../commands/ListPagesByContactCommand";
74
+ import {
75
+ ListPagesByEngagementCommandInput,
76
+ ListPagesByEngagementCommandOutput,
77
+ } from "../commands/ListPagesByEngagementCommand";
78
+ import {
79
+ ListTagsForResourceCommandInput,
80
+ ListTagsForResourceCommandOutput,
81
+ } from "../commands/ListTagsForResourceCommand";
82
+ import {
83
+ PutContactPolicyCommandInput,
84
+ PutContactPolicyCommandOutput,
85
+ } from "../commands/PutContactPolicyCommand";
86
+ import {
87
+ SendActivationCodeCommandInput,
88
+ SendActivationCodeCommandOutput,
89
+ } from "../commands/SendActivationCodeCommand";
90
+ import {
91
+ StartEngagementCommandInput,
92
+ StartEngagementCommandOutput,
93
+ } from "../commands/StartEngagementCommand";
94
+ import {
95
+ StopEngagementCommandInput,
96
+ StopEngagementCommandOutput,
97
+ } from "../commands/StopEngagementCommand";
98
+ import {
99
+ TagResourceCommandInput,
100
+ TagResourceCommandOutput,
101
+ } from "../commands/TagResourceCommand";
102
+ import {
103
+ UntagResourceCommandInput,
104
+ UntagResourceCommandOutput,
105
+ } from "../commands/UntagResourceCommand";
106
+ import {
107
+ UpdateContactChannelCommandInput,
108
+ UpdateContactChannelCommandOutput,
109
+ } from "../commands/UpdateContactChannelCommand";
110
+ import {
111
+ UpdateContactCommandInput,
112
+ UpdateContactCommandOutput,
113
+ } from "../commands/UpdateContactCommand";
114
+ export declare const serializeAws_json1_1AcceptPageCommand: (
115
+ input: AcceptPageCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const serializeAws_json1_1ActivateContactChannelCommand: (
119
+ input: ActivateContactChannelCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_json1_1CreateContactCommand: (
123
+ input: CreateContactCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_json1_1CreateContactChannelCommand: (
127
+ input: CreateContactChannelCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_json1_1DeactivateContactChannelCommand: (
131
+ input: DeactivateContactChannelCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_json1_1DeleteContactCommand: (
135
+ input: DeleteContactCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_json1_1DeleteContactChannelCommand: (
139
+ input: DeleteContactChannelCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_json1_1DescribeEngagementCommand: (
143
+ input: DescribeEngagementCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_json1_1DescribePageCommand: (
147
+ input: DescribePageCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_json1_1GetContactCommand: (
151
+ input: GetContactCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_json1_1GetContactChannelCommand: (
155
+ input: GetContactChannelCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_json1_1GetContactPolicyCommand: (
159
+ input: GetContactPolicyCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_json1_1ListContactChannelsCommand: (
163
+ input: ListContactChannelsCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_json1_1ListContactsCommand: (
167
+ input: ListContactsCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_json1_1ListEngagementsCommand: (
171
+ input: ListEngagementsCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const serializeAws_json1_1ListPageReceiptsCommand: (
175
+ input: ListPageReceiptsCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const serializeAws_json1_1ListPagesByContactCommand: (
179
+ input: ListPagesByContactCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const serializeAws_json1_1ListPagesByEngagementCommand: (
183
+ input: ListPagesByEngagementCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
186
+ export declare const serializeAws_json1_1ListTagsForResourceCommand: (
187
+ input: ListTagsForResourceCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const serializeAws_json1_1PutContactPolicyCommand: (
191
+ input: PutContactPolicyCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
194
+ export declare const serializeAws_json1_1SendActivationCodeCommand: (
195
+ input: SendActivationCodeCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
198
+ export declare const serializeAws_json1_1StartEngagementCommand: (
199
+ input: StartEngagementCommandInput,
200
+ context: __SerdeContext
201
+ ) => Promise<__HttpRequest>;
202
+ export declare const serializeAws_json1_1StopEngagementCommand: (
203
+ input: StopEngagementCommandInput,
204
+ context: __SerdeContext
205
+ ) => Promise<__HttpRequest>;
206
+ export declare const serializeAws_json1_1TagResourceCommand: (
207
+ input: TagResourceCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
210
+ export declare const serializeAws_json1_1UntagResourceCommand: (
211
+ input: UntagResourceCommandInput,
212
+ context: __SerdeContext
213
+ ) => Promise<__HttpRequest>;
214
+ export declare const serializeAws_json1_1UpdateContactCommand: (
215
+ input: UpdateContactCommandInput,
216
+ context: __SerdeContext
217
+ ) => Promise<__HttpRequest>;
218
+ export declare const serializeAws_json1_1UpdateContactChannelCommand: (
219
+ input: UpdateContactChannelCommandInput,
220
+ context: __SerdeContext
221
+ ) => Promise<__HttpRequest>;
222
+ export declare const deserializeAws_json1_1AcceptPageCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<AcceptPageCommandOutput>;
226
+ export declare const deserializeAws_json1_1ActivateContactChannelCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<ActivateContactChannelCommandOutput>;
230
+ export declare const deserializeAws_json1_1CreateContactCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<CreateContactCommandOutput>;
234
+ export declare const deserializeAws_json1_1CreateContactChannelCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<CreateContactChannelCommandOutput>;
238
+ export declare const deserializeAws_json1_1DeactivateContactChannelCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<DeactivateContactChannelCommandOutput>;
242
+ export declare const deserializeAws_json1_1DeleteContactCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<DeleteContactCommandOutput>;
246
+ export declare const deserializeAws_json1_1DeleteContactChannelCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<DeleteContactChannelCommandOutput>;
250
+ export declare const deserializeAws_json1_1DescribeEngagementCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<DescribeEngagementCommandOutput>;
254
+ export declare const deserializeAws_json1_1DescribePageCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<DescribePageCommandOutput>;
258
+ export declare const deserializeAws_json1_1GetContactCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<GetContactCommandOutput>;
262
+ export declare const deserializeAws_json1_1GetContactChannelCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<GetContactChannelCommandOutput>;
266
+ export declare const deserializeAws_json1_1GetContactPolicyCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<GetContactPolicyCommandOutput>;
270
+ export declare const deserializeAws_json1_1ListContactChannelsCommand: (
271
+ output: __HttpResponse,
272
+ context: __SerdeContext
273
+ ) => Promise<ListContactChannelsCommandOutput>;
274
+ export declare const deserializeAws_json1_1ListContactsCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<ListContactsCommandOutput>;
278
+ export declare const deserializeAws_json1_1ListEngagementsCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<ListEngagementsCommandOutput>;
282
+ export declare const deserializeAws_json1_1ListPageReceiptsCommand: (
283
+ output: __HttpResponse,
284
+ context: __SerdeContext
285
+ ) => Promise<ListPageReceiptsCommandOutput>;
286
+ export declare const deserializeAws_json1_1ListPagesByContactCommand: (
287
+ output: __HttpResponse,
288
+ context: __SerdeContext
289
+ ) => Promise<ListPagesByContactCommandOutput>;
290
+ export declare const deserializeAws_json1_1ListPagesByEngagementCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<ListPagesByEngagementCommandOutput>;
294
+ export declare const deserializeAws_json1_1ListTagsForResourceCommand: (
295
+ output: __HttpResponse,
296
+ context: __SerdeContext
297
+ ) => Promise<ListTagsForResourceCommandOutput>;
298
+ export declare const deserializeAws_json1_1PutContactPolicyCommand: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<PutContactPolicyCommandOutput>;
302
+ export declare const deserializeAws_json1_1SendActivationCodeCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<SendActivationCodeCommandOutput>;
306
+ export declare const deserializeAws_json1_1StartEngagementCommand: (
307
+ output: __HttpResponse,
308
+ context: __SerdeContext
309
+ ) => Promise<StartEngagementCommandOutput>;
310
+ export declare const deserializeAws_json1_1StopEngagementCommand: (
311
+ output: __HttpResponse,
312
+ context: __SerdeContext
313
+ ) => Promise<StopEngagementCommandOutput>;
314
+ export declare const deserializeAws_json1_1TagResourceCommand: (
315
+ output: __HttpResponse,
316
+ context: __SerdeContext
317
+ ) => Promise<TagResourceCommandOutput>;
318
+ export declare const deserializeAws_json1_1UntagResourceCommand: (
319
+ output: __HttpResponse,
320
+ context: __SerdeContext
321
+ ) => Promise<UntagResourceCommandOutput>;
322
+ export declare const deserializeAws_json1_1UpdateContactCommand: (
323
+ output: __HttpResponse,
324
+ context: __SerdeContext
325
+ ) => Promise<UpdateContactCommandOutput>;
326
+ export declare const deserializeAws_json1_1UpdateContactChannelCommand: (
327
+ output: __HttpResponse,
328
+ context: __SerdeContext
329
+ ) => Promise<UpdateContactChannelCommandOutput>;