aws-cdk-lib.aws_codebuild.CfnProject.BuildStatusConfigProperty

interface BuildStatusConfigProperty

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

Contains information that defines how the AWS CodeBuild build project reports the build status to the source provider.

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 buildStatusConfigProperty: codebuild.CfnProject.BuildStatusConfigProperty = {
  context: 'context',
  targetUrl: 'targetUrl',
};

Properties

NameTypeDescription
context?stringSpecifies the context of the build status CodeBuild sends to the source provider.
targetUrl?stringSpecifies the target url of the build status CodeBuild sends to the source provider.

context?

Type: string (optional)

Specifies the context of the build status CodeBuild sends to the source provider.

The usage of this parameter depends on the source provider.

  • Bitbucket - This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.
  • GitHub/GitHub Enterprise Server - This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

targetUrl?

Type: string (optional)

Specifies the target url of the build status CodeBuild sends to the source provider.

The usage of this parameter depends on the source provider.

  • Bitbucket - This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.
  • GitHub/GitHub Enterprise Server - This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.