Module Values.BuildArtifactsSource

Information about build output artifacts.

Sourcetype nonrec t = {
  1. location : String_.t option;
    (*

    Information about the location of the build artifacts.

    *)
  2. 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.

    *)
  3. 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.

    *)
  4. 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.

    *)
  5. encryptionDisabled : WrapperBoolean.t option;
    (*

    Information that tells you if encryption for build artifacts is disabled.

    *)
  6. artifactIdentifier : String_.t option;
    (*

    An identifier for this artifact definition.

    *)
  7. bucketOwnerAccess : BucketOwnerAccess.t option;
}
Sourceval make : ?location:??? -> ?sha256sum:??? -> ?md5sum:??? -> ?overrideArtifactName:??? -> ?encryptionDisabled:??? -> ?artifactIdentifier:??? -> ?bucketOwnerAccess:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of WrapperBoolean.t | `Enum of string | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t