aws-sdk-polly 1.80.0 → 1.81.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-polly/client.rb +1 -1
- data/lib/aws-sdk-polly/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-polly.rb +1 -1
- data/sig/client.rbs +196 -0
- data/sig/errors.rbs +79 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +285 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 32d89e069c7abf76792a4cccfc204b3b2aba5ed1643ab683bc3a10891ad23097
|
4
|
+
data.tar.gz: f871ec74826c85faad7e1c8f5277e89907fd30a8a8aa6decca36116927a05913
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17d23009f91def1836decec5900eb9fbb3233b29ec4c7ecf267b4b6e67671f4cba364a14ad4b4d7bb2d619b18a4cf1e0d28b335dc992846f8b201c505063267c
|
7
|
+
data.tar.gz: 5d7cc52dd2f1439041e619871b73d9d6a7f2261e1a96e8c5c7ef0b4ce9fd1d25a179ba5ae6012fe0022a78f9790a0004840736ae94acda9cb9bb42a789afbf17
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.81.0
|
data/lib/aws-sdk-polly/client.rb
CHANGED
@@ -1158,7 +1158,7 @@ module Aws::Polly
|
|
1158
1158
|
params: params,
|
1159
1159
|
config: config)
|
1160
1160
|
context[:gem_name] = 'aws-sdk-polly'
|
1161
|
-
context[:gem_version] = '1.
|
1161
|
+
context[:gem_version] = '1.81.0'
|
1162
1162
|
Seahorse::Client::Request.new(handlers, context)
|
1163
1163
|
end
|
1164
1164
|
|
@@ -14,6 +14,7 @@ module Aws::Polly
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::Polly::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/lib/aws-sdk-polly.rb
CHANGED
data/sig/client.rbs
ADDED
@@ -0,0 +1,196 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Polly
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Polly/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
interface _DeleteLexiconResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteLexiconOutput]
|
77
|
+
end
|
78
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Polly/Client.html#delete_lexicon-instance_method
|
79
|
+
def delete_lexicon: (
|
80
|
+
name: ::String
|
81
|
+
) -> _DeleteLexiconResponseSuccess
|
82
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLexiconResponseSuccess
|
83
|
+
|
84
|
+
interface _DescribeVoicesResponseSuccess
|
85
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeVoicesOutput]
|
86
|
+
def voices: () -> ::Array[Types::Voice]
|
87
|
+
def next_token: () -> ::String
|
88
|
+
end
|
89
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Polly/Client.html#describe_voices-instance_method
|
90
|
+
def describe_voices: (
|
91
|
+
?engine: ("standard" | "neural" | "long-form"),
|
92
|
+
?language_code: ("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" | "en-NZ" | "en-ZA" | "ca-ES" | "de-AT" | "yue-CN" | "ar-AE" | "fi-FI" | "en-IE" | "nl-BE" | "fr-BE"),
|
93
|
+
?include_additional_language_codes: bool,
|
94
|
+
?next_token: ::String
|
95
|
+
) -> _DescribeVoicesResponseSuccess
|
96
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVoicesResponseSuccess
|
97
|
+
|
98
|
+
interface _GetLexiconResponseSuccess
|
99
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetLexiconOutput]
|
100
|
+
def lexicon: () -> Types::Lexicon
|
101
|
+
def lexicon_attributes: () -> Types::LexiconAttributes
|
102
|
+
end
|
103
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Polly/Client.html#get_lexicon-instance_method
|
104
|
+
def get_lexicon: (
|
105
|
+
name: ::String
|
106
|
+
) -> _GetLexiconResponseSuccess
|
107
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLexiconResponseSuccess
|
108
|
+
|
109
|
+
interface _GetSpeechSynthesisTaskResponseSuccess
|
110
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetSpeechSynthesisTaskOutput]
|
111
|
+
def synthesis_task: () -> Types::SynthesisTask
|
112
|
+
end
|
113
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Polly/Client.html#get_speech_synthesis_task-instance_method
|
114
|
+
def get_speech_synthesis_task: (
|
115
|
+
task_id: ::String
|
116
|
+
) -> _GetSpeechSynthesisTaskResponseSuccess
|
117
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSpeechSynthesisTaskResponseSuccess
|
118
|
+
|
119
|
+
interface _ListLexiconsResponseSuccess
|
120
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListLexiconsOutput]
|
121
|
+
def lexicons: () -> ::Array[Types::LexiconDescription]
|
122
|
+
def next_token: () -> ::String
|
123
|
+
end
|
124
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Polly/Client.html#list_lexicons-instance_method
|
125
|
+
def list_lexicons: (
|
126
|
+
?next_token: ::String
|
127
|
+
) -> _ListLexiconsResponseSuccess
|
128
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLexiconsResponseSuccess
|
129
|
+
|
130
|
+
interface _ListSpeechSynthesisTasksResponseSuccess
|
131
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSpeechSynthesisTasksOutput]
|
132
|
+
def next_token: () -> ::String
|
133
|
+
def synthesis_tasks: () -> ::Array[Types::SynthesisTask]
|
134
|
+
end
|
135
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Polly/Client.html#list_speech_synthesis_tasks-instance_method
|
136
|
+
def list_speech_synthesis_tasks: (
|
137
|
+
?max_results: ::Integer,
|
138
|
+
?next_token: ::String,
|
139
|
+
?status: ("scheduled" | "inProgress" | "completed" | "failed")
|
140
|
+
) -> _ListSpeechSynthesisTasksResponseSuccess
|
141
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSpeechSynthesisTasksResponseSuccess
|
142
|
+
|
143
|
+
interface _PutLexiconResponseSuccess
|
144
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutLexiconOutput]
|
145
|
+
end
|
146
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Polly/Client.html#put_lexicon-instance_method
|
147
|
+
def put_lexicon: (
|
148
|
+
name: ::String,
|
149
|
+
content: ::String
|
150
|
+
) -> _PutLexiconResponseSuccess
|
151
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutLexiconResponseSuccess
|
152
|
+
|
153
|
+
interface _StartSpeechSynthesisTaskResponseSuccess
|
154
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartSpeechSynthesisTaskOutput]
|
155
|
+
def synthesis_task: () -> Types::SynthesisTask
|
156
|
+
end
|
157
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Polly/Client.html#start_speech_synthesis_task-instance_method
|
158
|
+
def start_speech_synthesis_task: (
|
159
|
+
?engine: ("standard" | "neural" | "long-form"),
|
160
|
+
?language_code: ("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" | "en-NZ" | "en-ZA" | "ca-ES" | "de-AT" | "yue-CN" | "ar-AE" | "fi-FI" | "en-IE" | "nl-BE" | "fr-BE"),
|
161
|
+
?lexicon_names: Array[::String],
|
162
|
+
output_format: ("json" | "mp3" | "ogg_vorbis" | "pcm"),
|
163
|
+
output_s3_bucket_name: ::String,
|
164
|
+
?output_s3_key_prefix: ::String,
|
165
|
+
?sample_rate: ::String,
|
166
|
+
?sns_topic_arn: ::String,
|
167
|
+
?speech_mark_types: Array[("sentence" | "ssml" | "viseme" | "word")],
|
168
|
+
text: ::String,
|
169
|
+
?text_type: ("ssml" | "text"),
|
170
|
+
voice_id: ("Aditi" | "Amy" | "Astrid" | "Bianca" | "Brian" | "Camila" | "Carla" | "Carmen" | "Celine" | "Chantal" | "Conchita" | "Cristiano" | "Dora" | "Emma" | "Enrique" | "Ewa" | "Filiz" | "Gabrielle" | "Geraint" | "Giorgio" | "Gwyneth" | "Hans" | "Ines" | "Ivy" | "Jacek" | "Jan" | "Joanna" | "Joey" | "Justin" | "Karl" | "Kendra" | "Kevin" | "Kimberly" | "Lea" | "Liv" | "Lotte" | "Lucia" | "Lupe" | "Mads" | "Maja" | "Marlene" | "Mathieu" | "Matthew" | "Maxim" | "Mia" | "Miguel" | "Mizuki" | "Naja" | "Nicole" | "Olivia" | "Penelope" | "Raveena" | "Ricardo" | "Ruben" | "Russell" | "Salli" | "Seoyeon" | "Takumi" | "Tatyana" | "Vicki" | "Vitoria" | "Zeina" | "Zhiyu" | "Aria" | "Ayanda" | "Arlet" | "Hannah" | "Arthur" | "Daniel" | "Liam" | "Pedro" | "Kajal" | "Hiujin" | "Laura" | "Elin" | "Ida" | "Suvi" | "Ola" | "Hala" | "Andres" | "Sergio" | "Remi" | "Adriano" | "Thiago" | "Ruth" | "Stephen" | "Kazuha" | "Tomoko" | "Niamh" | "Sofie" | "Lisa" | "Isabelle" | "Zayd" | "Danielle" | "Gregory")
|
171
|
+
) -> _StartSpeechSynthesisTaskResponseSuccess
|
172
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartSpeechSynthesisTaskResponseSuccess
|
173
|
+
|
174
|
+
interface _SynthesizeSpeechResponseSuccess
|
175
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SynthesizeSpeechOutput]
|
176
|
+
def audio_stream: () -> ::IO
|
177
|
+
def content_type: () -> ::String
|
178
|
+
def request_characters: () -> ::Integer
|
179
|
+
end
|
180
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Polly/Client.html#synthesize_speech-instance_method
|
181
|
+
def synthesize_speech: (
|
182
|
+
?engine: ("standard" | "neural" | "long-form"),
|
183
|
+
?language_code: ("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" | "en-NZ" | "en-ZA" | "ca-ES" | "de-AT" | "yue-CN" | "ar-AE" | "fi-FI" | "en-IE" | "nl-BE" | "fr-BE"),
|
184
|
+
?lexicon_names: Array[::String],
|
185
|
+
output_format: ("json" | "mp3" | "ogg_vorbis" | "pcm"),
|
186
|
+
?sample_rate: ::String,
|
187
|
+
?speech_mark_types: Array[("sentence" | "ssml" | "viseme" | "word")],
|
188
|
+
text: ::String,
|
189
|
+
?text_type: ("ssml" | "text"),
|
190
|
+
voice_id: ("Aditi" | "Amy" | "Astrid" | "Bianca" | "Brian" | "Camila" | "Carla" | "Carmen" | "Celine" | "Chantal" | "Conchita" | "Cristiano" | "Dora" | "Emma" | "Enrique" | "Ewa" | "Filiz" | "Gabrielle" | "Geraint" | "Giorgio" | "Gwyneth" | "Hans" | "Ines" | "Ivy" | "Jacek" | "Jan" | "Joanna" | "Joey" | "Justin" | "Karl" | "Kendra" | "Kevin" | "Kimberly" | "Lea" | "Liv" | "Lotte" | "Lucia" | "Lupe" | "Mads" | "Maja" | "Marlene" | "Mathieu" | "Matthew" | "Maxim" | "Mia" | "Miguel" | "Mizuki" | "Naja" | "Nicole" | "Olivia" | "Penelope" | "Raveena" | "Ricardo" | "Ruben" | "Russell" | "Salli" | "Seoyeon" | "Takumi" | "Tatyana" | "Vicki" | "Vitoria" | "Zeina" | "Zhiyu" | "Aria" | "Ayanda" | "Arlet" | "Hannah" | "Arthur" | "Daniel" | "Liam" | "Pedro" | "Kajal" | "Hiujin" | "Laura" | "Elin" | "Ida" | "Suvi" | "Ola" | "Hala" | "Andres" | "Sergio" | "Remi" | "Adriano" | "Thiago" | "Ruth" | "Stephen" | "Kazuha" | "Tomoko" | "Niamh" | "Sofie" | "Lisa" | "Isabelle" | "Zayd" | "Danielle" | "Gregory")
|
191
|
+
) ?{ (*untyped) -> void } -> _SynthesizeSpeechResponseSuccess
|
192
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _SynthesizeSpeechResponseSuccess
|
193
|
+
end
|
194
|
+
end
|
195
|
+
end
|
196
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Polly
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class EngineNotSupportedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class InvalidLexiconException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class InvalidNextTokenException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class InvalidS3BucketException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class InvalidS3KeyException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class InvalidSampleRateException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
class InvalidSnsTopicArnException < ::Aws::Errors::ServiceError
|
33
|
+
def message: () -> ::String
|
34
|
+
end
|
35
|
+
class InvalidSsmlException < ::Aws::Errors::ServiceError
|
36
|
+
def message: () -> ::String
|
37
|
+
end
|
38
|
+
class InvalidTaskIdException < ::Aws::Errors::ServiceError
|
39
|
+
def message: () -> ::String
|
40
|
+
end
|
41
|
+
class LanguageNotSupportedException < ::Aws::Errors::ServiceError
|
42
|
+
def message: () -> ::String
|
43
|
+
end
|
44
|
+
class LexiconNotFoundException < ::Aws::Errors::ServiceError
|
45
|
+
def message: () -> ::String
|
46
|
+
end
|
47
|
+
class LexiconSizeExceededException < ::Aws::Errors::ServiceError
|
48
|
+
def message: () -> ::String
|
49
|
+
end
|
50
|
+
class MarksNotSupportedForFormatException < ::Aws::Errors::ServiceError
|
51
|
+
def message: () -> ::String
|
52
|
+
end
|
53
|
+
class MaxLexemeLengthExceededException < ::Aws::Errors::ServiceError
|
54
|
+
def message: () -> ::String
|
55
|
+
end
|
56
|
+
class MaxLexiconsNumberExceededException < ::Aws::Errors::ServiceError
|
57
|
+
def message: () -> ::String
|
58
|
+
end
|
59
|
+
class ServiceFailureException < ::Aws::Errors::ServiceError
|
60
|
+
def message: () -> ::String
|
61
|
+
end
|
62
|
+
class SsmlMarksNotSupportedForTextTypeException < ::Aws::Errors::ServiceError
|
63
|
+
def message: () -> ::String
|
64
|
+
end
|
65
|
+
class SynthesisTaskNotFoundException < ::Aws::Errors::ServiceError
|
66
|
+
def message: () -> ::String
|
67
|
+
end
|
68
|
+
class TextLengthExceededException < ::Aws::Errors::ServiceError
|
69
|
+
def message: () -> ::String
|
70
|
+
end
|
71
|
+
class UnsupportedPlsAlphabetException < ::Aws::Errors::ServiceError
|
72
|
+
def message: () -> ::String
|
73
|
+
end
|
74
|
+
class UnsupportedPlsLanguageException < ::Aws::Errors::ServiceError
|
75
|
+
def message: () -> ::String
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Polly
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Polly/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Polly/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> void
|
72
|
+
| (?Hash[Symbol, untyped]) -> void
|
73
|
+
|
74
|
+
def client: () -> Client
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,285 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::Polly
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class DeleteLexiconInput
|
12
|
+
attr_accessor name: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class DeleteLexiconOutput < Aws::EmptyStructure
|
17
|
+
end
|
18
|
+
|
19
|
+
class DescribeVoicesInput
|
20
|
+
attr_accessor engine: ("standard" | "neural" | "long-form")
|
21
|
+
attr_accessor language_code: ("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" | "en-NZ" | "en-ZA" | "ca-ES" | "de-AT" | "yue-CN" | "ar-AE" | "fi-FI" | "en-IE" | "nl-BE" | "fr-BE")
|
22
|
+
attr_accessor include_additional_language_codes: bool
|
23
|
+
attr_accessor next_token: ::String
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
27
|
+
class DescribeVoicesOutput
|
28
|
+
attr_accessor voices: ::Array[Types::Voice]
|
29
|
+
attr_accessor next_token: ::String
|
30
|
+
SENSITIVE: []
|
31
|
+
end
|
32
|
+
|
33
|
+
class EngineNotSupportedException
|
34
|
+
attr_accessor message: ::String
|
35
|
+
SENSITIVE: []
|
36
|
+
end
|
37
|
+
|
38
|
+
class GetLexiconInput
|
39
|
+
attr_accessor name: ::String
|
40
|
+
SENSITIVE: []
|
41
|
+
end
|
42
|
+
|
43
|
+
class GetLexiconOutput
|
44
|
+
attr_accessor lexicon: Types::Lexicon
|
45
|
+
attr_accessor lexicon_attributes: Types::LexiconAttributes
|
46
|
+
SENSITIVE: []
|
47
|
+
end
|
48
|
+
|
49
|
+
class GetSpeechSynthesisTaskInput
|
50
|
+
attr_accessor task_id: ::String
|
51
|
+
SENSITIVE: []
|
52
|
+
end
|
53
|
+
|
54
|
+
class GetSpeechSynthesisTaskOutput
|
55
|
+
attr_accessor synthesis_task: Types::SynthesisTask
|
56
|
+
SENSITIVE: []
|
57
|
+
end
|
58
|
+
|
59
|
+
class InvalidLexiconException
|
60
|
+
attr_accessor message: ::String
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class InvalidNextTokenException
|
65
|
+
attr_accessor message: ::String
|
66
|
+
SENSITIVE: []
|
67
|
+
end
|
68
|
+
|
69
|
+
class InvalidS3BucketException
|
70
|
+
attr_accessor message: ::String
|
71
|
+
SENSITIVE: []
|
72
|
+
end
|
73
|
+
|
74
|
+
class InvalidS3KeyException
|
75
|
+
attr_accessor message: ::String
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class InvalidSampleRateException
|
80
|
+
attr_accessor message: ::String
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class InvalidSnsTopicArnException
|
85
|
+
attr_accessor message: ::String
|
86
|
+
SENSITIVE: []
|
87
|
+
end
|
88
|
+
|
89
|
+
class InvalidSsmlException
|
90
|
+
attr_accessor message: ::String
|
91
|
+
SENSITIVE: []
|
92
|
+
end
|
93
|
+
|
94
|
+
class InvalidTaskIdException
|
95
|
+
attr_accessor message: ::String
|
96
|
+
SENSITIVE: []
|
97
|
+
end
|
98
|
+
|
99
|
+
class LanguageNotSupportedException
|
100
|
+
attr_accessor message: ::String
|
101
|
+
SENSITIVE: []
|
102
|
+
end
|
103
|
+
|
104
|
+
class Lexicon
|
105
|
+
attr_accessor content: ::String
|
106
|
+
attr_accessor name: ::String
|
107
|
+
SENSITIVE: [:content]
|
108
|
+
end
|
109
|
+
|
110
|
+
class LexiconAttributes
|
111
|
+
attr_accessor alphabet: ::String
|
112
|
+
attr_accessor language_code: ("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" | "en-NZ" | "en-ZA" | "ca-ES" | "de-AT" | "yue-CN" | "ar-AE" | "fi-FI" | "en-IE" | "nl-BE" | "fr-BE")
|
113
|
+
attr_accessor last_modified: ::Time
|
114
|
+
attr_accessor lexicon_arn: ::String
|
115
|
+
attr_accessor lexemes_count: ::Integer
|
116
|
+
attr_accessor size: ::Integer
|
117
|
+
SENSITIVE: []
|
118
|
+
end
|
119
|
+
|
120
|
+
class LexiconDescription
|
121
|
+
attr_accessor name: ::String
|
122
|
+
attr_accessor attributes: Types::LexiconAttributes
|
123
|
+
SENSITIVE: []
|
124
|
+
end
|
125
|
+
|
126
|
+
class LexiconNotFoundException
|
127
|
+
attr_accessor message: ::String
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
131
|
+
class LexiconSizeExceededException
|
132
|
+
attr_accessor message: ::String
|
133
|
+
SENSITIVE: []
|
134
|
+
end
|
135
|
+
|
136
|
+
class ListLexiconsInput
|
137
|
+
attr_accessor next_token: ::String
|
138
|
+
SENSITIVE: []
|
139
|
+
end
|
140
|
+
|
141
|
+
class ListLexiconsOutput
|
142
|
+
attr_accessor lexicons: ::Array[Types::LexiconDescription]
|
143
|
+
attr_accessor next_token: ::String
|
144
|
+
SENSITIVE: []
|
145
|
+
end
|
146
|
+
|
147
|
+
class ListSpeechSynthesisTasksInput
|
148
|
+
attr_accessor max_results: ::Integer
|
149
|
+
attr_accessor next_token: ::String
|
150
|
+
attr_accessor status: ("scheduled" | "inProgress" | "completed" | "failed")
|
151
|
+
SENSITIVE: []
|
152
|
+
end
|
153
|
+
|
154
|
+
class ListSpeechSynthesisTasksOutput
|
155
|
+
attr_accessor next_token: ::String
|
156
|
+
attr_accessor synthesis_tasks: ::Array[Types::SynthesisTask]
|
157
|
+
SENSITIVE: []
|
158
|
+
end
|
159
|
+
|
160
|
+
class MarksNotSupportedForFormatException
|
161
|
+
attr_accessor message: ::String
|
162
|
+
SENSITIVE: []
|
163
|
+
end
|
164
|
+
|
165
|
+
class MaxLexemeLengthExceededException
|
166
|
+
attr_accessor message: ::String
|
167
|
+
SENSITIVE: []
|
168
|
+
end
|
169
|
+
|
170
|
+
class MaxLexiconsNumberExceededException
|
171
|
+
attr_accessor message: ::String
|
172
|
+
SENSITIVE: []
|
173
|
+
end
|
174
|
+
|
175
|
+
class PutLexiconInput
|
176
|
+
attr_accessor name: ::String
|
177
|
+
attr_accessor content: ::String
|
178
|
+
SENSITIVE: [:content]
|
179
|
+
end
|
180
|
+
|
181
|
+
class PutLexiconOutput < Aws::EmptyStructure
|
182
|
+
end
|
183
|
+
|
184
|
+
class ServiceFailureException
|
185
|
+
attr_accessor message: ::String
|
186
|
+
SENSITIVE: []
|
187
|
+
end
|
188
|
+
|
189
|
+
class SsmlMarksNotSupportedForTextTypeException
|
190
|
+
attr_accessor message: ::String
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
194
|
+
class StartSpeechSynthesisTaskInput
|
195
|
+
attr_accessor engine: ("standard" | "neural" | "long-form")
|
196
|
+
attr_accessor language_code: ("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" | "en-NZ" | "en-ZA" | "ca-ES" | "de-AT" | "yue-CN" | "ar-AE" | "fi-FI" | "en-IE" | "nl-BE" | "fr-BE")
|
197
|
+
attr_accessor lexicon_names: ::Array[::String]
|
198
|
+
attr_accessor output_format: ("json" | "mp3" | "ogg_vorbis" | "pcm")
|
199
|
+
attr_accessor output_s3_bucket_name: ::String
|
200
|
+
attr_accessor output_s3_key_prefix: ::String
|
201
|
+
attr_accessor sample_rate: ::String
|
202
|
+
attr_accessor sns_topic_arn: ::String
|
203
|
+
attr_accessor speech_mark_types: ::Array[("sentence" | "ssml" | "viseme" | "word")]
|
204
|
+
attr_accessor text: ::String
|
205
|
+
attr_accessor text_type: ("ssml" | "text")
|
206
|
+
attr_accessor voice_id: ("Aditi" | "Amy" | "Astrid" | "Bianca" | "Brian" | "Camila" | "Carla" | "Carmen" | "Celine" | "Chantal" | "Conchita" | "Cristiano" | "Dora" | "Emma" | "Enrique" | "Ewa" | "Filiz" | "Gabrielle" | "Geraint" | "Giorgio" | "Gwyneth" | "Hans" | "Ines" | "Ivy" | "Jacek" | "Jan" | "Joanna" | "Joey" | "Justin" | "Karl" | "Kendra" | "Kevin" | "Kimberly" | "Lea" | "Liv" | "Lotte" | "Lucia" | "Lupe" | "Mads" | "Maja" | "Marlene" | "Mathieu" | "Matthew" | "Maxim" | "Mia" | "Miguel" | "Mizuki" | "Naja" | "Nicole" | "Olivia" | "Penelope" | "Raveena" | "Ricardo" | "Ruben" | "Russell" | "Salli" | "Seoyeon" | "Takumi" | "Tatyana" | "Vicki" | "Vitoria" | "Zeina" | "Zhiyu" | "Aria" | "Ayanda" | "Arlet" | "Hannah" | "Arthur" | "Daniel" | "Liam" | "Pedro" | "Kajal" | "Hiujin" | "Laura" | "Elin" | "Ida" | "Suvi" | "Ola" | "Hala" | "Andres" | "Sergio" | "Remi" | "Adriano" | "Thiago" | "Ruth" | "Stephen" | "Kazuha" | "Tomoko" | "Niamh" | "Sofie" | "Lisa" | "Isabelle" | "Zayd" | "Danielle" | "Gregory")
|
207
|
+
SENSITIVE: []
|
208
|
+
end
|
209
|
+
|
210
|
+
class StartSpeechSynthesisTaskOutput
|
211
|
+
attr_accessor synthesis_task: Types::SynthesisTask
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class SynthesisTask
|
216
|
+
attr_accessor engine: ("standard" | "neural" | "long-form")
|
217
|
+
attr_accessor task_id: ::String
|
218
|
+
attr_accessor task_status: ("scheduled" | "inProgress" | "completed" | "failed")
|
219
|
+
attr_accessor task_status_reason: ::String
|
220
|
+
attr_accessor output_uri: ::String
|
221
|
+
attr_accessor creation_time: ::Time
|
222
|
+
attr_accessor request_characters: ::Integer
|
223
|
+
attr_accessor sns_topic_arn: ::String
|
224
|
+
attr_accessor lexicon_names: ::Array[::String]
|
225
|
+
attr_accessor output_format: ("json" | "mp3" | "ogg_vorbis" | "pcm")
|
226
|
+
attr_accessor sample_rate: ::String
|
227
|
+
attr_accessor speech_mark_types: ::Array[("sentence" | "ssml" | "viseme" | "word")]
|
228
|
+
attr_accessor text_type: ("ssml" | "text")
|
229
|
+
attr_accessor voice_id: ("Aditi" | "Amy" | "Astrid" | "Bianca" | "Brian" | "Camila" | "Carla" | "Carmen" | "Celine" | "Chantal" | "Conchita" | "Cristiano" | "Dora" | "Emma" | "Enrique" | "Ewa" | "Filiz" | "Gabrielle" | "Geraint" | "Giorgio" | "Gwyneth" | "Hans" | "Ines" | "Ivy" | "Jacek" | "Jan" | "Joanna" | "Joey" | "Justin" | "Karl" | "Kendra" | "Kevin" | "Kimberly" | "Lea" | "Liv" | "Lotte" | "Lucia" | "Lupe" | "Mads" | "Maja" | "Marlene" | "Mathieu" | "Matthew" | "Maxim" | "Mia" | "Miguel" | "Mizuki" | "Naja" | "Nicole" | "Olivia" | "Penelope" | "Raveena" | "Ricardo" | "Ruben" | "Russell" | "Salli" | "Seoyeon" | "Takumi" | "Tatyana" | "Vicki" | "Vitoria" | "Zeina" | "Zhiyu" | "Aria" | "Ayanda" | "Arlet" | "Hannah" | "Arthur" | "Daniel" | "Liam" | "Pedro" | "Kajal" | "Hiujin" | "Laura" | "Elin" | "Ida" | "Suvi" | "Ola" | "Hala" | "Andres" | "Sergio" | "Remi" | "Adriano" | "Thiago" | "Ruth" | "Stephen" | "Kazuha" | "Tomoko" | "Niamh" | "Sofie" | "Lisa" | "Isabelle" | "Zayd" | "Danielle" | "Gregory")
|
230
|
+
attr_accessor language_code: ("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" | "en-NZ" | "en-ZA" | "ca-ES" | "de-AT" | "yue-CN" | "ar-AE" | "fi-FI" | "en-IE" | "nl-BE" | "fr-BE")
|
231
|
+
SENSITIVE: []
|
232
|
+
end
|
233
|
+
|
234
|
+
class SynthesisTaskNotFoundException
|
235
|
+
attr_accessor message: ::String
|
236
|
+
SENSITIVE: []
|
237
|
+
end
|
238
|
+
|
239
|
+
class SynthesizeSpeechInput
|
240
|
+
attr_accessor engine: ("standard" | "neural" | "long-form")
|
241
|
+
attr_accessor language_code: ("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" | "en-NZ" | "en-ZA" | "ca-ES" | "de-AT" | "yue-CN" | "ar-AE" | "fi-FI" | "en-IE" | "nl-BE" | "fr-BE")
|
242
|
+
attr_accessor lexicon_names: ::Array[::String]
|
243
|
+
attr_accessor output_format: ("json" | "mp3" | "ogg_vorbis" | "pcm")
|
244
|
+
attr_accessor sample_rate: ::String
|
245
|
+
attr_accessor speech_mark_types: ::Array[("sentence" | "ssml" | "viseme" | "word")]
|
246
|
+
attr_accessor text: ::String
|
247
|
+
attr_accessor text_type: ("ssml" | "text")
|
248
|
+
attr_accessor voice_id: ("Aditi" | "Amy" | "Astrid" | "Bianca" | "Brian" | "Camila" | "Carla" | "Carmen" | "Celine" | "Chantal" | "Conchita" | "Cristiano" | "Dora" | "Emma" | "Enrique" | "Ewa" | "Filiz" | "Gabrielle" | "Geraint" | "Giorgio" | "Gwyneth" | "Hans" | "Ines" | "Ivy" | "Jacek" | "Jan" | "Joanna" | "Joey" | "Justin" | "Karl" | "Kendra" | "Kevin" | "Kimberly" | "Lea" | "Liv" | "Lotte" | "Lucia" | "Lupe" | "Mads" | "Maja" | "Marlene" | "Mathieu" | "Matthew" | "Maxim" | "Mia" | "Miguel" | "Mizuki" | "Naja" | "Nicole" | "Olivia" | "Penelope" | "Raveena" | "Ricardo" | "Ruben" | "Russell" | "Salli" | "Seoyeon" | "Takumi" | "Tatyana" | "Vicki" | "Vitoria" | "Zeina" | "Zhiyu" | "Aria" | "Ayanda" | "Arlet" | "Hannah" | "Arthur" | "Daniel" | "Liam" | "Pedro" | "Kajal" | "Hiujin" | "Laura" | "Elin" | "Ida" | "Suvi" | "Ola" | "Hala" | "Andres" | "Sergio" | "Remi" | "Adriano" | "Thiago" | "Ruth" | "Stephen" | "Kazuha" | "Tomoko" | "Niamh" | "Sofie" | "Lisa" | "Isabelle" | "Zayd" | "Danielle" | "Gregory")
|
249
|
+
SENSITIVE: []
|
250
|
+
end
|
251
|
+
|
252
|
+
class SynthesizeSpeechOutput
|
253
|
+
attr_accessor audio_stream: ::IO
|
254
|
+
attr_accessor content_type: ::String
|
255
|
+
attr_accessor request_characters: ::Integer
|
256
|
+
SENSITIVE: []
|
257
|
+
end
|
258
|
+
|
259
|
+
class TextLengthExceededException
|
260
|
+
attr_accessor message: ::String
|
261
|
+
SENSITIVE: []
|
262
|
+
end
|
263
|
+
|
264
|
+
class UnsupportedPlsAlphabetException
|
265
|
+
attr_accessor message: ::String
|
266
|
+
SENSITIVE: []
|
267
|
+
end
|
268
|
+
|
269
|
+
class UnsupportedPlsLanguageException
|
270
|
+
attr_accessor message: ::String
|
271
|
+
SENSITIVE: []
|
272
|
+
end
|
273
|
+
|
274
|
+
class Voice
|
275
|
+
attr_accessor gender: ("Female" | "Male")
|
276
|
+
attr_accessor id: ("Aditi" | "Amy" | "Astrid" | "Bianca" | "Brian" | "Camila" | "Carla" | "Carmen" | "Celine" | "Chantal" | "Conchita" | "Cristiano" | "Dora" | "Emma" | "Enrique" | "Ewa" | "Filiz" | "Gabrielle" | "Geraint" | "Giorgio" | "Gwyneth" | "Hans" | "Ines" | "Ivy" | "Jacek" | "Jan" | "Joanna" | "Joey" | "Justin" | "Karl" | "Kendra" | "Kevin" | "Kimberly" | "Lea" | "Liv" | "Lotte" | "Lucia" | "Lupe" | "Mads" | "Maja" | "Marlene" | "Mathieu" | "Matthew" | "Maxim" | "Mia" | "Miguel" | "Mizuki" | "Naja" | "Nicole" | "Olivia" | "Penelope" | "Raveena" | "Ricardo" | "Ruben" | "Russell" | "Salli" | "Seoyeon" | "Takumi" | "Tatyana" | "Vicki" | "Vitoria" | "Zeina" | "Zhiyu" | "Aria" | "Ayanda" | "Arlet" | "Hannah" | "Arthur" | "Daniel" | "Liam" | "Pedro" | "Kajal" | "Hiujin" | "Laura" | "Elin" | "Ida" | "Suvi" | "Ola" | "Hala" | "Andres" | "Sergio" | "Remi" | "Adriano" | "Thiago" | "Ruth" | "Stephen" | "Kazuha" | "Tomoko" | "Niamh" | "Sofie" | "Lisa" | "Isabelle" | "Zayd" | "Danielle" | "Gregory")
|
277
|
+
attr_accessor language_code: ("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" | "en-NZ" | "en-ZA" | "ca-ES" | "de-AT" | "yue-CN" | "ar-AE" | "fi-FI" | "en-IE" | "nl-BE" | "fr-BE")
|
278
|
+
attr_accessor language_name: ::String
|
279
|
+
attr_accessor name: ::String
|
280
|
+
attr_accessor additional_language_codes: ::Array[("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" | "en-NZ" | "en-ZA" | "ca-ES" | "de-AT" | "yue-CN" | "ar-AE" | "fi-FI" | "en-IE" | "nl-BE" | "fr-BE")]
|
281
|
+
attr_accessor supported_engines: ::Array[("standard" | "neural" | "long-form")]
|
282
|
+
SENSITIVE: []
|
283
|
+
end
|
284
|
+
end
|
285
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Polly
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-polly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.81.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.191.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.191.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -67,13 +67,18 @@ files:
|
|
67
67
|
- lib/aws-sdk-polly/presigner.rb
|
68
68
|
- lib/aws-sdk-polly/resource.rb
|
69
69
|
- lib/aws-sdk-polly/types.rb
|
70
|
+
- sig/client.rbs
|
71
|
+
- sig/errors.rbs
|
72
|
+
- sig/resource.rbs
|
73
|
+
- sig/types.rbs
|
74
|
+
- sig/waiters.rbs
|
70
75
|
homepage: https://github.com/aws/aws-sdk-ruby
|
71
76
|
licenses:
|
72
77
|
- Apache-2.0
|
73
78
|
metadata:
|
74
79
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-polly
|
75
80
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-polly/CHANGELOG.md
|
76
|
-
post_install_message:
|
81
|
+
post_install_message:
|
77
82
|
rdoc_options: []
|
78
83
|
require_paths:
|
79
84
|
- lib
|
@@ -88,8 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
93
|
- !ruby/object:Gem::Version
|
89
94
|
version: '0'
|
90
95
|
requirements: []
|
91
|
-
rubygems_version: 3.
|
92
|
-
signing_key:
|
96
|
+
rubygems_version: 3.4.10
|
97
|
+
signing_key:
|
93
98
|
specification_version: 4
|
94
99
|
summary: AWS SDK for Ruby - Amazon Polly
|
95
100
|
test_files: []
|