DescribeVoicesInput
public struct DescribeVoicesInput : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Specifies the engine (standard or neural) used by Amazon Polly when processing input text for speech synthesis.
Declaration
Swift
public let engine: Engine?
-
Boolean value indicating whether to return any bilingual voices that use the specified language as an additional language. For instance, if you request all languages that use US English (es-US), and there is an Italian voice that speaks both Italian (it-IT) and US English, that voice will be included if you specify yes but not if you specify no.
Declaration
Swift
public let includeAdditionalLanguageCodes: Bool?
-
The language identification tag (ISO 639 code for the language name-ISO 3166 country code) for filtering the list of voices returned. If you don’t specify this optional parameter, all available voices are returned.
Declaration
Swift
public let languageCode: LanguageCode?
-
An opaque pagination token returned from the previous DescribeVoices operation. If present, this indicates where to continue the listing.
Declaration
Swift
public let nextToken: String?
-
Undocumented
Declaration
Swift
public init(engine: Engine? = nil, includeAdditionalLanguageCodes: Bool? = nil, languageCode: LanguageCode? = nil, nextToken: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws