Class: Aws::SageMaker::Types::ListSubscribedWorkteamsRequest

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 ListSubscribedWorkteamsRequest data as a hash:

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


7639
7640
7641
7642
7643
7644
# File 'lib/aws-sdk-sagemaker/types.rb', line 7639

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

#name_containsString

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

Returns:

  • (String)


7639
7640
7641
7642
7643
7644
# File 'lib/aws-sdk-sagemaker/types.rb', line 7639

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

#next_tokenString

If the result of the previous ‘ListSubscribedWorkteams` 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)


7639
7640
7641
7642
7643
7644
# File 'lib/aws-sdk-sagemaker/types.rb', line 7639

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