interface WebhookAuthConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.CodePipeline.CfnWebhook.WebhookAuthConfigurationProperty |
![]() | software.amazon.awscdk.services.codepipeline.CfnWebhook.WebhookAuthConfigurationProperty |
![]() | aws_cdk.aws_codepipeline.CfnWebhook.WebhookAuthConfigurationProperty |
![]() | @aws-cdk/aws-codepipeline » CfnWebhook » WebhookAuthConfigurationProperty |
The authentication applied to incoming webhook trigger requests.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as codepipeline from '@aws-cdk/aws-codepipeline';
const webhookAuthConfigurationProperty: codepipeline.CfnWebhook.WebhookAuthConfigurationProperty = {
allowedIpRange: 'allowedIpRange',
secretToken: 'secretToken',
};
Properties
Name | Type | Description |
---|---|---|
allowed | string | The property used to configure acceptance of webhooks in an IP address range. |
secret | string | The property used to configure GitHub authentication. |
allowedIpRange?
Type:
string
(optional)
The property used to configure acceptance of webhooks in an IP address range.
For IP, only the AllowedIPRange
property must be set. This property must be set to a valid CIDR range.
secretToken?
Type:
string
(optional)
The property used to configure GitHub authentication.
For GITHUB_HMAC, only the SecretToken
property must be set.