Module Values.DefinitionSource

The application definition for a particular application.

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

    The content of the application definition. This is a JSON object that contains the resource configuration/definitions that identify an application.

    *)
  2. s3Location : String2000.t option;
    (*

    The S3 bucket that contains the application definition.

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