Class: Aws::SageMaker::Types::AlgorithmStatusItem

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Represents the overall status of an algorithm.

Instance Attribute Summary collapse

Instance Attribute Details

#failure_reasonString

if the overall status is ‘Failed`, the reason for the failure.

Returns:

  • (String)


182
183
184
185
186
187
# File 'lib/aws-sdk-sagemaker/types.rb', line 182

class AlgorithmStatusItem < Struct.new(
  :name,
  :status,
  :failure_reason)
  include Aws::Structure
end

#nameString

The name of the algorithm for which the overall status is being reported.

Returns:

  • (String)


182
183
184
185
186
187
# File 'lib/aws-sdk-sagemaker/types.rb', line 182

class AlgorithmStatusItem < Struct.new(
  :name,
  :status,
  :failure_reason)
  include Aws::Structure
end

#statusString

The current status.

Returns:

  • (String)


182
183
184
185
186
187
# File 'lib/aws-sdk-sagemaker/types.rb', line 182

class AlgorithmStatusItem < Struct.new(
  :name,
  :status,
  :failure_reason)
  include Aws::Structure
end