Class: Aws::SageMaker::Types::Edge

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#association_typeString

The type of the Association(Edge) between the source and destination. For example ‘ContributedTo`, `Produced`, or `DerivedFrom`.

Returns:

  • (String)


18046
18047
18048
18049
18050
18051
18052
# File 'lib/aws-sdk-sagemaker/types.rb', line 18046

class Edge < Struct.new(
  :source_arn,
  :destination_arn,
  :association_type)
  SENSITIVE = []
  include Aws::Structure
end

#destination_arnString

The Amazon Resource Name (ARN) of the destination lineage entity of the directed edge.

Returns:

  • (String)


18046
18047
18048
18049
18050
18051
18052
# File 'lib/aws-sdk-sagemaker/types.rb', line 18046

class Edge < Struct.new(
  :source_arn,
  :destination_arn,
  :association_type)
  SENSITIVE = []
  include Aws::Structure
end

#source_arnString

The Amazon Resource Name (ARN) of the source lineage entity of the directed edge.

Returns:

  • (String)


18046
18047
18048
18049
18050
18051
18052
# File 'lib/aws-sdk-sagemaker/types.rb', line 18046

class Edge < Struct.new(
  :source_arn,
  :destination_arn,
  :association_type)
  SENSITIVE = []
  include Aws::Structure
end