Interface CfnWebhook.WebhookAuthConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWebhook.WebhookAuthConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnWebhook

@Stability(Stable) public static interface CfnWebhook.WebhookAuthConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.codepipeline.*;
 WebhookAuthConfigurationProperty webhookAuthConfigurationProperty = WebhookAuthConfigurationProperty.builder()
         .allowedIpRange("allowedIpRange")
         .secretToken("secretToken")
         .build();