Class: Aws::CloudTrail::Types::ListInsightsDataRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::ListInsightsDataRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudtrail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_type ⇒ String
Specifies the category of events returned.
-
#dimensions ⇒ Hash<String,String>
Contains a map of dimensions.
-
#end_time ⇒ Time
Specifies that only events that occur before or at the specified time are returned.
-
#insight_source ⇒ String
The Amazon Resource Name(ARN) of the trail for which you want to retrieve Insights events.
-
#max_results ⇒ Integer
The number of events to return.
-
#next_token ⇒ String
The token to use to get the next page of results after a previous API call.
-
#start_time ⇒ Time
Specifies that only events that occur after or at the specified time are returned.
Instance Attribute Details
#data_type ⇒ String
Specifies the category of events returned. To fetch Insights events, specify ‘InsightsEvents` as the value of `DataType`
3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3545 class ListInsightsDataRequest < Struct.new( :insight_source, :data_type, :dimensions, :start_time, :end_time, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#dimensions ⇒ Hash<String,String>
Contains a map of dimensions. Currently the map can contain only one item.
3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3545 class ListInsightsDataRequest < Struct.new( :insight_source, :data_type, :dimensions, :start_time, :end_time, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#end_time ⇒ Time
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.
3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3545 class ListInsightsDataRequest < Struct.new( :insight_source, :data_type, :dimensions, :start_time, :end_time, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#insight_source ⇒ String
The Amazon Resource Name(ARN) of the trail for which you want to retrieve Insights events.
3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3545 class ListInsightsDataRequest < Struct.new( :insight_source, :data_type, :dimensions, :start_time, :end_time, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The number of events to return. Possible values are 1 through 50. The default is 50.
3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3545 class ListInsightsDataRequest < Struct.new( :insight_source, :data_type, :dimensions, :start_time, :end_time, :max_results, :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. This token must be passed in with the same parameters that were specified in the original 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.
3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3545 class ListInsightsDataRequest < Struct.new( :insight_source, :data_type, :dimensions, :start_time, :end_time, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
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.
3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 3545 class ListInsightsDataRequest < Struct.new( :insight_source, :data_type, :dimensions, :start_time, :end_time, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |