Module Values.UpdateEntitlementRequestSource

Updates the specified entitlement.

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

    The name of the entitlement.

    *)
  2. stackName : Name.t;
    (*

    The name of the stack with which the entitlement is associated.

    *)
  3. description : Description.t option;
    (*

    The description of the entitlement.

    *)
  4. appVisibility : AppVisibility.t option;
    (*

    Specifies whether all or only selected apps are entitled.

    *)
  5. attributes : EntitlementAttributeList.t option;
    (*

    The attributes of the entitlement.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?appVisibility:??? -> ?attributes:??? -> name:Name.t -> stackName:Name.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of Name.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