Module Values.EntitlementAttributeSource

An attribute associated with an entitlement. Application entitlements work by matching a supported SAML 2.0 attribute name to a value when a user identity federates to a WorkSpaces Applications SAML application.

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

    A supported AWS IAM SAML PrincipalTag attribute that is matched to the associated value when a user identity federates into a WorkSpaces Applications SAML application. The following are valid values: roles department organization groups title costCenter userType

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

    A value that is matched to a supported SAML attribute name when a user identity federates into a WorkSpaces Applications SAML application.

    *)
}
Sourceval context_ : string
Sourceval make : name:String_.t -> value: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