Module Values.ConflictExceptionSource

Your request has conflicting operations. This can occur if you're trying to perform more than 1 operation on the same resource at the same time. Examples A cluster with the same name already exists. A cluster isn't in ACTIVE status. A cluster to delete is in an unstable state. For example, because it still has ACTIVE node groups or queues. A queue already exists in a cluster.

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

    The unique identifier of the resource that caused the conflict exception.

    *)
  3. resourceType : String_.t option;
    (*

    The type or category of the resource that caused the conflict exception."

    *)
}
Sourceval make : ?message:??? -> ?resourceId:??? -> ?resourceType:??? -> 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