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/DomainValidationOption.h

207 lines
9.9 KiB
C
Raw Normal View History

/**
* 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
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace ACM
{
namespace Model
{
/**
* <p>Contains information about the domain names that you want ACM to use to send
* you emails that enable you to validate domain ownership.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/DomainValidationOption">AWS
* API Reference</a></p>
*/
class AWS_ACM_API DomainValidationOption
{
public:
DomainValidationOption();
DomainValidationOption(Aws::Utils::Json::JsonView jsonValue);
DomainValidationOption& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>A fully qualified domain name (FQDN) in the certificate request.</p>
*/
inline const Aws::String& GetDomainName() const{ return m_domainName; }
/**
* <p>A fully qualified domain name (FQDN) in the certificate request.</p>
*/
inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; }
/**
* <p>A fully qualified domain name (FQDN) in the certificate request.</p>
*/
inline void SetDomainName(const Aws::String& value) { m_domainNameHasBeenSet = true; m_domainName = value; }
/**
* <p>A fully qualified domain name (FQDN) in the certificate request.</p>
*/
inline void SetDomainName(Aws::String&& value) { m_domainNameHasBeenSet = true; m_domainName = std::move(value); }
/**
* <p>A fully qualified domain name (FQDN) in the certificate request.</p>
*/
inline void SetDomainName(const char* value) { m_domainNameHasBeenSet = true; m_domainName.assign(value); }
/**
* <p>A fully qualified domain name (FQDN) in the certificate request.</p>
*/
inline DomainValidationOption& WithDomainName(const Aws::String& value) { SetDomainName(value); return *this;}
/**
* <p>A fully qualified domain name (FQDN) in the certificate request.</p>
*/
inline DomainValidationOption& WithDomainName(Aws::String&& value) { SetDomainName(std::move(value)); return *this;}
/**
* <p>A fully qualified domain name (FQDN) in the certificate request.</p>
*/
inline DomainValidationOption& WithDomainName(const char* value) { SetDomainName(value); return *this;}
/**
* <p>The domain name that you want ACM to use to send you validation emails. This
* domain name is the suffix of the email addresses that you want ACM to use. This
* must be the same as the <code>DomainName</code> value or a superdomain of the
* <code>DomainName</code> value. For example, if you request a certificate for
* <code>testing.example.com</code>, you can specify <code>example.com</code> for
* this value. In that case, ACM sends domain validation emails to the following
* five addresses:</p> <ul> <li> <p>admin@example.com</p> </li> <li>
* <p>administrator@example.com</p> </li> <li> <p>hostmaster@example.com</p> </li>
* <li> <p>postmaster@example.com</p> </li> <li> <p>webmaster@example.com</p> </li>
* </ul>
*/
inline const Aws::String& GetValidationDomain() const{ return m_validationDomain; }
/**
* <p>The domain name that you want ACM to use to send you validation emails. This
* domain name is the suffix of the email addresses that you want ACM to use. This
* must be the same as the <code>DomainName</code> value or a superdomain of the
* <code>DomainName</code> value. For example, if you request a certificate for
* <code>testing.example.com</code>, you can specify <code>example.com</code> for
* this value. In that case, ACM sends domain validation emails to the following
* five addresses:</p> <ul> <li> <p>admin@example.com</p> </li> <li>
* <p>administrator@example.com</p> </li> <li> <p>hostmaster@example.com</p> </li>
* <li> <p>postmaster@example.com</p> </li> <li> <p>webmaster@example.com</p> </li>
* </ul>
*/
inline bool ValidationDomainHasBeenSet() const { return m_validationDomainHasBeenSet; }
/**
* <p>The domain name that you want ACM to use to send you validation emails. This
* domain name is the suffix of the email addresses that you want ACM to use. This
* must be the same as the <code>DomainName</code> value or a superdomain of the
* <code>DomainName</code> value. For example, if you request a certificate for
* <code>testing.example.com</code>, you can specify <code>example.com</code> for
* this value. In that case, ACM sends domain validation emails to the following
* five addresses:</p> <ul> <li> <p>admin@example.com</p> </li> <li>
* <p>administrator@example.com</p> </li> <li> <p>hostmaster@example.com</p> </li>
* <li> <p>postmaster@example.com</p> </li> <li> <p>webmaster@example.com</p> </li>
* </ul>
*/
inline void SetValidationDomain(const Aws::String& value) { m_validationDomainHasBeenSet = true; m_validationDomain = value; }
/**
* <p>The domain name that you want ACM to use to send you validation emails. This
* domain name is the suffix of the email addresses that you want ACM to use. This
* must be the same as the <code>DomainName</code> value or a superdomain of the
* <code>DomainName</code> value. For example, if you request a certificate for
* <code>testing.example.com</code>, you can specify <code>example.com</code> for
* this value. In that case, ACM sends domain validation emails to the following
* five addresses:</p> <ul> <li> <p>admin@example.com</p> </li> <li>
* <p>administrator@example.com</p> </li> <li> <p>hostmaster@example.com</p> </li>
* <li> <p>postmaster@example.com</p> </li> <li> <p>webmaster@example.com</p> </li>
* </ul>
*/
inline void SetValidationDomain(Aws::String&& value) { m_validationDomainHasBeenSet = true; m_validationDomain = std::move(value); }
/**
* <p>The domain name that you want ACM to use to send you validation emails. This
* domain name is the suffix of the email addresses that you want ACM to use. This
* must be the same as the <code>DomainName</code> value or a superdomain of the
* <code>DomainName</code> value. For example, if you request a certificate for
* <code>testing.example.com</code>, you can specify <code>example.com</code> for
* this value. In that case, ACM sends domain validation emails to the following
* five addresses:</p> <ul> <li> <p>admin@example.com</p> </li> <li>
* <p>administrator@example.com</p> </li> <li> <p>hostmaster@example.com</p> </li>
* <li> <p>postmaster@example.com</p> </li> <li> <p>webmaster@example.com</p> </li>
* </ul>
*/
inline void SetValidationDomain(const char* value) { m_validationDomainHasBeenSet = true; m_validationDomain.assign(value); }
/**
* <p>The domain name that you want ACM to use to send you validation emails. This
* domain name is the suffix of the email addresses that you want ACM to use. This
* must be the same as the <code>DomainName</code> value or a superdomain of the
* <code>DomainName</code> value. For example, if you request a certificate for
* <code>testing.example.com</code>, you can specify <code>example.com</code> for
* this value. In that case, ACM sends domain validation emails to the following
* five addresses:</p> <ul> <li> <p>admin@example.com</p> </li> <li>
* <p>administrator@example.com</p> </li> <li> <p>hostmaster@example.com</p> </li>
* <li> <p>postmaster@example.com</p> </li> <li> <p>webmaster@example.com</p> </li>
* </ul>
*/
inline DomainValidationOption& WithValidationDomain(const Aws::String& value) { SetValidationDomain(value); return *this;}
/**
* <p>The domain name that you want ACM to use to send you validation emails. This
* domain name is the suffix of the email addresses that you want ACM to use. This
* must be the same as the <code>DomainName</code> value or a superdomain of the
* <code>DomainName</code> value. For example, if you request a certificate for
* <code>testing.example.com</code>, you can specify <code>example.com</code> for
* this value. In that case, ACM sends domain validation emails to the following
* five addresses:</p> <ul> <li> <p>admin@example.com</p> </li> <li>
* <p>administrator@example.com</p> </li> <li> <p>hostmaster@example.com</p> </li>
* <li> <p>postmaster@example.com</p> </li> <li> <p>webmaster@example.com</p> </li>
* </ul>
*/
inline DomainValidationOption& WithValidationDomain(Aws::String&& value) { SetValidationDomain(std::move(value)); return *this;}
/**
* <p>The domain name that you want ACM to use to send you validation emails. This
* domain name is the suffix of the email addresses that you want ACM to use. This
* must be the same as the <code>DomainName</code> value or a superdomain of the
* <code>DomainName</code> value. For example, if you request a certificate for
* <code>testing.example.com</code>, you can specify <code>example.com</code> for
* this value. In that case, ACM sends domain validation emails to the following
* five addresses:</p> <ul> <li> <p>admin@example.com</p> </li> <li>
* <p>administrator@example.com</p> </li> <li> <p>hostmaster@example.com</p> </li>
* <li> <p>postmaster@example.com</p> </li> <li> <p>webmaster@example.com</p> </li>
* </ul>
*/
inline DomainValidationOption& WithValidationDomain(const char* value) { SetValidationDomain(value); return *this;}
private:
Aws::String m_domainName;
bool m_domainNameHasBeenSet;
Aws::String m_validationDomain;
bool m_validationDomainHasBeenSet;
};
} // namespace Model
} // namespace ACM
} // namespace Aws