Class: Aws::NeptuneGraph::Types::ResetGraphInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::NeptuneGraph::Types::ResetGraphInput
- Defined in:
- gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#graph_identifier ⇒ String
ID of the graph to reset.
-
#skip_snapshot ⇒ Boolean
Determines whether a final graph snapshot is created before the graph data is deleted.
Instance Attribute Details
#graph_identifier ⇒ String
ID of the graph to reset.
2401 2402 2403 2404 2405 2406 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 2401 class ResetGraphInput < Struct.new( :graph_identifier, :skip_snapshot) SENSITIVE = [] include Aws::Structure end |
#skip_snapshot ⇒ Boolean
Determines whether a final graph snapshot is created before the
graph data is deleted. If set to true
, no graph snapshot is
created. If set to false
, a graph snapshot is created before the
data is deleted.
2401 2402 2403 2404 2405 2406 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 2401 class ResetGraphInput < Struct.new( :graph_identifier, :skip_snapshot) SENSITIVE = [] include Aws::Structure end |