Values.GetModelCopyJobResponseSourceRetrieves information about a model copy job. For more information, see Copy models to be used in other regions in the Amazon Bedrock User Guide.
type nonrec t = {jobArn : ModelCopyJobArn.t option;The Amazon Resource Name (ARN) of the model copy job.
*)status : ModelCopyJobStatus.t option;The status of the model copy job.
*)creationTime : Timestamp.t option;The time at which the model copy job was created.
*)targetModelArn : CustomModelArn.t option;The Amazon Resource Name (ARN) of the copied model.
*)targetModelName : CustomModelName.t option;The name of the copied model.
*)sourceAccountId : AccountId.t option;The unique identifier of the account that the model being copied originated from.
*)sourceModelArn : ModelArn.t option;The Amazon Resource Name (ARN) of the original model being copied.
*)targetModelKmsKeyArn : KmsKeyArn.t option;The Amazon Resource Name (ARN) of the KMS key encrypting the copied model.
*)targetModelTags : TagList.t option;The tags associated with the copied model.
*)failureMessage : ErrorMessage.t option;An error message for why the model copy job failed.
*)sourceModelName : CustomModelName.t option;The name of the original model being copied.
*)}type nonrec error = [ | `AccessDeniedException of AccessDeniedException.t| `InternalServerException of InternalServerException.t| `ResourceNotFoundException of ResourceNotFoundException.t| `ThrottlingException of ThrottlingException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val 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 ]val 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 ]val 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 ]