Describes the ClassicLink DNS support status of one or more VPCs. If enabled, the DNS hostname of a linked EC2-Classic instance resolves to its private IP address when addressed from an instance in the VPC to which it's linked. Similarly, the DNS hostname of an instance in a VPC resolves to its private IP address when addressed from a linked EC2-Classic instance. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide.
ec2_describe_vpc_classic_link_dns_support(MaxResults, NextToken, VpcIds)
A list with the following syntax:
list(
NextToken = "string",
Vpcs = list(
list(
ClassicLinkDnsSupported = TRUE|FALSE,
VpcId = "string"
)
)
)
The maximum number of results to return with a single call. To retrieve
the remaining results, make another call with the returned nextToken
value.
The token for the next page of results.
One or more VPC IDs.
svc$describe_vpc_classic_link_dns_support(
MaxResults = 123,
NextToken = "string",
VpcIds = list(
"string"
)
)