Module Values.RawStringSource

A revision for an Lambda deployment that is a YAML-formatted or JSON-formatted string. For Lambda deployments, the revision is the same as the AppSpec file.

Sourcetype nonrec t = {
  1. content : RawStringContent.t option;
    (*

    The YAML-formatted or JSON-formatted revision string. It includes information about which Lambda function to update and optional Lambda functions that validate deployment lifecycle events.

    *)
  2. sha256 : RawStringSha256.t option;
    (*

    The SHA256 hash value of the revision content.

    *)
}
Sourceval make : ?content:??? -> ?sha256:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RawStringContent.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