Get Email Identity
sesv2_get_email_identity | R Documentation |
Provides information about a specific identity, including the identity's verification status, sending authorization policies, its DKIM authentication status, and its custom Mail-From settings¶
Description¶
Provides information about a specific identity, including the identity's verification status, sending authorization policies, its DKIM authentication status, and its custom Mail-From settings.
Usage¶
Arguments¶
EmailIdentity
[required] The email identity.
Value¶
A list with the following syntax:
list(
IdentityType = "EMAIL_ADDRESS"|"DOMAIN"|"MANAGED_DOMAIN",
FeedbackForwardingStatus = TRUE|FALSE,
VerifiedForSendingStatus = TRUE|FALSE,
DkimAttributes = list(
SigningEnabled = TRUE|FALSE,
Status = "PENDING"|"SUCCESS"|"FAILED"|"TEMPORARY_FAILURE"|"NOT_STARTED",
Tokens = list(
"string"
),
SigningAttributesOrigin = "AWS_SES"|"EXTERNAL",
NextSigningKeyLength = "RSA_1024_BIT"|"RSA_2048_BIT",
CurrentSigningKeyLength = "RSA_1024_BIT"|"RSA_2048_BIT",
LastKeyGenerationTimestamp = as.POSIXct(
"2015-01-01"
)
),
MailFromAttributes = list(
MailFromDomain = "string",
MailFromDomainStatus = "PENDING"|"SUCCESS"|"FAILED"|"TEMPORARY_FAILURE",
BehaviorOnMxFailure = "USE_DEFAULT_VALUE"|"REJECT_MESSAGE"
),
Policies = list(
"string"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
),
ConfigurationSetName = "string",
VerificationStatus = "PENDING"|"SUCCESS"|"FAILED"|"TEMPORARY_FAILURE"|"NOT_STARTED",
VerificationInfo = list(
LastCheckedTimestamp = as.POSIXct(
"2015-01-01"
),
LastSuccessTimestamp = as.POSIXct(
"2015-01-01"
),
ErrorType = "SERVICE_ERROR"|"DNS_SERVER_ERROR"|"HOST_NOT_FOUND"|"TYPE_NOT_FOUND"|"INVALID_VALUE",
SOARecord = list(
PrimaryNameServer = "string",
AdminEmail = "string",
SerialNumber = 123
)
)
)