Interface CfnProjectPropsMixin.CloudWatchLogsConfigProperty

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

@Stability(Stable) public static interface CfnProjectPropsMixin.CloudWatchLogsConfigProperty extends software.amazon.jsii.JsiiSerializable
CloudWatchLogs is a property of the AWS CodeBuild Project LogsConfig property type that specifies settings for CloudWatch logs generated by an AWS CodeBuild build.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.codebuild.*;
 CloudWatchLogsConfigProperty cloudWatchLogsConfigProperty = CloudWatchLogsConfigProperty.builder()
         .groupName("groupName")
         .status("status")
         .streamName("streamName")
         .build();
 

See Also: