/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace IoT { namespace Model { /** *

The output of the CreateKeysAndCertificate operation.

See * Also:

AWS * API Reference

*/ class CreateKeysAndCertificateResult { public: AWS_IOT_API CreateKeysAndCertificateResult(); AWS_IOT_API CreateKeysAndCertificateResult(const Aws::AmazonWebServiceResult& result); AWS_IOT_API CreateKeysAndCertificateResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ARN of the certificate.

*/ inline const Aws::String& GetCertificateArn() const{ return m_certificateArn; } /** *

The ARN of the certificate.

*/ inline void SetCertificateArn(const Aws::String& value) { m_certificateArn = value; } /** *

The ARN of the certificate.

*/ inline void SetCertificateArn(Aws::String&& value) { m_certificateArn = std::move(value); } /** *

The ARN of the certificate.

*/ inline void SetCertificateArn(const char* value) { m_certificateArn.assign(value); } /** *

The ARN of the certificate.

*/ inline CreateKeysAndCertificateResult& WithCertificateArn(const Aws::String& value) { SetCertificateArn(value); return *this;} /** *

The ARN of the certificate.

*/ inline CreateKeysAndCertificateResult& WithCertificateArn(Aws::String&& value) { SetCertificateArn(std::move(value)); return *this;} /** *

The ARN of the certificate.

*/ inline CreateKeysAndCertificateResult& WithCertificateArn(const char* value) { SetCertificateArn(value); return *this;} /** *

The ID of the certificate. IoT issues a default subject name for the * certificate (for example, IoT Certificate).

*/ inline const Aws::String& GetCertificateId() const{ return m_certificateId; } /** *

The ID of the certificate. IoT issues a default subject name for the * certificate (for example, IoT Certificate).

*/ inline void SetCertificateId(const Aws::String& value) { m_certificateId = value; } /** *

The ID of the certificate. IoT issues a default subject name for the * certificate (for example, IoT Certificate).

*/ inline void SetCertificateId(Aws::String&& value) { m_certificateId = std::move(value); } /** *

The ID of the certificate. IoT issues a default subject name for the * certificate (for example, IoT Certificate).

*/ inline void SetCertificateId(const char* value) { m_certificateId.assign(value); } /** *

The ID of the certificate. IoT issues a default subject name for the * certificate (for example, IoT Certificate).

*/ inline CreateKeysAndCertificateResult& WithCertificateId(const Aws::String& value) { SetCertificateId(value); return *this;} /** *

The ID of the certificate. IoT issues a default subject name for the * certificate (for example, IoT Certificate).

*/ inline CreateKeysAndCertificateResult& WithCertificateId(Aws::String&& value) { SetCertificateId(std::move(value)); return *this;} /** *

The ID of the certificate. IoT issues a default subject name for the * certificate (for example, IoT Certificate).

*/ inline CreateKeysAndCertificateResult& WithCertificateId(const char* value) { SetCertificateId(value); return *this;} /** *

The certificate data, in PEM format.

*/ inline const Aws::String& GetCertificatePem() const{ return m_certificatePem; } /** *

The certificate data, in PEM format.

*/ inline void SetCertificatePem(const Aws::String& value) { m_certificatePem = value; } /** *

The certificate data, in PEM format.

*/ inline void SetCertificatePem(Aws::String&& value) { m_certificatePem = std::move(value); } /** *

The certificate data, in PEM format.

*/ inline void SetCertificatePem(const char* value) { m_certificatePem.assign(value); } /** *

The certificate data, in PEM format.

*/ inline CreateKeysAndCertificateResult& WithCertificatePem(const Aws::String& value) { SetCertificatePem(value); return *this;} /** *

The certificate data, in PEM format.

*/ inline CreateKeysAndCertificateResult& WithCertificatePem(Aws::String&& value) { SetCertificatePem(std::move(value)); return *this;} /** *

The certificate data, in PEM format.

*/ inline CreateKeysAndCertificateResult& WithCertificatePem(const char* value) { SetCertificatePem(value); return *this;} /** *

The generated key pair.

*/ inline const KeyPair& GetKeyPair() const{ return m_keyPair; } /** *

The generated key pair.

*/ inline void SetKeyPair(const KeyPair& value) { m_keyPair = value; } /** *

The generated key pair.

*/ inline void SetKeyPair(KeyPair&& value) { m_keyPair = std::move(value); } /** *

The generated key pair.

*/ inline CreateKeysAndCertificateResult& WithKeyPair(const KeyPair& value) { SetKeyPair(value); return *this;} /** *

The generated key pair.

*/ inline CreateKeysAndCertificateResult& WithKeyPair(KeyPair&& value) { SetKeyPair(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 CreateKeysAndCertificateResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateKeysAndCertificateResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateKeysAndCertificateResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_certificateArn; Aws::String m_certificateId; Aws::String m_certificatePem; KeyPair m_keyPair; Aws::String m_requestId; }; } // namespace Model } // namespace IoT } // namespace Aws