Module Values.EntitlementSource

Specifies an 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 option;
    (*

    The name of the entitlement.

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

    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 selected apps are entitled.

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

    The attributes of the entitlement.

    *)
  6. createdTime : Timestamp.t option;
    (*

    The time when the entitlement was created.

    *)
  7. lastModifiedTime : Timestamp.t option;
    (*

    The time when the entitlement was last modified.

    *)
}
Sourceval make : ?name:??? -> ?stackName:??? -> ?description:??? -> ?appVisibility:??? -> ?attributes:??? -> ?createdTime:??? -> ?lastModifiedTime:??? -> 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 | `Timestamp of Timestamp.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