Class: Aws::NeptuneGraph::Types::ResetGraphInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::NeptuneGraph::Types::ResetGraphInput
- Includes:
- Structure
- Defined in:
- 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.
2406 2407 2408 2409 2410 2411 |
# File 'lib/aws-sdk-neptunegraph/types.rb', line 2406 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.
2406 2407 2408 2409 2410 2411 |
# File 'lib/aws-sdk-neptunegraph/types.rb', line 2406 class ResetGraphInput < Struct.new( :graph_identifier, :skip_snapshot) SENSITIVE = [] include Aws::Structure end |