/** * 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 IoTThingsGraph { namespace Endpoint { using EndpointParameters = Aws::Endpoint::EndpointParameters; using Aws::Endpoint::EndpointProviderBase; using Aws::Endpoint::DefaultEndpointProvider; using IoTThingsGraphClientContextParameters = Aws::Endpoint::ClientContextParameters; using IoTThingsGraphClientConfiguration = Aws::Client::GenericClientConfiguration; using IoTThingsGraphBuiltInParameters = Aws::Endpoint::BuiltInParameters; /** * The type for the IoTThingsGraph 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 IoTThingsGraphEndpointProviderBase = EndpointProviderBase; using IoTThingsGraphDefaultEpProviderBase = DefaultEndpointProvider; /** * Default endpoint provider used for this service */ class AWS_IOTTHINGSGRAPH_API IoTThingsGraphEndpointProvider : public IoTThingsGraphDefaultEpProviderBase { public: using IoTThingsGraphResolveEndpointOutcome = Aws::Endpoint::ResolveEndpointOutcome; IoTThingsGraphEndpointProvider() : IoTThingsGraphDefaultEpProviderBase(Aws::IoTThingsGraph::IoTThingsGraphEndpointRules::GetRulesBlob(), Aws::IoTThingsGraph::IoTThingsGraphEndpointRules::RulesBlobSize) {} ~IoTThingsGraphEndpointProvider() { } }; } // namespace Endpoint } // namespace IoTThingsGraph } // namespace Aws