:doc:`GroundStation <../../groundstation>` / Client / list_mission_profiles

*********************
list_mission_profiles
*********************



.. py:method:: GroundStation.Client.list_mission_profiles(**kwargs)

  

  Returns a list of mission profiles.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ListMissionProfiles>`_  


  **Request Syntax**
  ::

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

    Maximum number of mission profiles returned.

    

  
  :type nextToken: string
  :param nextToken: 

    Next token returned in the request of a previous ``ListMissionProfiles`` call. Used to get the next page of results.

    

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

    
    ::

      {
          'nextToken': 'string',
          'missionProfileList': [
              {
                  'missionProfileId': 'string',
                  'missionProfileArn': 'string',
                  'region': 'string',
                  'name': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        Next token returned in the response of a previous ``ListMissionProfiles`` call. Used to get the next page of results.

        
      

      - **missionProfileList** *(list) --* 

        List of mission profiles.

        
        

        - *(dict) --* 

          Item in a list of mission profiles.

          
          

          - **missionProfileId** *(string) --* 

            UUID of a mission profile.

            
          

          - **missionProfileArn** *(string) --* 

            ARN of a mission profile.

            
          

          - **region** *(string) --* 

            Region of a mission profile.

            
          

          - **name** *(string) --* 

            Name of a mission profile.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`GroundStation.Client.exceptions.InvalidParameterException`

  
  *   :py:class:`GroundStation.Client.exceptions.DependencyException`

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

  