Module Values.CreateEntitlementRequestSource

Creates a new entitlement. Entitlements control access to specific applications within a stack, based on user attributes. Entitlements apply to SAML 2.0 federated user identities. WorkSpaces Applications user pool and streaming URL users are entitled to all applications in a stack. Entitlements don't apply to the desktop stream view application, or to applications managed by a dynamic app provider using the Dynamic Application Framework.

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;
    (*

    Specifies whether all or selected apps are entitled.

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

    The attributes of the entitlement.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> name:Name.t -> stackName:Name.t -> appVisibility:AppVisibility.t -> attributes:EntitlementAttributeList.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