/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents a client certificate used to configure client-side SSL
* authentication while sending requests to the integration endpoint.See
* Also:
AWS
* API Reference
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 UpdateClientCertificateResult& WithClientCertificateId(const Aws::String& value) { SetClientCertificateId(value); return *this;} /** *The identifier of the client certificate.
*/ inline UpdateClientCertificateResult& WithClientCertificateId(Aws::String&& value) { SetClientCertificateId(std::move(value)); return *this;} /** *The identifier of the client certificate.
*/ inline UpdateClientCertificateResult& 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 UpdateClientCertificateResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *The description of the client certificate.
*/ inline UpdateClientCertificateResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *The description of the client certificate.
*/ inline UpdateClientCertificateResult& 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 UpdateClientCertificateResult& 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 UpdateClientCertificateResult& 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 UpdateClientCertificateResult& 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 UpdateClientCertificateResult& WithCreatedDate(const Aws::Utils::DateTime& value) { SetCreatedDate(value); return *this;} /** *The timestamp when the client certificate was created.
*/ inline UpdateClientCertificateResult& 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 UpdateClientCertificateResult& WithExpirationDate(const Aws::Utils::DateTime& value) { SetExpirationDate(value); return *this;} /** *The timestamp when the client certificate will expire.
*/ inline UpdateClientCertificateResult& 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::MapThe collection of tags. Each tag element is associated with a given * resource.
*/ inline void SetTags(const Aws::MapThe collection of tags. Each tag element is associated with a given * resource.
*/ inline void SetTags(Aws::MapThe collection of tags. Each tag element is associated with a given * resource.
*/ inline UpdateClientCertificateResult& WithTags(const Aws::MapThe collection of tags. Each tag element is associated with a given * resource.
*/ inline UpdateClientCertificateResult& WithTags(Aws::MapThe collection of tags. Each tag element is associated with a given * resource.
*/ inline UpdateClientCertificateResult& 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 UpdateClientCertificateResult& 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 UpdateClientCertificateResult& 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 UpdateClientCertificateResult& 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 UpdateClientCertificateResult& 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 UpdateClientCertificateResult& 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 UpdateClientCertificateResult& 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 UpdateClientCertificateResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateClientCertificateResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateClientCertificateResult& 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