Interface CfnProject.CloudWatchLogsConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProject.CloudWatchLogsConfigProperty.Jsii$Proxy
- Enclosing class:
CfnProject
@Stability(Stable)
public static interface CfnProject.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.services.codebuild.*; CloudWatchLogsConfigProperty cloudWatchLogsConfigProperty = CloudWatchLogsConfigProperty.builder() .status("status") // the properties below are optional .groupName("groupName") .streamName("streamName") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnProject.CloudWatchLogsConfigProperty
static final class
An implementation forCfnProject.CloudWatchLogsConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStatus
The current status of the logs in CloudWatch Logs for a build project. Valid values are:.ENABLED
: CloudWatch Logs are enabled for this build project.DISABLED
: CloudWatch Logs are not enabled for this build project.
-
getGroupName
The group name of the logs in CloudWatch Logs.For more information, see Working with Log Groups and Log Streams .
-
getStreamName
The prefix of the stream name of the CloudWatch Logs.For more information, see Working with Log Groups and Log Streams .
-
builder
-