Class: Aws::NeptuneGraph::Types::ExportFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::NeptuneGraph::Types::ExportFilter
- Defined in:
- gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb
Overview
This is the top-level field for specifying vertex or edge filters. If the ExportFilter is not provided, then all properties for all labels will be exported. If the ExportFilter is provided but is an empty object, then no data will be exported.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#edge_filter ⇒ Hash<String,Types::ExportFilterElement>
Used to specify filters on a per-label basis for edges.
-
#vertex_filter ⇒ Hash<String,Types::ExportFilterElement>
Used to specify filters on a per-label basis for vertices.
Instance Attribute Details
#edge_filter ⇒ Hash<String,Types::ExportFilterElement>
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.
990 991 992 993 994 995 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 990 class ExportFilter < Struct.new( :vertex_filter, :edge_filter) SENSITIVE = [] include Aws::Structure end |
#vertex_filter ⇒ Hash<String,Types::ExportFilterElement>
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.
990 991 992 993 994 995 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 990 class ExportFilter < Struct.new( :vertex_filter, :edge_filter) SENSITIVE = [] include Aws::Structure end |