/** * 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 EBSClient header */ #include #include #include #include #include #include /* End of service model headers required in EBSClient 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 EBS { using EBSClientConfiguration = Aws::Client::GenericClientConfiguration; using EBSEndpointProviderBase = Aws::EBS::Endpoint::EBSEndpointProviderBase; using EBSEndpointProvider = Aws::EBS::Endpoint::EBSEndpointProvider; namespace Model { /* Service model forward declarations required in EBSClient header */ class CompleteSnapshotRequest; class GetSnapshotBlockRequest; class ListChangedBlocksRequest; class ListSnapshotBlocksRequest; class PutSnapshotBlockRequest; class StartSnapshotRequest; /* End of service model forward declarations required in EBSClient header */ /* Service model Outcome class definitions */ typedef Aws::Utils::Outcome CompleteSnapshotOutcome; typedef Aws::Utils::Outcome GetSnapshotBlockOutcome; typedef Aws::Utils::Outcome ListChangedBlocksOutcome; typedef Aws::Utils::Outcome ListSnapshotBlocksOutcome; typedef Aws::Utils::Outcome PutSnapshotBlockOutcome; typedef Aws::Utils::Outcome StartSnapshotOutcome; /* End of service model Outcome class definitions */ /* Service model Outcome callable definitions */ typedef std::future CompleteSnapshotOutcomeCallable; typedef std::future GetSnapshotBlockOutcomeCallable; typedef std::future ListChangedBlocksOutcomeCallable; typedef std::future ListSnapshotBlocksOutcomeCallable; typedef std::future PutSnapshotBlockOutcomeCallable; typedef std::future StartSnapshotOutcomeCallable; /* End of service model Outcome callable definitions */ } // namespace Model class EBSClient; /* Service model async handlers definitions */ typedef std::function&) > CompleteSnapshotResponseReceivedHandler; typedef std::function&) > GetSnapshotBlockResponseReceivedHandler; typedef std::function&) > ListChangedBlocksResponseReceivedHandler; typedef std::function&) > ListSnapshotBlocksResponseReceivedHandler; typedef std::function&) > PutSnapshotBlockResponseReceivedHandler; typedef std::function&) > StartSnapshotResponseReceivedHandler; /* End of service model async handlers definitions */ } // namespace EBS } // namespace Aws