Module Values.ResetGraphOutputSource

Empties the data from a specified Neptune Analytics 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. statusReason : String_.t option;
    (*

    The reason that the graph has this status.

    *)
  6. createTime : Timestamp.t option;
    (*

    The time at which the graph was created.

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

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

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

    The graph endpoint.

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

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

    *)
  10. vectorSearchConfiguration : VectorSearchConfiguration.t option;
  11. replicaCount : ReplicaCount.t option;
    (*

    The number of replicas for the graph.

    *)
  12. kmsKeyIdentifier : KmsKeyArn.t option;
    (*

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

    *)
  13. sourceSnapshotId : SnapshotId.t option;
    (*

    The ID of the snapshot from which the graph was created, if any.

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

    If true, deletion protection is enabled for the graph.

    *)
  15. buildNumber : String_.t option;
    (*

    The build number of the graph.

    *)
}
Sourcetype nonrec error = [
  1. | `ConflictException of ConflictException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> ?status:??? -> ?statusReason:??? -> ?createTime:??? -> ?provisionedMemory:??? -> ?endpoint:??? -> ?publicConnectivity:??? -> ?vectorSearchConfiguration:??? -> ?replicaCount:??? -> ?kmsKeyIdentifier:??? -> ?sourceSnapshotId:??? -> ?deletionProtection:??? -> ?buildNumber:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of ProvisionedMemory.t | `String of GraphId.t | `Structure of (string * [> `Integer of VectorSearchDimension.t ]) list | `Timestamp of Timestamp.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