@aws-sdk/client-ssm-contacts 3.194.0 → 3.195.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.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/SSMContactsClient.js +11 -8
- package/dist-cjs/commands/AcceptPageCommand.js +10 -0
- package/dist-cjs/commands/ActivateContactChannelCommand.js +10 -0
- package/dist-cjs/commands/CreateContactChannelCommand.js +10 -0
- package/dist-cjs/commands/CreateContactCommand.js +10 -0
- package/dist-cjs/commands/DeactivateContactChannelCommand.js +10 -0
- package/dist-cjs/commands/DeleteContactChannelCommand.js +10 -0
- package/dist-cjs/commands/DeleteContactCommand.js +10 -0
- package/dist-cjs/commands/DescribeEngagementCommand.js +10 -0
- package/dist-cjs/commands/DescribePageCommand.js +10 -0
- package/dist-cjs/commands/GetContactChannelCommand.js +10 -0
- package/dist-cjs/commands/GetContactCommand.js +10 -0
- package/dist-cjs/commands/GetContactPolicyCommand.js +10 -0
- package/dist-cjs/commands/ListContactChannelsCommand.js +10 -0
- package/dist-cjs/commands/ListContactsCommand.js +10 -0
- package/dist-cjs/commands/ListEngagementsCommand.js +10 -0
- package/dist-cjs/commands/ListPageReceiptsCommand.js +10 -0
- package/dist-cjs/commands/ListPagesByContactCommand.js +10 -0
- package/dist-cjs/commands/ListPagesByEngagementCommand.js +10 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-cjs/commands/PutContactPolicyCommand.js +10 -0
- package/dist-cjs/commands/SendActivationCodeCommand.js +10 -0
- package/dist-cjs/commands/StartEngagementCommand.js +10 -0
- package/dist-cjs/commands/StopEngagementCommand.js +10 -0
- package/dist-cjs/commands/TagResourceCommand.js +10 -0
- package/dist-cjs/commands/UntagResourceCommand.js +10 -0
- package/dist-cjs/commands/UpdateContactChannelCommand.js +10 -0
- package/dist-cjs/commands/UpdateContactCommand.js +10 -0
- package/dist-cjs/endpoint/EndpointParameters.js +13 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +312 -0
- package/dist-cjs/runtimeConfig.shared.js +3 -3
- package/dist-es/SSMContactsClient.js +12 -9
- package/dist-es/commands/AcceptPageCommand.js +10 -0
- package/dist-es/commands/ActivateContactChannelCommand.js +10 -0
- package/dist-es/commands/CreateContactChannelCommand.js +10 -0
- package/dist-es/commands/CreateContactCommand.js +10 -0
- package/dist-es/commands/DeactivateContactChannelCommand.js +10 -0
- package/dist-es/commands/DeleteContactChannelCommand.js +10 -0
- package/dist-es/commands/DeleteContactCommand.js +10 -0
- package/dist-es/commands/DescribeEngagementCommand.js +10 -0
- package/dist-es/commands/DescribePageCommand.js +10 -0
- package/dist-es/commands/GetContactChannelCommand.js +10 -0
- package/dist-es/commands/GetContactCommand.js +10 -0
- package/dist-es/commands/GetContactPolicyCommand.js +10 -0
- package/dist-es/commands/ListContactChannelsCommand.js +10 -0
- package/dist-es/commands/ListContactsCommand.js +10 -0
- package/dist-es/commands/ListEngagementsCommand.js +10 -0
- package/dist-es/commands/ListPageReceiptsCommand.js +10 -0
- package/dist-es/commands/ListPagesByContactCommand.js +10 -0
- package/dist-es/commands/ListPagesByEngagementCommand.js +10 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-es/commands/PutContactPolicyCommand.js +10 -0
- package/dist-es/commands/SendActivationCodeCommand.js +10 -0
- package/dist-es/commands/StartEngagementCommand.js +10 -0
- package/dist-es/commands/StopEngagementCommand.js +10 -0
- package/dist-es/commands/TagResourceCommand.js +10 -0
- package/dist-es/commands/UntagResourceCommand.js +10 -0
- package/dist-es/commands/UpdateContactChannelCommand.js +10 -0
- package/dist-es/commands/UpdateContactCommand.js +10 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +309 -0
- package/dist-es/runtimeConfig.shared.js +2 -2
- package/dist-types/SSMContactsClient.d.ts +6 -9
- package/dist-types/commands/AcceptPageCommand.d.ts +2 -0
- package/dist-types/commands/ActivateContactChannelCommand.d.ts +2 -0
- package/dist-types/commands/CreateContactChannelCommand.d.ts +2 -0
- package/dist-types/commands/CreateContactCommand.d.ts +2 -0
- package/dist-types/commands/DeactivateContactChannelCommand.d.ts +2 -0
- package/dist-types/commands/DeleteContactChannelCommand.d.ts +2 -0
- package/dist-types/commands/DeleteContactCommand.d.ts +2 -0
- package/dist-types/commands/DescribeEngagementCommand.d.ts +2 -0
- package/dist-types/commands/DescribePageCommand.d.ts +2 -0
- package/dist-types/commands/GetContactChannelCommand.d.ts +2 -0
- package/dist-types/commands/GetContactCommand.d.ts +2 -0
- package/dist-types/commands/GetContactPolicyCommand.d.ts +2 -0
- package/dist-types/commands/ListContactChannelsCommand.d.ts +2 -0
- package/dist-types/commands/ListContactsCommand.d.ts +2 -0
- package/dist-types/commands/ListEngagementsCommand.d.ts +2 -0
- package/dist-types/commands/ListPageReceiptsCommand.d.ts +2 -0
- package/dist-types/commands/ListPagesByContactCommand.d.ts +2 -0
- package/dist-types/commands/ListPagesByEngagementCommand.d.ts +2 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/PutContactPolicyCommand.d.ts +2 -0
- package/dist-types/commands/SendActivationCodeCommand.d.ts +2 -0
- package/dist-types/commands/StartEngagementCommand.d.ts +2 -0
- package/dist-types/commands/StopEngagementCommand.d.ts +2 -0
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateContactChannelCommand.d.ts +2 -0
- package/dist-types/commands/UpdateContactCommand.d.ts +2 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +4 -2
- package/dist-types/runtimeConfig.shared.d.ts +3 -1
- package/dist-types/ts3.4/SSMContactsClient.d.ts +15 -8
- package/dist-types/ts3.4/commands/AcceptPageCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ActivateContactChannelCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateContactChannelCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateContactCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeactivateContactChannelCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteContactChannelCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteContactCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeEngagementCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribePageCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetContactChannelCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetContactCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetContactPolicyCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListContactChannelsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListContactsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListEngagementsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListPageReceiptsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListPagesByContactCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListPagesByEngagementCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/PutContactPolicyCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/SendActivationCodeCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StartEngagementCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StopEngagementCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateContactChannelCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateContactCommand.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +26 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +14 -3
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
- package/package.json +3 -1
- package/dist-cjs/endpoints.js +0 -132
- package/dist-es/endpoints.js +0 -128
- package/dist-types/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { PutContactPolicyRequest, PutContactPolicyResult } from "../models/models_0";
|
|
@@ -27,6 +28,7 @@ export interface PutContactPolicyCommandOutput extends PutContactPolicyResult, _
|
|
|
27
28
|
*/
|
|
28
29
|
export declare class PutContactPolicyCommand extends $Command<PutContactPolicyCommandInput, PutContactPolicyCommandOutput, SSMContactsClientResolvedConfig> {
|
|
29
30
|
readonly input: PutContactPolicyCommandInput;
|
|
31
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
32
|
constructor(input: PutContactPolicyCommandInput);
|
|
31
33
|
/**
|
|
32
34
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { SendActivationCodeRequest, SendActivationCodeResult } from "../models/models_0";
|
|
@@ -27,6 +28,7 @@ export interface SendActivationCodeCommandOutput extends SendActivationCodeResul
|
|
|
27
28
|
*/
|
|
28
29
|
export declare class SendActivationCodeCommand extends $Command<SendActivationCodeCommandInput, SendActivationCodeCommandOutput, SSMContactsClientResolvedConfig> {
|
|
29
30
|
readonly input: SendActivationCodeCommandInput;
|
|
31
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
32
|
constructor(input: SendActivationCodeCommandInput);
|
|
31
33
|
/**
|
|
32
34
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { StartEngagementRequest, StartEngagementResult } from "../models/models_0";
|
|
@@ -26,6 +27,7 @@ export interface StartEngagementCommandOutput extends StartEngagementResult, __M
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class StartEngagementCommand extends $Command<StartEngagementCommandInput, StartEngagementCommandOutput, SSMContactsClientResolvedConfig> {
|
|
28
29
|
readonly input: StartEngagementCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
31
|
constructor(input: StartEngagementCommandInput);
|
|
30
32
|
/**
|
|
31
33
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { StopEngagementRequest, StopEngagementResult } from "../models/models_0";
|
|
@@ -26,6 +27,7 @@ export interface StopEngagementCommandOutput extends StopEngagementResult, __Met
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class StopEngagementCommand extends $Command<StopEngagementCommandInput, StopEngagementCommandOutput, SSMContactsClientResolvedConfig> {
|
|
28
29
|
readonly input: StopEngagementCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
31
|
constructor(input: StopEngagementCommandInput);
|
|
30
32
|
/**
|
|
31
33
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { TagResourceRequest, TagResourceResult } from "../models/models_0";
|
|
@@ -26,6 +27,7 @@ export interface TagResourceCommandOutput extends TagResourceResult, __MetadataB
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SSMContactsClientResolvedConfig> {
|
|
28
29
|
readonly input: TagResourceCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
31
|
constructor(input: TagResourceCommandInput);
|
|
30
32
|
/**
|
|
31
33
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { UntagResourceRequest, UntagResourceResult } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResult, __Metad
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SSMContactsClientResolvedConfig> {
|
|
27
28
|
readonly input: UntagResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UntagResourceCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { UpdateContactChannelRequest, UpdateContactChannelResult } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface UpdateContactChannelCommandOutput extends UpdateContactChannelR
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UpdateContactChannelCommand extends $Command<UpdateContactChannelCommandInput, UpdateContactChannelCommandOutput, SSMContactsClientResolvedConfig> {
|
|
27
28
|
readonly input: UpdateContactChannelCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateContactChannelCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { UpdateContactRequest, UpdateContactResult } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface UpdateContactCommandOutput extends UpdateContactResult, __Metad
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UpdateContactCommand extends $Command<UpdateContactCommandInput, UpdateContactCommandOutput, SSMContactsClientResolvedConfig> {
|
|
27
28
|
readonly input: UpdateContactCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateContactCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EndpointParameters as __EndpointParameters, Provider } from "@aws-sdk/types";
|
|
2
|
+
export interface ClientInputEndpointParameters {
|
|
3
|
+
region?: string | Provider<string>;
|
|
4
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
5
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
6
|
+
endpoint?: string | Provider<string>;
|
|
7
|
+
}
|
|
8
|
+
export declare type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
9
|
+
defaultSigningName: string;
|
|
10
|
+
};
|
|
11
|
+
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
12
|
+
defaultSigningName: string;
|
|
13
|
+
};
|
|
14
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
+
Region?: string;
|
|
16
|
+
UseDualStack?: boolean;
|
|
17
|
+
UseFIPS?: boolean;
|
|
18
|
+
Endpoint?: string;
|
|
19
|
+
}
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: SSMContactsClientConfig) => {
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: SSMContactsClientConfig) => {
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -23,10 +23,12 @@ export declare const getRuntimeConfig: (config: SSMContactsClientConfig) => {
|
|
|
23
23
|
serviceId: string;
|
|
24
24
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
26
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
27
|
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
29
|
-
endpoint?: string | import("@aws-sdk/types").Endpoint
|
|
28
|
+
endpoint?: string | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Endpoint & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").EndpointV2 & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@aws-sdk/types").Provider<string>) | undefined;
|
|
29
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
31
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
30
32
|
tls?: boolean | undefined;
|
|
31
33
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
34
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -6,8 +6,10 @@ import { SSMContactsClientConfig } from "./SSMContactsClient";
|
|
|
6
6
|
export declare const getRuntimeConfig: (config: SSMContactsClientConfig) => {
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
disableHostPrefix: boolean;
|
|
9
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
10
|
+
logger?: __Logger | undefined;
|
|
11
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
9
12
|
logger: __Logger;
|
|
10
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
11
13
|
serviceId: string;
|
|
12
14
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
13
15
|
};
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
|
-
EndpointsInputConfig,
|
|
3
|
-
EndpointsResolvedConfig,
|
|
4
2
|
RegionInputConfig,
|
|
5
3
|
RegionResolvedConfig,
|
|
6
4
|
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
7
9
|
import {
|
|
8
10
|
HostHeaderInputConfig,
|
|
9
11
|
HostHeaderResolvedConfig,
|
|
@@ -37,7 +39,6 @@ import {
|
|
|
37
39
|
Logger as __Logger,
|
|
38
40
|
Provider as __Provider,
|
|
39
41
|
Provider,
|
|
40
|
-
RegionInfoProvider,
|
|
41
42
|
StreamCollector as __StreamCollector,
|
|
42
43
|
UrlParser as __UrlParser,
|
|
43
44
|
UserAgent as __UserAgent,
|
|
@@ -150,6 +151,11 @@ import {
|
|
|
150
151
|
UpdateContactCommandInput,
|
|
151
152
|
UpdateContactCommandOutput,
|
|
152
153
|
} from "./commands/UpdateContactCommand";
|
|
154
|
+
import {
|
|
155
|
+
ClientInputEndpointParameters,
|
|
156
|
+
ClientResolvedEndpointParameters,
|
|
157
|
+
EndpointParameters,
|
|
158
|
+
} from "./endpoint/EndpointParameters";
|
|
153
159
|
export declare type ServiceInputTypes =
|
|
154
160
|
| AcceptPageCommandInput
|
|
155
161
|
| ActivateContactChannelCommandInput
|
|
@@ -227,7 +233,6 @@ export interface ClientDefaults
|
|
|
227
233
|
serviceId?: string;
|
|
228
234
|
region?: string | __Provider<string>;
|
|
229
235
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
230
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
231
236
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
232
237
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
233
238
|
}
|
|
@@ -236,21 +241,23 @@ declare type SSMContactsClientConfigType = Partial<
|
|
|
236
241
|
> &
|
|
237
242
|
ClientDefaults &
|
|
238
243
|
RegionInputConfig &
|
|
239
|
-
|
|
244
|
+
EndpointInputConfig<EndpointParameters> &
|
|
240
245
|
RetryInputConfig &
|
|
241
246
|
HostHeaderInputConfig &
|
|
242
247
|
AwsAuthInputConfig &
|
|
243
|
-
UserAgentInputConfig
|
|
248
|
+
UserAgentInputConfig &
|
|
249
|
+
ClientInputEndpointParameters;
|
|
244
250
|
export interface SSMContactsClientConfig extends SSMContactsClientConfigType {}
|
|
245
251
|
declare type SSMContactsClientResolvedConfigType =
|
|
246
252
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
247
253
|
Required<ClientDefaults> &
|
|
248
254
|
RegionResolvedConfig &
|
|
249
|
-
|
|
255
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
250
256
|
RetryResolvedConfig &
|
|
251
257
|
HostHeaderResolvedConfig &
|
|
252
258
|
AwsAuthResolvedConfig &
|
|
253
|
-
UserAgentResolvedConfig
|
|
259
|
+
UserAgentResolvedConfig &
|
|
260
|
+
ClientResolvedEndpointParameters;
|
|
254
261
|
export interface SSMContactsClientResolvedConfig
|
|
255
262
|
extends SSMContactsClientResolvedConfigType {}
|
|
256
263
|
export declare class SSMContactsClient extends __Client<
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class AcceptPageCommand extends $Command<
|
|
|
21
22
|
SSMContactsClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: AcceptPageCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: AcceptPageCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ActivateContactChannelCommand extends $Command<
|
|
|
25
26
|
SSMContactsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ActivateContactChannelCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ActivateContactChannelCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class CreateContactChannelCommand extends $Command<
|
|
|
25
26
|
SSMContactsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreateContactChannelCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreateContactChannelCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class CreateContactCommand extends $Command<
|
|
|
21
22
|
SSMContactsClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: CreateContactCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: CreateContactCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DeactivateContactChannelCommand extends $Command<
|
|
|
25
26
|
SSMContactsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DeactivateContactChannelCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DeactivateContactChannelCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DeleteContactChannelCommand extends $Command<
|
|
|
25
26
|
SSMContactsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DeleteContactChannelCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DeleteContactChannelCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class DeleteContactCommand extends $Command<
|
|
|
21
22
|
SSMContactsClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: DeleteContactCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: DeleteContactCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DescribeEngagementCommand extends $Command<
|
|
|
25
26
|
SSMContactsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DescribeEngagementCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DescribeEngagementCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class DescribePageCommand extends $Command<
|
|
|
21
22
|
SSMContactsClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: DescribePageCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: DescribePageCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class GetContactChannelCommand extends $Command<
|
|
|
25
26
|
SSMContactsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: GetContactChannelCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetContactChannelCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class GetContactCommand extends $Command<
|
|
|
21
22
|
SSMContactsClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: GetContactCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: GetContactCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class GetContactPolicyCommand extends $Command<
|
|
|
24
25
|
SSMContactsClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: GetContactPolicyCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: GetContactPolicyCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListContactChannelsCommand extends $Command<
|
|
|
25
26
|
SSMContactsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListContactChannelsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListContactChannelsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class ListContactsCommand extends $Command<
|
|
|
21
22
|
SSMContactsClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: ListContactsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: ListContactsCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class ListEngagementsCommand extends $Command<
|
|
|
24
25
|
SSMContactsClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: ListEngagementsCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: ListEngagementsCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class ListPageReceiptsCommand extends $Command<
|
|
|
24
25
|
SSMContactsClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: ListPageReceiptsCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: ListPageReceiptsCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListPagesByContactCommand extends $Command<
|
|
|
25
26
|
SSMContactsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListPagesByContactCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListPagesByContactCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListPagesByEngagementCommand extends $Command<
|
|
|
25
26
|
SSMContactsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListPagesByEngagementCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListPagesByEngagementCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListTagsForResourceCommand extends $Command<
|
|
|
25
26
|
SSMContactsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListTagsForResourceCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class PutContactPolicyCommand extends $Command<
|
|
|
24
25
|
SSMContactsClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: PutContactPolicyCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: PutContactPolicyCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class SendActivationCodeCommand extends $Command<
|
|
|
25
26
|
SSMContactsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: SendActivationCodeCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: SendActivationCodeCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class StartEngagementCommand extends $Command<
|
|
|
24
25
|
SSMContactsClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: StartEngagementCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: StartEngagementCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class StopEngagementCommand extends $Command<
|
|
|
24
25
|
SSMContactsClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: StopEngagementCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: StopEngagementCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class TagResourceCommand extends $Command<
|
|
|
21
22
|
SSMContactsClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: TagResourceCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: TagResourceCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class UntagResourceCommand extends $Command<
|
|
|
21
22
|
SSMContactsClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: UntagResourceCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: UntagResourceCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class UpdateContactChannelCommand extends $Command<
|
|
|
25
26
|
SSMContactsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: UpdateContactChannelCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateContactChannelCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|