Module Values.ResourceNotFoundExceptionSource

The operation tried to access a keyspace, table, or type that doesn't exist. The resource might not be specified correctly, or its status might not be ACTIVE.

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

    The specified resource was not found. Verify the resource identifier and ensure the resource exists and is in an ACTIVE state.

    *)
  2. resourceArn : ARN.t option;
    (*

    The unique identifier in the format of Amazon Resource Name (ARN) for the resource couldn't be found.

    *)
}
Sourceval make : ?message:??? -> ?resourceArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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