Show / Hide Table of Contents

Class ProjectSecondarySourceArgs

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

Constructors

View Source

ProjectSecondarySourceArgs()

Declaration
public ProjectSecondarySourceArgs()

Properties

View Source

Auths

Information about the authorization settings for AWS CodeBuild to access the source code to be built. Auth blocks are documented below.

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

Buildspec

The build spec declaration to use for this build project's related builds.

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

GitCloneDepth

Truncate git history to this many commits.

Declaration
public Input<int> GitCloneDepth { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

GitSubmodulesConfig

Information about the Git submodules configuration for an AWS CodeBuild build project. Git submodules config blocks are documented below. This option is only valid when the type is CODECOMMIT, GITHUB or GITHUB_ENTERPRISE.

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

InsecureSsl

Ignore SSL warnings when connecting to source control.

Declaration
public Input<bool> InsecureSsl { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Location

The location of the source code from git or s3.

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

ReportBuildStatus

Set to true to report the status of a build's start and finish to your source provider. This option is only valid when your source provider is GITHUB, BITBUCKET, or GITHUB_ENTERPRISE.

Declaration
public Input<bool> ReportBuildStatus { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

SourceIdentifier

The source identifier. Source data will be put inside a folder named as this parameter inside AWS CodeBuild source directory

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

Type

The type of repository that contains the source code to be built. Valid values for this parameter are: CODECOMMIT, CODEPIPELINE, GITHUB, GITHUB_ENTERPRISE, BITBUCKET or S3.

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