Macie2 / Paginator / ListManagedDataIdentifiers
ListManagedDataIdentifiers#
- class Macie2.Paginator.ListManagedDataIdentifiers#
- paginator = client.get_paginator('list_managed_data_identifiers') - paginate(**kwargs)#
- Creates an iterator that will paginate through responses from - Macie2.Client.list_managed_data_identifiers().- See also: AWS API Documentation - Request Syntax - response_iterator = paginator.paginate( PaginationConfig={ 'MaxItems': 123, 'StartingToken': 'string' } ) - Parameters:
- 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 - NextTokenwill be provided in the output that you can use to resume pagination.
- StartingToken (string) – - A token to specify where to start paginating. This is the - NextTokenfrom a previous response.
 
- Return type:
- dict 
- Returns:
- Response Syntax - { 'items': [ { 'category': 'FINANCIAL_INFORMATION'|'PERSONAL_INFORMATION'|'CREDENTIALS'|'CUSTOM_IDENTIFIER', 'id': 'string' }, ], 'NextToken': 'string' } - Response Structure - (dict) – - The request succeeded. - items (list) – - An array of objects, one for each managed data identifier. - (dict) – - Provides information about a managed data identifier. For additional information, see Using managed data identifiers in the Amazon Macie User Guide. - category (string) – - The category of sensitive data that the managed data identifier detects: CREDENTIALS, for credentials data such as private keys or Amazon Web Services secret access keys; FINANCIAL_INFORMATION, for financial data such as credit card numbers; or, PERSONAL_INFORMATION, for personal health information, such as health insurance identification numbers, or personally identifiable information, such as passport numbers. 
- id (string) – - The unique identifier for the managed data identifier. This is a string that describes the type of sensitive data that the managed data identifier detects. For example: OPENSSH_PRIVATE_KEY for OpenSSH private keys, CREDIT_CARD_NUMBER for credit card numbers, or USA_PASSPORT_NUMBER for US passport numbers. 
 
 
- NextToken (string) – - A token to resume pagination.