Module Values.GraphSummarySource

Summary details about a graph.

Sourcetype nonrec t = {
  1. id : GraphId.t option;
    (*

    The unique identifier of the graph.

    *)
  2. name : GraphName.t option;
    (*

    The name of the graph.

    *)
  3. arn : String_.t option;
    (*

    The ARN associated with the graph.

    *)
  4. status : GraphStatus.t option;
    (*

    The status of the graph.

    *)
  5. provisionedMemory : ProvisionedMemory.t option;
    (*

    The number of memory-optimized Neptune Capacity Units (m-NCUs) allocated to the graph.

    *)
  6. publicConnectivity : Boolean.t option;
    (*

    If true, the graph has a public endpoint, otherwise not.

    *)
  7. endpoint : String_.t option;
    (*

    The graph endpoint.

    *)
  8. replicaCount : ReplicaCount.t option;
    (*

    The number of replicas for the graph.

    *)
  9. kmsKeyIdentifier : String_.t option;
    (*

    The ID of the KMS key used to encrypt and decrypt graph data.

    *)
  10. deletionProtection : Boolean.t option;
    (*

    If true, deletion protection is enabled for the graph.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> ?status:??? -> ?provisionedMemory:??? -> ?publicConnectivity:??? -> ?endpoint:??? -> ?replicaCount:??? -> ?kmsKeyIdentifier:??? -> ?deletionProtection:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of ProvisionedMemory.t | `String of GraphId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t