Describe Batch Inference Job
personalize_describe_batch_inference_job | R Documentation |
Gets the properties of a batch inference job including name, Amazon Resource Name (ARN), status, input and output configurations, and the ARN of the solution version used to generate the recommendations¶
Description¶
Gets the properties of a batch inference job including name, Amazon Resource Name (ARN), status, input and output configurations, and the ARN of the solution version used to generate the recommendations.
Usage¶
Arguments¶
batchInferenceJobArn
[required] The ARN of the batch inference job to describe.
Value¶
A list with the following syntax:
list(
batchInferenceJob = list(
jobName = "string",
batchInferenceJobArn = "string",
filterArn = "string",
failureReason = "string",
solutionVersionArn = "string",
numResults = 123,
jobInput = list(
s3DataSource = list(
path = "string",
kmsKeyArn = "string"
)
),
jobOutput = list(
s3DataDestination = list(
path = "string",
kmsKeyArn = "string"
)
),
batchInferenceJobConfig = list(
itemExplorationConfig = list(
"string"
)
),
roleArn = "string",
batchInferenceJobMode = "BATCH_INFERENCE"|"THEME_GENERATION",
themeGenerationConfig = list(
fieldsForThemeGeneration = list(
itemName = "string"
)
),
status = "string",
creationDateTime = as.POSIXct(
"2015-01-01"
),
lastUpdatedDateTime = as.POSIXct(
"2015-01-01"
)
)
)