Module Values.GetAdapterVersionResponseSource

Gets configuration information for the specified adapter version, including: AdapterId, AdapterVersion, FeatureTypes, Status, StatusMessage, DatasetConfig, KMSKeyId, OutputConfig, Tags and EvaluationMetrics.

Sourcetype nonrec t = {
  1. adapterId : AdapterId.t option;
    (*

    A string containing a unique ID for the adapter version being retrieved.

    *)
  2. adapterVersion : AdapterVersion.t option;
    (*

    A string containing the adapter version that has been retrieved.

    *)
  3. creationTime : DateTime.t option;
    (*

    The time that the adapter version was created.

    *)
  4. featureTypes : FeatureTypes.t option;
    (*

    List of the targeted feature types for the requested adapter version.

    *)
  5. status : AdapterVersionStatus.t option;
    (*

    The status of the adapter version that has been requested.

    *)
  6. statusMessage : AdapterVersionStatusMessage.t option;
    (*

    A message that describes the status of the requested adapter version.

    *)
  7. datasetConfig : AdapterVersionDatasetConfig.t option;
    (*

    Specifies a dataset used to train a new adapter version. Takes a ManifestS3Objec as the value.

    *)
  8. kMSKeyId : KMSKeyId.t option;
    (*

    The identifier for your AWS Key Management Service key (AWS KMS key). Used to encrypt your documents.

    *)
  9. outputConfig : OutputConfig.t option;
  10. evaluationMetrics : AdapterVersionEvaluationMetrics.t option;
    (*

    The evaluation metrics (F1 score, Precision, and Recall) for the requested version, grouped by baseline metrics and adapter version.

    *)
  11. tags : TagMap.t option;
    (*

    A set of tags (key-value pairs) that are associated with the adapter version.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerError of InternalServerError.t
  3. | `InvalidParameterException of InvalidParameterException.t
  4. | `ProvisionedThroughputExceededException of ProvisionedThroughputExceededException.t
  5. | `ResourceNotFoundException of ResourceNotFoundException.t
  6. | `ThrottlingException of ThrottlingException.t
  7. | `ValidationException of ValidationException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?adapterId:??? -> ?adapterVersion:??? -> ?creationTime:??? -> ?featureTypes:??? -> ?status:??? -> ?statusMessage:??? -> ?datasetConfig:??? -> ?kMSKeyId:??? -> ?outputConfig:??? -> ?evaluationMetrics:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of unit | `InternalServerError of unit | `InvalidParameterException of unit | `ProvisionedThroughputExceededException of unit | `ResourceNotFoundException of unit | `ThrottlingException of unit | `Unknown_operation_error of string * string option | `ValidationException of unit ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of unit | `InternalServerError of unit | `InvalidParameterException of unit | `ProvisionedThroughputExceededException of unit | `ResourceNotFoundException of unit | `ThrottlingException of unit | `Unknown_operation_error of string * string option | `ValidationException of unit ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Float of Float_.t ]) list ]) list ] list | `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 | `Timestamp of DateTime.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