[][src]Struct rusoto_polly::PollyClient

pub struct PollyClient { /* fields omitted */ }

A client for the Amazon Polly API.

Implementations

impl PollyClient[src]

pub fn new(region: Region) -> PollyClient[src]

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

pub fn new_with<P, D>(
    request_dispatcher: D,
    credentials_provider: P,
    region: Region
) -> PollyClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    D: DispatchSignedRequest + Send + Sync + 'static, 
[src]

pub fn new_with_client(client: Client, region: Region) -> PollyClient[src]

Trait Implementations

impl Clone for PollyClient[src]

impl Polly for PollyClient[src]

pub fn delete_lexicon<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteLexiconInput
) -> Pin<Box<dyn Future<Output = Result<DeleteLexiconOutput, RusotoError<DeleteLexiconError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the specified pronunciation lexicon stored in an AWS Region. A lexicon which has been deleted is not available for speech synthesis, nor is it possible to retrieve it using either the GetLexicon or ListLexicon APIs.

For more information, see Managing Lexicons.

pub fn describe_voices<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeVoicesInput
) -> Pin<Box<dyn Future<Output = Result<DescribeVoicesOutput, RusotoError<DescribeVoicesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns the list of voices that are available for use when requesting speech synthesis. Each voice speaks a specified language, is either male or female, and is identified by an ID, which is the ASCII version of the voice name.

When synthesizing speech ( SynthesizeSpeech ), you provide the voice ID for the voice you want from the list of voices returned by DescribeVoices.

For example, you want your news reader application to read news in a specific language, but giving a user the option to choose the voice. Using the DescribeVoices operation you can provide the user with a list of available voices to select from.

You can optionally specify a language code to filter the available voices. For example, if you specify en-US, the operation returns a list of all available US English voices.

This operation requires permissions to perform the polly:DescribeVoices action.

pub fn get_lexicon<'life0, 'async_trait>(
    &'life0 self,
    input: GetLexiconInput
) -> Pin<Box<dyn Future<Output = Result<GetLexiconOutput, RusotoError<GetLexiconError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns the content of the specified pronunciation lexicon stored in an AWS Region. For more information, see Managing Lexicons.

pub fn get_speech_synthesis_task<'life0, 'async_trait>(
    &'life0 self,
    input: GetSpeechSynthesisTaskInput
) -> Pin<Box<dyn Future<Output = Result<GetSpeechSynthesisTaskOutput, RusotoError<GetSpeechSynthesisTaskError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Retrieves a specific SpeechSynthesisTask object based on its TaskID. This object contains information about the given speech synthesis task, including the status of the task, and a link to the S3 bucket containing the output of the task.

pub fn list_lexicons<'life0, 'async_trait>(
    &'life0 self,
    input: ListLexiconsInput
) -> Pin<Box<dyn Future<Output = Result<ListLexiconsOutput, RusotoError<ListLexiconsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a list of pronunciation lexicons stored in an AWS Region. For more information, see Managing Lexicons.

pub fn list_speech_synthesis_tasks<'life0, 'async_trait>(
    &'life0 self,
    input: ListSpeechSynthesisTasksInput
) -> Pin<Box<dyn Future<Output = Result<ListSpeechSynthesisTasksOutput, RusotoError<ListSpeechSynthesisTasksError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a list of SpeechSynthesisTask objects ordered by their creation date. This operation can filter the tasks by their status, for example, allowing users to list only tasks that are completed.

pub fn put_lexicon<'life0, 'async_trait>(
    &'life0 self,
    input: PutLexiconInput
) -> Pin<Box<dyn Future<Output = Result<PutLexiconOutput, RusotoError<PutLexiconError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Stores a pronunciation lexicon in an AWS Region. If a lexicon with the same name already exists in the region, it is overwritten by the new lexicon. Lexicon operations have eventual consistency, therefore, it might take some time before the lexicon is available to the SynthesizeSpeech operation.

For more information, see Managing Lexicons.

pub fn start_speech_synthesis_task<'life0, 'async_trait>(
    &'life0 self,
    input: StartSpeechSynthesisTaskInput
) -> Pin<Box<dyn Future<Output = Result<StartSpeechSynthesisTaskOutput, RusotoError<StartSpeechSynthesisTaskError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Allows the creation of an asynchronous synthesis task, by starting a new SpeechSynthesisTask. This operation requires all the standard information needed for speech synthesis, plus the name of an Amazon S3 bucket for the service to store the output of the synthesis task and two optional parameters (OutputS3KeyPrefix and SnsTopicArn). Once the synthesis task is created, this operation will return a SpeechSynthesisTask object, which will include an identifier of this task as well as the current status.

pub fn synthesize_speech<'life0, 'async_trait>(
    &'life0 self,
    input: SynthesizeSpeechInput
) -> Pin<Box<dyn Future<Output = Result<SynthesizeSpeechOutput, RusotoError<SynthesizeSpeechError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Synthesizes UTF-8 input, plain text or SSML, to a stream of bytes. SSML input must be valid, well-formed SSML. Some alphabets might not be available with all the voices (for example, Cyrillic might not be read at all by English voices) unless phoneme mapping is used. For more information, see How it Works.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.