list_ids {aws.ses} | R Documentation |
Manage SES Identities
list_ids(type = c("EmailAddress", "Domain"), nmax = NULL, next_token = NULL, ...) verify_id(address, domain, ...) get_verification_attrs(identity, ...) delete_id(identity, ...)
type |
A character string specifying the identity type. |
nmax |
An integer specifying the maximum number of identities to return. |
next_token |
A pagination token |
address |
A charcter string specifying an email address. |
domain |
A character string specifying a domain. |
identity |
An SES identity. |
... |
Additional arguments passed to |
verify_id
sends an email verification request to the specified email address.
list_ids
returns a character vector of verified email addresses or domains.
## Not run: # verify an addres verify_id("example@example.com") get_verification_attrs("example@example.com") list_ids() # remove identity delete_id("example@example.com") ## End(Not run)