| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.CodeBuild.Types.BuildArtifacts
Description
Synopsis
- data BuildArtifacts = BuildArtifacts' {}
- newBuildArtifacts :: BuildArtifacts
- buildArtifacts_artifactIdentifier :: Lens' BuildArtifacts (Maybe Text)
- buildArtifacts_bucketOwnerAccess :: Lens' BuildArtifacts (Maybe BucketOwnerAccess)
- buildArtifacts_encryptionDisabled :: Lens' BuildArtifacts (Maybe Bool)
- buildArtifacts_location :: Lens' BuildArtifacts (Maybe Text)
- buildArtifacts_md5sum :: Lens' BuildArtifacts (Maybe Text)
- buildArtifacts_overrideArtifactName :: Lens' BuildArtifacts (Maybe Bool)
- buildArtifacts_sha256sum :: Lens' BuildArtifacts (Maybe Text)
Documentation
data BuildArtifacts Source #
Information about build output artifacts.
See: newBuildArtifacts smart constructor.
Constructors
| BuildArtifacts' | |
Fields
| |
Instances
newBuildArtifacts :: BuildArtifacts Source #
Create a value of BuildArtifacts 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:artifactIdentifier:BuildArtifacts', buildArtifacts_artifactIdentifier - An identifier for this artifact definition.
$sel:bucketOwnerAccess:BuildArtifacts', buildArtifacts_bucketOwnerAccess - Undocumented member.
$sel:encryptionDisabled:BuildArtifacts', buildArtifacts_encryptionDisabled - Information that tells you if encryption for build artifacts is
disabled.
$sel:location:BuildArtifacts', buildArtifacts_location - Information about the location of the build artifacts.
$sel:md5sum:BuildArtifacts', buildArtifacts_md5sum - The MD5 hash of the build artifact.
You can use this hash along with a checksum tool to confirm file integrity and authenticity.
This value is available only if the build project's packaging value
is set to ZIP.
$sel:overrideArtifactName:BuildArtifacts', buildArtifacts_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:sha256sum:BuildArtifacts', buildArtifacts_sha256sum - The SHA-256 hash of the build artifact.
You can use this hash along with a checksum tool to confirm file integrity and authenticity.
This value is available only if the build project's packaging value
is set to ZIP.
buildArtifacts_artifactIdentifier :: Lens' BuildArtifacts (Maybe Text) Source #
An identifier for this artifact definition.
buildArtifacts_bucketOwnerAccess :: Lens' BuildArtifacts (Maybe BucketOwnerAccess) Source #
Undocumented member.
buildArtifacts_encryptionDisabled :: Lens' BuildArtifacts (Maybe Bool) Source #
Information that tells you if encryption for build artifacts is disabled.
buildArtifacts_location :: Lens' BuildArtifacts (Maybe Text) Source #
Information about the location of the build artifacts.
buildArtifacts_md5sum :: Lens' BuildArtifacts (Maybe Text) Source #
The MD5 hash of the build artifact.
You can use this hash along with a checksum tool to confirm file integrity and authenticity.
This value is available only if the build project's packaging value
is set to ZIP.
buildArtifacts_overrideArtifactName :: Lens' BuildArtifacts (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.
buildArtifacts_sha256sum :: Lens' BuildArtifacts (Maybe Text) Source #
The SHA-256 hash of the build artifact.
You can use this hash along with a checksum tool to confirm file integrity and authenticity.
This value is available only if the build project's packaging value
is set to ZIP.