/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include namespace Aws { namespace Cloud9 { namespace Endpoint { using EndpointParameters = Aws::Endpoint::EndpointParameters; using Aws::Endpoint::EndpointProviderBase; using Aws::Endpoint::DefaultEndpointProvider; using Cloud9ClientContextParameters = Aws::Endpoint::ClientContextParameters; using Cloud9ClientConfiguration = Aws::Client::GenericClientConfiguration; using Cloud9BuiltInParameters = Aws::Endpoint::BuiltInParameters; /** * The type for the Cloud9 Client Endpoint Provider. * Inherit from this Base class / "Interface" should you want to provide a custom endpoint provider. * The SDK must use service-specific type for each service per specification. */ using Cloud9EndpointProviderBase = EndpointProviderBase; using Cloud9DefaultEpProviderBase = DefaultEndpointProvider; /** * Default endpoint provider used for this service */ class AWS_CLOUD9_API Cloud9EndpointProvider : public Cloud9DefaultEpProviderBase { public: using Cloud9ResolveEndpointOutcome = Aws::Endpoint::ResolveEndpointOutcome; Cloud9EndpointProvider() : Cloud9DefaultEpProviderBase(Aws::Cloud9::Cloud9EndpointRules::GetRulesBlob(), Aws::Cloud9::Cloud9EndpointRules::RulesBlobSize) {} ~Cloud9EndpointProvider() { } }; } // namespace Endpoint } // namespace Cloud9 } // namespace Aws