Class: Aws::CodeBuild::Types::LogsConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::LogsConfig
- Defined in:
- gems/aws-sdk-codebuild/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.
3832 3833 3834 3835 3836 3837 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 3832 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.
3832 3833 3834 3835 3836 3837 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 3832 class LogsConfig < Struct.new( :cloud_watch_logs, :s3_logs) SENSITIVE = [] include Aws::Structure end |