Describe Batch Segment Job
personalize_describe_batch_segment_job | R Documentation |
Gets the properties of a batch segment job including name, Amazon Resource Name (ARN), status, input and output configurations, and the ARN of the solution version used to generate segments¶
Description¶
Gets the properties of a batch segment job including name, Amazon Resource Name (ARN), status, input and output configurations, and the ARN of the solution version used to generate segments.
Usage¶
Arguments¶
batchSegmentJobArn
[required] The ARN of the batch segment job to describe.
Value¶
A list with the following syntax:
list(
batchSegmentJob = list(
jobName = "string",
batchSegmentJobArn = "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"
)
),
roleArn = "string",
status = "string",
creationDateTime = as.POSIXct(
"2015-01-01"
),
lastUpdatedDateTime = as.POSIXct(
"2015-01-01"
)
)
)