@aws-sdk/client-connectparticipant 3.168.0 → 3.170.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ConnectParticipant.d.ts +148 -45
  3. package/dist-types/ts3.4/ConnectParticipantClient.d.ts +178 -81
  4. package/dist-types/ts3.4/commands/CompleteAttachmentUploadCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CreateParticipantConnectionCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/DisconnectParticipantCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/GetAttachmentCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/GetTranscriptCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/SendEventCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/StartAttachmentUploadCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/index.d.ts +8 -8
  13. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  14. package/dist-types/ts3.4/index.d.ts +6 -6
  15. package/dist-types/ts3.4/models/ConnectParticipantServiceException.d.ts +8 -6
  16. package/dist-types/ts3.4/models/index.d.ts +1 -1
  17. package/dist-types/ts3.4/models/models_0.d.ts +338 -310
  18. package/dist-types/ts3.4/pagination/GetTranscriptPaginator.d.ts +11 -4
  19. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  20. package/dist-types/ts3.4/pagination/index.d.ts +2 -2
  21. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +101 -26
  22. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  23. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  24. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  25. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  26. package/package.json +34 -34
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-connectparticipant
9
+
10
+
11
+
12
+
13
+
14
+ # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-connectparticipant
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-connectparticipant
@@ -1,45 +1,148 @@
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
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ CompleteAttachmentUploadCommandInput,
4
+ CompleteAttachmentUploadCommandOutput,
5
+ } from "./commands/CompleteAttachmentUploadCommand";
6
+ import {
7
+ CreateParticipantConnectionCommandInput,
8
+ CreateParticipantConnectionCommandOutput,
9
+ } from "./commands/CreateParticipantConnectionCommand";
10
+ import {
11
+ DisconnectParticipantCommandInput,
12
+ DisconnectParticipantCommandOutput,
13
+ } from "./commands/DisconnectParticipantCommand";
14
+ import {
15
+ GetAttachmentCommandInput,
16
+ GetAttachmentCommandOutput,
17
+ } from "./commands/GetAttachmentCommand";
18
+ import {
19
+ GetTranscriptCommandInput,
20
+ GetTranscriptCommandOutput,
21
+ } from "./commands/GetTranscriptCommand";
22
+ import {
23
+ SendEventCommandInput,
24
+ SendEventCommandOutput,
25
+ } from "./commands/SendEventCommand";
26
+ import {
27
+ SendMessageCommandInput,
28
+ SendMessageCommandOutput,
29
+ } from "./commands/SendMessageCommand";
30
+ import {
31
+ StartAttachmentUploadCommandInput,
32
+ StartAttachmentUploadCommandOutput,
33
+ } from "./commands/StartAttachmentUploadCommand";
34
+ import { ConnectParticipantClient } from "./ConnectParticipantClient";
35
+
36
+ export declare class ConnectParticipant extends ConnectParticipantClient {
37
+ completeAttachmentUpload(
38
+ args: CompleteAttachmentUploadCommandInput,
39
+ options?: __HttpHandlerOptions
40
+ ): Promise<CompleteAttachmentUploadCommandOutput>;
41
+ completeAttachmentUpload(
42
+ args: CompleteAttachmentUploadCommandInput,
43
+ cb: (err: any, data?: CompleteAttachmentUploadCommandOutput) => void
44
+ ): void;
45
+ completeAttachmentUpload(
46
+ args: CompleteAttachmentUploadCommandInput,
47
+ options: __HttpHandlerOptions,
48
+ cb: (err: any, data?: CompleteAttachmentUploadCommandOutput) => void
49
+ ): void;
50
+
51
+ createParticipantConnection(
52
+ args: CreateParticipantConnectionCommandInput,
53
+ options?: __HttpHandlerOptions
54
+ ): Promise<CreateParticipantConnectionCommandOutput>;
55
+ createParticipantConnection(
56
+ args: CreateParticipantConnectionCommandInput,
57
+ cb: (err: any, data?: CreateParticipantConnectionCommandOutput) => void
58
+ ): void;
59
+ createParticipantConnection(
60
+ args: CreateParticipantConnectionCommandInput,
61
+ options: __HttpHandlerOptions,
62
+ cb: (err: any, data?: CreateParticipantConnectionCommandOutput) => void
63
+ ): void;
64
+
65
+ disconnectParticipant(
66
+ args: DisconnectParticipantCommandInput,
67
+ options?: __HttpHandlerOptions
68
+ ): Promise<DisconnectParticipantCommandOutput>;
69
+ disconnectParticipant(
70
+ args: DisconnectParticipantCommandInput,
71
+ cb: (err: any, data?: DisconnectParticipantCommandOutput) => void
72
+ ): void;
73
+ disconnectParticipant(
74
+ args: DisconnectParticipantCommandInput,
75
+ options: __HttpHandlerOptions,
76
+ cb: (err: any, data?: DisconnectParticipantCommandOutput) => void
77
+ ): void;
78
+
79
+ getAttachment(
80
+ args: GetAttachmentCommandInput,
81
+ options?: __HttpHandlerOptions
82
+ ): Promise<GetAttachmentCommandOutput>;
83
+ getAttachment(
84
+ args: GetAttachmentCommandInput,
85
+ cb: (err: any, data?: GetAttachmentCommandOutput) => void
86
+ ): void;
87
+ getAttachment(
88
+ args: GetAttachmentCommandInput,
89
+ options: __HttpHandlerOptions,
90
+ cb: (err: any, data?: GetAttachmentCommandOutput) => void
91
+ ): void;
92
+
93
+ getTranscript(
94
+ args: GetTranscriptCommandInput,
95
+ options?: __HttpHandlerOptions
96
+ ): Promise<GetTranscriptCommandOutput>;
97
+ getTranscript(
98
+ args: GetTranscriptCommandInput,
99
+ cb: (err: any, data?: GetTranscriptCommandOutput) => void
100
+ ): void;
101
+ getTranscript(
102
+ args: GetTranscriptCommandInput,
103
+ options: __HttpHandlerOptions,
104
+ cb: (err: any, data?: GetTranscriptCommandOutput) => void
105
+ ): void;
106
+
107
+ sendEvent(
108
+ args: SendEventCommandInput,
109
+ options?: __HttpHandlerOptions
110
+ ): Promise<SendEventCommandOutput>;
111
+ sendEvent(
112
+ args: SendEventCommandInput,
113
+ cb: (err: any, data?: SendEventCommandOutput) => void
114
+ ): void;
115
+ sendEvent(
116
+ args: SendEventCommandInput,
117
+ options: __HttpHandlerOptions,
118
+ cb: (err: any, data?: SendEventCommandOutput) => void
119
+ ): void;
120
+
121
+ sendMessage(
122
+ args: SendMessageCommandInput,
123
+ options?: __HttpHandlerOptions
124
+ ): Promise<SendMessageCommandOutput>;
125
+ sendMessage(
126
+ args: SendMessageCommandInput,
127
+ cb: (err: any, data?: SendMessageCommandOutput) => void
128
+ ): void;
129
+ sendMessage(
130
+ args: SendMessageCommandInput,
131
+ options: __HttpHandlerOptions,
132
+ cb: (err: any, data?: SendMessageCommandOutput) => void
133
+ ): void;
134
+
135
+ startAttachmentUpload(
136
+ args: StartAttachmentUploadCommandInput,
137
+ options?: __HttpHandlerOptions
138
+ ): Promise<StartAttachmentUploadCommandOutput>;
139
+ startAttachmentUpload(
140
+ args: StartAttachmentUploadCommandInput,
141
+ cb: (err: any, data?: StartAttachmentUploadCommandOutput) => void
142
+ ): void;
143
+ startAttachmentUpload(
144
+ args: StartAttachmentUploadCommandInput,
145
+ options: __HttpHandlerOptions,
146
+ cb: (err: any, data?: StartAttachmentUploadCommandOutput) => void
147
+ ): void;
148
+ }
@@ -1,81 +1,178 @@
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 { BodyLengthCalculator as __BodyLengthCalculator, 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?: __BodyLengthCalculator;
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 {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ CompleteAttachmentUploadCommandInput,
47
+ CompleteAttachmentUploadCommandOutput,
48
+ } from "./commands/CompleteAttachmentUploadCommand";
49
+ import {
50
+ CreateParticipantConnectionCommandInput,
51
+ CreateParticipantConnectionCommandOutput,
52
+ } from "./commands/CreateParticipantConnectionCommand";
53
+ import {
54
+ DisconnectParticipantCommandInput,
55
+ DisconnectParticipantCommandOutput,
56
+ } from "./commands/DisconnectParticipantCommand";
57
+ import {
58
+ GetAttachmentCommandInput,
59
+ GetAttachmentCommandOutput,
60
+ } from "./commands/GetAttachmentCommand";
61
+ import {
62
+ GetTranscriptCommandInput,
63
+ GetTranscriptCommandOutput,
64
+ } from "./commands/GetTranscriptCommand";
65
+ import {
66
+ SendEventCommandInput,
67
+ SendEventCommandOutput,
68
+ } from "./commands/SendEventCommand";
69
+ import {
70
+ SendMessageCommandInput,
71
+ SendMessageCommandOutput,
72
+ } from "./commands/SendMessageCommand";
73
+ import {
74
+ StartAttachmentUploadCommandInput,
75
+ StartAttachmentUploadCommandOutput,
76
+ } from "./commands/StartAttachmentUploadCommand";
77
+ export declare type ServiceInputTypes =
78
+ | CompleteAttachmentUploadCommandInput
79
+ | CreateParticipantConnectionCommandInput
80
+ | DisconnectParticipantCommandInput
81
+ | GetAttachmentCommandInput
82
+ | GetTranscriptCommandInput
83
+ | SendEventCommandInput
84
+ | SendMessageCommandInput
85
+ | StartAttachmentUploadCommandInput;
86
+ export declare type ServiceOutputTypes =
87
+ | CompleteAttachmentUploadCommandOutput
88
+ | CreateParticipantConnectionCommandOutput
89
+ | DisconnectParticipantCommandOutput
90
+ | GetAttachmentCommandOutput
91
+ | GetTranscriptCommandOutput
92
+ | SendEventCommandOutput
93
+ | SendMessageCommandOutput
94
+ | StartAttachmentUploadCommandOutput;
95
+ export interface ClientDefaults
96
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
97
+ requestHandler?: __HttpHandler;
98
+
99
+ sha256?: __HashConstructor;
100
+
101
+ urlParser?: __UrlParser;
102
+
103
+ bodyLengthChecker?: __BodyLengthCalculator;
104
+
105
+ streamCollector?: __StreamCollector;
106
+
107
+ base64Decoder?: __Decoder;
108
+
109
+ base64Encoder?: __Encoder;
110
+
111
+ utf8Decoder?: __Decoder;
112
+
113
+ utf8Encoder?: __Encoder;
114
+
115
+ runtime?: string;
116
+
117
+ disableHostPrefix?: boolean;
118
+
119
+ maxAttempts?: number | __Provider<number>;
120
+
121
+ retryMode?: string | __Provider<string>;
122
+
123
+ logger?: __Logger;
124
+
125
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
126
+
127
+ useFipsEndpoint?: boolean | __Provider<boolean>;
128
+
129
+ serviceId?: string;
130
+
131
+ region?: string | __Provider<string>;
132
+
133
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
134
+
135
+ regionInfoProvider?: RegionInfoProvider;
136
+
137
+ defaultUserAgentProvider?: Provider<__UserAgent>;
138
+
139
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
140
+ }
141
+ declare type ConnectParticipantClientConfigType = Partial<
142
+ __SmithyConfiguration<__HttpHandlerOptions>
143
+ > &
144
+ ClientDefaults &
145
+ RegionInputConfig &
146
+ EndpointsInputConfig &
147
+ RetryInputConfig &
148
+ HostHeaderInputConfig &
149
+ AwsAuthInputConfig &
150
+ UserAgentInputConfig;
151
+
152
+ export interface ConnectParticipantClientConfig
153
+ extends ConnectParticipantClientConfigType {}
154
+ declare type ConnectParticipantClientResolvedConfigType =
155
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
156
+ Required<ClientDefaults> &
157
+ RegionResolvedConfig &
158
+ EndpointsResolvedConfig &
159
+ RetryResolvedConfig &
160
+ HostHeaderResolvedConfig &
161
+ AwsAuthResolvedConfig &
162
+ UserAgentResolvedConfig;
163
+
164
+ export interface ConnectParticipantClientResolvedConfig
165
+ extends ConnectParticipantClientResolvedConfigType {}
166
+
167
+ export declare class ConnectParticipantClient extends __Client<
168
+ __HttpHandlerOptions,
169
+ ServiceInputTypes,
170
+ ServiceOutputTypes,
171
+ ConnectParticipantClientResolvedConfig
172
+ > {
173
+ readonly config: ConnectParticipantClientResolvedConfig;
174
+ constructor(configuration: ConnectParticipantClientConfig);
175
+
176
+ destroy(): void;
177
+ }
178
+ export {};
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { 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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ConnectParticipantClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ConnectParticipantClient";
13
+ import {
14
+ CompleteAttachmentUploadRequest,
15
+ CompleteAttachmentUploadResponse,
16
+ } from "../models/models_0";
17
+ export interface CompleteAttachmentUploadCommandInput
18
+ extends CompleteAttachmentUploadRequest {}
19
+ export interface CompleteAttachmentUploadCommandOutput
20
+ extends CompleteAttachmentUploadResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class CompleteAttachmentUploadCommand extends $Command<
24
+ CompleteAttachmentUploadCommandInput,
25
+ CompleteAttachmentUploadCommandOutput,
26
+ ConnectParticipantClientResolvedConfig
27
+ > {
28
+ readonly input: CompleteAttachmentUploadCommandInput;
29
+ constructor(input: CompleteAttachmentUploadCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ConnectParticipantClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ CompleteAttachmentUploadCommandInput,
37
+ CompleteAttachmentUploadCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { 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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ConnectParticipantClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ConnectParticipantClient";
13
+ import {
14
+ CreateParticipantConnectionRequest,
15
+ CreateParticipantConnectionResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateParticipantConnectionCommandInput
18
+ extends CreateParticipantConnectionRequest {}
19
+ export interface CreateParticipantConnectionCommandOutput
20
+ extends CreateParticipantConnectionResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class CreateParticipantConnectionCommand extends $Command<
24
+ CreateParticipantConnectionCommandInput,
25
+ CreateParticipantConnectionCommandOutput,
26
+ ConnectParticipantClientResolvedConfig
27
+ > {
28
+ readonly input: CreateParticipantConnectionCommandInput;
29
+ constructor(input: CreateParticipantConnectionCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ConnectParticipantClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ CreateParticipantConnectionCommandInput,
37
+ CreateParticipantConnectionCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { 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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ConnectParticipantClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ConnectParticipantClient";
13
+ import {
14
+ DisconnectParticipantRequest,
15
+ DisconnectParticipantResponse,
16
+ } from "../models/models_0";
17
+ export interface DisconnectParticipantCommandInput
18
+ extends DisconnectParticipantRequest {}
19
+ export interface DisconnectParticipantCommandOutput
20
+ extends DisconnectParticipantResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DisconnectParticipantCommand extends $Command<
24
+ DisconnectParticipantCommandInput,
25
+ DisconnectParticipantCommandOutput,
26
+ ConnectParticipantClientResolvedConfig
27
+ > {
28
+ readonly input: DisconnectParticipantCommandInput;
29
+ constructor(input: DisconnectParticipantCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ConnectParticipantClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DisconnectParticipantCommandInput,
37
+ DisconnectParticipantCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }