:doc:`SSM <../../ssm>` / Paginator / ListOpsMetadata

***************
ListOpsMetadata
***************



.. py:class:: SSM.Paginator.ListOpsMetadata

  ::

    
    paginator = client.get_paginator('list_ops_metadata')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`SSM.Client.list_ops_metadata`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListOpsMetadata>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          Filters=[
              {
                  'Key': 'string',
                  'Values': [
                      'string',
                  ]
              },
          ],
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type Filters: list
    :param Filters: 

      One or more filters to limit the number of OpsMetadata objects returned by the call.

      

    
      - *(dict) --* 

        A filter to limit the number of OpsMetadata objects displayed.

        

      
        - **Key** *(string) --* **[REQUIRED]** 

          A filter key.

          

        
        - **Values** *(list) --* **[REQUIRED]** 

          A filter value.

          

        
          - *(string) --* 

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

      
      ::

        {
            'OpsMetadataList': [
                {
                    'ResourceId': 'string',
                    'OpsMetadataArn': 'string',
                    'LastModifiedDate': datetime(2015, 1, 1),
                    'LastModifiedUser': 'string',
                    'CreationDate': datetime(2015, 1, 1)
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **OpsMetadataList** *(list) --* 

          Returns a list of OpsMetadata objects.

          
          

          - *(dict) --* 

            Operational metadata for an application in Application Manager.

            
            

            - **ResourceId** *(string) --* 

              The ID of the Application Manager application.

              
            

            - **OpsMetadataArn** *(string) --* 

              The Amazon Resource Name (ARN) of the OpsMetadata Object or blob.

              
            

            - **LastModifiedDate** *(datetime) --* 

              The date the OpsMetadata object was last updated.

              
            

            - **LastModifiedUser** *(string) --* 

              The user name who last updated the OpsMetadata object.

              
            

            - **CreationDate** *(datetime) --* 

              The date the OpsMetadata objects was created.

              
        
      
    