Module Values.S3ResourceSource

Each S3Resource object represents an Amazon S3 bucket that your transferred data will be exported from or imported into. For export jobs, this object can have an optional KeyRange value. The length of the range is defined at job creation, and has either an inclusive BeginMarker, an inclusive EndMarker, or both. Ranges are UTF-8 binary sorted.

Sourcetype nonrec t = {
  1. bucketArn : ResourceARN.t option;
    (*

    The Amazon Resource Name (ARN) of an Amazon S3 bucket.

    *)
  2. keyRange : KeyRange.t option;
    (*

    For export jobs, you can provide an optional KeyRange within a specific Amazon S3 bucket. The length of the range is defined at job creation, and has either an inclusive BeginMarker, an inclusive EndMarker, or both. Ranges are UTF-8 binary sorted.

    *)
  3. targetOnDeviceServices : TargetOnDeviceServiceList.t option;
    (*

    Specifies the service or services on the Snow Family device that your transferred data will be exported from or imported into. Amazon Web Services Snow Family supports Amazon S3 and NFS (Network File System).

    *)
}
Sourceval make : ?bucketArn:??? -> ?keyRange:??? -> ?targetOnDeviceServices:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string ]) list ] list | `String of ResourceARN.t | `Structure of (string * [> `String of String_.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