SecurityAgent / Paginator / ListIntegrations
ListIntegrations¶
- class SecurityAgent.Paginator.ListIntegrations¶
paginator = client.get_paginator('list_integrations')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
SecurityAgent.Client.list_integrations().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( filter={ 'provider': 'GITHUB', 'providerType': 'SOURCE_CODE'|'DOCUMENTATION' }, PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
filter (dict) –
A filter to apply to the list of integrations.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:
provider,providerType.provider (string) –
Filter integrations by provider.
providerType (string) –
Filter integrations by provider type.
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.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextTokenfrom a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'integrationSummaries': [ { 'integrationId': 'string', 'installationId': 'string', 'provider': 'GITHUB', 'providerType': 'SOURCE_CODE'|'DOCUMENTATION', 'displayName': 'string' }, ], 'NextToken': 'string' }
Response Structure
(dict) –
integrationSummaries (list) –
The list of integration summaries.
(dict) –
Contains summary information about an integration.
integrationId (string) –
The unique identifier of the integration.
installationId (string) –
The installation identifier from the integration provider.
provider (string) –
The integration provider.
providerType (string) –
The type of the integration provider.
displayName (string) –
The display name of the integration.
NextToken (string) –
A token to resume pagination.