Module Values.ExecuteFastResetOutputSource

The fast reset REST API lets you reset a Neptune graph quicky and easily, removing all of its data. Neptune fast reset is a two-step process. First you call ExecuteFastReset with action set to initiateDatabaseReset. This returns a UUID token which you then include when calling ExecuteFastReset again with action set to performDatabaseReset. See Empty an Amazon Neptune DB cluster using the fast reset API. When invoking this operation in a Neptune cluster that has IAM authentication enabled, the IAM user or role making the request must have a policy attached that allows the neptune-db:ResetDatabase IAM action in that cluster.

Sourcetype nonrec t = {
  1. status : String_.t option;
    (*

    The status is only returned for the performDatabaseReset action, and indicates whether or not the fast reset rquest is accepted.

    *)
  2. payload : FastResetToken.t option;
    (*

    The payload is only returned by the initiateDatabaseReset action, and contains the unique token to use with the performDatabaseReset action to make the reset occur.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ClientTimeoutException of ClientTimeoutException.t
  3. | `ConstraintViolationException of ConstraintViolationException.t
  4. | `IllegalArgumentException of IllegalArgumentException.t
  5. | `InvalidArgumentException of InvalidArgumentException.t
  6. | `InvalidParameterException of InvalidParameterException.t
  7. | `MethodNotAllowedException of MethodNotAllowedException.t
  8. | `MissingParameterException of MissingParameterException.t
  9. | `PreconditionsFailedException of PreconditionsFailedException.t
  10. | `ReadOnlyViolationException of ReadOnlyViolationException.t
  11. | `ServerShutdownException of ServerShutdownException.t
  12. | `TooManyRequestsException of TooManyRequestsException.t
  13. | `UnsupportedOperationException of UnsupportedOperationException.t
  14. | `Unknown_operation_error of string * string option
]
Sourceval make : ?status:??? -> ?payload:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ClientTimeoutException of ClientTimeoutException.t | `ConstraintViolationException of ConstraintViolationException.t | `IllegalArgumentException of IllegalArgumentException.t | `InvalidArgumentException of InvalidArgumentException.t | `InvalidParameterException of InvalidParameterException.t | `MethodNotAllowedException of MethodNotAllowedException.t | `MissingParameterException of MissingParameterException.t | `PreconditionsFailedException of PreconditionsFailedException.t | `ReadOnlyViolationException of ReadOnlyViolationException.t | `ServerShutdownException of ServerShutdownException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option | `UnsupportedOperationException of UnsupportedOperationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ClientTimeoutException of ClientTimeoutException.t | `ConstraintViolationException of ConstraintViolationException.t | `IllegalArgumentException of IllegalArgumentException.t | `InvalidArgumentException of InvalidArgumentException.t | `InvalidParameterException of InvalidParameterException.t | `MethodNotAllowedException of MethodNotAllowedException.t | `MissingParameterException of MissingParameterException.t | `PreconditionsFailedException of PreconditionsFailedException.t | `ReadOnlyViolationException of ReadOnlyViolationException.t | `ServerShutdownException of ServerShutdownException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option | `UnsupportedOperationException of UnsupportedOperationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) 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