Values.GraphSummarySourceSummary details about a graph.
type nonrec t = {id : GraphId.t option;The unique identifier of the graph.
*)name : GraphName.t option;The name of the graph.
*)arn : String_.t option;The ARN associated with the graph.
*)status : GraphStatus.t option;The status of the graph.
*)provisionedMemory : ProvisionedMemory.t option;The number of memory-optimized Neptune Capacity Units (m-NCUs) allocated to the graph.
*)publicConnectivity : Boolean.t option;If true, the graph has a public endpoint, otherwise not.
*)endpoint : String_.t option;The graph endpoint.
*)replicaCount : ReplicaCount.t option;The number of replicas for the graph.
*)kmsKeyIdentifier : String_.t option;The ID of the KMS key used to encrypt and decrypt graph data.
*)deletionProtection : Boolean.t option;If true, deletion protection is enabled for the graph.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `Integer of ProvisionedMemory.t
| `String of GraphId.t ])
list ]