@aws-sdk/client-transcribe-streaming 3.169.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 +8 -0
- package/dist-types/ts3.4/TranscribeStreaming.d.ts +40 -15
- package/dist-types/ts3.4/TranscribeStreamingClient.d.ts +166 -82
- package/dist-types/ts3.4/commands/StartMedicalStreamTranscriptionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartStreamTranscriptionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +2 -2
- 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/TranscribeStreamingServiceException.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 +648 -625
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +32 -8
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +70 -40
- package/dist-types/ts3.4/runtimeConfig.d.ts +70 -40
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +72 -40
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +40 -40
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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-transcribe-streaming
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-transcribe-streaming
|
|
@@ -1,15 +1,40 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
StartMedicalStreamTranscriptionCommandInput,
|
|
4
|
+
StartMedicalStreamTranscriptionCommandOutput,
|
|
5
|
+
} from "./commands/StartMedicalStreamTranscriptionCommand";
|
|
6
|
+
import {
|
|
7
|
+
StartStreamTranscriptionCommandInput,
|
|
8
|
+
StartStreamTranscriptionCommandOutput,
|
|
9
|
+
} from "./commands/StartStreamTranscriptionCommand";
|
|
10
|
+
import { TranscribeStreamingClient } from "./TranscribeStreamingClient";
|
|
11
|
+
|
|
12
|
+
export declare class TranscribeStreaming extends TranscribeStreamingClient {
|
|
13
|
+
startMedicalStreamTranscription(
|
|
14
|
+
args: StartMedicalStreamTranscriptionCommandInput,
|
|
15
|
+
options?: __HttpHandlerOptions
|
|
16
|
+
): Promise<StartMedicalStreamTranscriptionCommandOutput>;
|
|
17
|
+
startMedicalStreamTranscription(
|
|
18
|
+
args: StartMedicalStreamTranscriptionCommandInput,
|
|
19
|
+
cb: (err: any, data?: StartMedicalStreamTranscriptionCommandOutput) => void
|
|
20
|
+
): void;
|
|
21
|
+
startMedicalStreamTranscription(
|
|
22
|
+
args: StartMedicalStreamTranscriptionCommandInput,
|
|
23
|
+
options: __HttpHandlerOptions,
|
|
24
|
+
cb: (err: any, data?: StartMedicalStreamTranscriptionCommandOutput) => void
|
|
25
|
+
): void;
|
|
26
|
+
|
|
27
|
+
startStreamTranscription(
|
|
28
|
+
args: StartStreamTranscriptionCommandInput,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Promise<StartStreamTranscriptionCommandOutput>;
|
|
31
|
+
startStreamTranscription(
|
|
32
|
+
args: StartStreamTranscriptionCommandInput,
|
|
33
|
+
cb: (err: any, data?: StartStreamTranscriptionCommandOutput) => void
|
|
34
|
+
): void;
|
|
35
|
+
startStreamTranscription(
|
|
36
|
+
args: StartStreamTranscriptionCommandInput,
|
|
37
|
+
options: __HttpHandlerOptions,
|
|
38
|
+
cb: (err: any, data?: StartStreamTranscriptionCommandOutput) => void
|
|
39
|
+
): void;
|
|
40
|
+
}
|
|
@@ -1,82 +1,166 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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
|
-
declare type
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
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
|
+
WebSocketInputConfig,
|
|
25
|
+
WebSocketResolvedConfig,
|
|
26
|
+
} from "@aws-sdk/middleware-sdk-transcribe-streaming";
|
|
27
|
+
import {
|
|
28
|
+
AwsAuthInputConfig,
|
|
29
|
+
AwsAuthResolvedConfig,
|
|
30
|
+
} from "@aws-sdk/middleware-signing";
|
|
31
|
+
import {
|
|
32
|
+
UserAgentInputConfig,
|
|
33
|
+
UserAgentResolvedConfig,
|
|
34
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
35
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
36
|
+
import {
|
|
37
|
+
Client as __Client,
|
|
38
|
+
DefaultsMode,
|
|
39
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
40
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
41
|
+
} from "@aws-sdk/smithy-client";
|
|
42
|
+
import {
|
|
43
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
44
|
+
Credentials as __Credentials,
|
|
45
|
+
Decoder as __Decoder,
|
|
46
|
+
Encoder as __Encoder,
|
|
47
|
+
EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider,
|
|
48
|
+
EventStreamSerdeProvider as __EventStreamSerdeProvider,
|
|
49
|
+
HashConstructor as __HashConstructor,
|
|
50
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
51
|
+
Logger as __Logger,
|
|
52
|
+
Provider as __Provider,
|
|
53
|
+
Provider,
|
|
54
|
+
RegionInfoProvider,
|
|
55
|
+
StreamCollector as __StreamCollector,
|
|
56
|
+
UrlParser as __UrlParser,
|
|
57
|
+
UserAgent as __UserAgent,
|
|
58
|
+
} from "@aws-sdk/types";
|
|
59
|
+
import {
|
|
60
|
+
StartMedicalStreamTranscriptionCommandInput,
|
|
61
|
+
StartMedicalStreamTranscriptionCommandOutput,
|
|
62
|
+
} from "./commands/StartMedicalStreamTranscriptionCommand";
|
|
63
|
+
import {
|
|
64
|
+
StartStreamTranscriptionCommandInput,
|
|
65
|
+
StartStreamTranscriptionCommandOutput,
|
|
66
|
+
} from "./commands/StartStreamTranscriptionCommand";
|
|
67
|
+
export declare type ServiceInputTypes =
|
|
68
|
+
| StartMedicalStreamTranscriptionCommandInput
|
|
69
|
+
| StartStreamTranscriptionCommandInput;
|
|
70
|
+
export declare type ServiceOutputTypes =
|
|
71
|
+
| StartMedicalStreamTranscriptionCommandOutput
|
|
72
|
+
| StartStreamTranscriptionCommandOutput;
|
|
73
|
+
export interface ClientDefaults
|
|
74
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
75
|
+
requestHandler?: __HttpHandler;
|
|
76
|
+
|
|
77
|
+
sha256?: __HashConstructor;
|
|
78
|
+
|
|
79
|
+
urlParser?: __UrlParser;
|
|
80
|
+
|
|
81
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
82
|
+
|
|
83
|
+
streamCollector?: __StreamCollector;
|
|
84
|
+
|
|
85
|
+
base64Decoder?: __Decoder;
|
|
86
|
+
|
|
87
|
+
base64Encoder?: __Encoder;
|
|
88
|
+
|
|
89
|
+
utf8Decoder?: __Decoder;
|
|
90
|
+
|
|
91
|
+
utf8Encoder?: __Encoder;
|
|
92
|
+
|
|
93
|
+
runtime?: string;
|
|
94
|
+
|
|
95
|
+
disableHostPrefix?: boolean;
|
|
96
|
+
|
|
97
|
+
maxAttempts?: number | __Provider<number>;
|
|
98
|
+
|
|
99
|
+
retryMode?: string | __Provider<string>;
|
|
100
|
+
|
|
101
|
+
logger?: __Logger;
|
|
102
|
+
|
|
103
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
104
|
+
|
|
105
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
106
|
+
|
|
107
|
+
serviceId?: string;
|
|
108
|
+
|
|
109
|
+
region?: string | __Provider<string>;
|
|
110
|
+
|
|
111
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
112
|
+
|
|
113
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
114
|
+
|
|
115
|
+
eventStreamPayloadHandlerProvider?: __EventStreamPayloadHandlerProvider;
|
|
116
|
+
|
|
117
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
118
|
+
|
|
119
|
+
eventStreamSerdeProvider?: __EventStreamSerdeProvider;
|
|
120
|
+
|
|
121
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
122
|
+
}
|
|
123
|
+
declare type TranscribeStreamingClientConfigType = Partial<
|
|
124
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
125
|
+
> &
|
|
126
|
+
ClientDefaults &
|
|
127
|
+
RegionInputConfig &
|
|
128
|
+
EndpointsInputConfig &
|
|
129
|
+
RetryInputConfig &
|
|
130
|
+
HostHeaderInputConfig &
|
|
131
|
+
AwsAuthInputConfig &
|
|
132
|
+
EventStreamInputConfig &
|
|
133
|
+
WebSocketInputConfig &
|
|
134
|
+
UserAgentInputConfig &
|
|
135
|
+
EventStreamSerdeInputConfig;
|
|
136
|
+
|
|
137
|
+
export interface TranscribeStreamingClientConfig
|
|
138
|
+
extends TranscribeStreamingClientConfigType {}
|
|
139
|
+
declare type TranscribeStreamingClientResolvedConfigType =
|
|
140
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
141
|
+
Required<ClientDefaults> &
|
|
142
|
+
RegionResolvedConfig &
|
|
143
|
+
EndpointsResolvedConfig &
|
|
144
|
+
RetryResolvedConfig &
|
|
145
|
+
HostHeaderResolvedConfig &
|
|
146
|
+
AwsAuthResolvedConfig &
|
|
147
|
+
EventStreamResolvedConfig &
|
|
148
|
+
WebSocketResolvedConfig &
|
|
149
|
+
UserAgentResolvedConfig &
|
|
150
|
+
EventStreamSerdeResolvedConfig;
|
|
151
|
+
|
|
152
|
+
export interface TranscribeStreamingClientResolvedConfig
|
|
153
|
+
extends TranscribeStreamingClientResolvedConfigType {}
|
|
154
|
+
|
|
155
|
+
export declare class TranscribeStreamingClient extends __Client<
|
|
156
|
+
__HttpHandlerOptions,
|
|
157
|
+
ServiceInputTypes,
|
|
158
|
+
ServiceOutputTypes,
|
|
159
|
+
TranscribeStreamingClientResolvedConfig
|
|
160
|
+
> {
|
|
161
|
+
readonly config: TranscribeStreamingClientResolvedConfig;
|
|
162
|
+
constructor(configuration: TranscribeStreamingClientConfig);
|
|
163
|
+
|
|
164
|
+
destroy(): void;
|
|
165
|
+
}
|
|
166
|
+
export {};
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
StartMedicalStreamTranscriptionRequest,
|
|
10
|
+
StartMedicalStreamTranscriptionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeStreamingClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeStreamingClient";
|
|
17
|
+
export interface StartMedicalStreamTranscriptionCommandInput
|
|
18
|
+
extends StartMedicalStreamTranscriptionRequest {}
|
|
19
|
+
export interface StartMedicalStreamTranscriptionCommandOutput
|
|
20
|
+
extends StartMedicalStreamTranscriptionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class StartMedicalStreamTranscriptionCommand extends $Command<
|
|
24
|
+
StartMedicalStreamTranscriptionCommandInput,
|
|
25
|
+
StartMedicalStreamTranscriptionCommandOutput,
|
|
26
|
+
TranscribeStreamingClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: StartMedicalStreamTranscriptionCommandInput;
|
|
29
|
+
constructor(input: StartMedicalStreamTranscriptionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TranscribeStreamingClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
StartMedicalStreamTranscriptionCommandInput,
|
|
37
|
+
StartMedicalStreamTranscriptionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
StartStreamTranscriptionRequest,
|
|
10
|
+
StartStreamTranscriptionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeStreamingClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeStreamingClient";
|
|
17
|
+
export interface StartStreamTranscriptionCommandInput
|
|
18
|
+
extends StartStreamTranscriptionRequest {}
|
|
19
|
+
export interface StartStreamTranscriptionCommandOutput
|
|
20
|
+
extends StartStreamTranscriptionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class StartStreamTranscriptionCommand extends $Command<
|
|
24
|
+
StartStreamTranscriptionCommandInput,
|
|
25
|
+
StartStreamTranscriptionCommandOutput,
|
|
26
|
+
TranscribeStreamingClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: StartStreamTranscriptionCommandInput;
|
|
29
|
+
constructor(input: StartStreamTranscriptionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TranscribeStreamingClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
StartStreamTranscriptionCommandInput,
|
|
37
|
+
StartStreamTranscriptionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./StartMedicalStreamTranscriptionCommand";
|
|
2
|
-
export * from "./StartStreamTranscriptionCommand";
|
|
1
|
+
export * from "./StartMedicalStreamTranscriptionCommand";
|
|
2
|
+
export * from "./StartStreamTranscriptionCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./TranscribeStreaming";
|
|
2
|
-
export * from "./TranscribeStreamingClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export { TranscribeStreamingServiceException } from "./models/TranscribeStreamingServiceException";
|
|
1
|
+
export * from "./TranscribeStreaming";
|
|
2
|
+
export * from "./TranscribeStreamingClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export { TranscribeStreamingServiceException } from "./models/TranscribeStreamingServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class TranscribeStreamingServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|