aws-cdk-lib.aws_codebuild.CfnProject.CloudWatchLogsConfigProperty

interface CloudWatchLogsConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.CodeBuild.CfnProject.CloudWatchLogsConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodebuild#CfnProject_CloudWatchLogsConfigProperty
Javasoftware.amazon.awscdk.services.codebuild.CfnProject.CloudWatchLogsConfigProperty
Pythonaws_cdk.aws_codebuild.CfnProject.CloudWatchLogsConfigProperty
TypeScript aws-cdk-lib » aws_codebuild » CfnProject » CloudWatchLogsConfigProperty

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 { aws_codebuild as codebuild } from 'aws-cdk-lib';
const cloudWatchLogsConfigProperty: codebuild.CfnProject.CloudWatchLogsConfigProperty = {
  status: 'status',

  // the properties below are optional
  groupName: 'groupName',
  streamName: 'streamName',
};

Properties

NameTypeDescription
statusstringThe current status of the logs in CloudWatch Logs for a build project. Valid values are:.
groupName?stringThe group name of the logs in CloudWatch Logs.
streamName?stringThe prefix of the stream name of the CloudWatch Logs.

status

Type: string

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.

groupName?

Type: string (optional)

The group name of the logs in CloudWatch Logs.

For more information, see Working with Log Groups and Log Streams .


streamName?

Type: string (optional)

The prefix of the stream name of the CloudWatch Logs.

For more information, see Working with Log Groups and Log Streams .