/** * 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 PaymentCryptographyData { namespace Endpoint { using EndpointParameters = Aws::Endpoint::EndpointParameters; using Aws::Endpoint::EndpointProviderBase; using Aws::Endpoint::DefaultEndpointProvider; using PaymentCryptographyDataClientContextParameters = Aws::Endpoint::ClientContextParameters; using PaymentCryptographyDataClientConfiguration = Aws::Client::GenericClientConfiguration; using PaymentCryptographyDataBuiltInParameters = Aws::Endpoint::BuiltInParameters; /** * The type for the PaymentCryptographyData 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 PaymentCryptographyDataEndpointProviderBase = EndpointProviderBase; using PaymentCryptographyDataDefaultEpProviderBase = DefaultEndpointProvider; /** * Default endpoint provider used for this service */ class AWS_PAYMENTCRYPTOGRAPHYDATA_API PaymentCryptographyDataEndpointProvider : public PaymentCryptographyDataDefaultEpProviderBase { public: using PaymentCryptographyDataResolveEndpointOutcome = Aws::Endpoint::ResolveEndpointOutcome; PaymentCryptographyDataEndpointProvider() : PaymentCryptographyDataDefaultEpProviderBase(Aws::PaymentCryptographyData::PaymentCryptographyDataEndpointRules::GetRulesBlob(), Aws::PaymentCryptographyData::PaymentCryptographyDataEndpointRules::RulesBlobSize) {} ~PaymentCryptographyDataEndpointProvider() { } }; } // namespace Endpoint } // namespace PaymentCryptographyData } // namespace Aws