Values.CreateAdapterVersionRequestSourceCreates a new version of an adapter. Operates on a provided AdapterId and a specified dataset provided via the DatasetConfig argument. Requires that you specify an Amazon S3 bucket with the OutputConfig argument. You can provide an optional KMSKeyId, an optional ClientRequestToken, and optional tags.
type nonrec t = {adapterId : AdapterId.t;A string containing a unique ID for the adapter that will receive a new version.
*)clientRequestToken : ClientRequestToken.t option;Idempotent token is used to recognize the request. If the same token is used with multiple CreateAdapterVersion requests, the same session is returned. This token is employed to avoid unintentionally creating the same session multiple times.
*)datasetConfig : AdapterVersionDatasetConfig.t;Specifies a dataset used to train a new adapter version. Takes a ManifestS3Object as the value.
*)kMSKeyId : KMSKeyId.t option;The identifier for your AWS Key Management Service key (AWS KMS key). Used to encrypt your documents.
*)outputConfig : OutputConfig.t;}val make :
?clientRequestToken:??? ->
?kMSKeyId:??? ->
?tags:??? ->
adapterId:AdapterId.t ->
datasetConfig:AdapterVersionDatasetConfig.t ->
outputConfig:OutputConfig.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of AdapterId.t
| `Structure of
(string
* [> `String of S3Bucket.t
| `Structure of (string * [> `String of S3Bucket.t ]) list ])
list ])
list ]