List Human Task Uis
| sagemaker_list_human_task_uis | R Documentation |
Returns information about the human task user interfaces in your account¶
Description¶
Returns information about the human task user interfaces in your account.
Usage¶
sagemaker_list_human_task_uis(CreationTimeAfter, CreationTimeBefore,
SortOrder, NextToken, MaxResults)
Arguments¶
CreationTimeAfterA filter that returns only human task user interfaces with a creation time greater than or equal to the specified timestamp.
CreationTimeBeforeA filter that returns only human task user interfaces that were created before the specified timestamp.
SortOrderAn optional value that specifies whether you want the results sorted in
AscendingorDescendingorder.NextTokenA token to resume pagination.
MaxResultsThe total number of items to return. If the total number of available items is more than the value specified in
MaxResults, then aNextTokenwill be provided in the output that you can use to resume pagination.
Value¶
A list with the following syntax:
list(
HumanTaskUiSummaries = list(
list(
HumanTaskUiName = "string",
HumanTaskUiArn = "string",
CreationTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)