AWSPollyLexiconAttributes
Objective-C
@interface AWSPollyLexiconAttributes
Swift
class AWSPollyLexiconAttributes
Contains metadata describing the lexicon such as the number of lexemes, language code, and so on. For more information, see Managing Lexicons.
-
Phonetic alphabet used in the lexicon. Valid values are
ipa
andx-sampa
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable alphabet;
Swift
var alphabet: String? { get set }
-
Language code that the lexicon applies to. A lexicon with a language code such as “en” would be applied to all English languages (en-GB, en-US, en-AUS, en-WLS, and so on.
Declaration
Objective-C
@property (nonatomic) AWSPollyLanguageCode languageCode;
Swift
var languageCode: AWSPollyLanguageCode { get set }
-
Date lexicon was last modified (a timestamp value).
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable lastModified;
Swift
var lastModified: Date? { get set }
-
Number of lexemes in the lexicon.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable lexemesCount;
Swift
var lexemesCount: NSNumber? { get set }
-
Amazon Resource Name (ARN) of the lexicon.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable lexiconArn;
Swift
var lexiconArn: String? { get set }
-
Total size of the lexicon, in characters.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable size;
Swift
var size: NSNumber? { get set }