74 lines
2.1 KiB
C++
74 lines
2.1 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/iot/IoT_EXPORTS.h>
|
|
#include <aws/iot/model/CertificateDescription.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace IoT
|
|
{
|
|
namespace Model
|
|
{
|
|
/**
|
|
* <p>The output of the DescribeCertificate operation.</p><p><h3>See Also:</h3>
|
|
* <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/iot-2015-05-28/DescribeCertificateResponse">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_IOT_API DescribeCertificateResult
|
|
{
|
|
public:
|
|
DescribeCertificateResult();
|
|
DescribeCertificateResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
DescribeCertificateResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The description of the certificate.</p>
|
|
*/
|
|
inline const CertificateDescription& GetCertificateDescription() const{ return m_certificateDescription; }
|
|
|
|
/**
|
|
* <p>The description of the certificate.</p>
|
|
*/
|
|
inline void SetCertificateDescription(const CertificateDescription& value) { m_certificateDescription = value; }
|
|
|
|
/**
|
|
* <p>The description of the certificate.</p>
|
|
*/
|
|
inline void SetCertificateDescription(CertificateDescription&& value) { m_certificateDescription = std::move(value); }
|
|
|
|
/**
|
|
* <p>The description of the certificate.</p>
|
|
*/
|
|
inline DescribeCertificateResult& WithCertificateDescription(const CertificateDescription& value) { SetCertificateDescription(value); return *this;}
|
|
|
|
/**
|
|
* <p>The description of the certificate.</p>
|
|
*/
|
|
inline DescribeCertificateResult& WithCertificateDescription(CertificateDescription&& value) { SetCertificateDescription(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
CertificateDescription m_certificateDescription;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace IoT
|
|
} // namespace Aws
|