Class: Aws::SageMaker::Types::TrialComponentArtifact
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::TrialComponentArtifact
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Represents an input or output artifact of a trial component. You specify ‘TrialComponentArtifact` as part of the `InputArtifacts` and `OutputArtifacts` parameters in the [CreateTrialComponent] request.
Examples of input artifacts are datasets, algorithms, hyperparameters, source code, and instance types. Examples of output artifacts are metrics, snapshots, logs, and images.
[1]: docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrialComponent.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #media_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The media type of the artifact, which indicates the type of data in the artifact file.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The location of the artifact.
 
Instance Attribute Details
#media_type ⇒ String
The media type of the artifact, which indicates the type of data in the artifact file. The media type consists of a type and a subtype concatenated with a slash (/) character, for example, text/csv, image/jpeg, and s3/uri. The type specifies the category of the media. The subtype specifies the kind of data.
      46664 46665 46666 46667 46668 46669  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 46664 class TrialComponentArtifact < Struct.new( :media_type, :value) SENSITIVE = [] include Aws::Structure end  | 
  
#value ⇒ String
The location of the artifact.
      46664 46665 46666 46667 46668 46669  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 46664 class TrialComponentArtifact < Struct.new( :media_type, :value) SENSITIVE = [] include Aws::Structure end  |