Interface Vertex.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Vertex.Builder,Vertex>,SdkBuilder<Vertex.Builder,Vertex>,SdkPojo
- Enclosing class:
- Vertex
public static interface Vertex.Builder extends SdkPojo, CopyableBuilder<Vertex.Builder,Vertex>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Vertex.Builderarn(String arn)The Amazon Resource Name (ARN) of the lineage entity resource.Vertex.BuilderlineageType(String lineageType)The type of resource of the lineage entity.Vertex.BuilderlineageType(LineageType lineageType)The type of resource of the lineage entity.Vertex.Buildertype(String type)The type of the lineage entity resource.-
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
-
arn
Vertex.Builder arn(String arn)
The Amazon Resource Name (ARN) of the lineage entity resource.
- Parameters:
arn- The Amazon Resource Name (ARN) of the lineage entity resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
Vertex.Builder type(String type)
The type of the lineage entity resource. For example:
DataSet,Model,Endpoint, etc...- Parameters:
type- The type of the lineage entity resource. For example:DataSet,Model,Endpoint, etc...- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lineageType
Vertex.Builder lineageType(String lineageType)
The type of resource of the lineage entity.
- Parameters:
lineageType- The type of resource of the lineage entity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LineageType,LineageType
-
lineageType
Vertex.Builder lineageType(LineageType lineageType)
The type of resource of the lineage entity.
- Parameters:
lineageType- The type of resource of the lineage entity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LineageType,LineageType
-
-