Voice

public struct Voice : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Additional codes for languages available for the specified voice in addition to its default language. For example, the default language for Aditi is Indian English (en-IN) because it was first used for that language. Since Aditi is bilingual and fluent in both Indian English and Hindi, this parameter would show the code hi-IN.

    Declaration

    Swift

    public let additionalLanguageCodes: [LanguageCode]?
  • Gender of the voice.

    Declaration

    Swift

    public let gender: Gender?
  • id

    Amazon Polly assigned voice ID. This is the ID that you specify when calling the SynthesizeSpeech operation.

    Declaration

    Swift

    public let id: VoiceId?
  • Language code of the voice.

    Declaration

    Swift

    public let languageCode: LanguageCode?
  • Human readable name of the language in English.

    Declaration

    Swift

    public let languageName: String?
  • Name of the voice (for example, Salli, Kendra, etc.). This provides a human readable voice name that you might display in your application.

    Declaration

    Swift

    public let name: String?
  • Specifies which engines (standard or neural) that are supported by a given voice.

    Declaration

    Swift

    public let supportedEngines: [Engine]?
  • Undocumented

    Declaration

    Swift

    public init(additionalLanguageCodes: [LanguageCode]? = nil, gender: Gender? = nil, id: VoiceId? = nil, languageCode: LanguageCode? = nil, languageName: String? = nil, name: String? = nil, supportedEngines: [Engine]? = nil)