This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-acm/include/aws/acm/model/RequestCertificateResult.h

99 lines
3.2 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/acm/ACM_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 ACM
{
namespace Model
{
class AWS_ACM_API RequestCertificateResult
{
public:
RequestCertificateResult();
RequestCertificateResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
RequestCertificateResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>String that contains the ARN of the issued certificate. This must be of the
* form:</p> <p>
* <code>arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
* </p>
*/
inline const Aws::String& GetCertificateArn() const{ return m_certificateArn; }
/**
* <p>String that contains the ARN of the issued certificate. This must be of the
* form:</p> <p>
* <code>arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
* </p>
*/
inline void SetCertificateArn(const Aws::String& value) { m_certificateArn = value; }
/**
* <p>String that contains the ARN of the issued certificate. This must be of the
* form:</p> <p>
* <code>arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
* </p>
*/
inline void SetCertificateArn(Aws::String&& value) { m_certificateArn = std::move(value); }
/**
* <p>String that contains the ARN of the issued certificate. This must be of the
* form:</p> <p>
* <code>arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
* </p>
*/
inline void SetCertificateArn(const char* value) { m_certificateArn.assign(value); }
/**
* <p>String that contains the ARN of the issued certificate. This must be of the
* form:</p> <p>
* <code>arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
* </p>
*/
inline RequestCertificateResult& WithCertificateArn(const Aws::String& value) { SetCertificateArn(value); return *this;}
/**
* <p>String that contains the ARN of the issued certificate. This must be of the
* form:</p> <p>
* <code>arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
* </p>
*/
inline RequestCertificateResult& WithCertificateArn(Aws::String&& value) { SetCertificateArn(std::move(value)); return *this;}
/**
* <p>String that contains the ARN of the issued certificate. This must be of the
* form:</p> <p>
* <code>arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
* </p>
*/
inline RequestCertificateResult& WithCertificateArn(const char* value) { SetCertificateArn(value); return *this;}
private:
Aws::String m_certificateArn;
};
} // namespace Model
} // namespace ACM
} // namespace Aws