/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents a request to delete one of your Amazon SES identities (an email
* address or domain).See Also:
AWS
* API Reference
The identity to be removed from the list of identities for the AWS * Account.
*/ inline const Aws::String& GetIdentity() const{ return m_identity; } /** *The identity to be removed from the list of identities for the AWS * Account.
*/ inline bool IdentityHasBeenSet() const { return m_identityHasBeenSet; } /** *The identity to be removed from the list of identities for the AWS * Account.
*/ inline void SetIdentity(const Aws::String& value) { m_identityHasBeenSet = true; m_identity = value; } /** *The identity to be removed from the list of identities for the AWS * Account.
*/ inline void SetIdentity(Aws::String&& value) { m_identityHasBeenSet = true; m_identity = std::move(value); } /** *The identity to be removed from the list of identities for the AWS * Account.
*/ inline void SetIdentity(const char* value) { m_identityHasBeenSet = true; m_identity.assign(value); } /** *The identity to be removed from the list of identities for the AWS * Account.
*/ inline DeleteIdentityRequest& WithIdentity(const Aws::String& value) { SetIdentity(value); return *this;} /** *The identity to be removed from the list of identities for the AWS * Account.
*/ inline DeleteIdentityRequest& WithIdentity(Aws::String&& value) { SetIdentity(std::move(value)); return *this;} /** *The identity to be removed from the list of identities for the AWS * Account.
*/ inline DeleteIdentityRequest& WithIdentity(const char* value) { SetIdentity(value); return *this;} private: Aws::String m_identity; bool m_identityHasBeenSet = false; }; } // namespace Model } // namespace SES } // namespace Aws