Module Values.S3LocationSource

A location in Amazon Simple Storage Service (Amazon S3) where SimSpace Weaver stores simulation data, such as your app .zip files and schema file. For more information about Amazon S3, see the Amazon Simple Storage Service User Guide .

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

    The name of an Amazon S3 bucket. For more information about buckets, see Creating, configuring, and working with Amazon S3 buckets in the Amazon Simple Storage Service User Guide.

    *)
  2. objectKey : ObjectKey.t;
    (*

    The key name of an object in Amazon S3. For more information about Amazon S3 objects and object keys, see Uploading, downloading, and working with objects in Amazon S3 in the Amazon Simple Storage Service User Guide.

    *)
}
Sourceval context_ : string
Sourceval make : bucketName:BucketName.t -> objectKey:ObjectKey.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