Module Values.ResourceNotFoundExceptionSource

The specified resource could not be found. You can view your available clusters with ListClusters. You can view your available managed node groups with ListNodegroups. Amazon EKS clusters and node groups are Amazon Web Services Region specific.

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

    The Amazon EKS cluster associated with the exception.

    *)
  2. nodegroupName : String_.t option;
    (*

    The Amazon EKS managed node group associated with the exception.

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

    The Fargate profile associated with the exception.

    *)
  4. addonName : String_.t option;
    (*

    The Amazon EKS add-on name associated with the exception.

    *)
  5. subscriptionId : String_.t option;
    (*

    The Amazon EKS subscription ID with the exception.

    *)
  6. message : String_.t option;
    (*

    The Amazon EKS message associated with the exception.

    *)
}
Sourceval make : ?clusterName:??? -> ?nodegroupName:??? -> ?fargateProfileName:??? -> ?addonName:??? -> ?subscriptionId:??? -> ?message:??? -> 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