Class: Aws::CodePipeline::Types::WebhookAuthConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::WebhookAuthConfiguration
- Defined in:
- gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb
Overview
Note:
When making an API call, you may pass WebhookAuthConfiguration data as a hash:
{
allowed_ip_range: "WebhookAuthConfigurationAllowedIPRange",
secret_token: "WebhookAuthConfigurationSecretToken",
}
The authentication applied to incoming webhook trigger requests.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allowed_ip_range ⇒ String
The property used to configure acceptance of webhooks in an IP address range.
-
#secret_token ⇒ String
The property used to configure GitHub authentication.
Instance Attribute Details
#allowed_ip_range ⇒ String
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.
5042 5043 5044 5045 5046 5047 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 5042 class WebhookAuthConfiguration < Struct.new( :allowed_ip_range, :secret_token) SENSITIVE = [] include Aws::Structure end |
#secret_token ⇒ String
The property used to configure GitHub authentication. For
GITHUB_HMAC, only the SecretToken
property must be set.
5042 5043 5044 5045 5046 5047 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 5042 class WebhookAuthConfiguration < Struct.new( :allowed_ip_range, :secret_token) SENSITIVE = [] include Aws::Structure end |