@aws-sdk/client-lex-runtime-v2 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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/LexRuntimeV2.d.ts +112 -35
- package/dist-types/ts3.4/LexRuntimeV2Client.d.ts +184 -85
- package/dist-types/ts3.4/commands/DeleteSessionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PutSessionCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/RecognizeTextCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RecognizeUtteranceCommand.d.ts +50 -24
- package/dist-types/ts3.4/commands/StartConversationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/index.d.ts +6 -6
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/LexRuntimeV2ServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1880 -87
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +80 -20
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -40
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -40
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -39
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +39 -39
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-lex-runtime-v2
|
|
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-lex-runtime-v2
|
|
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
|
|
|
@@ -1,35 +1,112 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DeleteSessionCommandInput,
|
|
4
|
+
DeleteSessionCommandOutput,
|
|
5
|
+
} from "./commands/DeleteSessionCommand";
|
|
6
|
+
import {
|
|
7
|
+
GetSessionCommandInput,
|
|
8
|
+
GetSessionCommandOutput,
|
|
9
|
+
} from "./commands/GetSessionCommand";
|
|
10
|
+
import {
|
|
11
|
+
PutSessionCommandInput,
|
|
12
|
+
PutSessionCommandOutput,
|
|
13
|
+
} from "./commands/PutSessionCommand";
|
|
14
|
+
import {
|
|
15
|
+
RecognizeTextCommandInput,
|
|
16
|
+
RecognizeTextCommandOutput,
|
|
17
|
+
} from "./commands/RecognizeTextCommand";
|
|
18
|
+
import {
|
|
19
|
+
RecognizeUtteranceCommandInput,
|
|
20
|
+
RecognizeUtteranceCommandOutput,
|
|
21
|
+
} from "./commands/RecognizeUtteranceCommand";
|
|
22
|
+
import {
|
|
23
|
+
StartConversationCommandInput,
|
|
24
|
+
StartConversationCommandOutput,
|
|
25
|
+
} from "./commands/StartConversationCommand";
|
|
26
|
+
import { LexRuntimeV2Client } from "./LexRuntimeV2Client";
|
|
27
|
+
|
|
28
|
+
export declare class LexRuntimeV2 extends LexRuntimeV2Client {
|
|
29
|
+
deleteSession(
|
|
30
|
+
args: DeleteSessionCommandInput,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Promise<DeleteSessionCommandOutput>;
|
|
33
|
+
deleteSession(
|
|
34
|
+
args: DeleteSessionCommandInput,
|
|
35
|
+
cb: (err: any, data?: DeleteSessionCommandOutput) => void
|
|
36
|
+
): void;
|
|
37
|
+
deleteSession(
|
|
38
|
+
args: DeleteSessionCommandInput,
|
|
39
|
+
options: __HttpHandlerOptions,
|
|
40
|
+
cb: (err: any, data?: DeleteSessionCommandOutput) => void
|
|
41
|
+
): void;
|
|
42
|
+
|
|
43
|
+
getSession(
|
|
44
|
+
args: GetSessionCommandInput,
|
|
45
|
+
options?: __HttpHandlerOptions
|
|
46
|
+
): Promise<GetSessionCommandOutput>;
|
|
47
|
+
getSession(
|
|
48
|
+
args: GetSessionCommandInput,
|
|
49
|
+
cb: (err: any, data?: GetSessionCommandOutput) => void
|
|
50
|
+
): void;
|
|
51
|
+
getSession(
|
|
52
|
+
args: GetSessionCommandInput,
|
|
53
|
+
options: __HttpHandlerOptions,
|
|
54
|
+
cb: (err: any, data?: GetSessionCommandOutput) => void
|
|
55
|
+
): void;
|
|
56
|
+
|
|
57
|
+
putSession(
|
|
58
|
+
args: PutSessionCommandInput,
|
|
59
|
+
options?: __HttpHandlerOptions
|
|
60
|
+
): Promise<PutSessionCommandOutput>;
|
|
61
|
+
putSession(
|
|
62
|
+
args: PutSessionCommandInput,
|
|
63
|
+
cb: (err: any, data?: PutSessionCommandOutput) => void
|
|
64
|
+
): void;
|
|
65
|
+
putSession(
|
|
66
|
+
args: PutSessionCommandInput,
|
|
67
|
+
options: __HttpHandlerOptions,
|
|
68
|
+
cb: (err: any, data?: PutSessionCommandOutput) => void
|
|
69
|
+
): void;
|
|
70
|
+
|
|
71
|
+
recognizeText(
|
|
72
|
+
args: RecognizeTextCommandInput,
|
|
73
|
+
options?: __HttpHandlerOptions
|
|
74
|
+
): Promise<RecognizeTextCommandOutput>;
|
|
75
|
+
recognizeText(
|
|
76
|
+
args: RecognizeTextCommandInput,
|
|
77
|
+
cb: (err: any, data?: RecognizeTextCommandOutput) => void
|
|
78
|
+
): void;
|
|
79
|
+
recognizeText(
|
|
80
|
+
args: RecognizeTextCommandInput,
|
|
81
|
+
options: __HttpHandlerOptions,
|
|
82
|
+
cb: (err: any, data?: RecognizeTextCommandOutput) => void
|
|
83
|
+
): void;
|
|
84
|
+
|
|
85
|
+
recognizeUtterance(
|
|
86
|
+
args: RecognizeUtteranceCommandInput,
|
|
87
|
+
options?: __HttpHandlerOptions
|
|
88
|
+
): Promise<RecognizeUtteranceCommandOutput>;
|
|
89
|
+
recognizeUtterance(
|
|
90
|
+
args: RecognizeUtteranceCommandInput,
|
|
91
|
+
cb: (err: any, data?: RecognizeUtteranceCommandOutput) => void
|
|
92
|
+
): void;
|
|
93
|
+
recognizeUtterance(
|
|
94
|
+
args: RecognizeUtteranceCommandInput,
|
|
95
|
+
options: __HttpHandlerOptions,
|
|
96
|
+
cb: (err: any, data?: RecognizeUtteranceCommandOutput) => void
|
|
97
|
+
): void;
|
|
98
|
+
|
|
99
|
+
startConversation(
|
|
100
|
+
args: StartConversationCommandInput,
|
|
101
|
+
options?: __HttpHandlerOptions
|
|
102
|
+
): Promise<StartConversationCommandOutput>;
|
|
103
|
+
startConversation(
|
|
104
|
+
args: StartConversationCommandInput,
|
|
105
|
+
cb: (err: any, data?: StartConversationCommandOutput) => void
|
|
106
|
+
): void;
|
|
107
|
+
startConversation(
|
|
108
|
+
args: StartConversationCommandInput,
|
|
109
|
+
options: __HttpHandlerOptions,
|
|
110
|
+
cb: (err: any, data?: StartConversationCommandOutput) => void
|
|
111
|
+
): void;
|
|
112
|
+
}
|
|
@@ -1,85 +1,184 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
EventStreamSerdeInputConfig,
|
|
9
|
+
EventStreamSerdeResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/eventstream-serde-config-resolver";
|
|
11
|
+
import {
|
|
12
|
+
EventStreamInputConfig,
|
|
13
|
+
EventStreamResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-eventstream";
|
|
15
|
+
import {
|
|
16
|
+
HostHeaderInputConfig,
|
|
17
|
+
HostHeaderResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-host-header";
|
|
19
|
+
import {
|
|
20
|
+
RetryInputConfig,
|
|
21
|
+
RetryResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-retry";
|
|
23
|
+
import {
|
|
24
|
+
AwsAuthInputConfig,
|
|
25
|
+
AwsAuthResolvedConfig,
|
|
26
|
+
} from "@aws-sdk/middleware-signing";
|
|
27
|
+
import {
|
|
28
|
+
UserAgentInputConfig,
|
|
29
|
+
UserAgentResolvedConfig,
|
|
30
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
31
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
32
|
+
import {
|
|
33
|
+
Client as __Client,
|
|
34
|
+
DefaultsMode,
|
|
35
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
36
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
37
|
+
} from "@aws-sdk/smithy-client";
|
|
38
|
+
import {
|
|
39
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
40
|
+
Credentials as __Credentials,
|
|
41
|
+
Decoder as __Decoder,
|
|
42
|
+
Encoder as __Encoder,
|
|
43
|
+
EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider,
|
|
44
|
+
EventStreamSerdeProvider as __EventStreamSerdeProvider,
|
|
45
|
+
HashConstructor as __HashConstructor,
|
|
46
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
47
|
+
Logger as __Logger,
|
|
48
|
+
Provider as __Provider,
|
|
49
|
+
Provider,
|
|
50
|
+
RegionInfoProvider,
|
|
51
|
+
StreamCollector as __StreamCollector,
|
|
52
|
+
UrlParser as __UrlParser,
|
|
53
|
+
UserAgent as __UserAgent,
|
|
54
|
+
} from "@aws-sdk/types";
|
|
55
|
+
import {
|
|
56
|
+
DeleteSessionCommandInput,
|
|
57
|
+
DeleteSessionCommandOutput,
|
|
58
|
+
} from "./commands/DeleteSessionCommand";
|
|
59
|
+
import {
|
|
60
|
+
GetSessionCommandInput,
|
|
61
|
+
GetSessionCommandOutput,
|
|
62
|
+
} from "./commands/GetSessionCommand";
|
|
63
|
+
import {
|
|
64
|
+
PutSessionCommandInput,
|
|
65
|
+
PutSessionCommandOutput,
|
|
66
|
+
} from "./commands/PutSessionCommand";
|
|
67
|
+
import {
|
|
68
|
+
RecognizeTextCommandInput,
|
|
69
|
+
RecognizeTextCommandOutput,
|
|
70
|
+
} from "./commands/RecognizeTextCommand";
|
|
71
|
+
import {
|
|
72
|
+
RecognizeUtteranceCommandInput,
|
|
73
|
+
RecognizeUtteranceCommandOutput,
|
|
74
|
+
} from "./commands/RecognizeUtteranceCommand";
|
|
75
|
+
import {
|
|
76
|
+
StartConversationCommandInput,
|
|
77
|
+
StartConversationCommandOutput,
|
|
78
|
+
} from "./commands/StartConversationCommand";
|
|
79
|
+
export declare type ServiceInputTypes =
|
|
80
|
+
| DeleteSessionCommandInput
|
|
81
|
+
| GetSessionCommandInput
|
|
82
|
+
| PutSessionCommandInput
|
|
83
|
+
| RecognizeTextCommandInput
|
|
84
|
+
| RecognizeUtteranceCommandInput
|
|
85
|
+
| StartConversationCommandInput;
|
|
86
|
+
export declare type ServiceOutputTypes =
|
|
87
|
+
| DeleteSessionCommandOutput
|
|
88
|
+
| GetSessionCommandOutput
|
|
89
|
+
| PutSessionCommandOutput
|
|
90
|
+
| RecognizeTextCommandOutput
|
|
91
|
+
| RecognizeUtteranceCommandOutput
|
|
92
|
+
| StartConversationCommandOutput;
|
|
93
|
+
export interface ClientDefaults
|
|
94
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
95
|
+
requestHandler?: __HttpHandler;
|
|
96
|
+
|
|
97
|
+
sha256?: __HashConstructor;
|
|
98
|
+
|
|
99
|
+
urlParser?: __UrlParser;
|
|
100
|
+
|
|
101
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
102
|
+
|
|
103
|
+
streamCollector?: __StreamCollector;
|
|
104
|
+
|
|
105
|
+
base64Decoder?: __Decoder;
|
|
106
|
+
|
|
107
|
+
base64Encoder?: __Encoder;
|
|
108
|
+
|
|
109
|
+
utf8Decoder?: __Decoder;
|
|
110
|
+
|
|
111
|
+
utf8Encoder?: __Encoder;
|
|
112
|
+
|
|
113
|
+
runtime?: string;
|
|
114
|
+
|
|
115
|
+
disableHostPrefix?: boolean;
|
|
116
|
+
|
|
117
|
+
maxAttempts?: number | __Provider<number>;
|
|
118
|
+
|
|
119
|
+
retryMode?: string | __Provider<string>;
|
|
120
|
+
|
|
121
|
+
logger?: __Logger;
|
|
122
|
+
|
|
123
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
124
|
+
|
|
125
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
126
|
+
|
|
127
|
+
serviceId?: string;
|
|
128
|
+
|
|
129
|
+
region?: string | __Provider<string>;
|
|
130
|
+
|
|
131
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
132
|
+
|
|
133
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
134
|
+
|
|
135
|
+
eventStreamPayloadHandlerProvider?: __EventStreamPayloadHandlerProvider;
|
|
136
|
+
|
|
137
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
138
|
+
|
|
139
|
+
eventStreamSerdeProvider?: __EventStreamSerdeProvider;
|
|
140
|
+
|
|
141
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
142
|
+
}
|
|
143
|
+
declare type LexRuntimeV2ClientConfigType = Partial<
|
|
144
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
145
|
+
> &
|
|
146
|
+
ClientDefaults &
|
|
147
|
+
RegionInputConfig &
|
|
148
|
+
EndpointsInputConfig &
|
|
149
|
+
RetryInputConfig &
|
|
150
|
+
HostHeaderInputConfig &
|
|
151
|
+
AwsAuthInputConfig &
|
|
152
|
+
EventStreamInputConfig &
|
|
153
|
+
UserAgentInputConfig &
|
|
154
|
+
EventStreamSerdeInputConfig;
|
|
155
|
+
|
|
156
|
+
export interface LexRuntimeV2ClientConfig
|
|
157
|
+
extends LexRuntimeV2ClientConfigType {}
|
|
158
|
+
declare type LexRuntimeV2ClientResolvedConfigType =
|
|
159
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
160
|
+
Required<ClientDefaults> &
|
|
161
|
+
RegionResolvedConfig &
|
|
162
|
+
EndpointsResolvedConfig &
|
|
163
|
+
RetryResolvedConfig &
|
|
164
|
+
HostHeaderResolvedConfig &
|
|
165
|
+
AwsAuthResolvedConfig &
|
|
166
|
+
EventStreamResolvedConfig &
|
|
167
|
+
UserAgentResolvedConfig &
|
|
168
|
+
EventStreamSerdeResolvedConfig;
|
|
169
|
+
|
|
170
|
+
export interface LexRuntimeV2ClientResolvedConfig
|
|
171
|
+
extends LexRuntimeV2ClientResolvedConfigType {}
|
|
172
|
+
|
|
173
|
+
export declare class LexRuntimeV2Client extends __Client<
|
|
174
|
+
__HttpHandlerOptions,
|
|
175
|
+
ServiceInputTypes,
|
|
176
|
+
ServiceOutputTypes,
|
|
177
|
+
LexRuntimeV2ClientResolvedConfig
|
|
178
|
+
> {
|
|
179
|
+
readonly config: LexRuntimeV2ClientResolvedConfig;
|
|
180
|
+
constructor(configuration: LexRuntimeV2ClientConfig);
|
|
181
|
+
|
|
182
|
+
destroy(): void;
|
|
183
|
+
}
|
|
184
|
+
export {};
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
LexRuntimeV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../LexRuntimeV2Client";
|
|
13
|
+
import {
|
|
14
|
+
DeleteSessionRequest,
|
|
15
|
+
DeleteSessionResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteSessionCommandInput extends DeleteSessionRequest {}
|
|
18
|
+
export interface DeleteSessionCommandOutput
|
|
19
|
+
extends DeleteSessionResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DeleteSessionCommand extends $Command<
|
|
23
|
+
DeleteSessionCommandInput,
|
|
24
|
+
DeleteSessionCommandOutput,
|
|
25
|
+
LexRuntimeV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteSessionCommandInput;
|
|
28
|
+
constructor(input: DeleteSessionCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: LexRuntimeV2ClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DeleteSessionCommandInput, DeleteSessionCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
LexRuntimeV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../LexRuntimeV2Client";
|
|
13
|
+
import { GetSessionRequest, GetSessionResponse } from "../models/models_0";
|
|
14
|
+
export interface GetSessionCommandInput extends GetSessionRequest {}
|
|
15
|
+
export interface GetSessionCommandOutput
|
|
16
|
+
extends GetSessionResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetSessionCommand extends $Command<
|
|
20
|
+
GetSessionCommandInput,
|
|
21
|
+
GetSessionCommandOutput,
|
|
22
|
+
LexRuntimeV2ClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetSessionCommandInput;
|
|
25
|
+
constructor(input: GetSessionCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: LexRuntimeV2ClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetSessionCommandInput, GetSessionCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
LexRuntimeV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../LexRuntimeV2Client";
|
|
13
|
+
import { PutSessionRequest, PutSessionResponse } from "../models/models_0";
|
|
14
|
+
export interface PutSessionCommandInput extends PutSessionRequest {}
|
|
15
|
+
export interface PutSessionCommandOutput
|
|
16
|
+
extends PutSessionResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class PutSessionCommand extends $Command<
|
|
20
|
+
PutSessionCommandInput,
|
|
21
|
+
PutSessionCommandOutput,
|
|
22
|
+
LexRuntimeV2ClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: PutSessionCommandInput;
|
|
25
|
+
constructor(input: PutSessionCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: LexRuntimeV2ClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<PutSessionCommandInput, PutSessionCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|