Module Values.S3DestinationSource

An Amazon S3 bucket and optional folder (object key prefix) where SimSpace Weaver creates a file.

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. objectKeyPrefix : ObjectKeyPrefix.t option;
    (*

    A string prefix for an Amazon S3 object key. It's usually a folder name. For more information about folders in Amazon S3, see Organizing objects in the Amazon S3 console using folders in the Amazon Simple Storage Service User Guide.

    *)
}
Sourceval context_ : string
Sourceval make : ?objectKeyPrefix:??? -> bucketName:BucketName.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