SSM / Paginator / ListOpsMetadata
ListOpsMetadata#
- class SSM.Paginator.ListOpsMetadata#
paginator = client.get_paginator('list_ops_metadata')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
SSM.Client.list_ops_metadata()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( Filters=[ { 'Key': 'string', 'Values': [ 'string', ] }, ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
Filters (list) –
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) –
PaginationConfig (dict) –
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.
- Return type:
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.