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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/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)


30147
30148
30149
30150
30151
30152
30153
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 30147

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)


30147
30148
30149
30150
30151
30152
30153
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 30147

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

#valueFloat

The value of the metric.

Returns:

  • (Float)


30147
30148
30149
30150
30151
30152
30153
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 30147

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