/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object that represents a client policy.See Also:
AWS
* API Reference
A reference to an object that represents a Transport Layer Security (TLS) * client policy.
*/ inline const VirtualGatewayClientPolicyTls& GetTls() const{ return m_tls; } /** *A reference to an object that represents a Transport Layer Security (TLS) * client policy.
*/ inline bool TlsHasBeenSet() const { return m_tlsHasBeenSet; } /** *A reference to an object that represents a Transport Layer Security (TLS) * client policy.
*/ inline void SetTls(const VirtualGatewayClientPolicyTls& value) { m_tlsHasBeenSet = true; m_tls = value; } /** *A reference to an object that represents a Transport Layer Security (TLS) * client policy.
*/ inline void SetTls(VirtualGatewayClientPolicyTls&& value) { m_tlsHasBeenSet = true; m_tls = std::move(value); } /** *A reference to an object that represents a Transport Layer Security (TLS) * client policy.
*/ inline VirtualGatewayClientPolicy& WithTls(const VirtualGatewayClientPolicyTls& value) { SetTls(value); return *this;} /** *A reference to an object that represents a Transport Layer Security (TLS) * client policy.
*/ inline VirtualGatewayClientPolicy& WithTls(VirtualGatewayClientPolicyTls&& value) { SetTls(std::move(value)); return *this;} private: VirtualGatewayClientPolicyTls m_tls; bool m_tlsHasBeenSet = false; }; } // namespace Model } // namespace AppMesh } // namespace Aws