Skip to main content

Emailstatusdto

Properties

NameTypeDescriptionNotes
IdStringUnique identifier for the verified sender address[optional]
EmailStringThe verified sender email address[optional]
IsVerifiedByDomainBooleanWhether the sender address is verified by domain[optional] [default to $false]
VerificationStatusEnum [ "PENDING", "SUCCESS", "FAILED", "NA" ]The verification status of the sender address[optional]
RegionStringThe AWS SES region the sender address is associated with[optional]

Examples

  • Prepare the resource
$Emailstatusdto = Initialize-Emailstatusdto  -Id null `
-Email sender@example.com `
-IsVerifiedByDomain false `
-VerificationStatus SUCCESS `
-Region us-east-1
  • Convert the resource to JSON
$Emailstatusdto | ConvertTo-JSON

[Back to top]