Module Values.UpdateEksAnywhereSubscriptionRequestSource

Update an EKS Anywhere Subscription. Only auto renewal and tags can be updated after subscription creation.

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

    The ID of the subscription.

    *)
  2. autoRenew : Boolean.t;
    (*

    A boolean indicating whether or not to automatically renew the subscription.

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

    Unique, case-sensitive identifier to ensure the idempotency of the request.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientRequestToken:??? -> id:String_.t -> autoRenew:Boolean.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `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