List Human Loops
augmentedairuntime_list_human_loops | R Documentation |
Returns information about human loops, given the specified parameters¶
Description¶
Returns information about human loops, given the specified parameters. If a human loop was deleted, it will not be included.
Usage¶
augmentedairuntime_list_human_loops(CreationTimeAfter,
CreationTimeBefore, FlowDefinitionArn, SortOrder, NextToken, MaxResults)
Arguments¶
CreationTimeAfter
(Optional) The timestamp of the date when you want the human loops to begin in ISO 8601 format. For example,
2020-02-24
.CreationTimeBefore
(Optional) The timestamp of the date before which you want the human loops to begin in ISO 8601 format. For example,
2020-02-24
.FlowDefinitionArn
[required] The Amazon Resource Name (ARN) of a flow definition.
SortOrder
Optional. The order for displaying results. Valid values:
Ascending
andDescending
.NextToken
A token to display the next page of results.
MaxResults
The total number of items to return. If the total number of available items is more than the value specified in
MaxResults
, then aNextToken
is returned in the output. You can use this token to display the next page of results.
Value¶
A list with the following syntax:
list(
HumanLoopSummaries = list(
list(
HumanLoopName = "string",
HumanLoopStatus = "InProgress"|"Failed"|"Completed"|"Stopped"|"Stopping",
CreationTime = as.POSIXct(
"2015-01-01"
),
FailureReason = "string",
FlowDefinitionArn = "string"
)
),
NextToken = "string"
)