public static interface BuildArtifacts.Builder extends SdkPojo, CopyableBuilder<BuildArtifacts.Builder,BuildArtifacts>
Modifier and Type | Method and Description |
---|---|
BuildArtifacts.Builder |
artifactIdentifier(String artifactIdentifier)
An identifier for this artifact definition.
|
BuildArtifacts.Builder |
encryptionDisabled(Boolean encryptionDisabled)
Information that tells you if encryption for build artifacts is disabled.
|
BuildArtifacts.Builder |
location(String location)
Information about the location of the build artifacts.
|
BuildArtifacts.Builder |
md5sum(String md5sum)
The MD5 hash of the build artifact.
|
BuildArtifacts.Builder |
overrideArtifactName(Boolean overrideArtifactName)
If this flag is set, a name specified in the build spec file overrides the artifact name.
|
BuildArtifacts.Builder |
sha256sum(String sha256sum)
The SHA-256 hash of the build artifact.
|
copy
applyMutation, build
BuildArtifacts.Builder location(String location)
Information about the location of the build artifacts.
location
- Information about the location of the build artifacts.BuildArtifacts.Builder sha256sum(String 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
.
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.Builder md5sum(String 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
.
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
.
BuildArtifacts.Builder overrideArtifactName(Boolean overrideArtifactName)
If this flag is set, a name specified in the build spec file overrides the artifact name. The name specified in a build spec 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.
overrideArtifactName
- If this flag is set, a name specified in the build spec file overrides the artifact name. The name
specified in a build spec 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.Builder encryptionDisabled(Boolean encryptionDisabled)
Information that tells you if encryption for build artifacts is disabled.
encryptionDisabled
- Information that tells you if encryption for build artifacts is disabled.BuildArtifacts.Builder artifactIdentifier(String artifactIdentifier)
An identifier for this artifact definition.
artifactIdentifier
- An identifier for this artifact definition.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.