Values.CreateModelImportJobRequestSourceCreates 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
type nonrec t = {jobName : JobName.t;The name of the import job.
*)importedModelName : ImportedModelName.t;The name of the imported model.
*)roleArn : RoleArn.t;The Amazon Resource Name (ARN) of the model import job.
*)modelDataSource : ModelDataSource.t;The data source for the imported model.
*)jobTags : TagList.t option;Tags to attach to this import job.
*)importedModelTags : TagList.t option;Tags to attach to the imported model.
*)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.
*)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.
*)importedModelKmsKeyId : KmsKeyId.t option;The imported model is encrypted at rest using this key.
*)}val make :
?jobTags:??? ->
?importedModelTags:??? ->
?clientRequestToken:??? ->
?vpcConfig:??? ->
?importedModelKmsKeyId:??? ->
jobName:JobName.t ->
importedModelName:ImportedModelName.t ->
roleArn:RoleArn.t ->
modelDataSource:ModelDataSource.t ->
unit ->
t