:doc:`drs <../../drs>` / Paginator / ListLaunchActions

*****************
ListLaunchActions
*****************



.. py:class:: drs.Paginator.ListLaunchActions

  ::

    
    paginator = client.get_paginator('list_launch_actions')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`drs.Client.list_launch_actions`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/drs-2020-02-26/ListLaunchActions>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          filters={
              'actionIds': [
                  'string',
              ]
          },
          resourceId='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type filters: dict
    :param filters: 

      Filters to apply when listing resource launch actions.

      

    
      - **actionIds** *(list) --* 

        Launch actions Ids.

        

      
        - *(string) --* 

          Launch action Id.

          

        
    
    
    :type resourceId: string
    :param resourceId: **[REQUIRED]** 

      Launch configuration template Id or Source Server Id

      

    
    :type PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

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

      
      ::

        {
            'items': [
                {
                    'actionCode': 'string',
                    'actionId': 'string',
                    'actionVersion': 'string',
                    'active': True|False,
                    'category': 'MONITORING'|'VALIDATION'|'CONFIGURATION'|'SECURITY'|'OTHER',
                    'description': 'string',
                    'name': 'string',
                    'optional': True|False,
                    'order': 123,
                    'parameters': {
                        'string': {
                            'type': 'SSM_STORE'|'DYNAMIC',
                            'value': 'string'
                        }
                    },
                    'type': 'SSM_AUTOMATION'|'SSM_COMMAND'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **items** *(list) --* 

          List of resource launch actions.

          
          

          - *(dict) --* 

            Launch action.

            
            

            - **actionCode** *(string) --* 

              Launch action code.

              
            

            - **actionId** *(string) --* 

              Launch action Id.

              
            

            - **actionVersion** *(string) --* 

              Launch action version.

              
            

            - **active** *(boolean) --* 

              Whether the launch action is active.

              
            

            - **category** *(string) --* 

              Launch action category.

              
            

            - **description** *(string) --* 

              Launch action description.

              
            

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

              Launch action name.

              
            

            - **optional** *(boolean) --* 

              Whether the launch will not be marked as failed if this action fails.

              
            

            - **order** *(integer) --* 

              Launch action order.

              
            

            - **parameters** *(dict) --* 

              Launch action parameters.

              
              

              - *(string) --* 
                

                - *(dict) --* 

                  Launch action parameter.

                  
                  

                  - **type** *(string) --* 

                    Type.

                    
                  

                  - **value** *(string) --* 

                    Value.

                    
              
          
        
            

            - **type** *(string) --* 

              Launch action type.

              
        
      
        

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

          A token to resume pagination.

          
    