Module Values.CreateBillOfMaterialsImportJobRequestSource

The request parameters for CreateBillOfMaterialsImportJob.

Sourcetype nonrec t = {
  1. instanceId : UUID.t;
    (*

    The AWS Supply Chain instance identifier.

    *)
  2. s3uri : ConfigurationS3Uri.t;
    (*

    The S3 URI of the CSV file to be imported. The bucket must grant permissions for AWS Supply Chain to read the file.

    *)
  3. clientToken : ClientToken.t option;
    (*

    An idempotency token ensures the API request is only completed no more than once. This way, retrying the request will not trigger the operation multiple times. A client token is a unique, case-sensitive string of 33 to 128 ASCII characters. To make an idempotent API request, specify a client token in the request. You should not reuse the same client token for other requests. If you retry a successful request with the same client token, the request will succeed with no further actions being taken, and you will receive the same API response as the original successful request.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> instanceId:UUID.t -> s3uri:ConfigurationS3Uri.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UUID.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