/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Kafka { namespace Model { /** * VPC connectivity access control for brokers.

See Also:

AWS * API Reference

*/ class VpcConnectivity { public: AWS_KAFKA_API VpcConnectivity(); AWS_KAFKA_API VpcConnectivity(Aws::Utils::Json::JsonView jsonValue); AWS_KAFKA_API VpcConnectivity& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_KAFKA_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Includes all client authentication information for VPC * connectivity.

*/ inline const VpcConnectivityClientAuthentication& GetClientAuthentication() const{ return m_clientAuthentication; } /** *

Includes all client authentication information for VPC * connectivity.

*/ inline bool ClientAuthenticationHasBeenSet() const { return m_clientAuthenticationHasBeenSet; } /** *

Includes all client authentication information for VPC * connectivity.

*/ inline void SetClientAuthentication(const VpcConnectivityClientAuthentication& value) { m_clientAuthenticationHasBeenSet = true; m_clientAuthentication = value; } /** *

Includes all client authentication information for VPC * connectivity.

*/ inline void SetClientAuthentication(VpcConnectivityClientAuthentication&& value) { m_clientAuthenticationHasBeenSet = true; m_clientAuthentication = std::move(value); } /** *

Includes all client authentication information for VPC * connectivity.

*/ inline VpcConnectivity& WithClientAuthentication(const VpcConnectivityClientAuthentication& value) { SetClientAuthentication(value); return *this;} /** *

Includes all client authentication information for VPC * connectivity.

*/ inline VpcConnectivity& WithClientAuthentication(VpcConnectivityClientAuthentication&& value) { SetClientAuthentication(std::move(value)); return *this;} private: VpcConnectivityClientAuthentication m_clientAuthentication; bool m_clientAuthenticationHasBeenSet = false; }; } // namespace Model } // namespace Kafka } // namespace Aws