/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the client certificate used for
* authentication.See Also:
AWS
* API Reference
The ARN of the client certificate.
*/ inline const Aws::String& GetClientRootCertificateChain() const{ return m_clientRootCertificateChain; } /** *The ARN of the client certificate.
*/ inline bool ClientRootCertificateChainHasBeenSet() const { return m_clientRootCertificateChainHasBeenSet; } /** *The ARN of the client certificate.
*/ inline void SetClientRootCertificateChain(const Aws::String& value) { m_clientRootCertificateChainHasBeenSet = true; m_clientRootCertificateChain = value; } /** *The ARN of the client certificate.
*/ inline void SetClientRootCertificateChain(Aws::String&& value) { m_clientRootCertificateChainHasBeenSet = true; m_clientRootCertificateChain = std::move(value); } /** *The ARN of the client certificate.
*/ inline void SetClientRootCertificateChain(const char* value) { m_clientRootCertificateChainHasBeenSet = true; m_clientRootCertificateChain.assign(value); } /** *The ARN of the client certificate.
*/ inline CertificateAuthentication& WithClientRootCertificateChain(const Aws::String& value) { SetClientRootCertificateChain(value); return *this;} /** *The ARN of the client certificate.
*/ inline CertificateAuthentication& WithClientRootCertificateChain(Aws::String&& value) { SetClientRootCertificateChain(std::move(value)); return *this;} /** *The ARN of the client certificate.
*/ inline CertificateAuthentication& WithClientRootCertificateChain(const char* value) { SetClientRootCertificateChain(value); return *this;} private: Aws::String m_clientRootCertificateChain; bool m_clientRootCertificateChainHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws