:doc:`DeadlineCloud <../../deadline>` / Client / list_license_endpoints

**********************
list_license_endpoints
**********************



.. py:method:: DeadlineCloud.Client.list_license_endpoints(**kwargs)

  

  Lists license endpoints.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/ListLicenseEndpoints>`_  


  **Request Syntax**
  ::

    response = client.list_license_endpoints(
        nextToken='string',
        maxResults=123
    )
    
  :type nextToken: string
  :param nextToken: 

    The token for the next set of results, or ``null`` to start from the beginning.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to return. Use this parameter with ``NextToken`` to get results as a set of sequential pages.

    

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

    
    ::

      {
          'licenseEndpoints': [
              {
                  'licenseEndpointId': 'string',
                  'status': 'CREATE_IN_PROGRESS'|'DELETE_IN_PROGRESS'|'READY'|'NOT_READY',
                  'statusMessage': 'string',
                  'vpcId': 'string'
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **licenseEndpoints** *(list) --* 

        The license endpoints.

        
        

        - *(dict) --* 

          The details for a license endpoint.

          
          

          - **licenseEndpointId** *(string) --* 

            The license endpoint ID.

            
          

          - **status** *(string) --* 

            The status of the license endpoint.

            
          

          - **statusMessage** *(string) --* 

            The status message of the license endpoint.

            
          

          - **vpcId** *(string) --* 

            The VPC (virtual private cloud) ID associated with the license endpoint.

            
      
    
      

      - **nextToken** *(string) --* 

        If Deadline Cloud returns ``nextToken``, then there are more results available. The value of ``nextToken`` is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then ``nextToken`` is set to ``null``. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 ``ValidationException`` error.

        
  
  **Exceptions**
  
  *   :py:class:`DeadlineCloud.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`DeadlineCloud.Client.exceptions.InternalServerErrorException`

  
  *   :py:class:`DeadlineCloud.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`DeadlineCloud.Client.exceptions.ThrottlingException`

  
  *   :py:class:`DeadlineCloud.Client.exceptions.ValidationException`

  