Class: Aws::CloudTrail::Types::InsightSelector
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::InsightSelector
- Defined in:
- gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb
Overview
Note:
When making an API call, you may pass InsightSelector data as a hash:
{
insight_type: "ApiCallRateInsight", # accepts ApiCallRateInsight
}
A JSON string that contains a list of insight types that are logged on a trail.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#insight_type ⇒ String
The type of insights to log on a trail.
Instance Attribute Details
#insight_type ⇒ String
The type of insights to log on a trail. In this release, only
ApiCallRateInsight
is supported as an insight type.
1234 1235 1236 1237 1238 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 1234 class InsightSelector < Struct.new( :insight_type) SENSITIVE = [] include Aws::Structure end |