Class: Aws::SageMaker::Types::GetSearchSuggestionsRequest

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

Instance Attribute Details

#resourceString

The name of the Amazon SageMaker resource to Search for. The only valid ‘Resource` value is `TrainingJob`.

Returns:

  • (String)


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_queryTypes::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