/** * 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 HealthLake { namespace Endpoint { using EndpointParameters = Aws::Endpoint::EndpointParameters; using Aws::Endpoint::EndpointProviderBase; using Aws::Endpoint::DefaultEndpointProvider; using HealthLakeClientContextParameters = Aws::Endpoint::ClientContextParameters; using HealthLakeClientConfiguration = Aws::Client::GenericClientConfiguration; using HealthLakeBuiltInParameters = Aws::Endpoint::BuiltInParameters; /** * The type for the HealthLake 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 HealthLakeEndpointProviderBase = EndpointProviderBase; using HealthLakeDefaultEpProviderBase = DefaultEndpointProvider; /** * Default endpoint provider used for this service */ class AWS_HEALTHLAKE_API HealthLakeEndpointProvider : public HealthLakeDefaultEpProviderBase { public: using HealthLakeResolveEndpointOutcome = Aws::Endpoint::ResolveEndpointOutcome; HealthLakeEndpointProvider() : HealthLakeDefaultEpProviderBase(Aws::HealthLake::HealthLakeEndpointRules::GetRulesBlob(), Aws::HealthLake::HealthLakeEndpointRules::RulesBlobSize) {} ~HealthLakeEndpointProvider() { } }; } // namespace Endpoint } // namespace HealthLake } // namespace Aws