@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 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 { StartMedicalStreamTranscriptionCommandInput, StartMedicalStreamTranscriptionCommandOutput } from "./commands/StartMedicalStreamTranscriptionCommand";
3
- import { StartStreamTranscriptionCommandInput, StartStreamTranscriptionCommandOutput } from "./commands/StartStreamTranscriptionCommand";
4
- import { TranscribeStreamingClient } from "./TranscribeStreamingClient";
5
-
6
- export declare class TranscribeStreaming extends TranscribeStreamingClient {
7
-
8
- startMedicalStreamTranscription(args: StartMedicalStreamTranscriptionCommandInput, options?: __HttpHandlerOptions): Promise<StartMedicalStreamTranscriptionCommandOutput>;
9
- startMedicalStreamTranscription(args: StartMedicalStreamTranscriptionCommandInput, cb: (err: any, data?: StartMedicalStreamTranscriptionCommandOutput) => void): void;
10
- startMedicalStreamTranscription(args: StartMedicalStreamTranscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartMedicalStreamTranscriptionCommandOutput) => void): void;
11
-
12
- startStreamTranscription(args: StartStreamTranscriptionCommandInput, options?: __HttpHandlerOptions): Promise<StartStreamTranscriptionCommandOutput>;
13
- startStreamTranscription(args: StartStreamTranscriptionCommandInput, cb: (err: any, data?: StartStreamTranscriptionCommandOutput) => void): void;
14
- startStreamTranscription(args: StartStreamTranscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartStreamTranscriptionCommandOutput) => void): void;
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 { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { EventStreamSerdeInputConfig, EventStreamSerdeResolvedConfig } from "@aws-sdk/eventstream-serde-config-resolver";
3
- import { EventStreamInputConfig, EventStreamResolvedConfig } from "@aws-sdk/middleware-eventstream";
4
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
5
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
6
- import { WebSocketInputConfig, WebSocketResolvedConfig } from "@aws-sdk/middleware-sdk-transcribe-streaming";
7
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
8
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
9
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
10
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
11
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider, EventStreamSerdeProvider as __EventStreamSerdeProvider, 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";
12
- import { StartMedicalStreamTranscriptionCommandInput, StartMedicalStreamTranscriptionCommandOutput } from "./commands/StartMedicalStreamTranscriptionCommand";
13
- import { StartStreamTranscriptionCommandInput, StartStreamTranscriptionCommandOutput } from "./commands/StartStreamTranscriptionCommand";
14
- export declare type ServiceInputTypes = StartMedicalStreamTranscriptionCommandInput | StartStreamTranscriptionCommandInput;
15
- export declare type ServiceOutputTypes = StartMedicalStreamTranscriptionCommandOutput | StartStreamTranscriptionCommandOutput;
16
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
17
-
18
- requestHandler?: __HttpHandler;
19
-
20
- sha256?: __HashConstructor;
21
-
22
- urlParser?: __UrlParser;
23
-
24
- bodyLengthChecker?: __BodyLengthCalculator;
25
-
26
- streamCollector?: __StreamCollector;
27
-
28
- base64Decoder?: __Decoder;
29
-
30
- base64Encoder?: __Encoder;
31
-
32
- utf8Decoder?: __Decoder;
33
-
34
- utf8Encoder?: __Encoder;
35
-
36
- runtime?: string;
37
-
38
- disableHostPrefix?: boolean;
39
-
40
- maxAttempts?: number | __Provider<number>;
41
-
42
- retryMode?: string | __Provider<string>;
43
-
44
- logger?: __Logger;
45
-
46
- useDualstackEndpoint?: boolean | __Provider<boolean>;
47
-
48
- useFipsEndpoint?: boolean | __Provider<boolean>;
49
-
50
- serviceId?: string;
51
-
52
- region?: string | __Provider<string>;
53
-
54
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
55
-
56
- regionInfoProvider?: RegionInfoProvider;
57
-
58
- eventStreamPayloadHandlerProvider?: __EventStreamPayloadHandlerProvider;
59
-
60
- defaultUserAgentProvider?: Provider<__UserAgent>;
61
-
62
- eventStreamSerdeProvider?: __EventStreamSerdeProvider;
63
-
64
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
65
- }
66
- declare type TranscribeStreamingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & EventStreamInputConfig & WebSocketInputConfig & UserAgentInputConfig & EventStreamSerdeInputConfig;
67
-
68
- export interface TranscribeStreamingClientConfig extends TranscribeStreamingClientConfigType {
69
- }
70
- declare type TranscribeStreamingClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & EventStreamResolvedConfig & WebSocketResolvedConfig & UserAgentResolvedConfig & EventStreamSerdeResolvedConfig;
71
-
72
- export interface TranscribeStreamingClientResolvedConfig extends TranscribeStreamingClientResolvedConfigType {
73
- }
74
-
75
- export declare class TranscribeStreamingClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, TranscribeStreamingClientResolvedConfig> {
76
-
77
- readonly config: TranscribeStreamingClientResolvedConfig;
78
- constructor(configuration: TranscribeStreamingClientConfig);
79
-
80
- destroy(): void;
81
- }
82
- export {};
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { StartMedicalStreamTranscriptionRequest, StartMedicalStreamTranscriptionResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, TranscribeStreamingClientResolvedConfig } from "../TranscribeStreamingClient";
5
- export interface StartMedicalStreamTranscriptionCommandInput extends StartMedicalStreamTranscriptionRequest {
6
- }
7
- export interface StartMedicalStreamTranscriptionCommandOutput extends StartMedicalStreamTranscriptionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartMedicalStreamTranscriptionCommand extends $Command<StartMedicalStreamTranscriptionCommandInput, StartMedicalStreamTranscriptionCommandOutput, TranscribeStreamingClientResolvedConfig> {
11
- readonly input: StartMedicalStreamTranscriptionCommandInput;
12
- constructor(input: StartMedicalStreamTranscriptionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeStreamingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartMedicalStreamTranscriptionCommandInput, StartMedicalStreamTranscriptionCommandOutput>;
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
+ 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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { StartStreamTranscriptionRequest, StartStreamTranscriptionResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, TranscribeStreamingClientResolvedConfig } from "../TranscribeStreamingClient";
5
- export interface StartStreamTranscriptionCommandInput extends StartStreamTranscriptionRequest {
6
- }
7
- export interface StartStreamTranscriptionCommandOutput extends StartStreamTranscriptionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartStreamTranscriptionCommand extends $Command<StartStreamTranscriptionCommandInput, StartStreamTranscriptionCommandOutput, TranscribeStreamingClientResolvedConfig> {
11
- readonly input: StartStreamTranscriptionCommandInput;
12
- constructor(input: StartStreamTranscriptionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeStreamingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartStreamTranscriptionCommandInput, StartStreamTranscriptionCommandOutput>;
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
+ 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 { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class TranscribeStreamingServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
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";