Class: Aws::CodeBuild::Types::LogsConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#cloud_watch_logsTypes::CloudWatchLogsConfig

Information about CloudWatch Logs for a build project. CloudWatch Logs are enabled by default.



3489
3490
3491
3492
3493
3494
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 3489

class LogsConfig < Struct.new(
  :cloud_watch_logs,
  :s3_logs)
  SENSITIVE = []
  include Aws::Structure
end

#s3_logsTypes::S3LogsConfig

Information about logs built to an S3 bucket for a build project. S3 logs are not enabled by default.

Returns:



3489
3490
3491
3492
3493
3494
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 3489

class LogsConfig < Struct.new(
  :cloud_watch_logs,
  :s3_logs)
  SENSITIVE = []
  include Aws::Structure
end