Class: Aws::SageMaker::Types::QueryLineageResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::QueryLineageResponse
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #edges  ⇒ Array<Types::Edge> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of edges that connect vertices in the response.
 - 
  
    
      #next_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Limits the number of vertices in the response.
 - 
  
    
      #vertices  ⇒ Array<Types::Vertex> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of vertices connected to the start entity(ies) in the lineage graph.
 
Instance Attribute Details
#edges ⇒ Array<Types::Edge>
A list of edges that connect vertices in the response.
      40129 40130 40131 40132 40133 40134 40135  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 40129 class QueryLineageResponse < Struct.new( :vertices, :edges, :next_token) SENSITIVE = [] include Aws::Structure end  | 
  
#next_token ⇒ String
Limits the number of vertices in the response. Use the ‘NextToken` in a response to to retrieve the next page of results.
      40129 40130 40131 40132 40133 40134 40135  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 40129 class QueryLineageResponse < Struct.new( :vertices, :edges, :next_token) SENSITIVE = [] include Aws::Structure end  | 
  
#vertices ⇒ Array<Types::Vertex>
A list of vertices connected to the start entity(ies) in the lineage graph.
      40129 40130 40131 40132 40133 40134 40135  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 40129 class QueryLineageResponse < Struct.new( :vertices, :edges, :next_token) SENSITIVE = [] include Aws::Structure end  |