Class: Aws::GuardDuty::Types::Activity
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::Activity
- Defined in:
- gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb
Overview
Contains information about an activity, such as an API call, that was observed for a signal.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#api ⇒ Types::ApiCall
Contains information about the API call that was observed, when the activity type is
API_CALL. -
#type ⇒ String
The type of the observed activity.
Instance Attribute Details
#api ⇒ Types::ApiCall
Contains information about the API call that was observed, when the
activity type is API_CALL.
378 379 380 381 382 383 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 378 class Activity < Struct.new( :type, :api) SENSITIVE = [] include Aws::Structure end |