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

*********************************
ListCloudWatchAlarmTemplateGroups
*********************************



.. py:class:: MediaLive.Paginator.ListCloudWatchAlarmTemplateGroups

  ::

    
    paginator = client.get_paginator('list_cloud_watch_alarm_template_groups')

  
  

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

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

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          Scope='string',
          SignalMapIdentifier='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type Scope: string
    :param Scope: Represents the scope of a resource, with options for all scopes, AWS provided resources, or local resources.

    
    :type SignalMapIdentifier: string
    :param SignalMapIdentifier: A signal map'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**

      
      ::

        {
            'CloudWatchAlarmTemplateGroups': [
                {
                    'Arn': 'string',
                    'CreatedAt': datetime(2015, 1, 1),
                    'Description': 'string',
                    'Id': 'string',
                    'ModifiedAt': datetime(2015, 1, 1),
                    'Name': 'string',
                    'Tags': {
                        'string': 'string'
                    },
                    'TemplateCount': 123
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* ListCloudWatchAlarmTemplateGroups 200 response
        

        - **CloudWatchAlarmTemplateGroups** *(list) --* Placeholder documentation for __listOfCloudWatchAlarmTemplateGroupSummary
          

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

            - **Arn** *(string) --* A cloudwatch alarm template group's ARN (Amazon Resource Name)
            

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

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

            - **Id** *(string) --* A cloudwatch alarm template group's id. AWS provided template groups have ids that start with `aws-`
            

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

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

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

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

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

            - **TemplateCount** *(integer) --* The number of templates in a group.
        
      
    