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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#metric_nameString

The name of the metric.

Returns:

  • (String)


28097
28098
28099
28100
28101
28102
28103
# File 'lib/aws-sdk-sagemaker/types.rb', line 28097

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

#timestampTime

The date and time that the algorithm emitted the metric.

Returns:

  • (Time)


28097
28098
28099
28100
28101
28102
28103
# File 'lib/aws-sdk-sagemaker/types.rb', line 28097

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

#valueFloat

The value of the metric.

Returns:

  • (Float)


28097
28098
28099
28100
28101
28102
28103
# File 'lib/aws-sdk-sagemaker/types.rb', line 28097

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