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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/SSMContacts.d.ts +140 -0
  3. package/dist-types/ts3.4/SSMContactsClient.d.ts +100 -0
  4. package/dist-types/ts3.4/commands/AcceptPageCommand.d.ts +17 -0
  5. package/dist-types/ts3.4/commands/ActivateContactChannelCommand.d.ts +17 -0
  6. package/dist-types/ts3.4/commands/CreateContactChannelCommand.d.ts +17 -0
  7. package/dist-types/ts3.4/commands/CreateContactCommand.d.ts +17 -0
  8. package/dist-types/ts3.4/commands/DeactivateContactChannelCommand.d.ts +17 -0
  9. package/dist-types/ts3.4/commands/DeleteContactChannelCommand.d.ts +17 -0
  10. package/dist-types/ts3.4/commands/DeleteContactCommand.d.ts +17 -0
  11. package/dist-types/ts3.4/commands/DescribeEngagementCommand.d.ts +17 -0
  12. package/dist-types/ts3.4/commands/DescribePageCommand.d.ts +17 -0
  13. package/dist-types/ts3.4/commands/GetContactChannelCommand.d.ts +17 -0
  14. package/dist-types/ts3.4/commands/GetContactCommand.d.ts +17 -0
  15. package/dist-types/ts3.4/commands/GetContactPolicyCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/ListContactChannelsCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/ListContactsCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/ListEngagementsCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/ListPageReceiptsCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/ListPagesByContactCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/ListPagesByEngagementCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/PutContactPolicyCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/SendActivationCodeCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/StartEngagementCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/StopEngagementCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/UpdateContactChannelCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/UpdateContactCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/index.d.ts +27 -0
  32. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  33. package/dist-types/ts3.4/index.d.ts +5 -0
  34. package/dist-types/ts3.4/models/index.d.ts +1 -0
  35. package/dist-types/ts3.4/models/models_0.d.ts +867 -0
  36. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  37. package/dist-types/ts3.4/pagination/ListContactChannelsPaginator.d.ts +4 -0
  38. package/dist-types/ts3.4/pagination/ListContactsPaginator.d.ts +4 -0
  39. package/dist-types/ts3.4/pagination/ListEngagementsPaginator.d.ts +4 -0
  40. package/dist-types/ts3.4/pagination/ListPageReceiptsPaginator.d.ts +4 -0
  41. package/dist-types/ts3.4/pagination/ListPagesByContactPaginator.d.ts +4 -0
  42. package/dist-types/ts3.4/pagination/ListPagesByEngagementPaginator.d.ts +4 -0
  43. package/dist-types/ts3.4/pagination/index.d.ts +7 -0
  44. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +83 -0
  45. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  46. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  47. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  48. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  49. package/package.json +8 -8
@@ -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,5 @@
1
+ export * from "./SSMContacts";
2
+ export * from "./SSMContactsClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
@@ -0,0 +1 @@
1
+ export * from "./models_0";