Interface CfnWebhookPropsMixin.WebhookAuthConfigurationProperty

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

@Stability(Stable) public static interface CfnWebhookPropsMixin.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.cfnpropertymixins.services.codepipeline.*;
 WebhookAuthConfigurationProperty webhookAuthConfigurationProperty = WebhookAuthConfigurationProperty.builder()
         .allowedIpRange("allowedIpRange")
         .secretToken("secretToken")
         .build();
 

See Also: