@Stability(value=Stable)
public static interface CfnProject.CloudWatchLogsConfigProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnProject.CloudWatchLogsConfigProperty.Builder
A builder for
CfnProject.CloudWatchLogsConfigProperty |
static class |
CfnProject.CloudWatchLogsConfigProperty.Jsii$Proxy
An implementation for
CfnProject.CloudWatchLogsConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnProject.CloudWatchLogsConfigProperty.Builder |
builder() |
default String |
getGroupName()
The group name of the logs in CloudWatch Logs.
|
String |
getStatus()
The current status of the logs in CloudWatch Logs for a build project.
|
default String |
getStreamName()
The prefix of the stream name of the CloudWatch Logs.
|
@Stability(value=Stable) @NotNull String getStatus()
ENABLED : CloudWatch Logs are enabled for this build project.DISABLED : CloudWatch Logs are not enabled for this build project.@Stability(value=Stable) @Nullable default String getGroupName()
For more information, see Working with Log Groups and Log Streams .
@Stability(value=Stable) @Nullable default String getStreamName()
For more information, see Working with Log Groups and Log Streams .
@Stability(value=Stable) static CfnProject.CloudWatchLogsConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.