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

The output from the TransferCertificate operation.

See Also:

* AWS * API Reference

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

The ARN of the certificate.

*/ inline const Aws::String& GetTransferredCertificateArn() const{ return m_transferredCertificateArn; } /** *

The ARN of the certificate.

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

The ARN of the certificate.

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

The ARN of the certificate.

*/ inline void SetTransferredCertificateArn(const char* value) { m_transferredCertificateArn.assign(value); } /** *

The ARN of the certificate.

*/ inline TransferCertificateResult& WithTransferredCertificateArn(const Aws::String& value) { SetTransferredCertificateArn(value); return *this;} /** *

The ARN of the certificate.

*/ inline TransferCertificateResult& WithTransferredCertificateArn(Aws::String&& value) { SetTransferredCertificateArn(std::move(value)); return *this;} /** *

The ARN of the certificate.

*/ inline TransferCertificateResult& WithTransferredCertificateArn(const char* value) { SetTransferredCertificateArn(value); return *this;} private: Aws::String m_transferredCertificateArn; }; } // namespace Model } // namespace IoT } // namespace Aws