You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SageMaker::Types::ListWorkteamsRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListWorkteamsRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  sort_by: "Name", # accepts Name, CreateDate
  sort_order: "Ascending", # accepts Ascending, Descending
  name_contains: "WorkteamName",
  next_token: "NextToken",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of work teams to return in each page of the response.

Returns:

  • (Integer)

    The maximum number of work teams to return in each page of the response.

#name_containsString

A string in the work team\'s name. This filter returns only work teams whose name contains the specified string.

Returns:

  • (String)

    A string in the work team\'s name.

#next_tokenString

If the result of the previous ListWorkteams request was truncated, the response includes a NextToken. To retrieve the next set of labeling jobs, use the token in the next request.

Returns:

  • (String)

    If the result of the previous ListWorkteams request was truncated, the response includes a NextToken.

#sort_byString

The field to sort results by. The default is CreationTime.

Possible values:

  • Name
  • CreateDate

Returns:

  • (String)

    The field to sort results by.

#sort_orderString

The sort order for results. The default is Ascending.

Possible values:

  • Ascending
  • Descending

Returns:

  • (String)

    The sort order for results.