/** * 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 SSOClient header */ #include #include #include #include /* End of service model headers required in SSOClient 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 SSO { using SSOClientConfiguration = Aws::Client::GenericClientConfiguration; using SSOEndpointProviderBase = Aws::SSO::Endpoint::SSOEndpointProviderBase; using SSOEndpointProvider = Aws::SSO::Endpoint::SSOEndpointProvider; namespace Model { /* Service model forward declarations required in SSOClient header */ class GetRoleCredentialsRequest; class ListAccountRolesRequest; class ListAccountsRequest; class LogoutRequest; /* End of service model forward declarations required in SSOClient header */ /* Service model Outcome class definitions */ typedef Aws::Utils::Outcome GetRoleCredentialsOutcome; typedef Aws::Utils::Outcome ListAccountRolesOutcome; typedef Aws::Utils::Outcome ListAccountsOutcome; typedef Aws::Utils::Outcome LogoutOutcome; /* End of service model Outcome class definitions */ /* Service model Outcome callable definitions */ typedef std::future GetRoleCredentialsOutcomeCallable; typedef std::future ListAccountRolesOutcomeCallable; typedef std::future ListAccountsOutcomeCallable; typedef std::future LogoutOutcomeCallable; /* End of service model Outcome callable definitions */ } // namespace Model class SSOClient; /* Service model async handlers definitions */ typedef std::function&) > GetRoleCredentialsResponseReceivedHandler; typedef std::function&) > ListAccountRolesResponseReceivedHandler; typedef std::function&) > ListAccountsResponseReceivedHandler; typedef std::function&) > LogoutResponseReceivedHandler; /* End of service model async handlers definitions */ } // namespace SSO } // namespace Aws