/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the client certificate to be used for
* authentication.See Also:
AWS
* API Reference
The ARN of the client certificate. The certificate must be signed by a * certificate authority (CA) and it must be provisioned in Certificate Manager * (ACM).
*/ inline const Aws::String& GetClientRootCertificateChainArn() const{ return m_clientRootCertificateChainArn; } /** *The ARN of the client certificate. The certificate must be signed by a * certificate authority (CA) and it must be provisioned in Certificate Manager * (ACM).
*/ inline bool ClientRootCertificateChainArnHasBeenSet() const { return m_clientRootCertificateChainArnHasBeenSet; } /** *The ARN of the client certificate. The certificate must be signed by a * certificate authority (CA) and it must be provisioned in Certificate Manager * (ACM).
*/ inline void SetClientRootCertificateChainArn(const Aws::String& value) { m_clientRootCertificateChainArnHasBeenSet = true; m_clientRootCertificateChainArn = value; } /** *The ARN of the client certificate. The certificate must be signed by a * certificate authority (CA) and it must be provisioned in Certificate Manager * (ACM).
*/ inline void SetClientRootCertificateChainArn(Aws::String&& value) { m_clientRootCertificateChainArnHasBeenSet = true; m_clientRootCertificateChainArn = std::move(value); } /** *The ARN of the client certificate. The certificate must be signed by a * certificate authority (CA) and it must be provisioned in Certificate Manager * (ACM).
*/ inline void SetClientRootCertificateChainArn(const char* value) { m_clientRootCertificateChainArnHasBeenSet = true; m_clientRootCertificateChainArn.assign(value); } /** *The ARN of the client certificate. The certificate must be signed by a * certificate authority (CA) and it must be provisioned in Certificate Manager * (ACM).
*/ inline CertificateAuthenticationRequest& WithClientRootCertificateChainArn(const Aws::String& value) { SetClientRootCertificateChainArn(value); return *this;} /** *The ARN of the client certificate. The certificate must be signed by a * certificate authority (CA) and it must be provisioned in Certificate Manager * (ACM).
*/ inline CertificateAuthenticationRequest& WithClientRootCertificateChainArn(Aws::String&& value) { SetClientRootCertificateChainArn(std::move(value)); return *this;} /** *The ARN of the client certificate. The certificate must be signed by a * certificate authority (CA) and it must be provisioned in Certificate Manager * (ACM).
*/ inline CertificateAuthenticationRequest& WithClientRootCertificateChainArn(const char* value) { SetClientRootCertificateChainArn(value); return *this;} private: Aws::String m_clientRootCertificateChainArn; bool m_clientRootCertificateChainArnHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws