/** * 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 MobileClient header */ #include #include #include #include #include #include #include #include #include /* End of service model headers required in MobileClient 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 Mobile { using MobileClientConfiguration = Aws::Client::GenericClientConfiguration; using MobileEndpointProviderBase = Aws::Mobile::Endpoint::MobileEndpointProviderBase; using MobileEndpointProvider = Aws::Mobile::Endpoint::MobileEndpointProvider; namespace Model { /* Service model forward declarations required in MobileClient header */ class CreateProjectRequest; class DeleteProjectRequest; class DescribeBundleRequest; class DescribeProjectRequest; class ExportBundleRequest; class ExportProjectRequest; class ListBundlesRequest; class ListProjectsRequest; class UpdateProjectRequest; /* End of service model forward declarations required in MobileClient header */ /* Service model Outcome class definitions */ typedef Aws::Utils::Outcome CreateProjectOutcome; typedef Aws::Utils::Outcome DeleteProjectOutcome; typedef Aws::Utils::Outcome DescribeBundleOutcome; typedef Aws::Utils::Outcome DescribeProjectOutcome; typedef Aws::Utils::Outcome ExportBundleOutcome; typedef Aws::Utils::Outcome ExportProjectOutcome; typedef Aws::Utils::Outcome ListBundlesOutcome; typedef Aws::Utils::Outcome ListProjectsOutcome; typedef Aws::Utils::Outcome UpdateProjectOutcome; /* End of service model Outcome class definitions */ /* Service model Outcome callable definitions */ typedef std::future CreateProjectOutcomeCallable; typedef std::future DeleteProjectOutcomeCallable; typedef std::future DescribeBundleOutcomeCallable; typedef std::future DescribeProjectOutcomeCallable; typedef std::future ExportBundleOutcomeCallable; typedef std::future ExportProjectOutcomeCallable; typedef std::future ListBundlesOutcomeCallable; typedef std::future ListProjectsOutcomeCallable; typedef std::future UpdateProjectOutcomeCallable; /* End of service model Outcome callable definitions */ } // namespace Model class MobileClient; /* Service model async handlers definitions */ typedef std::function&) > CreateProjectResponseReceivedHandler; typedef std::function&) > DeleteProjectResponseReceivedHandler; typedef std::function&) > DescribeBundleResponseReceivedHandler; typedef std::function&) > DescribeProjectResponseReceivedHandler; typedef std::function&) > ExportBundleResponseReceivedHandler; typedef std::function&) > ExportProjectResponseReceivedHandler; typedef std::function&) > ListBundlesResponseReceivedHandler; typedef std::function&) > ListProjectsResponseReceivedHandler; typedef std::function&) > UpdateProjectResponseReceivedHandler; /* End of service model async handlers definitions */ } // namespace Mobile } // namespace Aws