Description Usage Arguments Value Request syntax Examples
View source: R/polly_operations.R
Returns the content of the specified pronunciation lexicon stored in an AWS Region. For more information, see Managing Lexicons.
1 | polly_get_lexicon(Name)
|
Name |
[required] Name of the lexicon. |
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | list(
Lexicon = list(
Content = "string",
Name = "string"
),
LexiconAttributes = list(
Alphabet = "string",
LanguageCode = "arb"|"cmn-CN"|"cy-GB"|"da-DK"|"de-DE"|"en-AU"|"en-GB"|"en-GB-WLS"|"en-IN"|"en-US"|"es-ES"|"es-MX"|"es-US"|"fr-CA"|"fr-FR"|"is-IS"|"it-IT"|"ja-JP"|"hi-IN"|"ko-KR"|"nb-NO"|"nl-NL"|"pl-PL"|"pt-BR"|"pt-PT"|"ro-RO"|"ru-RU"|"sv-SE"|"tr-TR",
LastModified = as.POSIXct(
"2015-01-01"
),
LexiconArn = "string",
LexemesCount = 123,
Size = 123
)
)
|
1 2 3 | svc$get_lexicon(
Name = "string"
)
|
1 2 3 4 5 6 7 8 | ## Not run:
# Returns the content of the specified pronunciation lexicon stored in an
# AWS Region.
svc$get_lexicon(
Name = ""
)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.