Class: Aws::SageMaker::Types::MetricSpecification
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::MetricSpecification
 
 
- Includes:
 - Aws::Structure, Aws::Structure::Union
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
    Note:
    
  
MetricSpecification is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MetricSpecification corresponding to the set member.
An object containing information about a metric.
Direct Known Subclasses
Defined Under Namespace
Classes: Customized, Predefined, Unknown
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #customized  ⇒ Types::CustomizedMetricSpecification 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Information about a customized metric.
 - 
  
    
      #predefined  ⇒ Types::PredefinedMetricSpecification 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Information about a predefined metric.
 - 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute unknown.
 
Instance Attribute Details
#customized ⇒ Types::CustomizedMetricSpecification
Information about a customized metric.
      33317 33318 33319 33320 33321 33322 33323 33324 33325 33326 33327 33328  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 33317 class MetricSpecification < Struct.new( :predefined, :customized, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Predefined < MetricSpecification; end class Customized < MetricSpecification; end class Unknown < MetricSpecification; end end  | 
  
#predefined ⇒ Types::PredefinedMetricSpecification
Information about a predefined metric.
      33317 33318 33319 33320 33321 33322 33323 33324 33325 33326 33327 33328  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 33317 class MetricSpecification < Struct.new( :predefined, :customized, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Predefined < MetricSpecification; end class Customized < MetricSpecification; end class Unknown < MetricSpecification; end end  | 
  
#unknown ⇒ Object
Returns the value of attribute unknown
      33317 33318 33319  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 33317 def unknown @unknown end  |