/** * 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 Kafka { namespace Endpoint { using EndpointParameters = Aws::Endpoint::EndpointParameters; using Aws::Endpoint::EndpointProviderBase; using Aws::Endpoint::DefaultEndpointProvider; using KafkaClientContextParameters = Aws::Endpoint::ClientContextParameters; using KafkaClientConfiguration = Aws::Client::GenericClientConfiguration; using KafkaBuiltInParameters = Aws::Endpoint::BuiltInParameters; /** * The type for the Kafka 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 KafkaEndpointProviderBase = EndpointProviderBase; using KafkaDefaultEpProviderBase = DefaultEndpointProvider; /** * Default endpoint provider used for this service */ class AWS_KAFKA_API KafkaEndpointProvider : public KafkaDefaultEpProviderBase { public: using KafkaResolveEndpointOutcome = Aws::Endpoint::ResolveEndpointOutcome; KafkaEndpointProvider() : KafkaDefaultEpProviderBase(Aws::Kafka::KafkaEndpointRules::GetRulesBlob(), Aws::Kafka::KafkaEndpointRules::RulesBlobSize) {} ~KafkaEndpointProvider() { } }; } // namespace Endpoint } // namespace Kafka } // namespace Aws