Module Values.CreateModelImportJobRequestSource

Creates a model import job to import model that you have customized in other environments, such as Amazon SageMaker. For more information, see Import a customized model

Sourcetype nonrec t = {
  1. jobName : JobName.t;
    (*

    The name of the import job.

    *)
  2. importedModelName : ImportedModelName.t;
    (*

    The name of the imported model.

    *)
  3. roleArn : RoleArn.t;
    (*

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

    *)
  4. modelDataSource : ModelDataSource.t;
    (*

    The data source for the imported model.

    *)
  5. jobTags : TagList.t option;
    (*

    Tags to attach to this import job.

    *)
  6. importedModelTags : TagList.t option;
    (*

    Tags to attach to the imported model.

    *)
  7. clientRequestToken : IdempotencyToken.t option;
    (*

    A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

    *)
  8. vpcConfig : VpcConfig.t option;
    (*

    VPC configuration parameters for the private Virtual Private Cloud (VPC) that contains the resources you are using for the import job.

    *)
  9. importedModelKmsKeyId : KmsKeyId.t option;
    (*

    The imported model is encrypted at rest using this key.

    *)
}
Sourceval context_ : string
Sourceval make : ?jobTags:??? -> ?importedModelTags:??? -> ?clientRequestToken:??? -> ?vpcConfig:??? -> ?importedModelKmsKeyId:??? -> jobName:JobName.t -> importedModelName:ImportedModelName.t -> roleArn:RoleArn.t -> modelDataSource:ModelDataSource.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of JobName.t | `Structure of (string * [> `List of [> `String of SubnetId.t ] list | `Structure of (string * [> `String of S3Uri.t ]) list ]) list ]) 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