Class: Aws::CodeBuild::Types::LogsConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::LogsConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codebuild/types.rb
Overview
Information about logs for a build project. These can be logs in CloudWatch Logs, built in a specified S3 bucket, or both.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cloud_watch_logs ⇒ Types::CloudWatchLogsConfig
Information about CloudWatch Logs for a build project.
-
#s3_logs ⇒ Types::S3LogsConfig
Information about logs built to an S3 bucket for a build project.
Instance Attribute Details
#cloud_watch_logs ⇒ Types::CloudWatchLogsConfig
Information about CloudWatch Logs for a build project. CloudWatch Logs are enabled by default.
3639 3640 3641 3642 3643 3644 |
# File 'lib/aws-sdk-codebuild/types.rb', line 3639 class LogsConfig < Struct.new( :cloud_watch_logs, :s3_logs) SENSITIVE = [] include Aws::Structure end |
#s3_logs ⇒ Types::S3LogsConfig
Information about logs built to an S3 bucket for a build project. S3 logs are not enabled by default.
3639 3640 3641 3642 3643 3644 |
# File 'lib/aws-sdk-codebuild/types.rb', line 3639 class LogsConfig < Struct.new( :cloud_watch_logs, :s3_logs) SENSITIVE = [] include Aws::Structure end |