Class: Aws::NeptuneGraph::Types::NeptuneImportOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::NeptuneGraph::Types::NeptuneImportOptions
- 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
-
#preserve_default_vertex_labels ⇒ Boolean
Neptune Analytics supports label-less vertices and no labels are assigned unless one is explicitly provided.
-
#preserve_edge_ids ⇒ Boolean
Neptune Analytics currently does not support user defined edge ids.
-
#s3_export_kms_key_id ⇒ String
The KMS key to use to encrypt data in the S3 bucket where the graph data is exported.
-
#s3_export_path ⇒ String
The path to an S3 bucket from which to import data.
Instance Attribute Details
#preserve_default_vertex_labels ⇒ Boolean
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.
2295 2296 2297 2298 2299 2300 2301 2302 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 2295 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_ids ⇒ Boolean
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.
2295 2296 2297 2298 2299 2300 2301 2302 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 2295 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_id ⇒ String
The KMS key to use to encrypt data in the S3 bucket where the graph data is exported
2295 2296 2297 2298 2299 2300 2301 2302 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 2295 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_path ⇒ String
The path to an S3 bucket from which to import data.
2295 2296 2297 2298 2299 2300 2301 2302 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 2295 class NeptuneImportOptions < Struct.new( :s3_export_path, :s3_export_kms_key_id, :preserve_default_vertex_labels, :preserve_edge_ids) SENSITIVE = [] include Aws::Structure end |