Module Values.LayerSource

An Lambda layer.

Sourcetype nonrec t = {
  1. arn : LayerVersionArn.t option;
    (*

    The Amazon Resource Name (ARN) of the function layer.

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

    The size of the layer archive in bytes.

    *)
  3. signingProfileVersionArn : Arn.t option;
    (*

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

    *)
  4. signingJobArn : Arn.t option;
    (*

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

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