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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnWebhook.WebhookAuthConfigurationProperty
static final class
An implementation forCfnWebhook.WebhookAuthConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllowedIpRange
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. -
getSecretToken
The property used to configure GitHub authentication.For GITHUB_HMAC, only the
SecretToken
property must be set. -
builder
-