Class: Aws::CloudTrail::Types::LookupEventsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::LookupEventsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudtrail/types.rb
Overview
Contains a response to a LookupEvents action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#events ⇒ Array<Types::Event>
A list of events returned based on the lookup attributes specified and the CloudTrail event.
-
#next_token ⇒ String
The token to use to get the next page of results after a previous API call.
Instance Attribute Details
#events ⇒ Array<Types::Event>
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.
4012 4013 4014 4015 4016 4017 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 4012 class LookupEventsResponse < Struct.new( :events, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token to use to get the next page of results after a previous API call. If the token does not appear, there are no more results to return. The token must be passed in with the same parameters as the previous call. For example, if the original call specified an AttributeKey of ‘Username’ with a value of ‘root’, the call with NextToken should include those same parameters.
4012 4013 4014 4015 4016 4017 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 4012 class LookupEventsResponse < Struct.new( :events, :next_token) SENSITIVE = [] include Aws::Structure end |