Module Values.S3SourceSource

Information about the Amazon S3 bucket where you saved your unsigned code.

Sourcetype nonrec t = {
  1. bucketName : BucketName.t;
    (*

    Name of the S3 bucket.

    *)
  2. key : Key.t;
    (*

    Key name of the bucket object that contains your unsigned code.

    *)
  3. version : Version.t;
    (*

    Version of your source image in your version enabled S3 bucket.

    *)
}
Sourceval context_ : string
Sourceval make : bucketName:BucketName.t -> key:Key.t -> version:Version.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BucketName.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