/**
* 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;} private: CertificateDescription m_certificateDescription; }; } // namespace Model } // namespace IoT } // namespace Aws