/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once /* Generic header includes */ #include #include #include #include #include #include #include #include #include /* End of generic header includes */ /* Service model headers required in PollyClient header */ #include #include #include #include #include #include #include #include #include /* End of service model headers required in PollyClient header */ namespace Aws { namespace Http { class HttpClient; class HttpClientFactory; } // namespace Http namespace Utils { template< typename R, typename E> class Outcome; namespace Threading { class Executor; } // namespace Threading } // namespace Utils namespace Auth { class AWSCredentials; class AWSCredentialsProvider; } // namespace Auth namespace Client { class RetryStrategy; } // namespace Client namespace Polly { using PollyClientConfiguration = Aws::Client::GenericClientConfiguration; using PollyEndpointProviderBase = Aws::Polly::Endpoint::PollyEndpointProviderBase; using PollyEndpointProvider = Aws::Polly::Endpoint::PollyEndpointProvider; namespace Model { /* Service model forward declarations required in PollyClient header */ class DeleteLexiconRequest; class DescribeVoicesRequest; class GetLexiconRequest; class GetSpeechSynthesisTaskRequest; class ListLexiconsRequest; class ListSpeechSynthesisTasksRequest; class PutLexiconRequest; class StartSpeechSynthesisTaskRequest; class SynthesizeSpeechRequest; /* End of service model forward declarations required in PollyClient header */ /* Service model Outcome class definitions */ typedef Aws::Utils::Outcome DeleteLexiconOutcome; typedef Aws::Utils::Outcome DescribeVoicesOutcome; typedef Aws::Utils::Outcome GetLexiconOutcome; typedef Aws::Utils::Outcome GetSpeechSynthesisTaskOutcome; typedef Aws::Utils::Outcome ListLexiconsOutcome; typedef Aws::Utils::Outcome ListSpeechSynthesisTasksOutcome; typedef Aws::Utils::Outcome PutLexiconOutcome; typedef Aws::Utils::Outcome StartSpeechSynthesisTaskOutcome; typedef Aws::Utils::Outcome SynthesizeSpeechOutcome; /* End of service model Outcome class definitions */ /* Service model Outcome callable definitions */ typedef std::future DeleteLexiconOutcomeCallable; typedef std::future DescribeVoicesOutcomeCallable; typedef std::future GetLexiconOutcomeCallable; typedef std::future GetSpeechSynthesisTaskOutcomeCallable; typedef std::future ListLexiconsOutcomeCallable; typedef std::future ListSpeechSynthesisTasksOutcomeCallable; typedef std::future PutLexiconOutcomeCallable; typedef std::future StartSpeechSynthesisTaskOutcomeCallable; typedef std::future SynthesizeSpeechOutcomeCallable; /* End of service model Outcome callable definitions */ } // namespace Model class PollyClient; /* Service model async handlers definitions */ typedef std::function&) > DeleteLexiconResponseReceivedHandler; typedef std::function&) > DescribeVoicesResponseReceivedHandler; typedef std::function&) > GetLexiconResponseReceivedHandler; typedef std::function&) > GetSpeechSynthesisTaskResponseReceivedHandler; typedef std::function&) > ListLexiconsResponseReceivedHandler; typedef std::function&) > ListSpeechSynthesisTasksResponseReceivedHandler; typedef std::function&) > PutLexiconResponseReceivedHandler; typedef std::function&) > StartSpeechSynthesisTaskResponseReceivedHandler; typedef std::function&) > SynthesizeSpeechResponseReceivedHandler; /* End of service model async handlers definitions */ } // namespace Polly } // namespace Aws