AWSConnectDefaultVocabulary

Objective-C

@interface AWSConnectDefaultVocabulary

Swift

class AWSConnectDefaultVocabulary

Contains information about a default vocabulary.

Required parameters: [InstanceId, LanguageCode, VocabularyId, VocabularyName]

  • The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

    Declaration

    Objective-C

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

    Swift

    var instanceId: 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 identifier of the custom vocabulary.

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

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

    Swift

    var vocabularyName: String? { get set }