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`.
19179 19180 19181 19182 19183 19184 19185 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 19179 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.
19179 19180 19181 19182 19183 19184 19185 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 19179 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.
19179 19180 19181 19182 19183 19184 19185 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 19179 class Edge < Struct.new( :source_arn, :destination_arn, :association_type) SENSITIVE = [] include Aws::Structure end |