Module Values.CodeContentUpdateSource

Describes an update to the code of an application. Not supported for Apache Zeppelin.

Sourcetype nonrec t = {
  1. textContentUpdate : TextContent.t option;
    (*

    Describes an update to the text code for an application.

    *)
  2. zipFileContentUpdate : ZipFileContent.t option;
    (*

    Describes an update to the zipped code for an application.

    *)
  3. s3ContentLocationUpdate : S3ContentLocationUpdate.t option;
    (*

    Describes an update to the location of code for an application.

    *)
}
Sourceval make : ?textContentUpdate:??? -> ?zipFileContentUpdate:??? -> ?s3ContentLocationUpdate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of ZipFileContent.t | `String of TextContent.t | `Structure of (string * [> `String of BucketARN.t ]) list ]) 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