libZSservicesZSamazonka-codebuildZSamazonka-codebuild
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.CodeBuild.Types.ProjectArtifacts

Description

 
Synopsis

Documentation

data ProjectArtifacts Source #

Information about the build output artifacts for the build project.

See: newProjectArtifacts smart constructor.

Constructors

ProjectArtifacts' 

Fields

  • packaging :: Maybe ArtifactPackaging

    The type of build output artifact to create:

    • If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output artifacts instead of CodeBuild.
    • If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced.
    • If type is set to S3, valid values include:

      • NONE: CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified.
      • ZIP: CodeBuild creates in the output bucket a ZIP file that contains the build output.
  • path :: Maybe Text

    Along with namespaceType and name, the pattern that CodeBuild uses to name and store the output artifact:

    • If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output names instead of CodeBuild.
    • If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced.
    • If type is set to S3, this is the path to the output artifact. If path is not specified, path is not used.

    For example, if path is set to MyArtifacts, namespaceType is set to NONE, and name is set to MyArtifact.zip, the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip.

  • location :: Maybe Text

    Information about the build output artifact location:

    • If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output locations instead of CodeBuild.
    • If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced.
    • If type is set to S3, this is the name of the output bucket.
  • name :: Maybe Text

    Along with path and namespaceType, the pattern that CodeBuild uses to name and store the output artifact:

    • If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output names instead of CodeBuild.
    • If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced.
    • If type is set to S3, this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.

    For example:

    • If path is set to MyArtifacts, namespaceType is set to BUILD_ID, and name is set to MyArtifact.zip, then the output artifact is stored in MyArtifacts/<build-ID>/MyArtifact.zip.
    • If path is empty, namespaceType is set to NONE, and name is set to "/", the output artifact is stored in the root of the output bucket.
    • If path is set to MyArtifacts, namespaceType is set to BUILD_ID, and name is set to "/", the output artifact is stored in MyArtifacts/<build-ID>.
  • encryptionDisabled :: Maybe Bool

    Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon S3. If this is set with another artifacts type, an invalidInputException is thrown.

  • overrideArtifactName :: Maybe Bool

    If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

  • artifactIdentifier :: Maybe Text

    An identifier for this artifact definition.

  • bucketOwnerAccess :: Maybe BucketOwnerAccess
     
  • namespaceType :: Maybe ArtifactNamespace

    Along with path and name, the pattern that CodeBuild uses to determine the name and location to store the output artifact:

    • If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output names instead of CodeBuild.
    • If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced.
    • If type is set to S3, valid values include:

      • BUILD_ID: Include the build ID in the location of the build output artifact.
      • NONE: Do not include the build ID. This is the default if namespaceType is not specified.

    For example, if path is set to MyArtifacts, namespaceType is set to BUILD_ID, and name is set to MyArtifact.zip, the output artifact is stored in MyArtifacts/<build-ID>/MyArtifact.zip.

  • type' :: ArtifactsType

    The type of build output artifact. Valid values include:

    • CODEPIPELINE: The build project has build output generated through CodePipeline.

      The CODEPIPELINE type is not supported for secondaryArtifacts.

    • NO_ARTIFACTS: The build project does not produce any build output.
    • S3: The build project stores build output in Amazon S3.

Instances

Instances details
Eq ProjectArtifacts Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.ProjectArtifacts

Read ProjectArtifacts Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.ProjectArtifacts

Show ProjectArtifacts Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.ProjectArtifacts

Generic ProjectArtifacts Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.ProjectArtifacts

Associated Types

type Rep ProjectArtifacts :: Type -> Type #

NFData ProjectArtifacts Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.ProjectArtifacts

Methods

rnf :: ProjectArtifacts -> () #

Hashable ProjectArtifacts Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.ProjectArtifacts

ToJSON ProjectArtifacts Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.ProjectArtifacts

FromJSON ProjectArtifacts Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.ProjectArtifacts

type Rep ProjectArtifacts Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.ProjectArtifacts

newProjectArtifacts Source #

Create a value of ProjectArtifacts with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:packaging:ProjectArtifacts', projectArtifacts_packaging - The type of build output artifact to create:

  • If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output artifacts instead of CodeBuild.
  • If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced.
  • If type is set to S3, valid values include:

    • NONE: CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified.
    • ZIP: CodeBuild creates in the output bucket a ZIP file that contains the build output.

$sel:path:ProjectArtifacts', projectArtifacts_path - Along with namespaceType and name, the pattern that CodeBuild uses to name and store the output artifact:

  • If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output names instead of CodeBuild.
  • If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced.
  • If type is set to S3, this is the path to the output artifact. If path is not specified, path is not used.

For example, if path is set to MyArtifacts, namespaceType is set to NONE, and name is set to MyArtifact.zip, the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip.

$sel:location:ProjectArtifacts', projectArtifacts_location - Information about the build output artifact location:

  • If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output locations instead of CodeBuild.
  • If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced.
  • If type is set to S3, this is the name of the output bucket.

$sel:name:ProjectArtifacts', projectArtifacts_name - Along with path and namespaceType, the pattern that CodeBuild uses to name and store the output artifact:

  • If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output names instead of CodeBuild.
  • If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced.
  • If type is set to S3, this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.

