Interface Edge.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<Edge.Builder,Edge>
,SdkBuilder<Edge.Builder,Edge>
,SdkPojo
- Enclosing class:
- Edge
public static interface Edge.Builder extends SdkPojo, CopyableBuilder<Edge.Builder,Edge>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Edge.Builder
associationType(String associationType)
The type of the Association(Edge) between the source and destination.Edge.Builder
associationType(AssociationEdgeType associationType)
The type of the Association(Edge) between the source and destination.Edge.Builder
destinationArn(String destinationArn)
The Amazon Resource Name (ARN) of the destination lineage entity of the directed edge.Edge.Builder
sourceArn(String sourceArn)
The Amazon Resource Name (ARN) of the source lineage entity of the directed edge.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
sourceArn
Edge.Builder sourceArn(String sourceArn)
The Amazon Resource Name (ARN) of the source lineage entity of the directed edge.
- Parameters:
sourceArn
- The Amazon Resource Name (ARN) of the source lineage entity of the directed edge.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinationArn
Edge.Builder destinationArn(String destinationArn)
The Amazon Resource Name (ARN) of the destination lineage entity of the directed edge.
- Parameters:
destinationArn
- The Amazon Resource Name (ARN) of the destination lineage entity of the directed edge.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
associationType
Edge.Builder associationType(String associationType)
The type of the Association(Edge) between the source and destination. For example
ContributedTo
,Produced
, orDerivedFrom
.- Parameters:
associationType
- The type of the Association(Edge) between the source and destination. For exampleContributedTo
,Produced
, orDerivedFrom
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AssociationEdgeType
,AssociationEdgeType
-
associationType
Edge.Builder associationType(AssociationEdgeType associationType)
The type of the Association(Edge) between the source and destination. For example
ContributedTo
,Produced
, orDerivedFrom
.- Parameters:
associationType
- The type of the Association(Edge) between the source and destination. For exampleContributedTo
,Produced
, orDerivedFrom
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AssociationEdgeType
,AssociationEdgeType
-
-