Interface CfnWebhookProps
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnWebhookProps.Jsii$Proxy
CfnWebhook.
 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.codepipeline.*;
 CfnWebhookProps cfnWebhookProps = CfnWebhookProps.builder()
         .authentication("authentication")
         .authenticationConfiguration(WebhookAuthConfigurationProperty.builder()
                 .allowedIpRange("allowedIpRange")
                 .secretToken("secretToken")
                 .build())
         .filters(List.of(WebhookFilterRuleProperty.builder()
                 .jsonPath("jsonPath")
                 // the properties below are optional
                 .matchEquals("matchEquals")
                 .build()))
         .targetAction("targetAction")
         .targetPipeline("targetPipeline")
         // the properties below are optional
         .name("name")
         .registerWithThirdParty(false)
         .targetPipelineVersion(123)
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWebhookPropsstatic final classAn implementation forCfnWebhookProps
- 
Method SummaryModifier and TypeMethodDescriptionstatic CfnWebhookProps.Builderbuilder()Supported options are GITHUB_HMAC, IP, and UNAUTHENTICATED.Properties that configure the authentication applied to incoming webhook trigger requests.A list of rules applied to the body/payload sent in the POST request to a webhook URL.default StringgetName()The name of the webhook.default ObjectConfigures a connection between the webhook that was created and the external tool with events to be detected.The name of the action in a pipeline you want to connect to the webhook.The name of the pipeline you want to connect to the webhook.default NumberThe version number of the pipeline to be connected to the trigger request.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getAuthenticationSupported options are GITHUB_HMAC, IP, and UNAUTHENTICATED.When creating CodePipeline webhooks, do not use your own credentials or reuse the same secret token across multiple webhooks. For optimal security, generate a unique secret token for each webhook you create. The secret token is an arbitrary string that you provide, which GitHub uses to compute and sign the webhook payloads sent to CodePipeline, for protecting the integrity and authenticity of the webhook payloads. Using your own credentials or reusing the same token across multiple webhooks can lead to security vulnerabilities. > If a secret token was provided, it will be redacted in the response. - For information about the authentication scheme implemented by GITHUB_HMAC, see Securing your webhooks on the GitHub Developer website.
- IP rejects webhooks trigger requests unless they originate from an IP address in the IP range whitelisted in the authentication configuration.
- UNAUTHENTICATED accepts all webhook trigger requests regardless of origin.
 - See Also:
 
- 
getAuthenticationConfigurationProperties that configure the authentication applied to incoming webhook trigger requests.The required properties depend on the authentication type. For GITHUB_HMAC, only the SecretTokenproperty must be set. For IP, only theAllowedIPRangeproperty must be set to a valid CIDR range. For UNAUTHENTICATED, no properties can be set.Returns union: either IResolvableorCfnWebhook.WebhookAuthConfigurationProperty- See Also:
 
- 
getFiltersA list of rules applied to the body/payload sent in the POST request to a webhook URL.All defined rules must pass for the request to be accepted and the pipeline started. Returns union: either IResolvableor Listinvalid input: '<'eitherIResolvableorCfnWebhook.WebhookFilterRuleProperty>- See Also:
 
- 
getTargetActionThe name of the action in a pipeline you want to connect to the webhook.The action must be from the source (first) stage of the pipeline. - See Also:
 
- 
getTargetPipelineThe name of the pipeline you want to connect to the webhook.- See Also:
 
- 
getNameThe name of the webhook.- See Also:
 
- 
getRegisterWithThirdPartyConfigures a connection between the webhook that was created and the external tool with events to be detected.Returns union: either BooleanorIResolvable- See Also:
 
- 
getTargetPipelineVersionThe version number of the pipeline to be connected to the trigger request.Required: Yes Type: Integer Update requires: No interruption - See Also:
 
- 
builder- Returns:
- a CfnWebhookProps.BuilderofCfnWebhookProps
 
 
-