Class: Aws::SageMaker::Types::TrialComponentStatus

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

{
  primary_status: "InProgress", # accepts InProgress, Completed, Failed
  message: "TrialComponentStatusMessage",
}

The status of the trial component.

Instance Attribute Summary collapse

Instance Attribute Details

#messageString

If the component failed, a message describing why.

Returns:

  • (String)


19393
19394
19395
19396
19397
# File 'lib/aws-sdk-sagemaker/types.rb', line 19393

class TrialComponentStatus < Struct.new(
  :primary_status,
  :message)
  include Aws::Structure
end

#primary_statusString

The status of the trial component.

Returns:

  • (String)


19393
19394
19395
19396
19397
# File 'lib/aws-sdk-sagemaker/types.rb', line 19393

class TrialComponentStatus < Struct.new(
  :primary_status,
  :message)
  include Aws::Structure
end