Describe Human Loop
augmentedairuntime_describe_human_loop | R Documentation |
Returns information about the specified human loop¶
Description¶
Returns information about the specified human loop. If the human loop
was deleted, this operation will return a ResourceNotFoundException
error.
Usage¶
augmentedairuntime_describe_human_loop(HumanLoopName)
Arguments¶
HumanLoopName |
[required] The name of the human loop that you want information about. |
Value¶
A list with the following syntax:
list(
CreationTime = as.POSIXct(
"2015-01-01"
),
FailureReason = "string",
FailureCode = "string",
HumanLoopStatus = "InProgress"|"Failed"|"Completed"|"Stopped"|"Stopping",
HumanLoopName = "string",
HumanLoopArn = "string",
FlowDefinitionArn = "string",
HumanLoopOutput = list(
OutputS3Uri = "string"
)
)
Request syntax¶
svc$describe_human_loop(
HumanLoopName = "string"
)