@aws-sdk/client-connectparticipant 3.1076.0 → 3.1078.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/dist-cjs/index.js +22 -115
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/CancelParticipantAuthenticationCommand.js +2 -14
- package/dist-es/commands/CompleteAttachmentUploadCommand.js +2 -14
- package/dist-es/commands/CreateParticipantConnectionCommand.js +2 -14
- package/dist-es/commands/DescribeViewCommand.js +2 -14
- package/dist-es/commands/DisconnectParticipantCommand.js +2 -14
- package/dist-es/commands/GetAttachmentCommand.js +2 -14
- package/dist-es/commands/GetAuthenticationUrlCommand.js +2 -14
- package/dist-es/commands/GetTranscriptCommand.js +2 -14
- package/dist-es/commands/SendEventCommand.js +2 -14
- package/dist-es/commands/SendMessageCommand.js +2 -14
- package/dist-es/commands/StartAttachmentUploadCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/CancelParticipantAuthenticationCommand.d.ts +3 -8
- package/dist-types/commands/CompleteAttachmentUploadCommand.d.ts +3 -8
- package/dist-types/commands/CreateParticipantConnectionCommand.d.ts +3 -8
- package/dist-types/commands/DescribeViewCommand.d.ts +3 -8
- package/dist-types/commands/DisconnectParticipantCommand.d.ts +3 -8
- package/dist-types/commands/GetAttachmentCommand.d.ts +3 -8
- package/dist-types/commands/GetAuthenticationUrlCommand.d.ts +3 -8
- package/dist-types/commands/GetTranscriptCommand.d.ts +3 -8
- package/dist-types/commands/SendEventCommand.d.ts +3 -8
- package/dist-types/commands/SendMessageCommand.d.ts +3 -8
- package/dist-types/commands/StartAttachmentUploadCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/CancelParticipantAuthenticationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CompleteAttachmentUploadCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateParticipantConnectionCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribeViewCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DisconnectParticipantCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetAttachmentCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetAuthenticationUrlCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetTranscriptCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SendEventCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StartAttachmentUploadCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
|
|
4
2
|
import type { DisconnectParticipantRequest, DisconnectParticipantResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface DisconnectParticipantCommandInput extends DisconnectParticipant
|
|
|
22
19
|
export interface DisconnectParticipantCommandOutput extends DisconnectParticipantResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DisconnectParticipantCommand_base: {
|
|
25
|
-
new (input: DisconnectParticipantCommandInput): import("@smithy/core/client").CommandImpl<DisconnectParticipantCommandInput, DisconnectParticipantCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: DisconnectParticipantCommandInput): import("@smithy/core/client").CommandImpl<DisconnectParticipantCommandInput, DisconnectParticipantCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DisconnectParticipantCommandInput): import("@smithy/core/client").CommandImpl<DisconnectParticipantCommandInput, DisconnectParticipantCommandOutput, import("..").ConnectParticipantClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: DisconnectParticipantCommandInput): import("@smithy/core/client").CommandImpl<DisconnectParticipantCommandInput, DisconnectParticipantCommandOutput, import("..").ConnectParticipantClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Disconnects a participant. </p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
|
|
4
2
|
import type { GetAttachmentRequest, GetAttachmentResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetAttachmentCommandInput extends GetAttachmentRequest {
|
|
|
22
19
|
export interface GetAttachmentCommandOutput extends GetAttachmentResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetAttachmentCommand_base: {
|
|
25
|
-
new (input: GetAttachmentCommandInput): import("@smithy/core/client").CommandImpl<GetAttachmentCommandInput, GetAttachmentCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetAttachmentCommandInput): import("@smithy/core/client").CommandImpl<GetAttachmentCommandInput, GetAttachmentCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetAttachmentCommandInput): import("@smithy/core/client").CommandImpl<GetAttachmentCommandInput, GetAttachmentCommandOutput, import("..").ConnectParticipantClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetAttachmentCommandInput): import("@smithy/core/client").CommandImpl<GetAttachmentCommandInput, GetAttachmentCommandOutput, import("..").ConnectParticipantClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Provides a pre-signed URL for download of a completed attachment. This is an
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
|
|
4
2
|
import type { GetAuthenticationUrlRequest, GetAuthenticationUrlResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetAuthenticationUrlCommandInput extends GetAuthenticationUrlRe
|
|
|
22
19
|
export interface GetAuthenticationUrlCommandOutput extends GetAuthenticationUrlResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetAuthenticationUrlCommand_base: {
|
|
25
|
-
new (input: GetAuthenticationUrlCommandInput): import("@smithy/core/client").CommandImpl<GetAuthenticationUrlCommandInput, GetAuthenticationUrlCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetAuthenticationUrlCommandInput): import("@smithy/core/client").CommandImpl<GetAuthenticationUrlCommandInput, GetAuthenticationUrlCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetAuthenticationUrlCommandInput): import("@smithy/core/client").CommandImpl<GetAuthenticationUrlCommandInput, GetAuthenticationUrlCommandOutput, import("..").ConnectParticipantClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetAuthenticationUrlCommandInput): import("@smithy/core/client").CommandImpl<GetAuthenticationUrlCommandInput, GetAuthenticationUrlCommandOutput, import("..").ConnectParticipantClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Retrieves the AuthenticationUrl for the current authentication session for the
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
|
|
4
2
|
import type { GetTranscriptRequest, GetTranscriptResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetTranscriptCommandInput extends GetTranscriptRequest {
|
|
|
22
19
|
export interface GetTranscriptCommandOutput extends GetTranscriptResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetTranscriptCommand_base: {
|
|
25
|
-
new (input: GetTranscriptCommandInput): import("@smithy/core/client").CommandImpl<GetTranscriptCommandInput, GetTranscriptCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetTranscriptCommandInput): import("@smithy/core/client").CommandImpl<GetTranscriptCommandInput, GetTranscriptCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetTranscriptCommandInput): import("@smithy/core/client").CommandImpl<GetTranscriptCommandInput, GetTranscriptCommandOutput, import("..").ConnectParticipantClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetTranscriptCommandInput): import("@smithy/core/client").CommandImpl<GetTranscriptCommandInput, GetTranscriptCommandOutput, import("..").ConnectParticipantClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Retrieves a transcript of the session, including details about any attachments. For
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
|
|
4
2
|
import type { SendEventRequest, SendEventResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface SendEventCommandInput extends SendEventRequest {
|
|
|
22
19
|
export interface SendEventCommandOutput extends SendEventResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const SendEventCommand_base: {
|
|
25
|
-
new (input: SendEventCommandInput): import("@smithy/core/client").CommandImpl<SendEventCommandInput, SendEventCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: SendEventCommandInput): import("@smithy/core/client").CommandImpl<SendEventCommandInput, SendEventCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: SendEventCommandInput): import("@smithy/core/client").CommandImpl<SendEventCommandInput, SendEventCommandOutput, import("..").ConnectParticipantClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: SendEventCommandInput): import("@smithy/core/client").CommandImpl<SendEventCommandInput, SendEventCommandOutput, import("..").ConnectParticipantClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <note>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
|
|
4
2
|
import type { SendMessageRequest, SendMessageResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface SendMessageCommandInput extends SendMessageRequest {
|
|
|
22
19
|
export interface SendMessageCommandOutput extends SendMessageResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const SendMessageCommand_base: {
|
|
25
|
-
new (input: SendMessageCommandInput): import("@smithy/core/client").CommandImpl<SendMessageCommandInput, SendMessageCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: SendMessageCommandInput): import("@smithy/core/client").CommandImpl<SendMessageCommandInput, SendMessageCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: SendMessageCommandInput): import("@smithy/core/client").CommandImpl<SendMessageCommandInput, SendMessageCommandOutput, import("..").ConnectParticipantClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: SendMessageCommandInput): import("@smithy/core/client").CommandImpl<SendMessageCommandInput, SendMessageCommandOutput, import("..").ConnectParticipantClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Sends a message.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
|
|
4
2
|
import type { StartAttachmentUploadRequest, StartAttachmentUploadResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface StartAttachmentUploadCommandInput extends StartAttachmentUpload
|
|
|
22
19
|
export interface StartAttachmentUploadCommandOutput extends StartAttachmentUploadResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const StartAttachmentUploadCommand_base: {
|
|
25
|
-
new (input: StartAttachmentUploadCommandInput): import("@smithy/core/client").CommandImpl<StartAttachmentUploadCommandInput, StartAttachmentUploadCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: StartAttachmentUploadCommandInput): import("@smithy/core/client").CommandImpl<StartAttachmentUploadCommandInput, StartAttachmentUploadCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: StartAttachmentUploadCommandInput): import("@smithy/core/client").CommandImpl<StartAttachmentUploadCommandInput, StartAttachmentUploadCommandOutput, import("..").ConnectParticipantClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: StartAttachmentUploadCommandInput): import("@smithy/core/client").CommandImpl<StartAttachmentUploadCommandInput, StartAttachmentUploadCommandOutput, import("..").ConnectParticipantClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Provides a pre-signed Amazon S3 URL in response for uploading the file directly to
|
package/dist-types/index.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
29
29
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
30
30
|
export type { ConnectParticipantExtensionConfiguration } from "./extensionConfiguration";
|
|
31
31
|
export * from "./commands";
|
|
32
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
32
33
|
export * from "./schemas/schemas_0";
|
|
33
34
|
export * from "./pagination";
|
|
34
35
|
export * from "./models/enums";
|
|
@@ -13,7 +13,6 @@ export declare const getRuntimeConfig: (config: ConnectParticipantClientConfig)
|
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
14
14
|
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
15
15
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
17
16
|
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
18
17
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
18
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -24,6 +23,7 @@ export declare const getRuntimeConfig: (config: ConnectParticipantClientConfig)
|
|
|
24
23
|
[setting: string]: unknown;
|
|
25
24
|
};
|
|
26
25
|
apiVersion: string;
|
|
26
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
27
27
|
urlParser: import("@smithy/types").UrlParser;
|
|
28
28
|
base64Decoder: import("@smithy/types").Decoder;
|
|
29
29
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -14,7 +14,6 @@ export declare const getRuntimeConfig: (config: ConnectParticipantClientConfig)
|
|
|
14
14
|
region: string | import("@smithy/types").Provider<string>;
|
|
15
15
|
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
16
16
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
17
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
18
17
|
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
19
18
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
19
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -26,6 +25,7 @@ export declare const getRuntimeConfig: (config: ConnectParticipantClientConfig)
|
|
|
26
25
|
[setting: string]: unknown;
|
|
27
26
|
};
|
|
28
27
|
apiVersion: string;
|
|
28
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
29
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
30
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
31
31
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -4,7 +4,6 @@ import type { ConnectParticipantClientConfig } from "./ConnectParticipantClient"
|
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: ConnectParticipantClientConfig) => {
|
|
6
6
|
runtime: string;
|
|
7
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
8
7
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
8
|
cacheMiddleware?: boolean;
|
|
10
9
|
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
@@ -13,6 +12,7 @@ export declare const getRuntimeConfig: (config: ConnectParticipantClientConfig)
|
|
|
13
12
|
[setting: string]: unknown;
|
|
14
13
|
};
|
|
15
14
|
apiVersion: string;
|
|
15
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
16
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
17
17
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
18
18
|
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: ConnectParticipantClientConfig)
|
|
|
21
21
|
defaultNamespace?: string;
|
|
22
22
|
};
|
|
23
23
|
serviceId: string;
|
|
24
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
24
25
|
urlParser: import("@smithy/types").UrlParser;
|
|
25
26
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
26
27
|
utf8Encoder: (input: Uint8Array | string) => string;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ConnectParticipantClientResolvedConfig,
|
|
4
|
+
ServiceInputTypes,
|
|
5
|
+
ServiceOutputTypes,
|
|
6
|
+
} from "./ConnectParticipantClient";
|
|
7
|
+
export declare const command: <
|
|
8
|
+
I extends ServiceInputTypes,
|
|
9
|
+
O extends ServiceOutputTypes
|
|
10
|
+
>(
|
|
11
|
+
added: EndpointParameterInstructions,
|
|
12
|
+
plugins: (
|
|
13
|
+
CommandCtor: any,
|
|
14
|
+
clientStack: any,
|
|
15
|
+
config: any,
|
|
16
|
+
options: any
|
|
17
|
+
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
|
+
op: string,
|
|
19
|
+
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
+
smithyContext?: Record<string, unknown>
|
|
21
|
+
) => {
|
|
22
|
+
new (input: I): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
I,
|
|
24
|
+
O,
|
|
25
|
+
ConnectParticipantClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
I,
|
|
33
|
+
O,
|
|
34
|
+
ConnectParticipantClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
+
export declare const _mw0: (
|
|
42
|
+
Command: any,
|
|
43
|
+
cs: any,
|
|
44
|
+
config: any,
|
|
45
|
+
o: any
|
|
46
|
+
) => never[];
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ConnectParticipantClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ConnectParticipantClient";
|
|
8
2
|
import {
|
|
9
3
|
CancelParticipantAuthenticationRequest,
|
|
10
4
|
CancelParticipantAuthenticationResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface CancelParticipantAuthenticationCommandInput
|
|
15
8
|
extends CancelParticipantAuthenticationRequest {}
|
|
16
9
|
export interface CancelParticipantAuthenticationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const CancelParticipantAuthenticationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
CancelParticipantAuthenticationCommandInput,
|
|
24
17
|
CancelParticipantAuthenticationCommandOutput,
|
|
25
|
-
ConnectParticipantClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ConnectParticipantClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: CancelParticipantAuthenticationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
CancelParticipantAuthenticationCommandInput,
|
|
33
26
|
CancelParticipantAuthenticationCommandOutput,
|
|
34
|
-
ConnectParticipantClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ConnectParticipantClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class CancelParticipantAuthenticationCommand extends CancelParticipantAuthenticationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ConnectParticipantClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ConnectParticipantClient";
|
|
8
2
|
import {
|
|
9
3
|
CompleteAttachmentUploadRequest,
|
|
10
4
|
CompleteAttachmentUploadResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface CompleteAttachmentUploadCommandInput
|
|
15
8
|
extends CompleteAttachmentUploadRequest {}
|
|
16
9
|
export interface CompleteAttachmentUploadCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const CompleteAttachmentUploadCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
CompleteAttachmentUploadCommandInput,
|
|
24
17
|
CompleteAttachmentUploadCommandOutput,
|
|
25
|
-
ConnectParticipantClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ConnectParticipantClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: CompleteAttachmentUploadCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
CompleteAttachmentUploadCommandInput,
|
|
33
26
|
CompleteAttachmentUploadCommandOutput,
|
|
34
|
-
ConnectParticipantClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ConnectParticipantClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class CompleteAttachmentUploadCommand extends CompleteAttachmentUploadCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ConnectParticipantClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ConnectParticipantClient";
|
|
8
2
|
import {
|
|
9
3
|
CreateParticipantConnectionRequest,
|
|
10
4
|
CreateParticipantConnectionResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface CreateParticipantConnectionCommandInput
|
|
15
8
|
extends CreateParticipantConnectionRequest {}
|
|
16
9
|
export interface CreateParticipantConnectionCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const CreateParticipantConnectionCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
CreateParticipantConnectionCommandInput,
|
|
24
17
|
CreateParticipantConnectionCommandOutput,
|
|
25
|
-
ConnectParticipantClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ConnectParticipantClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: CreateParticipantConnectionCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
CreateParticipantConnectionCommandInput,
|
|
33
26
|
CreateParticipantConnectionCommandOutput,
|
|
34
|
-
ConnectParticipantClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ConnectParticipantClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class CreateParticipantConnectionCommand extends CreateParticipantConnectionCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ConnectParticipantClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ConnectParticipantClient";
|
|
8
2
|
import { DescribeViewRequest, DescribeViewResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface DescribeViewCommandInput extends DescribeViewRequest {}
|
|
12
5
|
export interface DescribeViewCommandOutput
|
|
13
6
|
extends DescribeViewResponse,
|
|
@@ -18,22 +11,20 @@ declare const DescribeViewCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
DescribeViewCommandInput,
|
|
20
13
|
DescribeViewCommandOutput,
|
|
21
|
-
ConnectParticipantClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").ConnectParticipantClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: DescribeViewCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
DescribeViewCommandInput,
|
|
29
22
|
DescribeViewCommandOutput,
|
|
30
|
-
ConnectParticipantClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").ConnectParticipantClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class DescribeViewCommand extends DescribeViewCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ConnectParticipantClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ConnectParticipantClient";
|
|
8
2
|
import {
|
|
9
3
|
DisconnectParticipantRequest,
|
|
10
4
|
DisconnectParticipantResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DisconnectParticipantCommandInput
|
|
15
8
|
extends DisconnectParticipantRequest {}
|
|
16
9
|
export interface DisconnectParticipantCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const DisconnectParticipantCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
DisconnectParticipantCommandInput,
|
|
24
17
|
DisconnectParticipantCommandOutput,
|
|
25
|
-
ConnectParticipantClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ConnectParticipantClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: DisconnectParticipantCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
DisconnectParticipantCommandInput,
|
|
33
26
|
DisconnectParticipantCommandOutput,
|
|
34
|
-
ConnectParticipantClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ConnectParticipantClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class DisconnectParticipantCommand extends DisconnectParticipantCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ConnectParticipantClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ConnectParticipantClient";
|
|
8
2
|
import {
|
|
9
3
|
GetAttachmentRequest,
|
|
10
4
|
GetAttachmentResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetAttachmentCommandInput extends GetAttachmentRequest {}
|
|
15
8
|
export interface GetAttachmentCommandOutput
|
|
16
9
|
extends GetAttachmentResponse,
|
|
@@ -21,22 +14,20 @@ declare const GetAttachmentCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
GetAttachmentCommandInput,
|
|
23
16
|
GetAttachmentCommandOutput,
|
|
24
|
-
ConnectParticipantClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").ConnectParticipantClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: GetAttachmentCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
GetAttachmentCommandInput,
|
|
32
25
|
GetAttachmentCommandOutput,
|
|
33
|
-
ConnectParticipantClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").ConnectParticipantClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class GetAttachmentCommand extends GetAttachmentCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ConnectParticipantClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ConnectParticipantClient";
|
|
8
2
|
import {
|
|
9
3
|
GetAuthenticationUrlRequest,
|
|
10
4
|
GetAuthenticationUrlResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetAuthenticationUrlCommandInput
|
|
15
8
|
extends GetAuthenticationUrlRequest {}
|
|
16
9
|
export interface GetAuthenticationUrlCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetAuthenticationUrlCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetAuthenticationUrlCommandInput,
|
|
24
17
|
GetAuthenticationUrlCommandOutput,
|
|
25
|
-
ConnectParticipantClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ConnectParticipantClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetAuthenticationUrlCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetAuthenticationUrlCommandInput,
|
|
33
26
|
GetAuthenticationUrlCommandOutput,
|
|
34
|
-
ConnectParticipantClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ConnectParticipantClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetAuthenticationUrlCommand extends GetAuthenticationUrlCommand_base {
|
|
43
34
|
protected static __types: {
|