Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(TranscribeStreaming): Adding support for missing languages. #5483

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 47 additions & 2 deletions AWSTranscribeStreaming/AWSTranscribeStreamingModel.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright 2010-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
// Copyright 2010-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License").
// You may not use this file except in compliance with the License.
Expand Down Expand Up @@ -50,8 +50,48 @@ typedef NS_ENUM(NSInteger, AWSTranscribeStreamingLanguageCode) {
AWSTranscribeStreamingLanguageCodeJaJP,
AWSTranscribeStreamingLanguageCodeKoKR,
AWSTranscribeStreamingLanguageCodeZhCN,
AWSTranscribeStreamingLanguageCodeHiIN,
AWSTranscribeStreamingLanguageCodeThTH,
AWSTranscribeStreamingLanguageCodeEsES,
AWSTranscribeStreamingLanguageCodeArSA,
AWSTranscribeStreamingLanguageCodePtPT,
AWSTranscribeStreamingLanguageCodeCaES,
AWSTranscribeStreamingLanguageCodeArAE,
AWSTranscribeStreamingLanguageCodeHiIN,
AWSTranscribeStreamingLanguageCodeZhHK,
AWSTranscribeStreamingLanguageCodeNlNL,
AWSTranscribeStreamingLanguageCodeNoNO,
AWSTranscribeStreamingLanguageCodeSvSE,
AWSTranscribeStreamingLanguageCodePlPL,
AWSTranscribeStreamingLanguageCodeFiFI,
AWSTranscribeStreamingLanguageCodeZhTW,
AWSTranscribeStreamingLanguageCodeEnIN,
AWSTranscribeStreamingLanguageCodeEnIE,
AWSTranscribeStreamingLanguageCodeEnNZ,
AWSTranscribeStreamingLanguageCodeEnAB,
AWSTranscribeStreamingLanguageCodeEnZA,
AWSTranscribeStreamingLanguageCodeEnWL,
AWSTranscribeStreamingLanguageCodeDeCH,
AWSTranscribeStreamingLanguageCodeAfZA,
AWSTranscribeStreamingLanguageCodeEuES,
AWSTranscribeStreamingLanguageCodeHrHR,
AWSTranscribeStreamingLanguageCodeCsCZ,
AWSTranscribeStreamingLanguageCodeDaDK,
AWSTranscribeStreamingLanguageCodeFaIR,
AWSTranscribeStreamingLanguageCodeGlES,
AWSTranscribeStreamingLanguageCodeElGR,
AWSTranscribeStreamingLanguageCodeHeIL,
AWSTranscribeStreamingLanguageCodeIdID,
AWSTranscribeStreamingLanguageCodeLvLV,
AWSTranscribeStreamingLanguageCodeMsMY,
AWSTranscribeStreamingLanguageCodeRoRO,
AWSTranscribeStreamingLanguageCodeRuRU,
AWSTranscribeStreamingLanguageCodeSrRS,
AWSTranscribeStreamingLanguageCodeSkSK,
AWSTranscribeStreamingLanguageCodeSoSO,
AWSTranscribeStreamingLanguageCodeTlPH,
AWSTranscribeStreamingLanguageCodeUkUA,
AWSTranscribeStreamingLanguageCodeViVN,
AWSTranscribeStreamingLanguageCodeZuZA,
};

typedef NS_ENUM(NSInteger, AWSTranscribeStreamingMediaEncoding) {
Expand Down Expand Up @@ -308,6 +348,11 @@ typedef NS_ENUM(NSInteger, AWSTranscribeStreamingMediaEncoding) {
*/
@property (nonatomic, strong) NSError* _Nullable limitExceededException;

/**
<p>The service is currently unavailable. Try your request later.</p>
*/
@property (nonatomic, strong) NSError* _Nullable serviceUnavailableException;

/**
<p>A portion of the transcription of the audio stream. Events are sent periodically from Amazon Transcribe to your application. The event can be a partial transcription of a section of the audio stream, or it can be the entire transcription of that portion of the audio stream. </p>
*/
Expand Down
Loading
Loading