@aws-sdk/client-transcribe-streaming 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.
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-transcribe-streaming
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-transcribe-streaming
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-transcribe-streaming
@@ -1,15 +1,38 @@
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
+ export declare class TranscribeStreaming extends TranscribeStreamingClient {
12
+ startMedicalStreamTranscription(
13
+ args: StartMedicalStreamTranscriptionCommandInput,
14
+ options?: __HttpHandlerOptions
15
+ ): Promise<StartMedicalStreamTranscriptionCommandOutput>;
16
+ startMedicalStreamTranscription(
17
+ args: StartMedicalStreamTranscriptionCommandInput,
18
+ cb: (err: any, data?: StartMedicalStreamTranscriptionCommandOutput) => void
19
+ ): void;
20
+ startMedicalStreamTranscription(
21
+ args: StartMedicalStreamTranscriptionCommandInput,
22
+ options: __HttpHandlerOptions,
23
+ cb: (err: any, data?: StartMedicalStreamTranscriptionCommandOutput) => void
24
+ ): void;
25
+ startStreamTranscription(
26
+ args: StartStreamTranscriptionCommandInput,
27
+ options?: __HttpHandlerOptions
28
+ ): Promise<StartStreamTranscriptionCommandOutput>;
29
+ startStreamTranscription(
30
+ args: StartStreamTranscriptionCommandInput,
31
+ cb: (err: any, data?: StartStreamTranscriptionCommandOutput) => void
32
+ ): void;
33
+ startStreamTranscription(
34
+ args: StartStreamTranscriptionCommandInput,
35
+ options: __HttpHandlerOptions,
36
+ cb: (err: any, data?: StartStreamTranscriptionCommandOutput) => void
37
+ ): void;
38
+ }
@@ -1,82 +1,139 @@
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
+ sha256?: __HashConstructor;
77
+ urlParser?: __UrlParser;
78
+ bodyLengthChecker?: __BodyLengthCalculator;
79
+ streamCollector?: __StreamCollector;
80
+ base64Decoder?: __Decoder;
81
+ base64Encoder?: __Encoder;
82
+ utf8Decoder?: __Decoder;
83
+ utf8Encoder?: __Encoder;
84
+ runtime?: string;
85
+ disableHostPrefix?: boolean;
86
+ maxAttempts?: number | __Provider<number>;
87
+ retryMode?: string | __Provider<string>;
88
+ logger?: __Logger;
89
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
90
+ useFipsEndpoint?: boolean | __Provider<boolean>;
91
+ serviceId?: string;
92
+ region?: string | __Provider<string>;
93
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
94
+ regionInfoProvider?: RegionInfoProvider;
95
+ eventStreamPayloadHandlerProvider?: __EventStreamPayloadHandlerProvider;
96
+ defaultUserAgentProvider?: Provider<__UserAgent>;
97
+ eventStreamSerdeProvider?: __EventStreamSerdeProvider;
98
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
99
+ }
100
+ declare type TranscribeStreamingClientConfigType = Partial<
101
+ __SmithyConfiguration<__HttpHandlerOptions>
102
+ > &
103
+ ClientDefaults &
104
+ RegionInputConfig &
105
+ EndpointsInputConfig &
106
+ RetryInputConfig &
107
+ HostHeaderInputConfig &
108
+ AwsAuthInputConfig &
109
+ EventStreamInputConfig &
110
+ WebSocketInputConfig &
111
+ UserAgentInputConfig &
112
+ EventStreamSerdeInputConfig;
113
+ export interface TranscribeStreamingClientConfig
114
+ extends TranscribeStreamingClientConfigType {}
115
+ declare type TranscribeStreamingClientResolvedConfigType =
116
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
117
+ Required<ClientDefaults> &
118
+ RegionResolvedConfig &
119
+ EndpointsResolvedConfig &
120
+ RetryResolvedConfig &
121
+ HostHeaderResolvedConfig &
122
+ AwsAuthResolvedConfig &
123
+ EventStreamResolvedConfig &
124
+ WebSocketResolvedConfig &
125
+ UserAgentResolvedConfig &
126
+ EventStreamSerdeResolvedConfig;
127
+ export interface TranscribeStreamingClientResolvedConfig
128
+ extends TranscribeStreamingClientResolvedConfigType {}
129
+ export declare class TranscribeStreamingClient extends __Client<
130
+ __HttpHandlerOptions,
131
+ ServiceInputTypes,
132
+ ServiceOutputTypes,
133
+ TranscribeStreamingClientResolvedConfig
134
+ > {
135
+ readonly config: TranscribeStreamingClientResolvedConfig;
136
+ constructor(configuration: TranscribeStreamingClientConfig);
137
+ destroy(): void;
138
+ }
139
+ 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 { 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
+ export declare class StartMedicalStreamTranscriptionCommand extends $Command<
23
+ StartMedicalStreamTranscriptionCommandInput,
24
+ StartMedicalStreamTranscriptionCommandOutput,
25
+ TranscribeStreamingClientResolvedConfig
26
+ > {
27
+ readonly input: StartMedicalStreamTranscriptionCommandInput;
28
+ constructor(input: StartMedicalStreamTranscriptionCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: TranscribeStreamingClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ StartMedicalStreamTranscriptionCommandInput,
35
+ StartMedicalStreamTranscriptionCommandOutput
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 { 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
+ export declare class StartStreamTranscriptionCommand extends $Command<
23
+ StartStreamTranscriptionCommandInput,
24
+ StartStreamTranscriptionCommandOutput,
25
+ TranscribeStreamingClientResolvedConfig
26
+ > {
27
+ readonly input: StartStreamTranscriptionCommandInput;
28
+ constructor(input: StartStreamTranscriptionCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: TranscribeStreamingClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ StartStreamTranscriptionCommandInput,
35
+ StartStreamTranscriptionCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -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,7 @@
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
+ export declare class TranscribeStreamingServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";