/**
* 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; } inline void SetClientCertificateId(const Aws::String& value) { m_clientCertificateId = value; } inline void SetClientCertificateId(Aws::String&& value) { m_clientCertificateId = std::move(value); } inline void SetClientCertificateId(const char* value) { m_clientCertificateId.assign(value); } inline GenerateClientCertificateResult& WithClientCertificateId(const Aws::String& value) { SetClientCertificateId(value); return *this;} inline GenerateClientCertificateResult& WithClientCertificateId(Aws::String&& value) { SetClientCertificateId(std::move(value)); return *this;} inline GenerateClientCertificateResult& WithClientCertificateId(const char* value) { SetClientCertificateId(value); return *this;} ///@} ///@{ /** *The description of the client certificate.
*/ inline const Aws::String& GetDescription() const{ return m_description; } inline void SetDescription(const Aws::String& value) { m_description = value; } inline void SetDescription(Aws::String&& value) { m_description = std::move(value); } inline void SetDescription(const char* value) { m_description.assign(value); } inline GenerateClientCertificateResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} inline GenerateClientCertificateResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} inline GenerateClientCertificateResult& 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; } inline void SetPemEncodedCertificate(const Aws::String& value) { m_pemEncodedCertificate = value; } inline void SetPemEncodedCertificate(Aws::String&& value) { m_pemEncodedCertificate = std::move(value); } inline void SetPemEncodedCertificate(const char* value) { m_pemEncodedCertificate.assign(value); } inline GenerateClientCertificateResult& WithPemEncodedCertificate(const Aws::String& value) { SetPemEncodedCertificate(value); return *this;} inline GenerateClientCertificateResult& WithPemEncodedCertificate(Aws::String&& value) { SetPemEncodedCertificate(std::move(value)); return *this;} inline GenerateClientCertificateResult& 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; } inline void SetCreatedDate(const Aws::Utils::DateTime& value) { m_createdDate = value; } inline void SetCreatedDate(Aws::Utils::DateTime&& value) { m_createdDate = std::move(value); } inline GenerateClientCertificateResult& WithCreatedDate(const Aws::Utils::DateTime& value) { SetCreatedDate(value); return *this;} inline GenerateClientCertificateResult& 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; } inline void SetExpirationDate(const Aws::Utils::DateTime& value) { m_expirationDate = value; } inline void SetExpirationDate(Aws::Utils::DateTime&& value) { m_expirationDate = std::move(value); } inline GenerateClientCertificateResult& WithExpirationDate(const Aws::Utils::DateTime& value) { SetExpirationDate(value); return *this;} inline GenerateClientCertificateResult& 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