@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,17 +1,41 @@
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 { DeactivateContactChannelRequest, DeactivateContactChannelResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
- export interface DeactivateContactChannelCommandInput extends DeactivateContactChannelRequest {
6
- }
7
- export interface DeactivateContactChannelCommandOutput extends DeactivateContactChannelResult, __MetadataBearer {
8
- }
9
-
10
- export declare class DeactivateContactChannelCommand extends $Command<DeactivateContactChannelCommandInput, DeactivateContactChannelCommandOutput, SSMContactsClientResolvedConfig> {
11
- readonly input: DeactivateContactChannelCommandInput;
12
- constructor(input: DeactivateContactChannelCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeactivateContactChannelCommandInput, DeactivateContactChannelCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DeactivateContactChannelRequest,
10
+ DeactivateContactChannelResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMContactsClientResolvedConfig,
16
+ } from "../SSMContactsClient";
17
+ export interface DeactivateContactChannelCommandInput
18
+ extends DeactivateContactChannelRequest {}
19
+ export interface DeactivateContactChannelCommandOutput
20
+ extends DeactivateContactChannelResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeactivateContactChannelCommand extends $Command<
24
+ DeactivateContactChannelCommandInput,
25
+ DeactivateContactChannelCommandOutput,
26
+ SSMContactsClientResolvedConfig
27
+ > {
28
+ readonly input: DeactivateContactChannelCommandInput;
29
+ constructor(input: DeactivateContactChannelCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SSMContactsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeactivateContactChannelCommandInput,
37
+ DeactivateContactChannelCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
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 { DeleteContactChannelRequest, DeleteContactChannelResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
- export interface DeleteContactChannelCommandInput extends DeleteContactChannelRequest {
6
- }
7
- export interface DeleteContactChannelCommandOutput extends DeleteContactChannelResult, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteContactChannelCommand extends $Command<DeleteContactChannelCommandInput, DeleteContactChannelCommandOutput, SSMContactsClientResolvedConfig> {
11
- readonly input: DeleteContactChannelCommandInput;
12
- constructor(input: DeleteContactChannelCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteContactChannelCommandInput, DeleteContactChannelCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DeleteContactChannelRequest,
10
+ DeleteContactChannelResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMContactsClientResolvedConfig,
16
+ } from "../SSMContactsClient";
17
+ export interface DeleteContactChannelCommandInput
18
+ extends DeleteContactChannelRequest {}
19
+ export interface DeleteContactChannelCommandOutput
20
+ extends DeleteContactChannelResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteContactChannelCommand extends $Command<
24
+ DeleteContactChannelCommandInput,
25
+ DeleteContactChannelCommandOutput,
26
+ SSMContactsClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteContactChannelCommandInput;
29
+ constructor(input: DeleteContactChannelCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SSMContactsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteContactChannelCommandInput,
37
+ DeleteContactChannelCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,34 @@
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 { DeleteContactRequest, DeleteContactResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
- export interface DeleteContactCommandInput extends DeleteContactRequest {
6
- }
7
- export interface DeleteContactCommandOutput extends DeleteContactResult, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteContactCommand extends $Command<DeleteContactCommandInput, DeleteContactCommandOutput, SSMContactsClientResolvedConfig> {
11
- readonly input: DeleteContactCommandInput;
12
- constructor(input: DeleteContactCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteContactCommandInput, DeleteContactCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { DeleteContactRequest, DeleteContactResult } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SSMContactsClientResolvedConfig,
13
+ } from "../SSMContactsClient";
14
+ export interface DeleteContactCommandInput extends DeleteContactRequest {}
15
+ export interface DeleteContactCommandOutput
16
+ extends DeleteContactResult,
17
+ __MetadataBearer {}
18
+
19
+ export declare class DeleteContactCommand extends $Command<
20
+ DeleteContactCommandInput,
21
+ DeleteContactCommandOutput,
22
+ SSMContactsClientResolvedConfig
23
+ > {
24
+ readonly input: DeleteContactCommandInput;
25
+ constructor(input: DeleteContactCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SSMContactsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DeleteContactCommandInput, DeleteContactCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,38 @@
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 { DescribeEngagementRequest, DescribeEngagementResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
- export interface DescribeEngagementCommandInput extends DescribeEngagementRequest {
6
- }
7
- export interface DescribeEngagementCommandOutput extends DescribeEngagementResult, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeEngagementCommand extends $Command<DescribeEngagementCommandInput, DescribeEngagementCommandOutput, SSMContactsClientResolvedConfig> {
11
- readonly input: DescribeEngagementCommandInput;
12
- constructor(input: DescribeEngagementCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEngagementCommandInput, DescribeEngagementCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DescribeEngagementRequest,
10
+ DescribeEngagementResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMContactsClientResolvedConfig,
16
+ } from "../SSMContactsClient";
17
+ export interface DescribeEngagementCommandInput
18
+ extends DescribeEngagementRequest {}
19
+ export interface DescribeEngagementCommandOutput
20
+ extends DescribeEngagementResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeEngagementCommand extends $Command<
24
+ DescribeEngagementCommandInput,
25
+ DescribeEngagementCommandOutput,
26
+ SSMContactsClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeEngagementCommandInput;
29
+ constructor(input: DescribeEngagementCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SSMContactsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DescribeEngagementCommandInput, DescribeEngagementCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
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 { DescribePageRequest, DescribePageResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
- export interface DescribePageCommandInput extends DescribePageRequest {
6
- }
7
- export interface DescribePageCommandOutput extends DescribePageResult, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribePageCommand extends $Command<DescribePageCommandInput, DescribePageCommandOutput, SSMContactsClientResolvedConfig> {
11
- readonly input: DescribePageCommandInput;
12
- constructor(input: DescribePageCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribePageCommandInput, DescribePageCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { DescribePageRequest, DescribePageResult } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SSMContactsClientResolvedConfig,
13
+ } from "../SSMContactsClient";
14
+ export interface DescribePageCommandInput extends DescribePageRequest {}
15
+ export interface DescribePageCommandOutput
16
+ extends DescribePageResult,
17
+ __MetadataBearer {}
18
+
19
+ export declare class DescribePageCommand extends $Command<
20
+ DescribePageCommandInput,
21
+ DescribePageCommandOutput,
22
+ SSMContactsClientResolvedConfig
23
+ > {
24
+ readonly input: DescribePageCommandInput;
25
+ constructor(input: DescribePageCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SSMContactsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DescribePageCommandInput, DescribePageCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,38 @@
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 { GetContactChannelRequest, GetContactChannelResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
5
- export interface GetContactChannelCommandInput extends GetContactChannelRequest {
6
- }
7
- export interface GetContactChannelCommandOutput extends GetContactChannelResult, __MetadataBearer {
8
- }
9
-
10
- export declare class GetContactChannelCommand extends $Command<GetContactChannelCommandInput, GetContactChannelCommandOutput, SSMContactsClientResolvedConfig> {
11
- readonly input: GetContactChannelCommandInput;
12
- constructor(input: GetContactChannelCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetContactChannelCommandInput, GetContactChannelCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetContactChannelRequest,
10
+ GetContactChannelResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMContactsClientResolvedConfig,
16
+ } from "../SSMContactsClient";
17
+ export interface GetContactChannelCommandInput
18
+ extends GetContactChannelRequest {}
19
+ export interface GetContactChannelCommandOutput
20
+ extends GetContactChannelResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetContactChannelCommand extends $Command<
24
+ GetContactChannelCommandInput,
25
+ GetContactChannelCommandOutput,
26
+ SSMContactsClientResolvedConfig
27
+ > {
28
+ readonly input: GetContactChannelCommandInput;
29
+ constructor(input: GetContactChannelCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SSMContactsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetContactChannelCommandInput, GetContactChannelCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { GetContactRequest, GetContactResult } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SSMContactsClientResolvedConfig,
13
+ } from "../SSMContactsClient";
14
+ export interface GetContactCommandInput extends GetContactRequest {}
15
+ export interface GetContactCommandOutput
16
+ extends GetContactResult,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetContactCommand extends $Command<
20
+ GetContactCommandInput,
21
+ GetContactCommandOutput,
22
+ SSMContactsClientResolvedConfig
23
+ > {
24
+ readonly input: GetContactCommandInput;
25
+ constructor(input: GetContactCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SSMContactsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetContactCommandInput, GetContactCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetContactPolicyRequest,
10
+ GetContactPolicyResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMContactsClientResolvedConfig,
16
+ } from "../SSMContactsClient";
17
+ export interface GetContactPolicyCommandInput extends GetContactPolicyRequest {}
18
+ export interface GetContactPolicyCommandOutput
19
+ extends GetContactPolicyResult,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetContactPolicyCommand extends $Command<
23
+ GetContactPolicyCommandInput,
24
+ GetContactPolicyCommandOutput,
25
+ SSMContactsClientResolvedConfig
26
+ > {
27
+ readonly input: GetContactPolicyCommandInput;
28
+ constructor(input: GetContactPolicyCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SSMContactsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetContactPolicyCommandInput, GetContactPolicyCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ListContactChannelsRequest,
10
+ ListContactChannelsResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMContactsClientResolvedConfig,
16
+ } from "../SSMContactsClient";
17
+ export interface ListContactChannelsCommandInput
18
+ extends ListContactChannelsRequest {}
19
+ export interface ListContactChannelsCommandOutput
20
+ extends ListContactChannelsResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListContactChannelsCommand extends $Command<
24
+ ListContactChannelsCommandInput,
25
+ ListContactChannelsCommandOutput,
26
+ SSMContactsClientResolvedConfig
27
+ > {
28
+ readonly input: ListContactChannelsCommandInput;
29
+ constructor(input: ListContactChannelsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SSMContactsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListContactChannelsCommandInput, ListContactChannelsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { ListContactsRequest, ListContactsResult } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SSMContactsClientResolvedConfig,
13
+ } from "../SSMContactsClient";
14
+ export interface ListContactsCommandInput extends ListContactsRequest {}
15
+ export interface ListContactsCommandOutput
16
+ extends ListContactsResult,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListContactsCommand extends $Command<
20
+ ListContactsCommandInput,
21
+ ListContactsCommandOutput,
22
+ SSMContactsClientResolvedConfig
23
+ > {
24
+ readonly input: ListContactsCommandInput;
25
+ constructor(input: ListContactsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SSMContactsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListContactsCommandInput, ListContactsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ListEngagementsRequest,
10
+ ListEngagementsResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMContactsClientResolvedConfig,
16
+ } from "../SSMContactsClient";
17
+ export interface ListEngagementsCommandInput extends ListEngagementsRequest {}
18
+ export interface ListEngagementsCommandOutput
19
+ extends ListEngagementsResult,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListEngagementsCommand extends $Command<
23
+ ListEngagementsCommandInput,
24
+ ListEngagementsCommandOutput,
25
+ SSMContactsClientResolvedConfig
26
+ > {
27
+ readonly input: ListEngagementsCommandInput;
28
+ constructor(input: ListEngagementsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SSMContactsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListEngagementsCommandInput, ListEngagementsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }