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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Note:

When making an API call, you may pass ListWorkteamsRequest data as a 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)


8025
8026
8027
8028
8029
8030
8031
8032
# File 'lib/aws-sdk-sagemaker/types.rb', line 8025

class ListWorkteamsRequest < Struct.new(
  :sort_by,
  :sort_order,
  :name_contains,
  :next_token,
  :max_results)
  include Aws::Structure
end

#name_containsString

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

Returns:

  • (String)


8025
8026
8027
8028
8029
8030
8031
8032
# File 'lib/aws-sdk-sagemaker/types.rb', line 8025

class ListWorkteamsRequest < Struct.new(
  :sort_by,
  :sort_order,
  :name_contains,
  :next_token,
  :max_results)
  include Aws::Structure
end

#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)


8025
8026
8027
8028
8029
8030
8031
8032
# File 'lib/aws-sdk-sagemaker/types.rb', line 8025

class ListWorkteamsRequest < Struct.new(
  :sort_by,
  :sort_order,
  :name_contains,
  :next_token,
  :max_results)
  include Aws::Structure
end

#sort_byString

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

Returns:

  • (String)


8025
8026
8027
8028
8029
8030
8031
8032
# File 'lib/aws-sdk-sagemaker/types.rb', line 8025

class ListWorkteamsRequest < Struct.new(
  :sort_by,
  :sort_order,
  :name_contains,
  :next_token,
  :max_results)
  include Aws::Structure
end

#sort_orderString

The sort order for results. The default is ‘Ascending`.

Returns:

  • (String)


8025
8026
8027
8028
8029
8030
8031
8032
# File 'lib/aws-sdk-sagemaker/types.rb', line 8025

class ListWorkteamsRequest < Struct.new(
  :sort_by,
  :sort_order,
  :name_contains,
  :next_token,
  :max_results)
  include Aws::Structure
end