Module Values.GetModelCopyJobResponseSource

Retrieves information about a model copy job. For more information, see Copy models to be used in other regions in the Amazon Bedrock User Guide.

Sourcetype nonrec t = {
  1. jobArn : ModelCopyJobArn.t option;
    (*

    The Amazon Resource Name (ARN) of the model copy job.

    *)
  2. status : ModelCopyJobStatus.t option;
    (*

    The status of the model copy job.

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

    The time at which the model copy job was created.

    *)
  4. targetModelArn : CustomModelArn.t option;
    (*

    The Amazon Resource Name (ARN) of the copied model.

    *)
  5. targetModelName : CustomModelName.t option;
    (*

    The name of the copied model.

    *)
  6. sourceAccountId : AccountId.t option;
    (*

    The unique identifier of the account that the model being copied originated from.

    *)
  7. sourceModelArn : ModelArn.t option;
    (*

    The Amazon Resource Name (ARN) of the original model being copied.

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

    The Amazon Resource Name (ARN) of the KMS key encrypting the copied model.

    *)
  9. targetModelTags : TagList.t option;
    (*

    The tags associated with the copied model.

    *)
  10. failureMessage : ErrorMessage.t option;
    (*

    An error message for why the model copy job failed.

    *)
  11. sourceModelName : CustomModelName.t option;
    (*

    The name of the original model being copied.

    *)
}
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 : ?jobArn:??? -> ?status:??? -> ?creationTime:??? -> ?targetModelArn:??? -> ?targetModelName:??? -> ?sourceAccountId:??? -> ?sourceModelArn:??? -> ?targetModelKmsKeyArn:??? -> ?targetModelTags:??? -> ?failureMessage:??? -> ?sourceModelName:??? -> 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 * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ModelCopyJobArn.t | `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