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

************************************
get_verified_access_endpoint_targets
************************************



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

  

  Gets the targets for the specified network CIDR endpoint for Verified Access.

  

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


  **Request Syntax**
  ::

    response = client.get_verified_access_endpoint_targets(
        VerifiedAccessEndpointId='string',
        MaxResults=123,
        NextToken='string',
        DryRun=True|False
    )
    
  :type VerifiedAccessEndpointId: string
  :param VerifiedAccessEndpointId: **[REQUIRED]** 

    The ID of the network CIDR endpoint.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned ``nextToken`` value.

    

  
  :type NextToken: string
  :param NextToken: 

    The token for the next page of results.

    

  
  :type DryRun: boolean
  :param DryRun: 

    Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is ``DryRunOperation``. Otherwise, it is ``UnauthorizedOperation``.

    

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

    
    ::

      {
          'VerifiedAccessEndpointTargets': [
              {
                  'VerifiedAccessEndpointId': 'string',
                  'VerifiedAccessEndpointTargetIpAddress': 'string',
                  'VerifiedAccessEndpointTargetDns': 'string'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **VerifiedAccessEndpointTargets** *(list) --* 

        The Verified Access targets.

        
        

        - *(dict) --* 

          Describes the targets for the specified Verified Access endpoint.

          
          

          - **VerifiedAccessEndpointId** *(string) --* 

            The ID of the Verified Access endpoint.

            
          

          - **VerifiedAccessEndpointTargetIpAddress** *(string) --* 

            The IP address of the target.

            
          

          - **VerifiedAccessEndpointTargetDns** *(string) --* 

            The DNS name of the target.

            
      
    
      

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

        The token to use to retrieve the next page of results. This value is ``null`` when there are no more results to return.

        
  