Start Domain Verification
| vpclattice_start_domain_verification | R Documentation |
Starts the domain verification process for a custom domain name¶
Description¶
Starts the domain verification process for a custom domain name.
Usage¶
vpclattice_start_domain_verification(clientToken, domainName, tags)
Arguments¶
clientToken |
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you retry a request that completed successfully using the same client token and parameters, the retry succeeds without performing any actions. If the parameters aren't identical, the retry fails. |
domainName |
[required] The domain name to verify ownership for. |
tags |
The tags for the domain verification. |
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"
)
)
Request syntax¶
svc$start_domain_verification(
clientToken = "string",
domainName = "string",
tags = list(
"string"
)
)