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/CreateKeysAndCertificateResult.h

196 lines
6.1 KiB
C
Raw Normal View History

/**
* 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 <aws/iot/model/KeyPair.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 CreateKeysAndCertificate operation.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/iot-2015-05-28/CreateKeysAndCertificateResponse">AWS
* API Reference</a></p>
*/
class AWS_IOT_API CreateKeysAndCertificateResult
{
public:
CreateKeysAndCertificateResult();
CreateKeysAndCertificateResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateKeysAndCertificateResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The ARN of the certificate.</p>
*/
inline const Aws::String& GetCertificateArn() const{ return m_certificateArn; }
/**
* <p>The ARN of the certificate.</p>
*/
inline void SetCertificateArn(const Aws::String& value) { m_certificateArn = value; }
/**
* <p>The ARN of the certificate.</p>
*/
inline void SetCertificateArn(Aws::String&& value) { m_certificateArn = std::move(value); }
/**
* <p>The ARN of the certificate.</p>
*/
inline void SetCertificateArn(const char* value) { m_certificateArn.assign(value); }
/**
* <p>The ARN of the certificate.</p>
*/
inline CreateKeysAndCertificateResult& WithCertificateArn(const Aws::String& value) { SetCertificateArn(value); return *this;}
/**
* <p>The ARN of the certificate.</p>
*/
inline CreateKeysAndCertificateResult& WithCertificateArn(Aws::String&& value) { SetCertificateArn(std::move(value)); return *this;}
/**
* <p>The ARN of the certificate.</p>
*/
inline CreateKeysAndCertificateResult& WithCertificateArn(const char* value) { SetCertificateArn(value); return *this;}
/**
* <p>The ID of the certificate. AWS IoT issues a default subject name for the
* certificate (for example, AWS IoT Certificate).</p>
*/
inline const Aws::String& GetCertificateId() const{ return m_certificateId; }
/**
* <p>The ID of the certificate. AWS IoT issues a default subject name for the
* certificate (for example, AWS IoT Certificate).</p>
*/
inline void SetCertificateId(const Aws::String& value) { m_certificateId = value; }
/**
* <p>The ID of the certificate. AWS IoT issues a default subject name for the
* certificate (for example, AWS IoT Certificate).</p>
*/
inline void SetCertificateId(Aws::String&& value) { m_certificateId = std::move(value); }
/**
* <p>The ID of the certificate. AWS IoT issues a default subject name for the
* certificate (for example, AWS IoT Certificate).</p>
*/
inline void SetCertificateId(const char* value) { m_certificateId.assign(value); }
/**
* <p>The ID of the certificate. AWS IoT issues a default subject name for the
* certificate (for example, AWS IoT Certificate).</p>
*/
inline CreateKeysAndCertificateResult& WithCertificateId(const Aws::String& value) { SetCertificateId(value); return *this;}
/**
* <p>The ID of the certificate. AWS IoT issues a default subject name for the
* certificate (for example, AWS IoT Certificate).</p>
*/
inline CreateKeysAndCertificateResult& WithCertificateId(Aws::String&& value) { SetCertificateId(std::move(value)); return *this;}
/**
* <p>The ID of the certificate. AWS IoT issues a default subject name for the
* certificate (for example, AWS IoT Certificate).</p>
*/
inline CreateKeysAndCertificateResult& 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 CreateKeysAndCertificateResult& WithCertificatePem(const Aws::String& value) { SetCertificatePem(value); return *this;}
/**
* <p>The certificate data, in PEM format.</p>
*/
inline CreateKeysAndCertificateResult& WithCertificatePem(Aws::String&& value) { SetCertificatePem(std::move(value)); return *this;}
/**
* <p>The certificate data, in PEM format.</p>
*/
inline CreateKeysAndCertificateResult& WithCertificatePem(const char* value) { SetCertificatePem(value); return *this;}
/**
* <p>The generated key pair.</p>
*/
inline const KeyPair& GetKeyPair() const{ return m_keyPair; }
/**
* <p>The generated key pair.</p>
*/
inline void SetKeyPair(const KeyPair& value) { m_keyPair = value; }
/**
* <p>The generated key pair.</p>
*/
inline void SetKeyPair(KeyPair&& value) { m_keyPair = std::move(value); }
/**
* <p>The generated key pair.</p>
*/
inline CreateKeysAndCertificateResult& WithKeyPair(const KeyPair& value) { SetKeyPair(value); return *this;}
/**
* <p>The generated key pair.</p>
*/
inline CreateKeysAndCertificateResult& WithKeyPair(KeyPair&& value) { SetKeyPair(std::move(value)); return *this;}
private:
Aws::String m_certificateArn;
Aws::String m_certificateId;
Aws::String m_certificatePem;
KeyPair m_keyPair;
};
} // namespace Model
} // namespace IoT
} // namespace Aws