Module Values.DescribeUpdateRequestSource

Describes an update request.

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

    The name of the Amazon EKS cluster associated with the update.

    *)
  2. updateId : String_.t;
    (*

    The ID of the update to describe.

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

    The name of the Amazon EKS node group associated with the update. This parameter is required if the update is a node group update.

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

    The name of the add-on. The name must match one of the names returned by ListAddons . This parameter is required if the update is an add-on update.

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

    The name of the capability for which you want to describe updates.

    *)
}
Sourceval context_ : string
Sourceval make : ?nodegroupName:??? -> ?addonName:??? -> ?capabilityName:??? -> name:String_.t -> updateId:String_.t -> 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