Describe Ai Benchmark Job
| sagemaker_describe_ai_benchmark_job | R Documentation |
Returns details of an AI benchmark job, including its status, configuration, target endpoint, and timing information¶
Description¶
Returns details of an AI benchmark job, including its status, configuration, target endpoint, and timing information.
Usage¶
sagemaker_describe_ai_benchmark_job(AIBenchmarkJobName)
Arguments¶
AIBenchmarkJobName |
[required] The name of the AI benchmark job to describe. |
Value¶
A list with the following syntax:
list(
AIBenchmarkJobName = "string",
AIBenchmarkJobArn = "string",
AIBenchmarkJobStatus = "InProgress"|"Completed"|"Failed"|"Stopping"|"Stopped",
FailureReason = "string",
BenchmarkTarget = list(
Endpoint = list(
Identifier = "string",
TargetContainerHostname = "string",
InferenceComponents = list(
list(
Identifier = "string"
)
)
)
),
OutputConfig = list(
S3OutputLocation = "string",
CloudWatchLogs = list(
list(
LogGroupArn = "string",
LogStreamName = "string"
)
)
),
AIWorkloadConfigIdentifier = "string",
RoleArn = "string",
NetworkConfig = list(
VpcConfig = list(
SecurityGroupIds = list(
"string"
),
Subnets = list(
"string"
)
)
),
CreationTime = as.POSIXct(
"2015-01-01"
),
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
Request syntax¶
svc$describe_ai_benchmark_job(
AIBenchmarkJobName = "string"
)