/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
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