@aws-sdk/client-connectparticipant 3.169.0 → 3.171.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 +140 -45
  3. package/dist-types/ts3.4/ConnectParticipantClient.d.ts +153 -81
  4. package/dist-types/ts3.4/commands/CompleteAttachmentUploadCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/CreateParticipantConnectionCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/DisconnectParticipantCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/GetAttachmentCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/GetTranscriptCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/SendEventCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/StartAttachmentUploadCommand.d.ts +39 -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 +7 -6
  16. package/dist-types/ts3.4/models/index.d.ts +1 -1
  17. package/dist-types/ts3.4/models/models_0.d.ts +252 -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 +67 -38
  23. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  24. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  25. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -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.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-connectparticipant
9
+
10
+
11
+
12
+
13
+
14
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-connectparticipant
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-connectparticipant
@@ -1,45 +1,140 @@
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
+ export declare class ConnectParticipant extends ConnectParticipantClient {
36
+ completeAttachmentUpload(
37
+ args: CompleteAttachmentUploadCommandInput,
38
+ options?: __HttpHandlerOptions
39
+ ): Promise<CompleteAttachmentUploadCommandOutput>;
40
+ completeAttachmentUpload(
41
+ args: CompleteAttachmentUploadCommandInput,
42
+ cb: (err: any, data?: CompleteAttachmentUploadCommandOutput) => void
43
+ ): void;
44
+ completeAttachmentUpload(
45
+ args: CompleteAttachmentUploadCommandInput,
46
+ options: __HttpHandlerOptions,
47
+ cb: (err: any, data?: CompleteAttachmentUploadCommandOutput) => void
48
+ ): void;
49
+ createParticipantConnection(
50
+ args: CreateParticipantConnectionCommandInput,
51
+ options?: __HttpHandlerOptions
52
+ ): Promise<CreateParticipantConnectionCommandOutput>;
53
+ createParticipantConnection(
54
+ args: CreateParticipantConnectionCommandInput,
55
+ cb: (err: any, data?: CreateParticipantConnectionCommandOutput) => void
56
+ ): void;
57
+ createParticipantConnection(
58
+ args: CreateParticipantConnectionCommandInput,
59
+ options: __HttpHandlerOptions,
60
+ cb: (err: any, data?: CreateParticipantConnectionCommandOutput) => void
61
+ ): void;
62
+ disconnectParticipant(
63
+ args: DisconnectParticipantCommandInput,
64
+ options?: __HttpHandlerOptions
65
+ ): Promise<DisconnectParticipantCommandOutput>;
66
+ disconnectParticipant(
67
+ args: DisconnectParticipantCommandInput,
68
+ cb: (err: any, data?: DisconnectParticipantCommandOutput) => void
69
+ ): void;
70
+ disconnectParticipant(
71
+ args: DisconnectParticipantCommandInput,
72
+ options: __HttpHandlerOptions,
73
+ cb: (err: any, data?: DisconnectParticipantCommandOutput) => void
74
+ ): void;
75
+ getAttachment(
76
+ args: GetAttachmentCommandInput,
77
+ options?: __HttpHandlerOptions
78
+ ): Promise<GetAttachmentCommandOutput>;
79
+ getAttachment(
80
+ args: GetAttachmentCommandInput,
81
+ cb: (err: any, data?: GetAttachmentCommandOutput) => void
82
+ ): void;
83
+ getAttachment(
84
+ args: GetAttachmentCommandInput,
85
+ options: __HttpHandlerOptions,
86
+ cb: (err: any, data?: GetAttachmentCommandOutput) => void
87
+ ): void;
88
+ getTranscript(
89
+ args: GetTranscriptCommandInput,
90
+ options?: __HttpHandlerOptions
91
+ ): Promise<GetTranscriptCommandOutput>;
92
+ getTranscript(
93
+ args: GetTranscriptCommandInput,
94
+ cb: (err: any, data?: GetTranscriptCommandOutput) => void
95
+ ): void;
96
+ getTranscript(
97
+ args: GetTranscriptCommandInput,
98
+ options: __HttpHandlerOptions,
99
+ cb: (err: any, data?: GetTranscriptCommandOutput) => void
100
+ ): void;
101
+ sendEvent(
102
+ args: SendEventCommandInput,
103
+ options?: __HttpHandlerOptions
104
+ ): Promise<SendEventCommandOutput>;
105
+ sendEvent(
106
+ args: SendEventCommandInput,
107
+ cb: (err: any, data?: SendEventCommandOutput) => void
108
+ ): void;
109
+ sendEvent(
110
+ args: SendEventCommandInput,
111
+ options: __HttpHandlerOptions,
112
+ cb: (err: any, data?: SendEventCommandOutput) => void
113
+ ): void;
114
+ sendMessage(
115
+ args: SendMessageCommandInput,
116
+ options?: __HttpHandlerOptions
117
+ ): Promise<SendMessageCommandOutput>;
118
+ sendMessage(
119
+ args: SendMessageCommandInput,
120
+ cb: (err: any, data?: SendMessageCommandOutput) => void
121
+ ): void;
122
+ sendMessage(
123
+ args: SendMessageCommandInput,
124
+ options: __HttpHandlerOptions,
125
+ cb: (err: any, data?: SendMessageCommandOutput) => void
126
+ ): void;
127
+ startAttachmentUpload(
128
+ args: StartAttachmentUploadCommandInput,
129
+ options?: __HttpHandlerOptions
130
+ ): Promise<StartAttachmentUploadCommandOutput>;
131
+ startAttachmentUpload(
132
+ args: StartAttachmentUploadCommandInput,
133
+ cb: (err: any, data?: StartAttachmentUploadCommandOutput) => void
134
+ ): void;
135
+ startAttachmentUpload(
136
+ args: StartAttachmentUploadCommandInput,
137
+ options: __HttpHandlerOptions,
138
+ cb: (err: any, data?: StartAttachmentUploadCommandOutput) => void
139
+ ): void;
140
+ }
@@ -1,81 +1,153 @@
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
+ sha256?: __HashConstructor;
99
+ urlParser?: __UrlParser;
100
+ bodyLengthChecker?: __BodyLengthCalculator;
101
+ streamCollector?: __StreamCollector;
102
+ base64Decoder?: __Decoder;
103
+ base64Encoder?: __Encoder;
104
+ utf8Decoder?: __Decoder;
105
+ utf8Encoder?: __Encoder;
106
+ runtime?: string;
107
+ disableHostPrefix?: boolean;
108
+ maxAttempts?: number | __Provider<number>;
109
+ retryMode?: string | __Provider<string>;
110
+ logger?: __Logger;
111
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
112
+ useFipsEndpoint?: boolean | __Provider<boolean>;
113
+ serviceId?: string;
114
+ region?: string | __Provider<string>;
115
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
116
+ regionInfoProvider?: RegionInfoProvider;
117
+ defaultUserAgentProvider?: Provider<__UserAgent>;
118
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
119
+ }
120
+ declare type ConnectParticipantClientConfigType = Partial<
121
+ __SmithyConfiguration<__HttpHandlerOptions>
122
+ > &
123
+ ClientDefaults &
124
+ RegionInputConfig &
125
+ EndpointsInputConfig &
126
+ RetryInputConfig &
127
+ HostHeaderInputConfig &
128
+ AwsAuthInputConfig &
129
+ UserAgentInputConfig;
130
+ export interface ConnectParticipantClientConfig
131
+ extends ConnectParticipantClientConfigType {}
132
+ declare type ConnectParticipantClientResolvedConfigType =
133
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
134
+ Required<ClientDefaults> &
135
+ RegionResolvedConfig &
136
+ EndpointsResolvedConfig &
137
+ RetryResolvedConfig &
138
+ HostHeaderResolvedConfig &
139
+ AwsAuthResolvedConfig &
140
+ UserAgentResolvedConfig;
141
+ export interface ConnectParticipantClientResolvedConfig
142
+ extends ConnectParticipantClientResolvedConfigType {}
143
+ export declare class ConnectParticipantClient extends __Client<
144
+ __HttpHandlerOptions,
145
+ ServiceInputTypes,
146
+ ServiceOutputTypes,
147
+ ConnectParticipantClientResolvedConfig
148
+ > {
149
+ readonly config: ConnectParticipantClientResolvedConfig;
150
+ constructor(configuration: ConnectParticipantClientConfig);
151
+ destroy(): void;
152
+ }
153
+ export {};
@@ -1,17 +1,39 @@
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
+ export declare class CompleteAttachmentUploadCommand extends $Command<
23
+ CompleteAttachmentUploadCommandInput,
24
+ CompleteAttachmentUploadCommandOutput,
25
+ ConnectParticipantClientResolvedConfig
26
+ > {
27
+ readonly input: CompleteAttachmentUploadCommandInput;
28
+ constructor(input: CompleteAttachmentUploadCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ConnectParticipantClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ CompleteAttachmentUploadCommandInput,
35
+ CompleteAttachmentUploadCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
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
+ export declare class CreateParticipantConnectionCommand extends $Command<
23
+ CreateParticipantConnectionCommandInput,
24
+ CreateParticipantConnectionCommandOutput,
25
+ ConnectParticipantClientResolvedConfig
26
+ > {
27
+ readonly input: CreateParticipantConnectionCommandInput;
28
+ constructor(input: CreateParticipantConnectionCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ConnectParticipantClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ CreateParticipantConnectionCommandInput,
35
+ CreateParticipantConnectionCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
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
+ export declare class DisconnectParticipantCommand extends $Command<
23
+ DisconnectParticipantCommandInput,
24
+ DisconnectParticipantCommandOutput,
25
+ ConnectParticipantClientResolvedConfig
26
+ > {
27
+ readonly input: DisconnectParticipantCommandInput;
28
+ constructor(input: DisconnectParticipantCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ConnectParticipantClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DisconnectParticipantCommandInput,
35
+ DisconnectParticipantCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }