Values.UpdateGraphInputSourceUpdates the configuration of a specified Neptune Analytics graph
type nonrec t = {graphIdentifier : GraphIdentifier.t;The unique identifier of the Neptune Analytics graph.
*)publicConnectivity : Boolean.t option;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.
*)provisionedMemory : ProvisionedMemory.t option;The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph. Min = 16
*)deletionProtection : Boolean.t option;A value that indicates whether the graph has deletion protection enabled. The graph can't be deleted when deletion protection is enabled.
*)}val make :
?publicConnectivity:??? ->
?provisionedMemory:??? ->
?deletionProtection:??? ->
graphIdentifier:GraphIdentifier.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Integer of ProvisionedMemory.t
| `String of GraphIdentifier.t ])
list ]