Check Dns Availability
elasticbeanstalk_check_dns_availability | R Documentation |
Checks if the specified CNAME is available¶
Description¶
Checks if the specified CNAME is available.
Usage¶
elasticbeanstalk_check_dns_availability(CNAMEPrefix)
Arguments¶
CNAMEPrefix |
[required] The prefix used when this CNAME is reserved. |
Value¶
A list with the following syntax:
list(
Available = TRUE|FALSE,
FullyQualifiedCNAME = "string"
)
Request syntax¶
svc$check_dns_availability(
CNAMEPrefix = "string"
)
Examples¶
## Not run:
# The following operation checks the availability of the subdomain
# my-cname:
svc$check_dns_availability(
CNAMEPrefix = "my-cname"
)
## End(Not run)