Module Values.CodeContentSource

Specifies either the application code, or the location of the application code, for a Managed Service for Apache Flink application.

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

    The text-format code for a Managed Service for Apache Flink application.

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

    The zip-format code for a Managed Service for Apache Flink application.

    *)
  3. s3ContentLocation : S3ContentLocation.t option;
    (*

    Information about the Amazon S3 bucket that contains the application code.

    *)
}
Sourceval make : ?textContent:??? -> ?zipFileContent:??? -> ?s3ContentLocation:??? -> 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