Class: Aws::SESV2::Types::DeleteEmailIdentityRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::DeleteEmailIdentityRequest
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
A request to delete an existing email identity. When you delete an identity, you lose the ability to send email from that identity. You can restore your ability to send email by completing the verification process for the identity again.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#email_identity ⇒ String
The identity (that is, the email address or domain) to delete.
Instance Attribute Details
#email_identity ⇒ String
The identity (that is, the email address or domain) to delete.
1820 1821 1822 1823 1824 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1820 class DeleteEmailIdentityRequest < Struct.new( :email_identity) SENSITIVE = [] include Aws::Structure end |