Class: Aws::SageMaker::Types::ArtifactSummary
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::ArtifactSummary
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Lists a summary of the properties of an artifact. An artifact represents a URI addressable object or data. Some examples are a dataset and a model.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #artifact_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the artifact.
 - 
  
    
      #artifact_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the artifact.
 - 
  
    
      #artifact_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the artifact.
 - 
  
    
      #creation_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
When the artifact was created.
 - 
  
    
      #last_modified_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
When the artifact was last modified.
 - 
  
    
      #source  ⇒ Types::ArtifactSource 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The source of the artifact.
 
Instance Attribute Details
#artifact_arn ⇒ String
The Amazon Resource Name (ARN) of the artifact.
      1517 1518 1519 1520 1521 1522 1523 1524 1525 1526  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 1517 class ArtifactSummary < Struct.new( :artifact_arn, :artifact_name, :source, :artifact_type, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end  | 
  
#artifact_name ⇒ String
The name of the artifact.
      1517 1518 1519 1520 1521 1522 1523 1524 1525 1526  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 1517 class ArtifactSummary < Struct.new( :artifact_arn, :artifact_name, :source, :artifact_type, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end  | 
  
#artifact_type ⇒ String
The type of the artifact.
      1517 1518 1519 1520 1521 1522 1523 1524 1525 1526  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 1517 class ArtifactSummary < Struct.new( :artifact_arn, :artifact_name, :source, :artifact_type, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end  | 
  
#creation_time ⇒ Time
When the artifact was created.
      1517 1518 1519 1520 1521 1522 1523 1524 1525 1526  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 1517 class ArtifactSummary < Struct.new( :artifact_arn, :artifact_name, :source, :artifact_type, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end  | 
  
#last_modified_time ⇒ Time
When the artifact was last modified.
      1517 1518 1519 1520 1521 1522 1523 1524 1525 1526  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 1517 class ArtifactSummary < Struct.new( :artifact_arn, :artifact_name, :source, :artifact_type, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end  | 
  
#source ⇒ Types::ArtifactSource
The source of the artifact.
      1517 1518 1519 1520 1521 1522 1523 1524 1525 1526  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 1517 class ArtifactSummary < Struct.new( :artifact_arn, :artifact_name, :source, :artifact_type, :creation_time, :last_modified_time) SENSITIVE = [] include Aws::Structure end  |