Module Values_1.GroupMemberSource

A member of an Quick Sight group. Currently, group members must be users. Groups can't be members of another group. .

Sourcetype nonrec t = {
  1. arn : Values_0.Arn.t option;
    (*

    The Amazon Resource Name (ARN) for the group member (user).

    *)
  2. memberName : GroupMemberName.t option;
    (*

    The name of the group member (user).

    *)
}
Sourceval make : ?arn:??? -> ?memberName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.Arn.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