You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::SageMaker::Types::ListHumanTaskUisRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ListHumanTaskUisRequest
- Defined in:
- (unknown)
Overview
When passing ListHumanTaskUisRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
creation_time_after: Time.now,
creation_time_before: Time.now,
sort_order: "Ascending", # accepts Ascending, Descending
next_token: "NextToken",
max_results: 1,
}
Instance Attribute Summary collapse
-
#creation_time_after ⇒ Time
A filter that returns only human task user interfaces with a creation time greater than or equal to the specified timestamp.
-
#creation_time_before ⇒ Time
A filter that returns only human task user interfaces that were created before the specified timestamp.
-
#max_results ⇒ Integer
The total number of items to return.
-
#next_token ⇒ String
A token to resume pagination.
-
#sort_order ⇒ String
An optional value that specifies whether you want the results sorted in
Ascending
orDescending
order.
Instance Attribute Details
#creation_time_after ⇒ Time
A filter that returns only human task user interfaces with a creation time greater than or equal to the specified timestamp.
#creation_time_before ⇒ Time
A filter that returns only human task user interfaces that were created before the specified timestamp.
#max_results ⇒ Integer
The total number of items to return. If the total number of available
items is more than the value specified in MaxResults
, then a
NextToken
will be provided in the output that you can use to resume
pagination.
#next_token ⇒ String
A token to resume pagination.
#sort_order ⇒ String
An optional value that specifies whether you want the results sorted in
Ascending
or Descending
order.
Possible values:
- Ascending
- Descending