AWSTranscribeStreamingResult

Objective-C

@interface AWSTranscribeStreamingResult

Swift

class AWSTranscribeStreamingResult

The result of transcribing a portion of the input audio stream.

  • A list of possible transcriptions for the audio. Each alternative typically contains one item that contains the result of the transcription.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSTranscribeStreamingAlternative *> *_Nullable alternatives;

    Swift

    var alternatives: [AWSTranscribeStreamingAlternative]? { get set }
  • The offset in milliseconds from the beginning of the audio stream to the end of the result.

    Declaration

    Objective-C

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

    Swift

    var endTime: NSNumber? { get set }
  • true to indicate that Amazon Transcribe has additional transcription data to send, false to indicate that this is the last transcription result for the audio stream.

    Declaration

    Objective-C

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

    Swift

    var isPartial: NSNumber? { get set }
  • A unique identifier for the result.

    Declaration

    Objective-C

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

    Swift

    var resultId: String? { get set }
  • The offset in milliseconds from the beginning of the audio stream to the beginning of the result.

    Declaration

    Objective-C

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

    Swift

    var startTime: NSNumber? { get set }