AWSTranscribeStreamingStartStreamTranscriptionResponse

Objective-C

@interface AWSTranscribeStreamingStartStreamTranscriptionResponse

Swift

class AWSTranscribeStreamingStartStreamTranscriptionResponse
  • The language code for the input audio stream.

    Declaration

    Objective-C

    @property (nonatomic) AWSTranscribeStreamingLanguageCode languageCode;

    Swift

    var languageCode: AWSTranscribeStreamingLanguageCode { get set }
  • The encoding used for the input audio stream.

    Declaration

    Objective-C

    @property (nonatomic) AWSTranscribeStreamingMediaEncoding mediaEncoding;

    Swift

    var mediaEncoding: AWSTranscribeStreamingMediaEncoding { get set }
  • The sample rate for the input audio stream. Use 8000 Hz for low quality audio and 16000 Hz for high quality audio.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable mediaSampleRateHertz;

    Swift

    var mediaSampleRateHertz: NSNumber? { get set }
  • An identifier for the streaming transcription.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable requestId;

    Swift

    var requestId: String? { get set }
  • An identifier for a specific transcription session.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable sessionId;

    Swift

    var sessionId: String? { get set }
  • Represents the stream of transcription events from Amazon Transcribe to your application.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSTranscribeStreamingTranscriptResultStream *_Nullable transcriptResultStream;

    Swift

    var transcriptResultStream: AWSTranscribeStreamingTranscriptResultStream? { get set }
  • The name of the vocabulary used when processing the job.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable vocabularyName;

    Swift

    var vocabularyName: String? { get set }