Show / Hide Table of Contents

Class ProjectSecondaryArtifactArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ProjectSecondaryArtifactArgs
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 ProjectSecondaryArtifactArgs : ResourceArgs

Constructors

View Source

ProjectSecondaryArtifactArgs()

Declaration
public ProjectSecondaryArtifactArgs()

Properties

View Source

ArtifactIdentifier

The artifact identifier. Must be the same specified inside AWS CodeBuild buildspec.

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

EncryptionDisabled

If set to true, output artifacts will not be encrypted. If type is set to NO_ARTIFACTS then this value will be ignored. Defaults to false.

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

Location

Information about the build output artifact location. If type is set to CODEPIPELINE or NO_ARTIFACTS then this value will be ignored. If type is set to S3, this is the name of the output bucket. If path is not also specified, then location can also specify the path of the output artifact in the output bucket.

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

Name

The name of the project. If type is set to S3, this is the name of the output artifact object

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

NamespaceType

The namespace to use in storing build artifacts. If type is set to S3, then valid values for this parameter are: BUILD_ID or NONE.

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

OverrideArtifactName

If set to true, a name specified in the build spec file overrides the artifact name.

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

Packaging

The type of build output artifact to create. If type is set to S3, valid values for this parameter are: NONE or ZIP

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

Path

If type is set to S3, this is the path to the output artifact

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

Type

The build output artifact's type. Valid values for this parameter are: CODEPIPELINE, NO_ARTIFACTS 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.