Interface ILoggingOptions

Information about logs for the build project.

Namespace: Amazon.CDK.AWS.CodeBuild
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ILoggingOptions
Syntax (vb)
Public Interface ILoggingOptions
Examples
new Project(this, "Project", new ProjectProps {
                 Logging = new LoggingOptions {
                     CloudWatch = new CloudWatchLoggingOptions {
                         LogGroup = new LogGroup(this, "MyLogGroup")
                     }
                 }
             });

Synopsis

Properties

CloudWatch

Information about Amazon CloudWatch Logs for a build project.

S3

Information about logs built to an S3 bucket for a build project.

Properties

CloudWatch

Information about Amazon CloudWatch Logs for a build project.

ICloudWatchLoggingOptions? CloudWatch { get; }
Property Value

ICloudWatchLoggingOptions

S3

Information about logs built to an S3 bucket for a build project.

IS3LoggingOptions? S3 { get; }
Property Value

IS3LoggingOptions