AWSConnectVocabulary

Objective-C

@interface AWSConnectVocabulary

Swift

class AWSConnectVocabulary

Contains information about a custom vocabulary.

Required parameters: [Name, Id, Arn, LanguageCode, State, LastModifiedTime]

  • arn

    The Amazon Resource Name (ARN) of the custom vocabulary.

    Declaration

    Objective-C

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

    Swift

    var arn: String? { get set }
  • The content of the custom vocabulary in plain-text format with a table of values. Each row in the table represents a word or a phrase, described with Phrase, IPA, SoundsLike, and DisplayAs fields. Separate the fields with TAB characters. For more information, see Create a custom vocabulary using a table.

    Declaration

    Objective-C

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

    Swift

    var content: String? { get set }
  • The reason why the custom vocabulary was not created.

    Declaration

    Objective-C

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

    Swift

    var failureReason: String? { get set }
  • The identifier of the custom vocabulary.

    Declaration

    Objective-C

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

    Swift

    var identifier: String? { get set }
  • The language code of the vocabulary entries. For a list of languages and their corresponding language codes, see What is Amazon Transcribe?

    Declaration

    Objective-C

    @property (nonatomic) AWSConnectVocabularyLanguageCode languageCode;

    Swift

    var languageCode: AWSConnectVocabularyLanguageCode { get set }
  • The timestamp when the custom vocabulary was last modified.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable lastModifiedTime;

    Swift

    var lastModifiedTime: Date? { get set }
  • A unique name of the custom vocabulary.

    Declaration

    Objective-C

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

    Swift

    var name: String? { get set }
  • The current state of the custom vocabulary.

    Declaration

    Objective-C

    @property (nonatomic) AWSConnectVocabularyState state;

    Swift

    var state: AWSConnectVocabularyState { get set }
  • The tags used to organize, track, or control access for this resource. For example, { “Tags”: {“key1”:“value1”, “key2”:“value2”} }.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable tags;

    Swift

    var tags: [String : String]? { get set }