CloudTrail / Paginator / ListInsightsData
ListInsightsData¶
- class CloudTrail.Paginator.ListInsightsData¶
paginator = client.get_paginator('list_insights_data')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
CloudTrail.Client.list_insights_data().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( InsightSource='string', DataType='InsightsEvents', Dimensions={ 'string': 'string' }, StartTime=datetime(2015, 1, 1), EndTime=datetime(2015, 1, 1), PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
InsightSource (string) –
[REQUIRED]
The Amazon Resource Name(ARN) of the trail for which you want to retrieve Insights events.
DataType (string) –
[REQUIRED]
Specifies the category of events returned. To fetch Insights events, specify
InsightsEventsas the value ofDataTypeDimensions (dict) –
Contains a map of dimensions. Currently the map can contain only one item.
(string) –
(string) –
StartTime (datetime) – Specifies that only events that occur after or at the specified time are returned. If the specified start time is after the specified end time, an error is returned.
EndTime (datetime) – Specifies that only events that occur before or at the specified time are returned. If the specified end time is before the specified start time, an error is returned.
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
{ 'Events': [ { 'EventId': 'string', 'EventName': 'string', 'ReadOnly': 'string', 'AccessKeyId': 'string', 'EventTime': datetime(2015, 1, 1), 'EventSource': 'string', 'Username': 'string', 'Resources': [ { 'ResourceType': 'string', 'ResourceName': 'string' }, ], 'CloudTrailEvent': 'string' }, ], }
Response Structure
(dict) –
Events (list) –
A list of events returned based on the InsightSource, DataType or Dimensions specified. The events list is sorted by time. The most recent event is listed first.
(dict) –
Contains information about an event that was returned by a lookup request. The result includes a representation of a CloudTrail event.
EventId (string) –
The CloudTrail ID of the event returned.
EventName (string) –
The name of the event returned.
ReadOnly (string) –
Information about whether the event is a write event or a read event.
AccessKeyId (string) –
The Amazon Web Services access key ID that was used to sign the request. If the request was made with temporary security credentials, this is the access key ID of the temporary credentials.
EventTime (datetime) –
The date and time of the event returned.
EventSource (string) –
The Amazon Web Services service to which the request was made.
Username (string) –
A user name or role name of the requester that called the API in the event returned.
Resources (list) –
A list of resources referenced by the event returned.
(dict) –
Specifies the type and name of a resource referenced by an event.
ResourceType (string) –
The type of a resource referenced by the event returned. When the resource type cannot be determined, null is returned. Some examples of resource types are: Instance for EC2, Trail for CloudTrail, DBInstance for Amazon RDS, and AccessKey for IAM. To learn more about how to look up and filter events by the resource types supported for a service, see Filtering CloudTrail Events.
ResourceName (string) –
The name of the resource referenced by the event returned. These are user-created names whose values will depend on the environment. For example, the resource name might be “auto-scaling-test-group” for an Auto Scaling Group or “i-1234567” for an EC2 Instance.
CloudTrailEvent (string) –
A JSON string that contains a representation of the event returned.