/** * 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 Pricing { namespace Endpoint { using EndpointParameters = Aws::Endpoint::EndpointParameters; using Aws::Endpoint::EndpointProviderBase; using Aws::Endpoint::DefaultEndpointProvider; using PricingClientContextParameters = Aws::Endpoint::ClientContextParameters; using PricingClientConfiguration = Aws::Client::GenericClientConfiguration; using PricingBuiltInParameters = Aws::Endpoint::BuiltInParameters; /** * The type for the Pricing 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 PricingEndpointProviderBase = EndpointProviderBase; using PricingDefaultEpProviderBase = DefaultEndpointProvider; /** * Default endpoint provider used for this service */ class AWS_PRICING_API PricingEndpointProvider : public PricingDefaultEpProviderBase { public: using PricingResolveEndpointOutcome = Aws::Endpoint::ResolveEndpointOutcome; PricingEndpointProvider() : PricingDefaultEpProviderBase(Aws::Pricing::PricingEndpointRules::GetRulesBlob(), Aws::Pricing::PricingEndpointRules::RulesBlobSize) {} ~PricingEndpointProvider() { } }; } // namespace Endpoint } // namespace Pricing } // namespace Aws