Module Values.LayerVersionContentOutputSource

Details about a version of an Lambda layer.

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

    A link to the layer archive in Amazon S3 that is valid for 10 minutes.

    *)
  2. codeSha256 : String_.t option;
    (*

    The SHA-256 hash of the layer archive.

    *)
  3. codeSize : Long.t option;
    (*

    The size of the layer archive in bytes.

    *)
  4. signingProfileVersionArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) for a signing profile version.

    *)
  5. signingJobArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of a signing job.

    *)
}
Sourceval make : ?location:??? -> ?codeSha256:??? -> ?codeSize:??? -> ?signingProfileVersionArn:??? -> ?signingJobArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `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