Class: Aws::NeptuneGraph::Types::NeptuneImportOptions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb

Overview

Options for how to import Neptune data.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#preserve_default_vertex_labelsBoolean

Neptune Analytics supports label-less vertices and no labels are assigned unless one is explicitly provided. Neptune assigns default labels when none is explicitly provided. When importing the data into Neptune Analytics, the default vertex labels can be omitted by setting preserveDefaultVertexLabels to false. Note that if the vertex only has default labels, and has no other properties or edges, then the vertex will effectively not get imported into Neptune Analytics when preserveDefaultVertexLabels is set to false.

Returns:

  • (Boolean)


1918
1919
1920
1921
1922
1923
1924
1925
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 1918

class NeptuneImportOptions < Struct.new(
  :s3_export_path,
  :s3_export_kms_key_id,
  :preserve_default_vertex_labels,
  :preserve_edge_ids)
  SENSITIVE = []
  include Aws::Structure
end

#preserve_edge_idsBoolean

Neptune Analytics currently does not support user defined edge ids. The edge ids are not imported by default. They are imported if preserveEdgeIds is set to true, and ids are stored as properties on the relationships with the property name neptuneEdgeId.

Returns:

  • (Boolean)


1918
1919
1920
1921
1922
1923
1924
1925
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 1918

class NeptuneImportOptions < Struct.new(
  :s3_export_path,
  :s3_export_kms_key_id,
  :preserve_default_vertex_labels,
  :preserve_edge_ids)
  SENSITIVE = []
  include Aws::Structure
end

#s3_export_kms_key_idString

The KMS key to use to encrypt data in the S3 bucket where the graph data is exported

Returns:

  • (String)


1918
1919
1920
1921
1922
1923
1924
1925
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 1918

class NeptuneImportOptions < Struct.new(
  :s3_export_path,
  :s3_export_kms_key_id,
  :preserve_default_vertex_labels,
  :preserve_edge_ids)
  SENSITIVE = []
  include Aws::Structure
end

#s3_export_pathString

The path to an S3 bucket from which to import data.

Returns:

  • (String)


1918
1919
1920
1921
1922
1923
1924
1925
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 1918

class NeptuneImportOptions < Struct.new(
  :s3_export_path,
  :s3_export_kms_key_id,
  :preserve_default_vertex_labels,
  :preserve_edge_ids)
  SENSITIVE = []
  include Aws::Structure
end