/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The output of the DescribeCertificate operation.See Also:
* AWS
* API Reference
The description of the certificate.
*/ inline const CertificateDescription& GetCertificateDescription() const{ return m_certificateDescription; } /** *The description of the certificate.
*/ inline void SetCertificateDescription(const CertificateDescription& value) { m_certificateDescription = value; } /** *The description of the certificate.
*/ inline void SetCertificateDescription(CertificateDescription&& value) { m_certificateDescription = std::move(value); } /** *The description of the certificate.
*/ inline DescribeCertificateResult& WithCertificateDescription(const CertificateDescription& value) { SetCertificateDescription(value); return *this;} /** *The description of the certificate.
*/ inline DescribeCertificateResult& WithCertificateDescription(CertificateDescription&& value) { SetCertificateDescription(std::move(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 DescribeCertificateResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeCertificateResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeCertificateResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: CertificateDescription m_certificateDescription; Aws::String m_requestId; }; } // namespace Model } // namespace IoT } // namespace Aws