Class: Aws::SageMaker::Types::GetSearchSuggestionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::GetSearchSuggestionsRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass GetSearchSuggestionsRequest data as a hash:
{
resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent
suggestion_query: {
property_name_query: {
property_name_hint: "PropertyNameHint", # required
},
},
}
Instance Attribute Summary collapse
-
#resource ⇒ String
The name of the Amazon SageMaker resource to Search for.
-
#suggestion_query ⇒ Types::SuggestionQuery
Limits the property names that are included in the response.
Instance Attribute Details
#resource ⇒ String
The name of the Amazon SageMaker resource to Search for. The only valid ‘Resource` value is `TrainingJob`.
9343 9344 9345 9346 9347 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 9343 class GetSearchSuggestionsRequest < Struct.new( :resource, :suggestion_query) include Aws::Structure end |
#suggestion_query ⇒ Types::SuggestionQuery
Limits the property names that are included in the response.
9343 9344 9345 9346 9347 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 9343 class GetSearchSuggestionsRequest < Struct.new( :resource, :suggestion_query) include Aws::Structure end |