:doc:`MediaLive <../../medialive>` / Paginator / ListSignalMaps

**************
ListSignalMaps
**************



.. py:class:: MediaLive.Paginator.ListSignalMaps

  ::

    
    paginator = client.get_paginator('list_signal_maps')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`MediaLive.Client.list_signal_maps`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListSignalMaps>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          CloudWatchAlarmTemplateGroupIdentifier='string',
          EventBridgeRuleTemplateGroupIdentifier='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type CloudWatchAlarmTemplateGroupIdentifier: string
    :param CloudWatchAlarmTemplateGroupIdentifier: A cloudwatch alarm template group's identifier. Can be either be its id or current name.

    
    :type EventBridgeRuleTemplateGroupIdentifier: string
    :param EventBridgeRuleTemplateGroupIdentifier: An eventbridge rule template group's identifier. Can be either be its id or current name.

    
    :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**

      
      ::

        {
            'SignalMaps': [
                {
                    'Arn': 'string',
                    'CreatedAt': datetime(2015, 1, 1),
                    'Description': 'string',
                    'Id': 'string',
                    'ModifiedAt': datetime(2015, 1, 1),
                    'MonitorDeploymentStatus': 'NOT_DEPLOYED'|'DRY_RUN_DEPLOYMENT_COMPLETE'|'DRY_RUN_DEPLOYMENT_FAILED'|'DRY_RUN_DEPLOYMENT_IN_PROGRESS'|'DEPLOYMENT_COMPLETE'|'DEPLOYMENT_FAILED'|'DEPLOYMENT_IN_PROGRESS'|'DELETE_COMPLETE'|'DELETE_FAILED'|'DELETE_IN_PROGRESS',
                    'Name': 'string',
                    'Status': 'CREATE_IN_PROGRESS'|'CREATE_COMPLETE'|'CREATE_FAILED'|'UPDATE_IN_PROGRESS'|'UPDATE_COMPLETE'|'UPDATE_REVERTED'|'UPDATE_FAILED'|'READY'|'NOT_READY',
                    'Tags': {
                        'string': 'string'
                    }
                },
            ]
        }
        
      **Response Structure**

      

      - *(dict) --* ListSignalMaps 200 response
        

        - **SignalMaps** *(list) --* Placeholder documentation for __listOfSignalMapSummary
          

          - *(dict) --* Placeholder documentation for SignalMapSummary
            

            - **Arn** *(string) --* A signal map's ARN (Amazon Resource Name)
            

            - **CreatedAt** *(datetime) --* Placeholder documentation for __timestampIso8601
            

            - **Description** *(string) --* A resource's optional description.
            

            - **Id** *(string) --* A signal map's id.
            

            - **ModifiedAt** *(datetime) --* Placeholder documentation for __timestampIso8601
            

            - **MonitorDeploymentStatus** *(string) --* A signal map's monitor deployment status.
            

            - **Name** *(string) --* A resource's name. Names must be unique within the scope of a resource type in a specific region.
            

            - **Status** *(string) --* A signal map's current status which is dependent on its lifecycle actions or associated jobs.
            

            - **Tags** *(dict) --* Represents the tags associated with a resource.
              

              - *(string) --* Placeholder documentation for __string
                

                - *(string) --* Placeholder documentation for __string
          
        
        
      
    