/** * 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 ACMPCA { namespace Model { class AWS_ACMPCA_API IssueCertificateResult { public: IssueCertificateResult(); IssueCertificateResult(const Aws::AmazonWebServiceResult& result); IssueCertificateResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the issued certificate and the certificate * serial number. This is of the form:

* arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012/certificate/286535153982981100925020015808220737245 *

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

The Amazon Resource Name (ARN) of the issued certificate and the certificate * serial number. This is of the form:

* arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012/certificate/286535153982981100925020015808220737245 *

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

The Amazon Resource Name (ARN) of the issued certificate and the certificate * serial number. This is of the form:

* arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012/certificate/286535153982981100925020015808220737245 *

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

The Amazon Resource Name (ARN) of the issued certificate and the certificate * serial number. This is of the form:

* arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012/certificate/286535153982981100925020015808220737245 *

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

The Amazon Resource Name (ARN) of the issued certificate and the certificate * serial number. This is of the form:

* arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012/certificate/286535153982981100925020015808220737245 *

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

The Amazon Resource Name (ARN) of the issued certificate and the certificate * serial number. This is of the form:

* arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012/certificate/286535153982981100925020015808220737245 *

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

The Amazon Resource Name (ARN) of the issued certificate and the certificate * serial number. This is of the form:

* arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012/certificate/286535153982981100925020015808220737245 *

*/ inline IssueCertificateResult& WithCertificateArn(const char* value) { SetCertificateArn(value); return *this;} private: Aws::String m_certificateArn; }; } // namespace Model } // namespace ACMPCA } // namespace Aws