:doc:`DataZone <../../datazone>` / Paginator / ListEnvironmentActions

**********************
ListEnvironmentActions
**********************



.. py:class:: DataZone.Paginator.ListEnvironmentActions

  ::

    
    paginator = client.get_paginator('list_environment_actions')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`DataZone.Client.list_environment_actions`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListEnvironmentActions>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          domainIdentifier='string',
          environmentIdentifier='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type domainIdentifier: string
    :param domainIdentifier: **[REQUIRED]** 

      The ID of the Amazon DataZone domain in which the environment actions are listed.

      

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

      The ID of the envrironment whose environment actions are listed.

      

    
    :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': [
                {
                    'domainId': 'string',
                    'environmentId': 'string',
                    'id': 'string',
                    'name': 'string',
                    'parameters': {
                        'awsConsoleLink': {
                            'uri': 'string'
                        }
                    },
                    'description': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

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

          The results of ``ListEnvironmentActions``.

          
          

          - *(dict) --* 

            The details about the specified action configured for an environment. For example, the details of the specified console links for an analytics tool that is available in this environment.

            
            

            - **domainId** *(string) --* 

              The Amazon DataZone domain ID of the environment action.

              
            

            - **environmentId** *(string) --* 

              The environment ID of the environment action.

              
            

            - **id** *(string) --* 

              The ID of the environment action.

              
            

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

              The name of the environment action.

              
            

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

              The parameters of the environment action.

              .. note::    This is a Tagged Union structure. Only one of the     following top level keys will be set: ``awsConsoleLink``.     If a client receives an unknown member it will     set ``SDK_UNKNOWN_MEMBER`` as the top level key,     which maps to the name or tag of the unknown     member. The structure of ``SDK_UNKNOWN_MEMBER`` is     as follows::

                            'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}


            
              

              - **awsConsoleLink** *(dict) --* 

                The console link specified as part of the environment action.

                
                

                - **uri** *(string) --* 

                  The URI of the console link specified as part of the environment action.

                  
            
          
            

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

              The environment action description.

              
        
      
        

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

          A token to resume pagination.

          
    