:doc:`EC2 <../../ec2>` / Client / describe_vpc_classic_link_dns_support

*************************************
describe_vpc_classic_link_dns_support
*************************************



.. py:method:: EC2.Client.describe_vpc_classic_link_dns_support(**kwargs)

  

  .. note::

    

    This action is deprecated.

    

   

  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.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcClassicLinkDnsSupport>`_  


  **Request Syntax**
  ::

    response = client.describe_vpc_classic_link_dns_support(
        VpcIds=[
            'string',
        ],
        MaxResults=123,
        NextToken='string'
    )
    
  :type VpcIds: list
  :param VpcIds: 

    The IDs of the VPCs.

    

  
    - *(string) --* 

    

  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see `Pagination <https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination>`__.

    

  
  :type NextToken: string
  :param NextToken: 

    The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'NextToken': 'string',
          'Vpcs': [
              {
                  'ClassicLinkDnsSupported': True|False,
                  'VpcId': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **NextToken** *(string) --* 

        The token to include in another request to get the next page of items. This value is ``null`` when there are no more items to return.

        
      

      - **Vpcs** *(list) --* 

        Information about the ClassicLink DNS support status of the VPCs.

        
        

        - *(dict) --* 

          .. note::

            

            Deprecated.

            

           

          Describes the ClassicLink DNS support status of a VPC.

          
          

          - **ClassicLinkDnsSupported** *(boolean) --* 

            Indicates whether ClassicLink DNS support is enabled for the VPC.

            
          

          - **VpcId** *(string) --* 

            The ID of the VPC.

            
      
    
  