Show / Hide Table of Contents

Class WebhookArgs

Inheritance
System.Object
InputArgs
ResourceArgs
WebhookArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.CodePipeline
Assembly: Pulumi.Aws.dll
Syntax
public sealed class WebhookArgs : ResourceArgs

Constructors

View Source

WebhookArgs()

Declaration
public WebhookArgs()

Properties

View Source

Authentication

The type of authentication to use. One of IP, GITHUB_HMAC, or UNAUTHENTICATED.

Declaration
public Input<string> Authentication { get; set; }
Property Value
Type Description
Input<System.String>
View Source

AuthenticationConfiguration

An auth block. Required for IP and GITHUB_HMAC. Auth blocks are documented below.

Declaration
public Input<WebhookAuthenticationConfigurationArgs> AuthenticationConfiguration { get; set; }
Property Value
Type Description
Input<WebhookAuthenticationConfigurationArgs>
View Source

Filters

One or more filter blocks. Filter blocks are documented below.

Declaration
public InputList<WebhookFilterArgs> Filters { get; set; }
Property Value
Type Description
InputList<WebhookFilterArgs>
View Source

Name

The name of the webhook.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tags

A map of tags to assign to the resource.

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

TargetAction

The name of the action in a pipeline you want to connect to the webhook. The action must be from the source (first) stage of the pipeline.

Declaration
public Input<string> TargetAction { get; set; }
Property Value
Type Description
Input<System.String>
View Source

TargetPipeline

The name of the pipeline.

Declaration
public Input<string> TargetPipeline { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.