Module Values.InputDataConfigSource

Contains the Amazon S3 location of the training data you want to use to create a new custom language model, and permissions to access this location. When using InputDataConfig, you must include these sub-parameters: S3Uri and DataAccessRoleArn. You can optionally include TuningDataS3Uri.

Sourcetype nonrec t = {
  1. s3Uri : Uri_.t;
    (*

    The Amazon S3 location (URI) of the text files you want to use to train your custom language model. Here's an example URI path: s3://DOC-EXAMPLE-BUCKET/my-model-training-data/

    *)
  2. tuningDataS3Uri : Uri_.t option;
    (*

    The Amazon S3 location (URI) of the text files you want to use to tune your custom language model. Here's an example URI path: s3://DOC-EXAMPLE-BUCKET/my-model-tuning-data/

    *)
  3. dataAccessRoleArn : DataAccessRoleArn.t;
    (*

    The Amazon Resource Name (ARN) of an IAM role that has permissions to access the Amazon S3 bucket that contains your input files. If the role that you specify doesn’t have the appropriate permissions to access the specified Amazon S3 location, your request fails. IAM role ARNs have the format arn:partition:iam::account:role/role-name-with-path. For example: arn:aws:iam::111122223333:role/Admin. For more information, see IAM ARNs.

    *)
}
Sourceval context_ : string
Sourceval make : ?tuningDataS3Uri:??? -> s3Uri:Uri_.t -> dataAccessRoleArn:DataAccessRoleArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Uri_.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