Module Values.UpdateParallelDataRequestSource

Updates a previously created parallel data resource by importing a new input file from Amazon S3.

Sourcetype nonrec t = {
  1. name : ResourceName.t;
    (*

    The name of the parallel data resource being updated.

    *)
  2. description : Description.t option;
    (*

    A custom description for the parallel data resource in Amazon Translate.

    *)
  3. parallelDataConfig : ParallelDataConfig.t;
    (*

    Specifies the format and S3 location of the parallel data input file.

    *)
  4. clientToken : ClientTokenString.t;
    (*

    A unique identifier for the request. This token is automatically generated when you use Amazon Translate through an AWS SDK.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> name:ResourceName.t -> parallelDataConfig:ParallelDataConfig.t -> clientToken:ClientTokenString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ResourceName.t | `Structure of (string * [> `Enum of string | `String of S3Uri.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