CloudTrail / Paginator / LookupEvents

LookupEvents#

class CloudTrail.Paginator.LookupEvents#
paginator = client.get_paginator('lookup_events')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from CloudTrail.Client.lookup_events().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    LookupAttributes=[
        {
            'AttributeKey': 'EventId'|'EventName'|'ReadOnly'|'Username'|'ResourceType'|'ResourceName'|'EventSource'|'AccessKeyId',
            'AttributeValue': 'string'
        },
    ],
    StartTime=datetime(2015, 1, 1),
    EndTime=datetime(2015, 1, 1),
    EventCategory='insight',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • LookupAttributes (list) –

    Contains a list of lookup attributes. Currently the list can contain only one item.

    • (dict) –

      Specifies an attribute and value that filter the events returned.

      • AttributeKey (string) – [REQUIRED]

        Specifies an attribute on which to filter the events returned.

      • AttributeValue (string) – [REQUIRED]

        Specifies a value for the specified AttributeKey.

        The maximum length for the AttributeValue is 2000 characters. The following characters (’ _’, ‘ `` ', ' ``,’, ‘ \\n’) count as two characters towards the 2000 character limit.

  • 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.

  • EventCategory (string) – Specifies the event category. If you do not specify an event category, events of the category are not returned in the response. For example, if you do not specify insight as the value of EventCategory, no Insights events are 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 NextToken will 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 NextToken from 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) –

    Contains a response to a LookupEvents action.

    • Events (list) –

      A list of events returned based on the lookup attributes specified and the CloudTrail event. 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.