Class: Aws::SecurityAgent::Types::LogLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityAgent::Types::LogLocation
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityagent/types.rb
Overview
The log location for a task, specifying where task execution logs are stored.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cloud_watch_log ⇒ Types::CloudWatchLog
The CloudWatch Logs location for the task logs.
-
#log_type ⇒ String
The type of log storage.
Instance Attribute Details
#cloud_watch_log ⇒ Types::CloudWatchLog
The CloudWatch Logs location for the task logs.
2904 2905 2906 2907 2908 2909 |
# File 'lib/aws-sdk-securityagent/types.rb', line 2904 class LogLocation < Struct.new( :log_type, :cloud_watch_log) SENSITIVE = [] include Aws::Structure end |
#log_type ⇒ String
The type of log storage. Currently, only CLOUDWATCH is supported.
2904 2905 2906 2907 2908 2909 |
# File 'lib/aws-sdk-securityagent/types.rb', line 2904 class LogLocation < Struct.new( :log_type, :cloud_watch_log) SENSITIVE = [] include Aws::Structure end |