Class: Aws::SES::Types::DeleteIdentityRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ses/types.rb

Overview

Note:

When making an API call, you may pass DeleteIdentityRequest data as a hash:

{
  identity: "Identity", # required
}

Represents a request to delete one of your Amazon SES identities (an email address or domain).

Instance Attribute Summary collapse

Instance Attribute Details

#identityString

The identity to be removed from the list of identities for the AWS Account.

Returns:

  • (String)


1199
1200
1201
1202
# File 'lib/aws-sdk-ses/types.rb', line 1199

class DeleteIdentityRequest < Struct.new(
  :identity)
  include Aws::Structure
end