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-email/include/aws/email/model/VerifyDomainIdentityRequest.h

95 lines
2.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/email/SES_EXPORTS.h>
#include <aws/email/SESRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace SES
{
namespace Model
{
/**
* <p>Represents a request to begin Amazon SES domain verification and to generate
* the TXT records that you must publish to the DNS server of your domain to
* complete the verification. For information about domain verification, see the <a
* href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-domains.html">Amazon
* SES Developer Guide</a>.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/VerifyDomainIdentityRequest">AWS
* API Reference</a></p>
*/
class AWS_SES_API VerifyDomainIdentityRequest : public SESRequest
{
public:
VerifyDomainIdentityRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "VerifyDomainIdentity"; }
Aws::String SerializePayload() const override;
protected:
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
public:
/**
* <p>The domain to be verified.</p>
*/
inline const Aws::String& GetDomain() const{ return m_domain; }
/**
* <p>The domain to be verified.</p>
*/
inline bool DomainHasBeenSet() const { return m_domainHasBeenSet; }
/**
* <p>The domain to be verified.</p>
*/
inline void SetDomain(const Aws::String& value) { m_domainHasBeenSet = true; m_domain = value; }
/**
* <p>The domain to be verified.</p>
*/
inline void SetDomain(Aws::String&& value) { m_domainHasBeenSet = true; m_domain = std::move(value); }
/**
* <p>The domain to be verified.</p>
*/
inline void SetDomain(const char* value) { m_domainHasBeenSet = true; m_domain.assign(value); }
/**
* <p>The domain to be verified.</p>
*/
inline VerifyDomainIdentityRequest& WithDomain(const Aws::String& value) { SetDomain(value); return *this;}
/**
* <p>The domain to be verified.</p>
*/
inline VerifyDomainIdentityRequest& WithDomain(Aws::String&& value) { SetDomain(std::move(value)); return *this;}
/**
* <p>The domain to be verified.</p>
*/
inline VerifyDomainIdentityRequest& WithDomain(const char* value) { SetDomain(value); return *this;}
private:
Aws::String m_domain;
bool m_domainHasBeenSet;
};
} // namespace Model
} // namespace SES
} // namespace Aws