/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/acm-pca/ACMPCA_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { template<typename RESULT_TYPE> class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ACMPCA { namespace Model { class IssueCertificateResult { public: AWS_ACMPCA_API IssueCertificateResult(); AWS_ACMPCA_API IssueCertificateResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); AWS_ACMPCA_API IssueCertificateResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); /** * <p>The Amazon Resource Name (ARN) of the issued certificate and the certificate * serial number. This is of the form:</p> <p> * <code>arn:aws:acm-pca:<i>region</i>:<i>account</i>:certificate-authority/<i>12345678-1234-1234-1234-123456789012</i>/certificate/<i>286535153982981100925020015808220737245</i> * </code> </p> */ inline const Aws::String& GetCertificateArn() const{ return m_certificateArn; } /** * <p>The Amazon Resource Name (ARN) of the issued certificate and the certificate * serial number. This is of the form:</p> <p> * <code>arn:aws:acm-pca:<i>region</i>:<i>account</i>:certificate-authority/<i>12345678-1234-1234-1234-123456789012</i>/certificate/<i>286535153982981100925020015808220737245</i> * </code> </p> */ inline void SetCertificateArn(const Aws::String& value) { m_certificateArn = value; } /** * <p>The Amazon Resource Name (ARN) of the issued certificate and the certificate * serial number. This is of the form:</p> <p> * <code>arn:aws:acm-pca:<i>region</i>:<i>account</i>:certificate-authority/<i>12345678-1234-1234-1234-123456789012</i>/certificate/<i>286535153982981100925020015808220737245</i> * </code> </p> */ inline void SetCertificateArn(Aws::String&& value) { m_certificateArn = std::move(value); } /** * <p>The Amazon Resource Name (ARN) of the issued certificate and the certificate * serial number. This is of the form:</p> <p> * <code>arn:aws:acm-pca:<i>region</i>:<i>account</i>:certificate-authority/<i>12345678-1234-1234-1234-123456789012</i>/certificate/<i>286535153982981100925020015808220737245</i> * </code> </p> */ inline void SetCertificateArn(const char* value) { m_certificateArn.assign(value); } /** * <p>The Amazon Resource Name (ARN) of the issued certificate and the certificate * serial number. This is of the form:</p> <p> * <code>arn:aws:acm-pca:<i>region</i>:<i>account</i>:certificate-authority/<i>12345678-1234-1234-1234-123456789012</i>/certificate/<i>286535153982981100925020015808220737245</i> * </code> </p> */ inline IssueCertificateResult& WithCertificateArn(const Aws::String& value) { SetCertificateArn(value); return *this;} /** * <p>The Amazon Resource Name (ARN) of the issued certificate and the certificate * serial number. This is of the form:</p> <p> * <code>arn:aws:acm-pca:<i>region</i>:<i>account</i>:certificate-authority/<i>12345678-1234-1234-1234-123456789012</i>/certificate/<i>286535153982981100925020015808220737245</i> * </code> </p> */ inline IssueCertificateResult& WithCertificateArn(Aws::String&& value) { SetCertificateArn(std::move(value)); return *this;} /** * <p>The Amazon Resource Name (ARN) of the issued certificate and the certificate * serial number. This is of the form:</p> <p> * <code>arn:aws:acm-pca:<i>region</i>:<i>account</i>:certificate-authority/<i>12345678-1234-1234-1234-123456789012</i>/certificate/<i>286535153982981100925020015808220737245</i> * </code> </p> */ inline IssueCertificateResult& WithCertificateArn(const char* value) { SetCertificateArn(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 IssueCertificateResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline IssueCertificateResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline IssueCertificateResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_certificateArn; Aws::String m_requestId; }; } // namespace Model } // namespace ACMPCA } // namespace Aws