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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#failure_reasonString

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

Returns:

  • (String)


501
502
503
504
505
506
507
# File 'lib/aws-sdk-sagemaker/types.rb', line 501

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

#nameString

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

Returns:

  • (String)


501
502
503
504
505
506
507
# File 'lib/aws-sdk-sagemaker/types.rb', line 501

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

#statusString

The current status.

Returns:

  • (String)


501
502
503
504
505
506
507
# File 'lib/aws-sdk-sagemaker/types.rb', line 501

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