pub struct BuildArtifacts {
pub artifact_identifier: Option<String>,
pub encryption_disabled: Option<bool>,
pub location: Option<String>,
pub md_5sum: Option<String>,
pub override_artifact_name: Option<bool>,
pub sha_25_6sum: Option<String>,
}Expand description
Information about build output artifacts.
Fields§
§artifact_identifier: Option<String>An identifier for this artifact definition.
encryption_disabled: Option<bool>Information that tells you if encryption for build artifacts is disabled.
location: Option<String>Information about the location of the build artifacts.
md_5sum: Option<String>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.
override_artifact_name: Option<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.
sha_25_6sum: Option<String>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.
Trait Implementations§
Source§impl Clone for BuildArtifacts
impl Clone for BuildArtifacts
Source§fn clone(&self) -> BuildArtifacts
fn clone(&self) -> BuildArtifacts
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more