/** * 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 Route53RecoveryReadiness { namespace Endpoint { using EndpointParameters = Aws::Endpoint::EndpointParameters; using Aws::Endpoint::EndpointProviderBase; using Aws::Endpoint::DefaultEndpointProvider; using Route53RecoveryReadinessClientContextParameters = Aws::Endpoint::ClientContextParameters; using Route53RecoveryReadinessClientConfiguration = Aws::Client::GenericClientConfiguration; using Route53RecoveryReadinessBuiltInParameters = Aws::Endpoint::BuiltInParameters; /** * The type for the Route53RecoveryReadiness 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 Route53RecoveryReadinessEndpointProviderBase = EndpointProviderBase; using Route53RecoveryReadinessDefaultEpProviderBase = DefaultEndpointProvider; /** * Default endpoint provider used for this service */ class AWS_ROUTE53RECOVERYREADINESS_API Route53RecoveryReadinessEndpointProvider : public Route53RecoveryReadinessDefaultEpProviderBase { public: using Route53RecoveryReadinessResolveEndpointOutcome = Aws::Endpoint::ResolveEndpointOutcome; Route53RecoveryReadinessEndpointProvider() : Route53RecoveryReadinessDefaultEpProviderBase(Aws::Route53RecoveryReadiness::Route53RecoveryReadinessEndpointRules::GetRulesBlob(), Aws::Route53RecoveryReadiness::Route53RecoveryReadinessEndpointRules::RulesBlobSize) {} ~Route53RecoveryReadinessEndpointProvider() { } }; } // namespace Endpoint } // namespace Route53RecoveryReadiness } // namespace Aws