Skip to main content

Domainstatusdto

Properties

NameTypeDescriptionNotes
IdStringNew UUID associated with domain to be verified[optional]
DomainStringA domain address[optional]
DkimEnabledBooleanDKIM is enabled for this domain[optional] [default to $false]
DkimTokens[]StringDKIM tokens required for authentication[optional]
DkimVerificationStatusStringStatus of DKIM authentication[optional]
RegionStringThe AWS SES region the domain is associated with[optional]

Examples

  • Prepare the resource
$Domainstatusdto = Initialize-Domainstatusdto  -Id 123b45b0-aaaa-bbbb-a7db-123456a56abc `
-Domain sailpoint.com `
-DkimEnabled true `
-DkimTokens ["token1","token2","token3"] `
-DkimVerificationStatus PENDING `
-Region us-east-1
  • Convert the resource to JSON
$Domainstatusdto | ConvertTo-JSON

[Back to top]