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
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.
4391 4392 4393 4394 4395 4396 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 4391 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.
4391 4392 4393 4394 4395 4396 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 4391 class WebhookAuthConfiguration < Struct.new( :allowed_ip_range, :secret_token) SENSITIVE = [] include Aws::Structure end |