Interface CfnProject.S3LogsConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnProject.S3LogsConfigProperty.Jsii$Proxy
Enclosing class:
CfnProject

@Stability(Stable) public static interface CfnProject.S3LogsConfigProperty extends software.amazon.jsii.JsiiSerializable
S3Logs is a property of the AWS CodeBuild Project LogsConfig property type that specifies settings for logs generated by an AWS CodeBuild build in an S3 bucket.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.codebuild.*;
 S3LogsConfigProperty s3LogsConfigProperty = S3LogsConfigProperty.builder()
         .status("status")
         // the properties below are optional
         .encryptionDisabled(false)
         .location("location")
         .build();
 

See Also: