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

126 lines
4.4 KiB
C++

/**
* 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 enable or disable Amazon SES Easy DKIM signing for an
* identity. For more information about setting up Easy DKIM, see the <a
* href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.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/SetIdentityDkimEnabledRequest">AWS
* API Reference</a></p>
*/
class AWS_SES_API SetIdentityDkimEnabledRequest : public SESRequest
{
public:
SetIdentityDkimEnabledRequest();
// 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 "SetIdentityDkimEnabled"; }
Aws::String SerializePayload() const override;
protected:
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
public:
/**
* <p>The identity for which DKIM signing should be enabled or disabled.</p>
*/
inline const Aws::String& GetIdentity() const{ return m_identity; }
/**
* <p>The identity for which DKIM signing should be enabled or disabled.</p>
*/
inline bool IdentityHasBeenSet() const { return m_identityHasBeenSet; }
/**
* <p>The identity for which DKIM signing should be enabled or disabled.</p>
*/
inline void SetIdentity(const Aws::String& value) { m_identityHasBeenSet = true; m_identity = value; }
/**
* <p>The identity for which DKIM signing should be enabled or disabled.</p>
*/
inline void SetIdentity(Aws::String&& value) { m_identityHasBeenSet = true; m_identity = std::move(value); }
/**
* <p>The identity for which DKIM signing should be enabled or disabled.</p>
*/
inline void SetIdentity(const char* value) { m_identityHasBeenSet = true; m_identity.assign(value); }
/**
* <p>The identity for which DKIM signing should be enabled or disabled.</p>
*/
inline SetIdentityDkimEnabledRequest& WithIdentity(const Aws::String& value) { SetIdentity(value); return *this;}
/**
* <p>The identity for which DKIM signing should be enabled or disabled.</p>
*/
inline SetIdentityDkimEnabledRequest& WithIdentity(Aws::String&& value) { SetIdentity(std::move(value)); return *this;}
/**
* <p>The identity for which DKIM signing should be enabled or disabled.</p>
*/
inline SetIdentityDkimEnabledRequest& WithIdentity(const char* value) { SetIdentity(value); return *this;}
/**
* <p>Sets whether DKIM signing is enabled for an identity. Set to
* <code>true</code> to enable DKIM signing for this identity; <code>false</code>
* to disable it. </p>
*/
inline bool GetDkimEnabled() const{ return m_dkimEnabled; }
/**
* <p>Sets whether DKIM signing is enabled for an identity. Set to
* <code>true</code> to enable DKIM signing for this identity; <code>false</code>
* to disable it. </p>
*/
inline bool DkimEnabledHasBeenSet() const { return m_dkimEnabledHasBeenSet; }
/**
* <p>Sets whether DKIM signing is enabled for an identity. Set to
* <code>true</code> to enable DKIM signing for this identity; <code>false</code>
* to disable it. </p>
*/
inline void SetDkimEnabled(bool value) { m_dkimEnabledHasBeenSet = true; m_dkimEnabled = value; }
/**
* <p>Sets whether DKIM signing is enabled for an identity. Set to
* <code>true</code> to enable DKIM signing for this identity; <code>false</code>
* to disable it. </p>
*/
inline SetIdentityDkimEnabledRequest& WithDkimEnabled(bool value) { SetDkimEnabled(value); return *this;}
private:
Aws::String m_identity;
bool m_identityHasBeenSet;
bool m_dkimEnabled;
bool m_dkimEnabledHasBeenSet;
};
} // namespace Model
} // namespace SES
} // namespace Aws