Module Values.JobManifestLocationSource

Contains the information required to locate a manifest object. Manifests can't be imported from directory buckets. For more information, see Directory buckets.

Sourcetype nonrec t = {
  1. objectArn : S3KeyArnString.t;
    (*

    The Amazon Resource Name (ARN) for a manifest object. When you're using XML requests, you must replace special characters (such as carriage returns) in object keys with their equivalent XML entity codes. For more information, see XML-related object key constraints in the Amazon S3 User Guide.

    *)
  2. objectVersionId : S3ObjectVersionId.t option;
    (*

    The optional version ID to identify a specific version of the manifest object.

    *)
  3. eTag : NonEmptyMaxLength1024String.t;
    (*

    The ETag for the specified manifest object.

    *)
}
Sourceval context_ : string
Sourceval make : ?objectVersionId:??? -> objectArn:S3KeyArnString.t -> eTag:NonEmptyMaxLength1024String.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3KeyArnString.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