/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The output from the RegisterCertificate operation.See Also:
* AWS
* API Reference
The certificate ARN.
*/ inline const Aws::String& GetCertificateArn() const{ return m_certificateArn; } /** *The certificate ARN.
*/ inline void SetCertificateArn(const Aws::String& value) { m_certificateArn = value; } /** *The certificate ARN.
*/ inline void SetCertificateArn(Aws::String&& value) { m_certificateArn = std::move(value); } /** *The certificate ARN.
*/ inline void SetCertificateArn(const char* value) { m_certificateArn.assign(value); } /** *The certificate ARN.
*/ inline RegisterCertificateResult& WithCertificateArn(const Aws::String& value) { SetCertificateArn(value); return *this;} /** *The certificate ARN.
*/ inline RegisterCertificateResult& WithCertificateArn(Aws::String&& value) { SetCertificateArn(std::move(value)); return *this;} /** *The certificate ARN.
*/ inline RegisterCertificateResult& WithCertificateArn(const char* value) { SetCertificateArn(value); return *this;} /** *The certificate identifier.
*/ inline const Aws::String& GetCertificateId() const{ return m_certificateId; } /** *The certificate identifier.
*/ inline void SetCertificateId(const Aws::String& value) { m_certificateId = value; } /** *The certificate identifier.
*/ inline void SetCertificateId(Aws::String&& value) { m_certificateId = std::move(value); } /** *The certificate identifier.
*/ inline void SetCertificateId(const char* value) { m_certificateId.assign(value); } /** *The certificate identifier.
*/ inline RegisterCertificateResult& WithCertificateId(const Aws::String& value) { SetCertificateId(value); return *this;} /** *The certificate identifier.
*/ inline RegisterCertificateResult& WithCertificateId(Aws::String&& value) { SetCertificateId(std::move(value)); return *this;} /** *The certificate identifier.
*/ inline RegisterCertificateResult& WithCertificateId(const char* value) { SetCertificateId(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 RegisterCertificateResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline RegisterCertificateResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline RegisterCertificateResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_certificateArn; Aws::String m_certificateId; Aws::String m_requestId; }; } // namespace Model } // namespace IoT } // namespace Aws