Interface LoggingOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
LoggingOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-08-15T01:32:45.249Z") @Stability(Stable) public interface LoggingOptions extends software.amazon.jsii.JsiiSerializable
Information about logs for the build project.

A project can create logs in Amazon CloudWatch Logs, an S3 bucket, or both.

Example:

 Project.Builder.create(this, "Project")
         .logging(LoggingOptions.builder()
                 .cloudWatch(CloudWatchLoggingOptions.builder()
                         .logGroup(new LogGroup(this, "MyLogGroup"))
                         .build())
                 .build())
         .build();