describe_human_loop
(**kwargs)¶Returns information about the specified human loop. If the human loop was deleted, this operation will return a ResourceNotFoundException
error.
See also: AWS API Documentation
Request Syntax
response = client.describe_human_loop(
HumanLoopName='string'
)
[REQUIRED]
The name of the human loop that you want information about.
{
'CreationTime': datetime(2015, 1, 1),
'FailureReason': 'string',
'FailureCode': 'string',
'HumanLoopStatus': 'InProgress'|'Failed'|'Completed'|'Stopped'|'Stopping',
'HumanLoopName': 'string',
'HumanLoopArn': 'string',
'FlowDefinitionArn': 'string',
'HumanLoopOutput': {
'OutputS3Uri': 'string'
}
}
Response Structure
The creation time when Amazon Augmented AI created the human loop.
The reason why a human loop failed. The failure reason is returned when the status of the human loop is Failed
.
A failure code that identifies the type of failure.
Possible values: ValidationError
, Expired
, InternalError
The status of the human loop.
The name of the human loop. The name must be lowercase, unique within the Region in your account, and can have up to 63 characters. Valid characters: a-z, 0-9, and - (hyphen).
The Amazon Resource Name (ARN) of the human loop.
The Amazon Resource Name (ARN) of the flow definition.
An object that contains information about the output of the human loop.
The location of the Amazon S3 object where Amazon Augmented AI stores your human loop output.
Exceptions
AugmentedAIRuntime.Client.exceptions.ValidationException
AugmentedAIRuntime.Client.exceptions.ResourceNotFoundException
AugmentedAIRuntime.Client.exceptions.ThrottlingException
AugmentedAIRuntime.Client.exceptions.InternalServerException