/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace EC2 { namespace Model { /** *

Information about the client certificate to be used for * authentication.

See Also:

AWS * API Reference

*/ class CertificateAuthenticationRequest { public: AWS_EC2_API CertificateAuthenticationRequest(); AWS_EC2_API CertificateAuthenticationRequest(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API CertificateAuthenticationRequest& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

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