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]