Macie2.Paginator.
ListCustomDataIdentifiers
¶paginator = client.get_paginator('list_custom_data_identifiers')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from Macie2.Client.list_custom_data_identifiers()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
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.
{
'items': [
{
'arn': 'string',
'createdAt': datetime(2015, 1, 1),
'description': 'string',
'id': 'string',
'name': 'string'
},
],
'NextToken': 'string'
}
Response Structure
The request succeeded.
An array of objects, one for each custom data identifier.
Provides information about a custom data identifier.
The Amazon Resource Name (ARN) of the custom data identifier.
The date and time, in UTC and extended ISO 8601 format, when the custom data identifier was created.
The custom description of the custom data identifier.
The unique identifier for the custom data identifier.
The custom name of the custom data identifier.
A token to resume pagination.