Values.BuildArtifactsSourceInformation about build output artifacts.
type nonrec t = {location : String_.t option;Information about the location of the build artifacts.
*)sha256sum : String_.t option;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.
*)md5sum : String_.t option;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.
*)overrideArtifactName : WrapperBoolean.t option;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.
*)encryptionDisabled : WrapperBoolean.t option;Information that tells you if encryption for build artifacts is disabled.
*)artifactIdentifier : String_.t option;An identifier for this artifact definition.
*)bucketOwnerAccess : BucketOwnerAccess.t option;}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of WrapperBoolean.t
| `Enum of string
| `String of String_.t ])
list ]