Class: Aws::SageMaker::Types::DisassociateTrialComponentRequest

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

{
  trial_component_name: "ExperimentEntityName", # required
  trial_name: "ExperimentEntityName", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#trial_component_nameString

The name of the component to disassociate from the trial.

Returns:

  • (String)


8685
8686
8687
8688
8689
# File 'lib/aws-sdk-sagemaker/types.rb', line 8685

class DisassociateTrialComponentRequest < Struct.new(
  :trial_component_name,
  :trial_name)
  include Aws::Structure
end

#trial_nameString

The name of the trial to disassociate from.

Returns:

  • (String)


8685
8686
8687
8688
8689
# File 'lib/aws-sdk-sagemaker/types.rb', line 8685

class DisassociateTrialComponentRequest < Struct.new(
  :trial_component_name,
  :trial_name)
  include Aws::Structure
end