/** * 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 AppRegistry { namespace Endpoint { using EndpointParameters = Aws::Endpoint::EndpointParameters; using Aws::Endpoint::EndpointProviderBase; using Aws::Endpoint::DefaultEndpointProvider; using AppRegistryClientContextParameters = Aws::Endpoint::ClientContextParameters; using AppRegistryClientConfiguration = Aws::Client::GenericClientConfiguration; using AppRegistryBuiltInParameters = Aws::Endpoint::BuiltInParameters; /** * The type for the AppRegistry 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 AppRegistryEndpointProviderBase = EndpointProviderBase; using AppRegistryDefaultEpProviderBase = DefaultEndpointProvider; /** * Default endpoint provider used for this service */ class AWS_APPREGISTRY_API AppRegistryEndpointProvider : public AppRegistryDefaultEpProviderBase { public: using AppRegistryResolveEndpointOutcome = Aws::Endpoint::ResolveEndpointOutcome; AppRegistryEndpointProvider() : AppRegistryDefaultEpProviderBase(Aws::AppRegistry::AppRegistryEndpointRules::GetRulesBlob(), Aws::AppRegistry::AppRegistryEndpointRules::RulesBlobSize) {} ~AppRegistryEndpointProvider() { } }; } // namespace Endpoint } // namespace AppRegistry } // namespace Aws