Interface ExportFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExportFilter.Builder,ExportFilter>,SdkBuilder<ExportFilter.Builder,ExportFilter>,SdkPojo
- Enclosing class:
- ExportFilter
public static interface ExportFilter.Builder extends SdkPojo, CopyableBuilder<ExportFilter.Builder,ExportFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExportFilter.BuilderedgeFilter(Map<String,ExportFilterElement> edgeFilter)Used to specify filters on a per-label basis for edges.ExportFilter.BuildervertexFilter(Map<String,ExportFilterElement> vertexFilter)Used to specify filters on a per-label basis for vertices.-
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
-
vertexFilter
ExportFilter.Builder vertexFilter(Map<String,ExportFilterElement> vertexFilter)
Used to specify filters on a per-label basis for vertices. This allows you to control which vertex labels and properties are included in the export.
- Parameters:
vertexFilter- Used to specify filters on a per-label basis for vertices. This allows you to control which vertex labels and properties are included in the export.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
edgeFilter
ExportFilter.Builder edgeFilter(Map<String,ExportFilterElement> edgeFilter)
Used to specify filters on a per-label basis for edges. This allows you to control which edge labels and properties are included in the export.
- Parameters:
edgeFilter- Used to specify filters on a per-label basis for edges. This allows you to control which edge labels and properties are included in the export.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-