import * as __aws_sdk_types from "@aws-sdk/types"; /** * SynthesizeSpeechOutput shape */ export interface SynthesizeSpeechOutput extends __aws_sdk_types.MetadataBearer { /** *

Stream containing the synthesized speech.

*/ AudioStream?: StreamType; /** *

Specifies the type audio stream. This should reflect the OutputFormat parameter in your request.

*/ ContentType?: string; /** *

Number of characters synthesized.

*/ RequestCharacters?: number; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }