/** * 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 SSOOIDCClient header */ #include #include #include /* End of service model headers required in SSOOIDCClient 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 SSOOIDC { using SSOOIDCClientConfiguration = Aws::Client::GenericClientConfiguration; using SSOOIDCEndpointProviderBase = Aws::SSOOIDC::Endpoint::SSOOIDCEndpointProviderBase; using SSOOIDCEndpointProvider = Aws::SSOOIDC::Endpoint::SSOOIDCEndpointProvider; namespace Model { /* Service model forward declarations required in SSOOIDCClient header */ class CreateTokenRequest; class RegisterClientRequest; class StartDeviceAuthorizationRequest; /* End of service model forward declarations required in SSOOIDCClient header */ /* Service model Outcome class definitions */ typedef Aws::Utils::Outcome CreateTokenOutcome; typedef Aws::Utils::Outcome RegisterClientOutcome; typedef Aws::Utils::Outcome StartDeviceAuthorizationOutcome; /* End of service model Outcome class definitions */ /* Service model Outcome callable definitions */ typedef std::future CreateTokenOutcomeCallable; typedef std::future RegisterClientOutcomeCallable; typedef std::future StartDeviceAuthorizationOutcomeCallable; /* End of service model Outcome callable definitions */ } // namespace Model class SSOOIDCClient; /* Service model async handlers definitions */ typedef std::function&) > CreateTokenResponseReceivedHandler; typedef std::function&) > RegisterClientResponseReceivedHandler; typedef std::function&) > StartDeviceAuthorizationResponseReceivedHandler; /* End of service model async handlers definitions */ } // namespace SSOOIDC } // namespace Aws