Module Values.FileLocationSource

Specifies the Amazon S3 or EFS file details to be used in the step.

Sourcetype nonrec t = {
  1. s3FileLocation : S3FileLocation.t option;
    (*

    Specifies the S3 details for the file being used, such as bucket, ETag, and so forth.

    *)
  2. efsFileLocation : EfsFileLocation.t option;
    (*

    Specifies the Amazon EFS identifier and the path for the file being used.

    *)
}
Sourceval make : ?s3FileLocation:??? -> ?efsFileLocation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of S3Bucket.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