@aws-sdk/client-connectparticipant 3.50.0 → 3.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ConnectParticipantServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +86 -1
- package/dist-cjs/protocols/Aws_restJson1.js +109 -334
- package/dist-es/index.js +1 -0
- package/dist-es/models/ConnectParticipantServiceException.js +12 -0
- package/dist-es/models/models_0.js +80 -1
- package/dist-es/protocols/Aws_restJson1.js +197 -373
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ConnectParticipantServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +44 -19
- package/dist-types/ts3.4/ConnectParticipant.d.ts +45 -0
- package/dist-types/ts3.4/ConnectParticipantClient.d.ts +81 -0
- package/dist-types/ts3.4/commands/CompleteAttachmentUploadCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateParticipantConnectionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisconnectParticipantCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetAttachmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetTranscriptCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SendEventCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartAttachmentUploadCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/ConnectParticipantServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +356 -0
- package/dist-types/ts3.4/pagination/GetTranscriptPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +26 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from ConnectParticipant service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class ConnectParticipantServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,11 +1,16 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ConnectParticipantServiceException as __BaseException } from "./ConnectParticipantServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "AccessDeniedException";
|
|
7
|
-
$fault: "client";
|
|
6
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
7
|
+
readonly name: "AccessDeniedException";
|
|
8
|
+
readonly $fault: "client";
|
|
8
9
|
Message: string | undefined;
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
14
|
}
|
|
10
15
|
export interface CompleteAttachmentUploadRequest {
|
|
11
16
|
/**
|
|
@@ -39,42 +44,62 @@ export declare namespace CompleteAttachmentUploadResponse {
|
|
|
39
44
|
/**
|
|
40
45
|
* <p>An attachment with that identifier is already being uploaded.</p>
|
|
41
46
|
*/
|
|
42
|
-
export
|
|
43
|
-
name: "ConflictException";
|
|
44
|
-
$fault: "client";
|
|
47
|
+
export declare class ConflictException extends __BaseException {
|
|
48
|
+
readonly name: "ConflictException";
|
|
49
|
+
readonly $fault: "client";
|
|
45
50
|
Message: string | undefined;
|
|
51
|
+
/**
|
|
52
|
+
* @internal
|
|
53
|
+
*/
|
|
54
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
46
55
|
}
|
|
47
56
|
/**
|
|
48
57
|
* <p>This exception occurs when there is an internal failure in the Amazon Connect service.</p>
|
|
49
58
|
*/
|
|
50
|
-
export
|
|
51
|
-
name: "InternalServerException";
|
|
52
|
-
$fault: "server";
|
|
59
|
+
export declare class InternalServerException extends __BaseException {
|
|
60
|
+
readonly name: "InternalServerException";
|
|
61
|
+
readonly $fault: "server";
|
|
53
62
|
Message: string | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
66
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
54
67
|
}
|
|
55
68
|
/**
|
|
56
69
|
* <p>The number of attachments per contact exceeds the quota.</p>
|
|
57
70
|
*/
|
|
58
|
-
export
|
|
59
|
-
name: "ServiceQuotaExceededException";
|
|
60
|
-
$fault: "client";
|
|
71
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
72
|
+
readonly name: "ServiceQuotaExceededException";
|
|
73
|
+
readonly $fault: "client";
|
|
61
74
|
Message: string | undefined;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
78
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
62
79
|
}
|
|
63
80
|
/**
|
|
64
81
|
* <p>The request was denied due to request throttling.</p>
|
|
65
82
|
*/
|
|
66
|
-
export
|
|
67
|
-
name: "ThrottlingException";
|
|
68
|
-
$fault: "client";
|
|
83
|
+
export declare class ThrottlingException extends __BaseException {
|
|
84
|
+
readonly name: "ThrottlingException";
|
|
85
|
+
readonly $fault: "client";
|
|
69
86
|
Message: string | undefined;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
90
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
70
91
|
}
|
|
71
92
|
/**
|
|
72
93
|
* <p>The input fails to satisfy the constraints specified by Amazon Connect.</p>
|
|
73
94
|
*/
|
|
74
|
-
export
|
|
75
|
-
name: "ValidationException";
|
|
76
|
-
$fault: "client";
|
|
95
|
+
export declare class ValidationException extends __BaseException {
|
|
96
|
+
readonly name: "ValidationException";
|
|
97
|
+
readonly $fault: "client";
|
|
77
98
|
Message: string | undefined;
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
102
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
78
103
|
}
|
|
79
104
|
export declare enum ConnectionType {
|
|
80
105
|
CONNECTION_CREDENTIALS = "CONNECTION_CREDENTIALS",
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { CompleteAttachmentUploadCommandInput, CompleteAttachmentUploadCommandOutput } from "./commands/CompleteAttachmentUploadCommand";
|
|
3
|
+
import { CreateParticipantConnectionCommandInput, CreateParticipantConnectionCommandOutput } from "./commands/CreateParticipantConnectionCommand";
|
|
4
|
+
import { DisconnectParticipantCommandInput, DisconnectParticipantCommandOutput } from "./commands/DisconnectParticipantCommand";
|
|
5
|
+
import { GetAttachmentCommandInput, GetAttachmentCommandOutput } from "./commands/GetAttachmentCommand";
|
|
6
|
+
import { GetTranscriptCommandInput, GetTranscriptCommandOutput } from "./commands/GetTranscriptCommand";
|
|
7
|
+
import { SendEventCommandInput, SendEventCommandOutput } from "./commands/SendEventCommand";
|
|
8
|
+
import { SendMessageCommandInput, SendMessageCommandOutput } from "./commands/SendMessageCommand";
|
|
9
|
+
import { StartAttachmentUploadCommandInput, StartAttachmentUploadCommandOutput } from "./commands/StartAttachmentUploadCommand";
|
|
10
|
+
import { ConnectParticipantClient } from "./ConnectParticipantClient";
|
|
11
|
+
|
|
12
|
+
export declare class ConnectParticipant extends ConnectParticipantClient {
|
|
13
|
+
|
|
14
|
+
completeAttachmentUpload(args: CompleteAttachmentUploadCommandInput, options?: __HttpHandlerOptions): Promise<CompleteAttachmentUploadCommandOutput>;
|
|
15
|
+
completeAttachmentUpload(args: CompleteAttachmentUploadCommandInput, cb: (err: any, data?: CompleteAttachmentUploadCommandOutput) => void): void;
|
|
16
|
+
completeAttachmentUpload(args: CompleteAttachmentUploadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CompleteAttachmentUploadCommandOutput) => void): void;
|
|
17
|
+
|
|
18
|
+
createParticipantConnection(args: CreateParticipantConnectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateParticipantConnectionCommandOutput>;
|
|
19
|
+
createParticipantConnection(args: CreateParticipantConnectionCommandInput, cb: (err: any, data?: CreateParticipantConnectionCommandOutput) => void): void;
|
|
20
|
+
createParticipantConnection(args: CreateParticipantConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateParticipantConnectionCommandOutput) => void): void;
|
|
21
|
+
|
|
22
|
+
disconnectParticipant(args: DisconnectParticipantCommandInput, options?: __HttpHandlerOptions): Promise<DisconnectParticipantCommandOutput>;
|
|
23
|
+
disconnectParticipant(args: DisconnectParticipantCommandInput, cb: (err: any, data?: DisconnectParticipantCommandOutput) => void): void;
|
|
24
|
+
disconnectParticipant(args: DisconnectParticipantCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisconnectParticipantCommandOutput) => void): void;
|
|
25
|
+
|
|
26
|
+
getAttachment(args: GetAttachmentCommandInput, options?: __HttpHandlerOptions): Promise<GetAttachmentCommandOutput>;
|
|
27
|
+
getAttachment(args: GetAttachmentCommandInput, cb: (err: any, data?: GetAttachmentCommandOutput) => void): void;
|
|
28
|
+
getAttachment(args: GetAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAttachmentCommandOutput) => void): void;
|
|
29
|
+
|
|
30
|
+
getTranscript(args: GetTranscriptCommandInput, options?: __HttpHandlerOptions): Promise<GetTranscriptCommandOutput>;
|
|
31
|
+
getTranscript(args: GetTranscriptCommandInput, cb: (err: any, data?: GetTranscriptCommandOutput) => void): void;
|
|
32
|
+
getTranscript(args: GetTranscriptCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTranscriptCommandOutput) => void): void;
|
|
33
|
+
|
|
34
|
+
sendEvent(args: SendEventCommandInput, options?: __HttpHandlerOptions): Promise<SendEventCommandOutput>;
|
|
35
|
+
sendEvent(args: SendEventCommandInput, cb: (err: any, data?: SendEventCommandOutput) => void): void;
|
|
36
|
+
sendEvent(args: SendEventCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendEventCommandOutput) => void): void;
|
|
37
|
+
|
|
38
|
+
sendMessage(args: SendMessageCommandInput, options?: __HttpHandlerOptions): Promise<SendMessageCommandOutput>;
|
|
39
|
+
sendMessage(args: SendMessageCommandInput, cb: (err: any, data?: SendMessageCommandOutput) => void): void;
|
|
40
|
+
sendMessage(args: SendMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendMessageCommandOutput) => void): void;
|
|
41
|
+
|
|
42
|
+
startAttachmentUpload(args: StartAttachmentUploadCommandInput, options?: __HttpHandlerOptions): Promise<StartAttachmentUploadCommandOutput>;
|
|
43
|
+
startAttachmentUpload(args: StartAttachmentUploadCommandInput, cb: (err: any, data?: StartAttachmentUploadCommandOutput) => void): void;
|
|
44
|
+
startAttachmentUpload(args: StartAttachmentUploadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartAttachmentUploadCommandOutput) => void): void;
|
|
45
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { CompleteAttachmentUploadCommandInput, CompleteAttachmentUploadCommandOutput } from "./commands/CompleteAttachmentUploadCommand";
|
|
10
|
+
import { CreateParticipantConnectionCommandInput, CreateParticipantConnectionCommandOutput } from "./commands/CreateParticipantConnectionCommand";
|
|
11
|
+
import { DisconnectParticipantCommandInput, DisconnectParticipantCommandOutput } from "./commands/DisconnectParticipantCommand";
|
|
12
|
+
import { GetAttachmentCommandInput, GetAttachmentCommandOutput } from "./commands/GetAttachmentCommand";
|
|
13
|
+
import { GetTranscriptCommandInput, GetTranscriptCommandOutput } from "./commands/GetTranscriptCommand";
|
|
14
|
+
import { SendEventCommandInput, SendEventCommandOutput } from "./commands/SendEventCommand";
|
|
15
|
+
import { SendMessageCommandInput, SendMessageCommandOutput } from "./commands/SendMessageCommand";
|
|
16
|
+
import { StartAttachmentUploadCommandInput, StartAttachmentUploadCommandOutput } from "./commands/StartAttachmentUploadCommand";
|
|
17
|
+
export declare type ServiceInputTypes = CompleteAttachmentUploadCommandInput | CreateParticipantConnectionCommandInput | DisconnectParticipantCommandInput | GetAttachmentCommandInput | GetTranscriptCommandInput | SendEventCommandInput | SendMessageCommandInput | StartAttachmentUploadCommandInput;
|
|
18
|
+
export declare type ServiceOutputTypes = CompleteAttachmentUploadCommandOutput | CreateParticipantConnectionCommandOutput | DisconnectParticipantCommandOutput | GetAttachmentCommandOutput | GetTranscriptCommandOutput | SendEventCommandOutput | SendMessageCommandOutput | StartAttachmentUploadCommandOutput;
|
|
19
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
20
|
+
|
|
21
|
+
requestHandler?: __HttpHandler;
|
|
22
|
+
|
|
23
|
+
sha256?: __HashConstructor;
|
|
24
|
+
|
|
25
|
+
urlParser?: __UrlParser;
|
|
26
|
+
|
|
27
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
28
|
+
|
|
29
|
+
streamCollector?: __StreamCollector;
|
|
30
|
+
|
|
31
|
+
base64Decoder?: __Decoder;
|
|
32
|
+
|
|
33
|
+
base64Encoder?: __Encoder;
|
|
34
|
+
|
|
35
|
+
utf8Decoder?: __Decoder;
|
|
36
|
+
|
|
37
|
+
utf8Encoder?: __Encoder;
|
|
38
|
+
|
|
39
|
+
runtime?: string;
|
|
40
|
+
|
|
41
|
+
disableHostPrefix?: boolean;
|
|
42
|
+
|
|
43
|
+
maxAttempts?: number | __Provider<number>;
|
|
44
|
+
|
|
45
|
+
retryMode?: string | __Provider<string>;
|
|
46
|
+
|
|
47
|
+
logger?: __Logger;
|
|
48
|
+
|
|
49
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
50
|
+
|
|
51
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
52
|
+
|
|
53
|
+
serviceId?: string;
|
|
54
|
+
|
|
55
|
+
region?: string | __Provider<string>;
|
|
56
|
+
|
|
57
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
58
|
+
|
|
59
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
60
|
+
|
|
61
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
62
|
+
|
|
63
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
64
|
+
}
|
|
65
|
+
declare type ConnectParticipantClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
66
|
+
|
|
67
|
+
export interface ConnectParticipantClientConfig extends ConnectParticipantClientConfigType {
|
|
68
|
+
}
|
|
69
|
+
declare type ConnectParticipantClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
70
|
+
|
|
71
|
+
export interface ConnectParticipantClientResolvedConfig extends ConnectParticipantClientResolvedConfigType {
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export declare class ConnectParticipantClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ConnectParticipantClientResolvedConfig> {
|
|
75
|
+
|
|
76
|
+
readonly config: ConnectParticipantClientResolvedConfig;
|
|
77
|
+
constructor(configuration: ConnectParticipantClientConfig);
|
|
78
|
+
|
|
79
|
+
destroy(): void;
|
|
80
|
+
}
|
|
81
|
+
export {};
|
|
@@ -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 { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
|
|
4
|
+
import { CompleteAttachmentUploadRequest, CompleteAttachmentUploadResponse } from "../models/models_0";
|
|
5
|
+
export interface CompleteAttachmentUploadCommandInput extends CompleteAttachmentUploadRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CompleteAttachmentUploadCommandOutput extends CompleteAttachmentUploadResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CompleteAttachmentUploadCommand extends $Command<CompleteAttachmentUploadCommandInput, CompleteAttachmentUploadCommandOutput, ConnectParticipantClientResolvedConfig> {
|
|
11
|
+
readonly input: CompleteAttachmentUploadCommandInput;
|
|
12
|
+
constructor(input: CompleteAttachmentUploadCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectParticipantClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CompleteAttachmentUploadCommandInput, CompleteAttachmentUploadCommandOutput>;
|
|
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 { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
|
|
4
|
+
import { CreateParticipantConnectionRequest, CreateParticipantConnectionResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateParticipantConnectionCommandInput extends CreateParticipantConnectionRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateParticipantConnectionCommandOutput extends CreateParticipantConnectionResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateParticipantConnectionCommand extends $Command<CreateParticipantConnectionCommandInput, CreateParticipantConnectionCommandOutput, ConnectParticipantClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateParticipantConnectionCommandInput;
|
|
12
|
+
constructor(input: CreateParticipantConnectionCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectParticipantClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateParticipantConnectionCommandInput, CreateParticipantConnectionCommandOutput>;
|
|
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 { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
|
|
4
|
+
import { DisconnectParticipantRequest, DisconnectParticipantResponse } from "../models/models_0";
|
|
5
|
+
export interface DisconnectParticipantCommandInput extends DisconnectParticipantRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DisconnectParticipantCommandOutput extends DisconnectParticipantResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DisconnectParticipantCommand extends $Command<DisconnectParticipantCommandInput, DisconnectParticipantCommandOutput, ConnectParticipantClientResolvedConfig> {
|
|
11
|
+
readonly input: DisconnectParticipantCommandInput;
|
|
12
|
+
constructor(input: DisconnectParticipantCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectParticipantClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisconnectParticipantCommandInput, DisconnectParticipantCommandOutput>;
|
|
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 { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
|
|
4
|
+
import { GetAttachmentRequest, GetAttachmentResponse } from "../models/models_0";
|
|
5
|
+
export interface GetAttachmentCommandInput extends GetAttachmentRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetAttachmentCommandOutput extends GetAttachmentResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetAttachmentCommand extends $Command<GetAttachmentCommandInput, GetAttachmentCommandOutput, ConnectParticipantClientResolvedConfig> {
|
|
11
|
+
readonly input: GetAttachmentCommandInput;
|
|
12
|
+
constructor(input: GetAttachmentCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectParticipantClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAttachmentCommandInput, GetAttachmentCommandOutput>;
|
|
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 { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
|
|
4
|
+
import { GetTranscriptRequest, GetTranscriptResponse } from "../models/models_0";
|
|
5
|
+
export interface GetTranscriptCommandInput extends GetTranscriptRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetTranscriptCommandOutput extends GetTranscriptResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetTranscriptCommand extends $Command<GetTranscriptCommandInput, GetTranscriptCommandOutput, ConnectParticipantClientResolvedConfig> {
|
|
11
|
+
readonly input: GetTranscriptCommandInput;
|
|
12
|
+
constructor(input: GetTranscriptCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectParticipantClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTranscriptCommandInput, GetTranscriptCommandOutput>;
|
|
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 { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
|
|
4
|
+
import { SendEventRequest, SendEventResponse } from "../models/models_0";
|
|
5
|
+
export interface SendEventCommandInput extends SendEventRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface SendEventCommandOutput extends SendEventResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class SendEventCommand extends $Command<SendEventCommandInput, SendEventCommandOutput, ConnectParticipantClientResolvedConfig> {
|
|
11
|
+
readonly input: SendEventCommandInput;
|
|
12
|
+
constructor(input: SendEventCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectParticipantClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendEventCommandInput, SendEventCommandOutput>;
|
|
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 { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
|
|
4
|
+
import { SendMessageRequest, SendMessageResponse } from "../models/models_0";
|
|
5
|
+
export interface SendMessageCommandInput extends SendMessageRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface SendMessageCommandOutput extends SendMessageResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class SendMessageCommand extends $Command<SendMessageCommandInput, SendMessageCommandOutput, ConnectParticipantClientResolvedConfig> {
|
|
11
|
+
readonly input: SendMessageCommandInput;
|
|
12
|
+
constructor(input: SendMessageCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectParticipantClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendMessageCommandInput, SendMessageCommandOutput>;
|
|
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 { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
|
|
4
|
+
import { StartAttachmentUploadRequest, StartAttachmentUploadResponse } from "../models/models_0";
|
|
5
|
+
export interface StartAttachmentUploadCommandInput extends StartAttachmentUploadRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface StartAttachmentUploadCommandOutput extends StartAttachmentUploadResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class StartAttachmentUploadCommand extends $Command<StartAttachmentUploadCommandInput, StartAttachmentUploadCommandOutput, ConnectParticipantClientResolvedConfig> {
|
|
11
|
+
readonly input: StartAttachmentUploadCommandInput;
|
|
12
|
+
constructor(input: StartAttachmentUploadCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectParticipantClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartAttachmentUploadCommandInput, StartAttachmentUploadCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from "./CompleteAttachmentUploadCommand";
|
|
2
|
+
export * from "./CreateParticipantConnectionCommand";
|
|
3
|
+
export * from "./DisconnectParticipantCommand";
|
|
4
|
+
export * from "./GetAttachmentCommand";
|
|
5
|
+
export * from "./GetTranscriptCommand";
|
|
6
|
+
export * from "./SendEventCommand";
|
|
7
|
+
export * from "./SendMessageCommand";
|
|
8
|
+
export * from "./StartAttachmentUploadCommand";
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from "./ConnectParticipant";
|
|
2
|
+
export * from "./ConnectParticipantClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { ConnectParticipantServiceException } from "./models/ConnectParticipantServiceException";
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class ConnectParticipantServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|