For example:

  • If path is set to MyArtifacts, namespaceType is set to BUILD_ID, and name is set to MyArtifact.zip, then the output artifact is stored in MyArtifacts/<build-ID>/MyArtifact.zip.
  • If path is empty, namespaceType is set to NONE, and name is set to "/", the output artifact is stored in the root of the output bucket.
  • If path is set to MyArtifacts, namespaceType is set to BUILD_ID, and name is set to "/", the output artifact is stored in MyArtifacts/<build-ID>.

$sel:encryptionDisabled:ProjectArtifacts', projectArtifacts_encryptionDisabled - Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon S3. If this is set with another artifacts type, an invalidInputException is thrown.

$sel:overrideArtifactName:ProjectArtifacts', projectArtifacts_overrideArtifactName - If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

$sel:artifactIdentifier:ProjectArtifacts', projectArtifacts_artifactIdentifier - An identifier for this artifact definition.

$sel:bucketOwnerAccess:ProjectArtifacts', projectArtifacts_bucketOwnerAccess - Undocumented member.

$sel:namespaceType:ProjectArtifacts', projectArtifacts_namespaceType - Along with path and name, the pattern that CodeBuild uses to determine the name and location to store the output artifact:

  • If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output names instead of CodeBuild.
  • If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced.
  • If type is set to S3, valid values include:

    • BUILD_ID: Include the build ID in the location of the build output artifact.
    • NONE: Do not include the build ID. This is the default if namespaceType is not specified.

For example, if path is set to MyArtifacts, namespaceType is set to BUILD_ID, and name is set to MyArtifact.zip, the output artifact is stored in MyArtifacts/<build-ID>/MyArtifact.zip.

$sel:type':ProjectArtifacts', projectArtifacts_type - The type of build output artifact. Valid values include:

  • CODEPIPELINE: The build project has build output generated through CodePipeline.

    The CODEPIPELINE type is not supported for secondaryArtifacts.

  • NO_ARTIFACTS: The build project does not produce any build output.
  • S3: The build project stores build output in Amazon S3.

projectArtifacts_packaging :: Lens' ProjectArtifacts (Maybe ArtifactPackaging) Source #

The type of build output artifact to create:

  • If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output artifacts instead of CodeBuild.
  • If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced.
  • If type is set to S3, valid values include:

    • NONE: CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified.
    • ZIP: CodeBuild creates in the output bucket a ZIP file that contains the build output.

projectArtifacts_path :: Lens' ProjectArtifacts (Maybe Text) Source #

Along with namespaceType and name, the pattern that CodeBuild uses to name and store the output artifact:

  • If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output names instead of CodeBuild.
  • If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced.
  • If type is set to S3, this is the path to the output artifact. If path is not specified, path is not used.

For example, if path is set to MyArtifacts, namespaceType is set to NONE, and name is set to MyArtifact.zip, the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip.

projectArtifacts_location :: Lens' ProjectArtifacts (Maybe Text) Source #

Information about the build output artifact location:

  • If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output locations instead of CodeBuild.
  • If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced.
  • If type is set to S3, this is the name of the output bucket.

projectArtifacts_name :: Lens' ProjectArtifacts (Maybe Text) Source #

Along with path and namespaceType, the pattern that CodeBuild uses to name and store the output artifact:

  • If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output names instead of CodeBuild.
  • If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced.
  • If type is set to S3, this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.

For example:

  • If path is set to MyArtifacts, namespaceType is set to BUILD_ID, and name is set to MyArtifact.zip, then the output artifact is stored in MyArtifacts/<build-ID>/MyArtifact.zip.
  • If path is empty, namespaceType is set to NONE, and name is set to "/", the output artifact is stored in the root of the output bucket.
  • If path is set to MyArtifacts, namespaceType is set to BUILD_ID, and name is set to "/", the output artifact is stored in MyArtifacts/<build-ID>.

projectArtifacts_encryptionDisabled :: Lens' ProjectArtifacts (Maybe Bool) Source #

Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon S3. If this is set with another artifacts type, an invalidInputException is thrown.

projectArtifacts_overrideArtifactName :: Lens' ProjectArtifacts (Maybe Bool) Source #

If this flag is set, a name specified in the buildspec file overrides the artifact name. The name specified in a buildspec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.

projectArtifacts_artifactIdentifier :: Lens' ProjectArtifacts (Maybe Text) Source #

An identifier for this artifact definition.

projectArtifacts_namespaceType :: Lens' ProjectArtifacts (Maybe ArtifactNamespace) Source #

Along with path and name, the pattern that CodeBuild uses to determine the name and location to store the output artifact:

  • If type is set to CODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output names instead of CodeBuild.
  • If type is set to NO_ARTIFACTS, this value is ignored if specified, because no build output is produced.
  • If type is set to S3, valid values include:

    • BUILD_ID: Include the build ID in the location of the build output artifact.
    • NONE: Do not include the build ID. This is the default if namespaceType is not specified.

For example, if path is set to MyArtifacts, namespaceType is set to BUILD_ID, and name is set to MyArtifact.zip, the output artifact is stored in MyArtifacts/<build-ID>/MyArtifact.zip.

projectArtifacts_type :: Lens' ProjectArtifacts ArtifactsType Source #

The type of build output artifact. Valid values include:

  • CODEPIPELINE: The build project has build output generated through CodePipeline.

    The CODEPIPELINE type is not supported for secondaryArtifacts.

  • NO_ARTIFACTS: The build project does not produce any build output.
  • S3: The build project stores build output in Amazon S3.