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'
}
)
One or more filters to limit the number of OpsMetadata objects returned by the call.
A filter to limit the number of OpsMetadata objects displayed.
A filter key.
A filter value.
A dictionary that provides parameters to control pagination.
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.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
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.