Class: Aws::SageMaker::Types::MetricData

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

Overview

The name, value, and date and time of a metric that was emitted to Amazon CloudWatch.

Instance Attribute Summary collapse

Instance Attribute Details

#metric_nameString

The name of the metric.

Returns:

  • (String)


14300
14301
14302
14303
14304
14305
# File 'lib/aws-sdk-sagemaker/types.rb', line 14300

class MetricData < Struct.new(
  :metric_name,
  :value,
  :timestamp)
  include Aws::Structure
end

#timestampTime

The date and time that the algorithm emitted the metric.

Returns:

  • (Time)


14300
14301
14302
14303
14304
14305
# File 'lib/aws-sdk-sagemaker/types.rb', line 14300

class MetricData < Struct.new(
  :metric_name,
  :value,
  :timestamp)
  include Aws::Structure
end

#valueFloat

The value of the metric.

Returns:

  • (Float)


14300
14301
14302
14303
14304
14305
# File 'lib/aws-sdk-sagemaker/types.rb', line 14300

class MetricData < Struct.new(
  :metric_name,
  :value,
  :timestamp)
  include Aws::Structure
end