/** * 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 TimestreamQuery { namespace Endpoint { using EndpointParameters = Aws::Endpoint::EndpointParameters; using Aws::Endpoint::EndpointProviderBase; using Aws::Endpoint::DefaultEndpointProvider; using TimestreamQueryClientContextParameters = Aws::Endpoint::ClientContextParameters; using TimestreamQueryClientConfiguration = Aws::Client::GenericClientConfiguration; using TimestreamQueryBuiltInParameters = Aws::Endpoint::BuiltInParameters; /** * The type for the TimestreamQuery 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 TimestreamQueryEndpointProviderBase = EndpointProviderBase; using TimestreamQueryDefaultEpProviderBase = DefaultEndpointProvider; /** * Default endpoint provider used for this service */ class AWS_TIMESTREAMQUERY_API TimestreamQueryEndpointProvider : public TimestreamQueryDefaultEpProviderBase { public: using TimestreamQueryResolveEndpointOutcome = Aws::Endpoint::ResolveEndpointOutcome; TimestreamQueryEndpointProvider() : TimestreamQueryDefaultEpProviderBase(Aws::TimestreamQuery::TimestreamQueryEndpointRules::GetRulesBlob(), Aws::TimestreamQuery::TimestreamQueryEndpointRules::RulesBlobSize) {} ~TimestreamQueryEndpointProvider() { } }; } // namespace Endpoint } // namespace TimestreamQuery } // namespace Aws