polly-2016-06-10.examples.json
4.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"version": "1.0",
"examples": {
"DeleteLexicon": [
{
"input": {
"Name": "example"
},
"output": {
},
"comments": {
"input": {
},
"output": {
}
},
"description": "Deletes a specified pronunciation lexicon stored in an AWS Region.",
"id": "to-delete-a-lexicon-1481922498332",
"title": "To delete a lexicon"
}
],
"DescribeVoices": [
{
"input": {
"LanguageCode": "en-GB"
},
"output": {
"Voices": [
{
"Gender": "Female",
"Id": "Emma",
"LanguageCode": "en-GB",
"LanguageName": "British English",
"Name": "Emma"
},
{
"Gender": "Male",
"Id": "Brian",
"LanguageCode": "en-GB",
"LanguageName": "British English",
"Name": "Brian"
},
{
"Gender": "Female",
"Id": "Amy",
"LanguageCode": "en-GB",
"LanguageName": "British English",
"Name": "Amy"
}
]
},
"comments": {
"input": {
},
"output": {
}
},
"description": "Returns the list of voices that are available for use when requesting speech synthesis. Displayed languages are those within the specified language code. If no language code is specified, voices for all available languages are displayed.",
"id": "to-describe-available-voices-1482180557753",
"title": "To describe available voices"
}
],
"GetLexicon": [
{
"input": {
"Name": ""
},
"output": {
"Lexicon": {
"Content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<lexicon version=\"1.0\" \r\n xmlns=\"http://www.w3.org/2005/01/pronunciation-lexicon\"\r\n xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" \r\n xsi:schemaLocation=\"http://www.w3.org/2005/01/pronunciation-lexicon \r\n http://www.w3.org/TR/2007/CR-pronunciation-lexicon-20071212/pls.xsd\"\r\n alphabet=\"ipa\" \r\n xml:lang=\"en-US\">\r\n <lexeme>\r\n <grapheme>W3C</grapheme>\r\n <alias>World Wide Web Consortium</alias>\r\n </lexeme>\r\n</lexicon>",
"Name": "example"
},
"LexiconAttributes": {
"Alphabet": "ipa",
"LanguageCode": "en-US",
"LastModified": 1478542980.117,
"LexemesCount": 1,
"LexiconArn": "arn:aws:polly:us-east-1:123456789012:lexicon/example",
"Size": 503
}
},
"comments": {
"input": {
},
"output": {
}
},
"description": "Returns the content of the specified pronunciation lexicon stored in an AWS Region.",
"id": "to-retrieve-a-lexicon-1481912870836",
"title": "To retrieve a lexicon"
}
],
"ListLexicons": [
{
"input": {
},
"output": {
"Lexicons": [
{
"Attributes": {
"Alphabet": "ipa",
"LanguageCode": "en-US",
"LastModified": 1478542980.117,
"LexemesCount": 1,
"LexiconArn": "arn:aws:polly:us-east-1:123456789012:lexicon/example",
"Size": 503
},
"Name": "example"
}
]
},
"comments": {
"input": {
},
"output": {
}
},
"description": "Returns a list of pronunciation lexicons stored in an AWS Region.",
"id": "to-list-all-lexicons-in-a-region-1481842106487",
"title": "To list all lexicons in a region"
}
],
"PutLexicon": [
{
"input": {
"Content": "file://example.pls",
"Name": "W3C"
},
"output": {
},
"comments": {
"input": {
},
"output": {
}
},
"description": "Stores a pronunciation lexicon in an AWS Region.",
"id": "to-save-a-lexicon-1482272584088",
"title": "To save a lexicon"
}
],
"SynthesizeSpeech": [
{
"input": {
"LexiconNames": [
"example"
],
"OutputFormat": "mp3",
"SampleRate": "8000",
"Text": "All Gaul is divided into three parts",
"TextType": "text",
"VoiceId": "Joanna"
},
"output": {
"AudioStream": "TEXT",
"ContentType": "audio/mpeg",
"RequestCharacters": 37
},
"comments": {
"input": {
},
"output": {
}
},
"description": "Synthesizes plain text or SSML into a file of human-like speech.",
"id": "to-synthesize-speech-1482186064046",
"title": "To synthesize speech"
}
]
}
}