/** * 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 AWS_IOT_API CreateKeysAndCertificateResult { public: CreateKeysAndCertificateResult(); CreateKeysAndCertificateResult(const Aws::AmazonWebServiceResult& result); 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. AWS IoT issues a default subject name for the * certificate (for example, AWS IoT Certificate).

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

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

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

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

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

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

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

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

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

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

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

The ID of the certificate. AWS IoT issues a default subject name for the * certificate (for example, AWS 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;} private: Aws::String m_certificateArn; Aws::String m_certificateId; Aws::String m_certificatePem; KeyPair m_keyPair; }; } // namespace Model } // namespace IoT } // namespace Aws