Class: Aws::SageMaker::Types::ListModelMetadataRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ListModelMetadataRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of models to return in the response.
-
#next_token ⇒ String
If the response to a previous ‘ListModelMetadataResponse` request was truncated, the response includes a NextToken.
-
#search_expression ⇒ Types::ModelMetadataSearchExpression
One or more filters that searches for the specified resource or resources in a search.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of models to return in the response.
29480 29481 29482 29483 29484 29485 29486 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 29480 class ListModelMetadataRequest < Struct.new( :search_expression, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the response to a previous ‘ListModelMetadataResponse` request was truncated, the response includes a NextToken. To retrieve the next set of model metadata, use the token in the next request.
29480 29481 29482 29483 29484 29485 29486 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 29480 class ListModelMetadataRequest < Struct.new( :search_expression, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#search_expression ⇒ Types::ModelMetadataSearchExpression
One or more filters that searches for the specified resource or resources in a search. All resource objects that satisfy the expression’s condition are included in the search results. Specify the Framework, FrameworkVersion, Domain or Task to filter supported. Filter names and values are case-sensitive.
29480 29481 29482 29483 29484 29485 29486 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 29480 class ListModelMetadataRequest < Struct.new( :search_expression, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |