Class: Aws::CloudTrail::Types::ListInsightsDataResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::ListInsightsDataResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudtrail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#events ⇒ Array<Types::Event>
A list of events returned based on the InsightSource, DataType or Dimensions specified.
-
#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 InsightSource, DataType or Dimensions specified. The events list is sorted by time. The most recent event is listed first.
3574 3575 3576 3577 3578 3579 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3574 class ListInsightsDataResponse < 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 a EventName as a dimension with PutObject as a value, the call with NextToken should include those same parameters.
3574 3575 3576 3577 3578 3579 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3574 class ListInsightsDataResponse < Struct.new( :events, :next_token) SENSITIVE = [] include Aws::Structure end |