Module Values.GetImportedModelResponseSource

Gets properties associated with a customized model you imported.

Sourcetype nonrec t = {
  1. modelArn : ImportedModelArn.t option;
    (*

    The Amazon Resource Name (ARN) associated with this imported model.

    *)
  2. modelName : ImportedModelName.t option;
    (*

    The name of the imported model.

    *)
  3. jobName : JobName.t option;
    (*

    Job name associated with the imported model.

    *)
  4. jobArn : ModelImportJobArn.t option;
    (*

    Job Amazon Resource Name (ARN) associated with the imported model.

    *)
  5. modelDataSource : ModelDataSource.t option;
    (*

    The data source for this imported model.

    *)
  6. creationTime : Timestamp.t option;
    (*

    Creation time of the imported model.

    *)
  7. modelArchitecture : String_.t option;
    (*

    The architecture of the imported model.

    *)
  8. modelKmsKeyArn : KmsKeyArn.t option;
    (*

    The imported model is encrypted at rest using this key.

    *)
  9. instructSupported : InstructSupported.t option;
    (*

    Specifies if the imported model supports converse.

    *)
  10. customModelUnits : CustomModelUnits.t option;
    (*

    Information about the hardware utilization for a single copy of the model.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?modelArn:??? -> ?modelName:??? -> ?jobName:??? -> ?jobArn:??? -> ?modelDataSource:??? -> ?creationTime:??? -> ?modelArchitecture:??? -> ?modelKmsKeyArn:??? -> ?instructSupported:??? -> ?customModelUnits:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of InstructSupported.t | `String of ImportedModelArn.t | `Structure of (string * [> `Integer of Integer.t | `String of CustomModelUnitsVersion.t | `Structure of (string * [> `String of S3Uri.t ]) list ]) list | `Timestamp of Timestamp.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