Module Values.S3ContentLocationSource

For a Managed Service for Apache Flink application provides a description of an Amazon S3 object, including the Amazon Resource Name (ARN) of the S3 bucket, the name of the Amazon S3 object that contains the data, and the version number of the Amazon S3 object that contains the data.

Sourcetype nonrec t = {
  1. bucketARN : BucketARN.t;
    (*

    The Amazon Resource Name (ARN) for the S3 bucket containing the application code.

    *)
  2. fileKey : FileKey.t;
    (*

    The file key for the object containing the application code.

    *)
  3. objectVersion : ObjectVersion.t option;
    (*

    The version of the object containing the application code.

    *)
}
Sourceval context_ : string
Sourceval make : ?objectVersion:??? -> bucketARN:BucketARN.t -> fileKey:FileKey.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BucketARN.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