Module Values.UpdateGraphInputSource

Updates the configuration of a specified Neptune Analytics graph

Sourcetype nonrec t = {
  1. graphIdentifier : GraphIdentifier.t;
    (*

    The unique identifier of the Neptune Analytics graph.

    *)
  2. 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.

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

    The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph. Min = 16

    *)
  4. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?publicConnectivity:??? -> ?provisionedMemory:??? -> ?deletionProtection:??? -> graphIdentifier:GraphIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of ProvisionedMemory.t | `String of GraphIdentifier.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