This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-iot/include/aws/iot/model/CreateCertificateFromCsrResult.h

174 lines
5.7 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/core/utils/memory/stl/AWSString.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 from the CreateCertificateFromCsr operation.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/iot-2015-05-28/CreateCertificateFromCsrResponse">AWS
* API Reference</a></p>
*/
class AWS_IOT_API CreateCertificateFromCsrResult
{
public:
CreateCertificateFromCsrResult();
CreateCertificateFromCsrResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateCertificateFromCsrResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The Amazon Resource Name (ARN) of the certificate. You can use the ARN as a
* principal for policy operations.</p>
*/
inline const Aws::String& GetCertificateArn() const{ return m_certificateArn; }
/**
* <p>The Amazon Resource Name (ARN) of the certificate. You can use the ARN as a
* principal for policy operations.</p>
*/
inline void SetCertificateArn(const Aws::String& value) { m_certificateArn = value; }
/**
* <p>The Amazon Resource Name (ARN) of the certificate. You can use the ARN as a
* principal for policy operations.</p>
*/
inline void SetCertificateArn(Aws::String&& value) { m_certificateArn = std::move(value); }
/**
* <p>The Amazon Resource Name (ARN) of the certificate. You can use the ARN as a
* principal for policy operations.</p>
*/
inline void SetCertificateArn(const char* value) { m_certificateArn.assign(value); }
/**
* <p>The Amazon Resource Name (ARN) of the certificate. You can use the ARN as a
* principal for policy operations.</p>
*/
inline CreateCertificateFromCsrResult& WithCertificateArn(const Aws::String& value) { SetCertificateArn(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the certificate. You can use the ARN as a
* principal for policy operations.</p>
*/
inline CreateCertificateFromCsrResult& WithCertificateArn(Aws::String&& value) { SetCertificateArn(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the certificate. You can use the ARN as a
* principal for policy operations.</p>
*/
inline CreateCertificateFromCsrResult& WithCertificateArn(const char* value) { SetCertificateArn(value); return *this;}
/**
* <p>The ID of the certificate. Certificate management operations only take a
* certificateId.</p>
*/
inline const Aws::String& GetCertificateId() const{ return m_certificateId; }
/**
* <p>The ID of the certificate. Certificate management operations only take a
* certificateId.</p>
*/
inline void SetCertificateId(const Aws::String& value) { m_certificateId = value; }
/**
* <p>The ID of the certificate. Certificate management operations only take a
* certificateId.</p>
*/
inline void SetCertificateId(Aws::String&& value) { m_certificateId = std::move(value); }
/**
* <p>The ID of the certificate. Certificate management operations only take a
* certificateId.</p>
*/
inline void SetCertificateId(const char* value) { m_certificateId.assign(value); }
/**
* <p>The ID of the certificate. Certificate management operations only take a
* certificateId.</p>
*/
inline CreateCertificateFromCsrResult& WithCertificateId(const Aws::String& value) { SetCertificateId(value); return *this;}
/**
* <p>The ID of the certificate. Certificate management operations only take a
* certificateId.</p>
*/
inline CreateCertificateFromCsrResult& WithCertificateId(Aws::String&& value) { SetCertificateId(std::move(value)); return *this;}
/**
* <p>The ID of the certificate. Certificate management operations only take a
* certificateId.</p>
*/
inline CreateCertificateFromCsrResult& WithCertificateId(const char* value) { SetCertificateId(value); return *this;}
/**
* <p>The certificate data, in PEM format.</p>
*/
inline const Aws::String& GetCertificatePem() const{ return m_certificatePem; }
/**
* <p>The certificate data, in PEM format.</p>
*/
inline void SetCertificatePem(const Aws::String& value) { m_certificatePem = value; }
/**
* <p>The certificate data, in PEM format.</p>
*/
inline void SetCertificatePem(Aws::String&& value) { m_certificatePem = std::move(value); }
/**
* <p>The certificate data, in PEM format.</p>
*/
inline void SetCertificatePem(const char* value) { m_certificatePem.assign(value); }
/**
* <p>The certificate data, in PEM format.</p>
*/
inline CreateCertificateFromCsrResult& WithCertificatePem(const Aws::String& value) { SetCertificatePem(value); return *this;}
/**
* <p>The certificate data, in PEM format.</p>
*/
inline CreateCertificateFromCsrResult& WithCertificatePem(Aws::String&& value) { SetCertificatePem(std::move(value)); return *this;}
/**
* <p>The certificate data, in PEM format.</p>
*/
inline CreateCertificateFromCsrResult& WithCertificatePem(const char* value) { SetCertificatePem(value); return *this;}
private:
Aws::String m_certificateArn;
Aws::String m_certificateId;
Aws::String m_certificatePem;
};
} // namespace Model
} // namespace IoT
} // namespace Aws