Get Domain Verification
| vpclattice_get_domain_verification | R Documentation |
Retrieves information about a domain verification¶
Description¶
Retrieves information about a domain verification.ß
Usage¶
vpclattice_get_domain_verification(domainVerificationIdentifier)
Arguments¶
domainVerificationIdentifier |
[required] The ID or ARN of the domain verification to retrieve. |
Value¶
A list with the following syntax:
list(
id = "string",
arn = "string",
domainName = "string",
status = "VERIFIED"|"PENDING"|"VERIFICATION_TIMED_OUT",
txtMethodConfig = list(
value = "string",
name = "string"
),
createdAt = as.POSIXct(
"2015-01-01"
),
lastVerifiedTime = as.POSIXct(
"2015-01-01"
),
tags = list(
"string"
)
)
Request syntax¶
svc$get_domain_verification(
domainVerificationIdentifier = "string"
)