/** * 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 ConfigService { namespace Endpoint { using EndpointParameters = Aws::Endpoint::EndpointParameters; using Aws::Endpoint::EndpointProviderBase; using Aws::Endpoint::DefaultEndpointProvider; using ConfigServiceClientContextParameters = Aws::Endpoint::ClientContextParameters; using ConfigServiceClientConfiguration = Aws::Client::GenericClientConfiguration; using ConfigServiceBuiltInParameters = Aws::Endpoint::BuiltInParameters; /** * The type for the ConfigService 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 ConfigServiceEndpointProviderBase = EndpointProviderBase; using ConfigServiceDefaultEpProviderBase = DefaultEndpointProvider; /** * Default endpoint provider used for this service */ class AWS_CONFIGSERVICE_API ConfigServiceEndpointProvider : public ConfigServiceDefaultEpProviderBase { public: using ConfigServiceResolveEndpointOutcome = Aws::Endpoint::ResolveEndpointOutcome; ConfigServiceEndpointProvider() : ConfigServiceDefaultEpProviderBase(Aws::ConfigService::ConfigServiceEndpointRules::GetRulesBlob(), Aws::ConfigService::ConfigServiceEndpointRules::RulesBlobSize) {} ~ConfigServiceEndpointProvider() { } }; } // namespace Endpoint } // namespace ConfigService } // namespace Aws