Class: Aws::NeptuneGraph::Types::ExportFilter

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#edge_filterHash<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.

Returns:



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_filterHash<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.

Returns:



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