Show / Hide Table of Contents

Class SourceCredentialArgs

Inheritance
System.Object
InputArgs
ResourceArgs
SourceCredentialArgs
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.CodeBuild
Assembly: Pulumi.Aws.dll
Syntax
public sealed class SourceCredentialArgs : ResourceArgs

Constructors

View Source

SourceCredentialArgs()

Declaration
public SourceCredentialArgs()

Properties

View Source

AuthType

The type of authentication used to connect to a GitHub, GitHub Enterprise, or Bitbucket repository. An OAUTH connection is not supported by the API.

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

ServerType

The source provider used for this project.

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

Token

For GitHub or GitHub Enterprise, this is the personal access token. For Bitbucket, this is the app password.

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

UserName

The Bitbucket username when the authType is BASIC_AUTH. This parameter is not valid for other types of source providers or connections.

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