Values.DeleteFileCacheResponseSourceDeletes an Amazon File Cache resource. After deletion, the cache no longer exists, and its data is gone. The DeleteFileCache operation returns while the cache has the DELETING status. You can check the cache deletion status by calling the DescribeFileCaches operation, which returns a list of caches in your account. If you pass the cache ID for a deleted cache, the DescribeFileCaches operation returns a FileCacheNotFound error. The data in a deleted cache is also deleted and can't be recovered by any means.
type nonrec t = {fileCacheId : FileCacheId.t option;The ID of the cache that's being deleted.
*)lifecycle : FileCacheLifecycle.t option;The cache lifecycle for the deletion request. If the DeleteFileCache operation is successful, this status is DELETING.
*)}type nonrec error = [ | `BadRequest of BadRequest.t| `FileCacheNotFound of FileCacheNotFound.t| `IncompatibleParameterError of IncompatibleParameterError.t| `InternalServerError of InternalServerError.t| `ServiceLimitExceeded of ServiceLimitExceeded.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `BadRequest of BadRequest.t
| `FileCacheNotFound of FileCacheNotFound.t
| `IncompatibleParameterError of IncompatibleParameterError.t
| `InternalServerError of InternalServerError.t
| `ServiceLimitExceeded of ServiceLimitExceeded.t
| `Unknown_operation_error of string * string option ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `BadRequest of BadRequest.t
| `FileCacheNotFound of FileCacheNotFound.t
| `IncompatibleParameterError of IncompatibleParameterError.t
| `InternalServerError of InternalServerError.t
| `ServiceLimitExceeded of ServiceLimitExceeded.t
| `Unknown_operation_error of string * string option ]val to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of FileCacheId.t ]) list ]