Module Values.ModelCopyJobSummarySource

Contains details about each model copy job. This data type is used in the following API operations: ListModelCopyJobs response

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

    The Amazon Resoource 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 that 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 used to encrypt the copied model.

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

    Tags associated with the copied model.

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

    If a model fails to be copied, a message describing why the job failed is included here.

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

    The name of the original model being copied.

    *)
}
Sourceval make : ?jobArn:??? -> ?status:??? -> ?creationTime:??? -> ?targetModelArn:??? -> ?targetModelName:??? -> ?sourceAccountId:??? -> ?sourceModelArn:??? -> ?targetModelKmsKeyArn:??? -> ?targetModelTags:??? -> ?failureMessage:??? -> ?sourceModelName:??? -> unit -> 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