Interface QueryFilters.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<QueryFilters.Builder,QueryFilters>,SdkBuilder<QueryFilters.Builder,QueryFilters>,SdkPojo
- Enclosing class:
- QueryFilters
public static interface QueryFilters.Builder extends SdkPojo, CopyableBuilder<QueryFilters.Builder,QueryFilters>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueryFilters.BuildercreatedAfter(Instant createdAfter)Filter the lineage entities connected to theStartArn(s) after the create date.QueryFilters.BuildercreatedBefore(Instant createdBefore)Filter the lineage entities connected to theStartArn(s) by created date.QueryFilters.BuilderlineageTypes(Collection<LineageType> lineageTypes)Filter the lineage entities connected to theStartArn(s) by the type of the lineage entity.QueryFilters.BuilderlineageTypes(LineageType... lineageTypes)Filter the lineage entities connected to theStartArn(s) by the type of the lineage entity.QueryFilters.BuilderlineageTypesWithStrings(String... lineageTypes)Filter the lineage entities connected to theStartArn(s) by the type of the lineage entity.QueryFilters.BuilderlineageTypesWithStrings(Collection<String> lineageTypes)Filter the lineage entities connected to theStartArn(s) by the type of the lineage entity.QueryFilters.BuildermodifiedAfter(Instant modifiedAfter)Filter the lineage entities connected to theStartArn(s) after the last modified date.QueryFilters.BuildermodifiedBefore(Instant modifiedBefore)Filter the lineage entities connected to theStartArn(s) before the last modified date.QueryFilters.Builderproperties(Map<String,String> properties)Filter the lineage entities connected to theStartArn(s) by a set if property key value pairs.QueryFilters.Buildertypes(String... types)Filter the lineage entities connected to theStartArnby type.QueryFilters.Buildertypes(Collection<String> types)Filter the lineage entities connected to theStartArnby type.-
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
-
types
QueryFilters.Builder types(Collection<String> types)
Filter the lineage entities connected to the
StartArnby type. For example:DataSet,Model,Endpoint, orModelDeployment.- Parameters:
types- Filter the lineage entities connected to theStartArnby type. For example:DataSet,Model,Endpoint, orModelDeployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
types
QueryFilters.Builder types(String... types)
Filter the lineage entities connected to the
StartArnby type. For example:DataSet,Model,Endpoint, orModelDeployment.- Parameters:
types- Filter the lineage entities connected to theStartArnby type. For example:DataSet,Model,Endpoint, orModelDeployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lineageTypesWithStrings
QueryFilters.Builder lineageTypesWithStrings(Collection<String> lineageTypes)
Filter the lineage entities connected to the
StartArn(s) by the type of the lineage entity.- Parameters:
lineageTypes- Filter the lineage entities connected to theStartArn(s) by the type of the lineage entity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lineageTypesWithStrings
QueryFilters.Builder lineageTypesWithStrings(String... lineageTypes)
Filter the lineage entities connected to the
StartArn(s) by the type of the lineage entity.- Parameters:
lineageTypes- Filter the lineage entities connected to theStartArn(s) by the type of the lineage entity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lineageTypes
QueryFilters.Builder lineageTypes(Collection<LineageType> lineageTypes)
Filter the lineage entities connected to the
StartArn(s) by the type of the lineage entity.- Parameters:
lineageTypes- Filter the lineage entities connected to theStartArn(s) by the type of the lineage entity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lineageTypes
QueryFilters.Builder lineageTypes(LineageType... lineageTypes)
Filter the lineage entities connected to the
StartArn(s) by the type of the lineage entity.- Parameters:
lineageTypes- Filter the lineage entities connected to theStartArn(s) by the type of the lineage entity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdBefore
QueryFilters.Builder createdBefore(Instant createdBefore)
Filter the lineage entities connected to the
StartArn(s) by created date.- Parameters:
createdBefore- Filter the lineage entities connected to theStartArn(s) by created date.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAfter
QueryFilters.Builder createdAfter(Instant createdAfter)
Filter the lineage entities connected to the
StartArn(s) after the create date.- Parameters:
createdAfter- Filter the lineage entities connected to theStartArn(s) after the create date.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modifiedBefore
QueryFilters.Builder modifiedBefore(Instant modifiedBefore)
Filter the lineage entities connected to the
StartArn(s) before the last modified date.- Parameters:
modifiedBefore- Filter the lineage entities connected to theStartArn(s) before the last modified date.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modifiedAfter
QueryFilters.Builder modifiedAfter(Instant modifiedAfter)
Filter the lineage entities connected to the
StartArn(s) after the last modified date.- Parameters:
modifiedAfter- Filter the lineage entities connected to theStartArn(s) after the last modified date.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
properties
QueryFilters.Builder properties(Map<String,String> properties)
Filter the lineage entities connected to the
StartArn(s) by a set if property key value pairs. If multiple pairs are provided, an entity is included in the results if it matches any of the provided pairs.- Parameters:
properties- Filter the lineage entities connected to theStartArn(s) by a set if property key value pairs. If multiple pairs are provided, an entity is included in the results if it matches any of the provided pairs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-