amazonka-sagemaker-2.0: Amazon SageMaker Service SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.SageMaker.Types.Edge

Description

 
Synopsis

Documentation

data Edge Source #

A directed edge connecting two lineage entities.

See: newEdge smart constructor.

Constructors

Edge' 

Fields

Instances

Instances details
FromJSON Edge Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Edge

Generic Edge Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Edge

Associated Types

type Rep Edge :: Type -> Type #

Methods

from :: Edge -> Rep Edge x #

to :: Rep Edge x -> Edge #

Read Edge Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Edge

Show Edge Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Edge

Methods

showsPrec :: Int -> Edge -> ShowS #

show :: Edge -> String #

showList :: [Edge] -> ShowS #

NFData Edge Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Edge

Methods

rnf :: Edge -> () #

Eq Edge Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Edge

Methods

(==) :: Edge -> Edge -> Bool #

(/=) :: Edge -> Edge -> Bool #

Hashable Edge Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Edge

Methods

hashWithSalt :: Int -> Edge -> Int #

hash :: Edge -> Int #

type Rep Edge Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Edge

type Rep Edge = D1 ('MetaData "Edge" "Amazonka.SageMaker.Types.Edge" "amazonka-sagemaker-2.0-9SyrKZ4KqhsL1qX9u3ILA3" 'False) (C1 ('MetaCons "Edge'" 'PrefixI 'True) (S1 ('MetaSel ('Just "associationType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AssociationEdgeType)) :*: (S1 ('MetaSel ('Just "destinationArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "sourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newEdge :: Edge Source #

Create a value of Edge with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:associationType:Edge', edge_associationType - The type of the Association(Edge) between the source and destination. For example ContributedTo, Produced, or DerivedFrom.

$sel:destinationArn:Edge', edge_destinationArn - The Amazon Resource Name (ARN) of the destination lineage entity of the directed edge.

$sel:sourceArn:Edge', edge_sourceArn - The Amazon Resource Name (ARN) of the source lineage entity of the directed edge.

edge_associationType :: Lens' Edge (Maybe AssociationEdgeType) Source #

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

edge_destinationArn :: Lens' Edge (Maybe Text) Source #

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

edge_sourceArn :: Lens' Edge (Maybe Text) Source #

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