Module Values.CodeContentDescriptionSource

Describes details about the code of a Managed Service for Apache Flink application.

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

    The text-format code

    *)
  2. codeMD5 : CodeMD5.t option;
    (*

    The checksum that can be used to validate zip-format code.

    *)
  3. codeSize : CodeSize.t option;
    (*

    The size in bytes of the application code. Can be used to validate zip-format code.

    *)
  4. s3ApplicationCodeLocationDescription : S3ApplicationCodeLocationDescription.t option;
    (*

    The S3 bucket Amazon Resource Name (ARN), file key, and object version of the application code stored in Amazon S3.

    *)
}
Sourceval make : ?textContent:??? -> ?codeMD5:??? -> ?codeSize:??? -> ?s3ApplicationCodeLocationDescription:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of CodeSize.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