/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The output from the TransferCertificate operation.See Also:
* AWS
* API Reference
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