@aws-sdk/client-ssm-contacts 3.50.0 → 3.53.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 (61) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/SSMContactsServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +129 -2
  5. package/dist-cjs/protocols/Aws_json1_1.js +302 -1219
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/SSMContactsServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +120 -1
  9. package/dist-es/protocols/Aws_json1_1.js +669 -1312
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/SSMContactsServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +58 -25
  13. package/dist-types/ts3.4/SSMContacts.d.ts +140 -0
  14. package/dist-types/ts3.4/SSMContactsClient.d.ts +100 -0
  15. package/dist-types/ts3.4/commands/AcceptPageCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/ActivateContactChannelCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreateContactChannelCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/CreateContactCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DeactivateContactChannelCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DeleteContactChannelCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DeleteContactCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/DescribeEngagementCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/DescribePageCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/GetContactChannelCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/GetContactCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/GetContactPolicyCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/ListContactChannelsCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/ListContactsCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/ListEngagementsCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/ListPageReceiptsCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/ListPagesByContactCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/ListPagesByEngagementCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/PutContactPolicyCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/SendActivationCodeCommand.d.ts +17 -0
  36. package/dist-types/ts3.4/commands/StartEngagementCommand.d.ts +17 -0
  37. package/dist-types/ts3.4/commands/StopEngagementCommand.d.ts +17 -0
  38. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/UpdateContactChannelCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/UpdateContactCommand.d.ts +17 -0
  42. package/dist-types/ts3.4/commands/index.d.ts +27 -0
  43. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  44. package/dist-types/ts3.4/index.d.ts +6 -0
  45. package/dist-types/ts3.4/models/SSMContactsServiceException.d.ts +6 -0
  46. package/dist-types/ts3.4/models/index.d.ts +1 -0
  47. package/dist-types/ts3.4/models/models_0.d.ts +884 -0
  48. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  49. package/dist-types/ts3.4/pagination/ListContactChannelsPaginator.d.ts +4 -0
  50. package/dist-types/ts3.4/pagination/ListContactsPaginator.d.ts +4 -0
  51. package/dist-types/ts3.4/pagination/ListEngagementsPaginator.d.ts +4 -0
  52. package/dist-types/ts3.4/pagination/ListPageReceiptsPaginator.d.ts +4 -0
  53. package/dist-types/ts3.4/pagination/ListPagesByContactPaginator.d.ts +4 -0
  54. package/dist-types/ts3.4/pagination/ListPagesByEngagementPaginator.d.ts +4 -0
  55. package/dist-types/ts3.4/pagination/index.d.ts +7 -0
  56. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +83 -0
  57. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  58. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  59. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  60. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  61. package/package.json +33 -33
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetContactRequest, GetContactResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
+ export interface GetContactCommandInput extends GetContactRequest {
6
+ }
7
+ export interface GetContactCommandOutput extends GetContactResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetContactCommand extends $Command<GetContactCommandInput, GetContactCommandOutput, SSMContactsClientResolvedConfig> {
11
+ readonly input: GetContactCommandInput;
12
+ constructor(input: GetContactCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetContactCommandInput, GetContactCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetContactPolicyRequest, GetContactPolicyResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
+ export interface GetContactPolicyCommandInput extends GetContactPolicyRequest {
6
+ }
7
+ export interface GetContactPolicyCommandOutput extends GetContactPolicyResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetContactPolicyCommand extends $Command<GetContactPolicyCommandInput, GetContactPolicyCommandOutput, SSMContactsClientResolvedConfig> {
11
+ readonly input: GetContactPolicyCommandInput;
12
+ constructor(input: GetContactPolicyCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetContactPolicyCommandInput, GetContactPolicyCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListContactChannelsRequest, ListContactChannelsResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
+ export interface ListContactChannelsCommandInput extends ListContactChannelsRequest {
6
+ }
7
+ export interface ListContactChannelsCommandOutput extends ListContactChannelsResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListContactChannelsCommand extends $Command<ListContactChannelsCommandInput, ListContactChannelsCommandOutput, SSMContactsClientResolvedConfig> {
11
+ readonly input: ListContactChannelsCommandInput;
12
+ constructor(input: ListContactChannelsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListContactChannelsCommandInput, ListContactChannelsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListContactsRequest, ListContactsResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
+ export interface ListContactsCommandInput extends ListContactsRequest {
6
+ }
7
+ export interface ListContactsCommandOutput extends ListContactsResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListContactsCommand extends $Command<ListContactsCommandInput, ListContactsCommandOutput, SSMContactsClientResolvedConfig> {
11
+ readonly input: ListContactsCommandInput;
12
+ constructor(input: ListContactsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListContactsCommandInput, ListContactsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListEngagementsRequest, ListEngagementsResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
+ export interface ListEngagementsCommandInput extends ListEngagementsRequest {
6
+ }
7
+ export interface ListEngagementsCommandOutput extends ListEngagementsResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListEngagementsCommand extends $Command<ListEngagementsCommandInput, ListEngagementsCommandOutput, SSMContactsClientResolvedConfig> {
11
+ readonly input: ListEngagementsCommandInput;
12
+ constructor(input: ListEngagementsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEngagementsCommandInput, ListEngagementsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListPageReceiptsRequest, ListPageReceiptsResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
+ export interface ListPageReceiptsCommandInput extends ListPageReceiptsRequest {
6
+ }
7
+ export interface ListPageReceiptsCommandOutput extends ListPageReceiptsResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListPageReceiptsCommand extends $Command<ListPageReceiptsCommandInput, ListPageReceiptsCommandOutput, SSMContactsClientResolvedConfig> {
11
+ readonly input: ListPageReceiptsCommandInput;
12
+ constructor(input: ListPageReceiptsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPageReceiptsCommandInput, ListPageReceiptsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListPagesByContactRequest, ListPagesByContactResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
+ export interface ListPagesByContactCommandInput extends ListPagesByContactRequest {
6
+ }
7
+ export interface ListPagesByContactCommandOutput extends ListPagesByContactResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListPagesByContactCommand extends $Command<ListPagesByContactCommandInput, ListPagesByContactCommandOutput, SSMContactsClientResolvedConfig> {
11
+ readonly input: ListPagesByContactCommandInput;
12
+ constructor(input: ListPagesByContactCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPagesByContactCommandInput, ListPagesByContactCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListPagesByEngagementRequest, ListPagesByEngagementResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
+ export interface ListPagesByEngagementCommandInput extends ListPagesByEngagementRequest {
6
+ }
7
+ export interface ListPagesByEngagementCommandOutput extends ListPagesByEngagementResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListPagesByEngagementCommand extends $Command<ListPagesByEngagementCommandInput, ListPagesByEngagementCommandOutput, SSMContactsClientResolvedConfig> {
11
+ readonly input: ListPagesByEngagementCommandInput;
12
+ constructor(input: ListPagesByEngagementCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPagesByEngagementCommandInput, ListPagesByEngagementCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
+ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
+ }
7
+ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SSMContactsClientResolvedConfig> {
11
+ readonly input: ListTagsForResourceCommandInput;
12
+ constructor(input: ListTagsForResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { PutContactPolicyRequest, PutContactPolicyResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
+ export interface PutContactPolicyCommandInput extends PutContactPolicyRequest {
6
+ }
7
+ export interface PutContactPolicyCommandOutput extends PutContactPolicyResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class PutContactPolicyCommand extends $Command<PutContactPolicyCommandInput, PutContactPolicyCommandOutput, SSMContactsClientResolvedConfig> {
11
+ readonly input: PutContactPolicyCommandInput;
12
+ constructor(input: PutContactPolicyCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutContactPolicyCommandInput, PutContactPolicyCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { SendActivationCodeRequest, SendActivationCodeResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
+ export interface SendActivationCodeCommandInput extends SendActivationCodeRequest {
6
+ }
7
+ export interface SendActivationCodeCommandOutput extends SendActivationCodeResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class SendActivationCodeCommand extends $Command<SendActivationCodeCommandInput, SendActivationCodeCommandOutput, SSMContactsClientResolvedConfig> {
11
+ readonly input: SendActivationCodeCommandInput;
12
+ constructor(input: SendActivationCodeCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendActivationCodeCommandInput, SendActivationCodeCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { StartEngagementRequest, StartEngagementResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
+ export interface StartEngagementCommandInput extends StartEngagementRequest {
6
+ }
7
+ export interface StartEngagementCommandOutput extends StartEngagementResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class StartEngagementCommand extends $Command<StartEngagementCommandInput, StartEngagementCommandOutput, SSMContactsClientResolvedConfig> {
11
+ readonly input: StartEngagementCommandInput;
12
+ constructor(input: StartEngagementCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartEngagementCommandInput, StartEngagementCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { StopEngagementRequest, StopEngagementResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
+ export interface StopEngagementCommandInput extends StopEngagementRequest {
6
+ }
7
+ export interface StopEngagementCommandOutput extends StopEngagementResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class StopEngagementCommand extends $Command<StopEngagementCommandInput, StopEngagementCommandOutput, SSMContactsClientResolvedConfig> {
11
+ readonly input: StopEngagementCommandInput;
12
+ constructor(input: StopEngagementCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopEngagementCommandInput, StopEngagementCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { TagResourceRequest, TagResourceResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
+ export interface TagResourceCommandInput extends TagResourceRequest {
6
+ }
7
+ export interface TagResourceCommandOutput extends TagResourceResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SSMContactsClientResolvedConfig> {
11
+ readonly input: TagResourceCommandInput;
12
+ constructor(input: TagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UntagResourceRequest, UntagResourceResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
+ export interface UntagResourceCommandInput extends UntagResourceRequest {
6
+ }
7
+ export interface UntagResourceCommandOutput extends UntagResourceResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SSMContactsClientResolvedConfig> {
11
+ readonly input: UntagResourceCommandInput;
12
+ constructor(input: UntagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UpdateContactChannelRequest, UpdateContactChannelResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
+ export interface UpdateContactChannelCommandInput extends UpdateContactChannelRequest {
6
+ }
7
+ export interface UpdateContactChannelCommandOutput extends UpdateContactChannelResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateContactChannelCommand extends $Command<UpdateContactChannelCommandInput, UpdateContactChannelCommandOutput, SSMContactsClientResolvedConfig> {
11
+ readonly input: UpdateContactChannelCommandInput;
12
+ constructor(input: UpdateContactChannelCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateContactChannelCommandInput, UpdateContactChannelCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UpdateContactRequest, UpdateContactResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
+ export interface UpdateContactCommandInput extends UpdateContactRequest {
6
+ }
7
+ export interface UpdateContactCommandOutput extends UpdateContactResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateContactCommand extends $Command<UpdateContactCommandInput, UpdateContactCommandOutput, SSMContactsClientResolvedConfig> {
11
+ readonly input: UpdateContactCommandInput;
12
+ constructor(input: UpdateContactCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateContactCommandInput, UpdateContactCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,27 @@
1
+ export * from "./AcceptPageCommand";
2
+ export * from "./ActivateContactChannelCommand";
3
+ export * from "./CreateContactChannelCommand";
4
+ export * from "./CreateContactCommand";
5
+ export * from "./DeactivateContactChannelCommand";
6
+ export * from "./DeleteContactChannelCommand";
7
+ export * from "./DeleteContactCommand";
8
+ export * from "./DescribeEngagementCommand";
9
+ export * from "./DescribePageCommand";
10
+ export * from "./GetContactChannelCommand";
11
+ export * from "./GetContactCommand";
12
+ export * from "./GetContactPolicyCommand";
13
+ export * from "./ListContactChannelsCommand";
14
+ export * from "./ListContactsCommand";
15
+ export * from "./ListEngagementsCommand";
16
+ export * from "./ListPageReceiptsCommand";
17
+ export * from "./ListPagesByContactCommand";
18
+ export * from "./ListPagesByEngagementCommand";
19
+ export * from "./ListTagsForResourceCommand";
20
+ export * from "./PutContactPolicyCommand";
21
+ export * from "./SendActivationCodeCommand";
22
+ export * from "./StartEngagementCommand";
23
+ export * from "./StopEngagementCommand";
24
+ export * from "./TagResourceCommand";
25
+ export * from "./UntagResourceCommand";
26
+ export * from "./UpdateContactChannelCommand";
27
+ export * from "./UpdateContactCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +1,6 @@
1
+ export * from "./SSMContacts";
2
+ export * from "./SSMContactsClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { SSMContactsServiceException } from "./models/SSMContactsServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class SSMContactsServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";