Class: Aws::SageMaker::Types::Edge
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::Edge
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
A directed edge connecting two lineage entities.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #association_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the Association(Edge) between the source and destination.
 - 
  
    
      #destination_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the destination lineage entity of the directed edge.
 - 
  
    
      #source_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the source lineage entity of the directed edge.
 
Instance Attribute Details
#association_type ⇒ String
The type of the Association(Edge) between the source and destination. For example ‘ContributedTo`, `Produced`, or `DerivedFrom`.
      20230 20231 20232 20233 20234 20235 20236  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 20230 class Edge < Struct.new( :source_arn, :destination_arn, :association_type) SENSITIVE = [] include Aws::Structure end  | 
  
#destination_arn ⇒ String
The Amazon Resource Name (ARN) of the destination lineage entity of the directed edge.
      20230 20231 20232 20233 20234 20235 20236  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 20230 class Edge < Struct.new( :source_arn, :destination_arn, :association_type) SENSITIVE = [] include Aws::Structure end  | 
  
#source_arn ⇒ String
The Amazon Resource Name (ARN) of the source lineage entity of the directed edge.
      20230 20231 20232 20233 20234 20235 20236  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 20230 class Edge < Struct.new( :source_arn, :destination_arn, :association_type) SENSITIVE = [] include Aws::Structure end  |