Get Model Import Job
bedrock_get_model_import_job | R Documentation |
Retrieves the properties associated with import model job, including the status of the job¶
Description¶
Retrieves the properties associated with import model job, including the status of the job. For more information, see Import a customized model in the Amazon Bedrock User Guide.
Usage¶
Arguments¶
jobIdentifier
[required] The identifier of the import job.
Value¶
A list with the following syntax:
list(
jobArn = "string",
jobName = "string",
importedModelName = "string",
importedModelArn = "string",
roleArn = "string",
modelDataSource = list(
s3DataSource = list(
s3Uri = "string"
)
),
status = "InProgress"|"Completed"|"Failed",
failureMessage = "string",
creationTime = as.POSIXct(
"2015-01-01"
),
lastModifiedTime = as.POSIXct(
"2015-01-01"
),
endTime = as.POSIXct(
"2015-01-01"
),
vpcConfig = list(
subnetIds = list(
"string"
),
securityGroupIds = list(
"string"
)
),
importedModelKmsKeyArn = "string"
)