Class: Aws::SecurityAgent::Types::LogLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityAgent::Types::LogLocation
- Defined in:
- gems/aws-sdk-securityagent/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.
3761 3762 3763 3764 3765 3766 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 3761 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.
3761 3762 3763 3764 3765 3766 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 3761 class LogLocation < Struct.new( :log_type, :cloud_watch_log) SENSITIVE = [] include Aws::Structure end |