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

Represents a client certificate used to configure client-side SSL * authentication while sending requests to the integration endpoint.

See * Also:

AWS * API Reference

*/ class GetClientCertificateResult { public: AWS_APIGATEWAY_API GetClientCertificateResult(); AWS_APIGATEWAY_API GetClientCertificateResult(const Aws::AmazonWebServiceResult& result); AWS_APIGATEWAY_API GetClientCertificateResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The identifier of the client certificate.

*/ inline const Aws::String& GetClientCertificateId() const{ return m_clientCertificateId; } /** *

The identifier of the client certificate.

*/ inline void SetClientCertificateId(const Aws::String& value) { m_clientCertificateId = value; } /** *

The identifier of the client certificate.

*/ inline void SetClientCertificateId(Aws::String&& value) { m_clientCertificateId = std::move(value); } /** *

The identifier of the client certificate.

*/ inline void SetClientCertificateId(const char* value) { m_clientCertificateId.assign(value); } /** *

The identifier of the client certificate.

*/ inline GetClientCertificateResult& WithClientCertificateId(const Aws::String& value) { SetClientCertificateId(value); return *this;} /** *

The identifier of the client certificate.

*/ inline GetClientCertificateResult& WithClientCertificateId(Aws::String&& value) { SetClientCertificateId(std::move(value)); return *this;} /** *

The identifier of the client certificate.

*/ inline GetClientCertificateResult& WithClientCertificateId(const char* value) { SetClientCertificateId(value); return *this;} /** *

The description of the client certificate.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

The description of the client certificate.

*/ inline void SetDescription(const Aws::String& value) { m_description = value; } /** *

The description of the client certificate.

*/ inline void SetDescription(Aws::String&& value) { m_description = std::move(value); } /** *

The description of the client certificate.

*/ inline void SetDescription(const char* value) { m_description.assign(value); } /** *

The description of the client certificate.

*/ inline GetClientCertificateResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

The description of the client certificate.

*/ inline GetClientCertificateResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

The description of the client certificate.

*/ inline GetClientCertificateResult& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

The PEM-encoded public key of the client certificate, which can be used to * configure certificate authentication in the integration endpoint .

*/ inline const Aws::String& GetPemEncodedCertificate() const{ return m_pemEncodedCertificate; } /** *

The PEM-encoded public key of the client certificate, which can be used to * configure certificate authentication in the integration endpoint .

*/ inline void SetPemEncodedCertificate(const Aws::String& value) { m_pemEncodedCertificate = value; } /** *

The PEM-encoded public key of the client certificate, which can be used to * configure certificate authentication in the integration endpoint .

*/ inline void SetPemEncodedCertificate(Aws::String&& value) { m_pemEncodedCertificate = std::move(value); } /** *

The PEM-encoded public key of the client certificate, which can be used to * configure certificate authentication in the integration endpoint .

*/ inline void SetPemEncodedCertificate(const char* value) { m_pemEncodedCertificate.assign(value); } /** *

The PEM-encoded public key of the client certificate, which can be used to * configure certificate authentication in the integration endpoint .

*/ inline GetClientCertificateResult& WithPemEncodedCertificate(const Aws::String& value) { SetPemEncodedCertificate(value); return *this;} /** *

The PEM-encoded public key of the client certificate, which can be used to * configure certificate authentication in the integration endpoint .

*/ inline GetClientCertificateResult& WithPemEncodedCertificate(Aws::String&& value) { SetPemEncodedCertificate(std::move(value)); return *this;} /** *

The PEM-encoded public key of the client certificate, which can be used to * configure certificate authentication in the integration endpoint .

*/ inline GetClientCertificateResult& WithPemEncodedCertificate(const char* value) { SetPemEncodedCertificate(value); return *this;} /** *

The timestamp when the client certificate was created.

*/ inline const Aws::Utils::DateTime& GetCreatedDate() const{ return m_createdDate; } /** *

The timestamp when the client certificate was created.

*/ inline void SetCreatedDate(const Aws::Utils::DateTime& value) { m_createdDate = value; } /** *

The timestamp when the client certificate was created.

*/ inline void SetCreatedDate(Aws::Utils::DateTime&& value) { m_createdDate = std::move(value); } /** *

The timestamp when the client certificate was created.

*/ inline GetClientCertificateResult& WithCreatedDate(const Aws::Utils::DateTime& value) { SetCreatedDate(value); return *this;} /** *

The timestamp when the client certificate was created.

*/ inline GetClientCertificateResult& WithCreatedDate(Aws::Utils::DateTime&& value) { SetCreatedDate(std::move(value)); return *this;} /** *

The timestamp when the client certificate will expire.

*/ inline const Aws::Utils::DateTime& GetExpirationDate() const{ return m_expirationDate; } /** *

The timestamp when the client certificate will expire.

*/ inline void SetExpirationDate(const Aws::Utils::DateTime& value) { m_expirationDate = value; } /** *

The timestamp when the client certificate will expire.

*/ inline void SetExpirationDate(Aws::Utils::DateTime&& value) { m_expirationDate = std::move(value); } /** *

The timestamp when the client certificate will expire.

*/ inline GetClientCertificateResult& WithExpirationDate(const Aws::Utils::DateTime& value) { SetExpirationDate(value); return *this;} /** *

The timestamp when the client certificate will expire.

*/ inline GetClientCertificateResult& WithExpirationDate(Aws::Utils::DateTime&& value) { SetExpirationDate(std::move(value)); return *this;} /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline const Aws::Map& GetTags() const{ return m_tags; } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline void SetTags(const Aws::Map& value) { m_tags = value; } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline void SetTags(Aws::Map&& value) { m_tags = std::move(value); } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline GetClientCertificateResult& WithTags(const Aws::Map& value) { SetTags(value); return *this;} /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline GetClientCertificateResult& WithTags(Aws::Map&& value) { SetTags(std::move(value)); return *this;} /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline GetClientCertificateResult& AddTags(const Aws::String& key, const Aws::String& value) { m_tags.emplace(key, value); return *this; } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline GetClientCertificateResult& AddTags(Aws::String&& key, const Aws::String& value) { m_tags.emplace(std::move(key), value); return *this; } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline GetClientCertificateResult& AddTags(const Aws::String& key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline GetClientCertificateResult& AddTags(Aws::String&& key, Aws::String&& value) { m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline GetClientCertificateResult& AddTags(const char* key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline GetClientCertificateResult& AddTags(Aws::String&& key, const char* value) { m_tags.emplace(std::move(key), value); return *this; } /** *

The collection of tags. Each tag element is associated with a given * resource.

*/ inline GetClientCertificateResult& AddTags(const char* key, const char* value) { m_tags.emplace(key, value); return *this; } inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetClientCertificateResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetClientCertificateResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetClientCertificateResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_clientCertificateId; Aws::String m_description; Aws::String m_pemEncodedCertificate; Aws::Utils::DateTime m_createdDate; Aws::Utils::DateTime m_expirationDate; Aws::Map m_tags; Aws::String m_requestId; }; } // namespace Model } // namespace APIGateway } // namespace Aws