interface WebhookReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodePipeline.WebhookReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodepipeline#WebhookReference |
Java | software.amazon.awscdk.services.codepipeline.WebhookReference |
Python | aws_cdk.aws_codepipeline.WebhookReference |
TypeScript | aws-cdk-lib » aws_codepipeline » WebhookReference |
A reference to a Webhook resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codepipeline as codepipeline } from 'aws-cdk-lib';
const webhookReference: codepipeline.WebhookReference = {
webhookId: 'webhookId',
};
Properties
| Name | Type | Description |
|---|---|---|
| webhook | string | The Id of the Webhook resource. |
webhookId
Type:
string
The Id of the Webhook resource.

.NET
Go
Java
Python
TypeScript