Class: Aws::NeptuneGraph::Types::UpdateGraphInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::NeptuneGraph::Types::UpdateGraphInput
- Defined in:
- gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deletion_protection ⇒ Boolean
A value that indicates whether the graph has deletion protection enabled.
-
#graph_identifier ⇒ String
The unique identifier of the Neptune Analytics graph.
-
#provisioned_memory ⇒ Integer
The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph.
-
#public_connectivity ⇒ Boolean
Specifies whether or not the graph can be reachable over the internet.
Instance Attribute Details
#deletion_protection ⇒ Boolean
A value that indicates whether the graph has deletion protection enabled. The graph can't be deleted when deletion protection is enabled.
2529 2530 2531 2532 2533 2534 2535 2536 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 2529 class UpdateGraphInput < Struct.new( :graph_identifier, :public_connectivity, :provisioned_memory, :deletion_protection) SENSITIVE = [] include Aws::Structure end |
#graph_identifier ⇒ String
The unique identifier of the Neptune Analytics graph.
2529 2530 2531 2532 2533 2534 2535 2536 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 2529 class UpdateGraphInput < Struct.new( :graph_identifier, :public_connectivity, :provisioned_memory, :deletion_protection) SENSITIVE = [] include Aws::Structure end |
#provisioned_memory ⇒ Integer
The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph.
Min = 128
2529 2530 2531 2532 2533 2534 2535 2536 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 2529 class UpdateGraphInput < Struct.new( :graph_identifier, :public_connectivity, :provisioned_memory, :deletion_protection) SENSITIVE = [] include Aws::Structure end |
#public_connectivity ⇒ Boolean
Specifies whether or not the graph can be reachable over the
internet. All access to graphs is IAM authenticated. (true
to
enable, or false
to disable.
2529 2530 2531 2532 2533 2534 2535 2536 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 2529 class UpdateGraphInput < Struct.new( :graph_identifier, :public_connectivity, :provisioned_memory, :deletion_protection) SENSITIVE = [] include Aws::Structure end |