Delete Identity
ses_delete_identity | R Documentation |
Deletes the specified identity (an email address or a domain) from the list of verified identities¶
Description¶
Deletes the specified identity (an email address or a domain) from the list of verified identities.
You can execute this operation no more than once per second.
Usage¶
ses_delete_identity(Identity)
Arguments¶
Identity |
[required] The identity to be removed from the list of identities for the Amazon Web Services account. |
Value¶
An empty list.
Request syntax¶
svc$delete_identity(
Identity = "string"
)
Examples¶
## Not run:
# The following example deletes an identity from the list of identities
# that have been submitted for verification with Amazon SES:
svc$delete_identity(
Identity = "user@example.com"
)
## End(Not run)