Module Values.BatchCreateRoomMembershipRequestSource

Adds up to 50 members to a chat room in an Amazon Chime Enterprise account. Members can be users or bots. The member role designates whether the member is a chat room administrator or a general chat room member.

Sourcetype nonrec t = {
  1. accountId : NonEmptyString.t;
    (*

    The Amazon Chime account ID.

    *)
  2. roomId : NonEmptyString.t;
    (*

    The room ID.

    *)
  3. membershipItemList : MembershipItemList.t;
    (*

    The list of membership items.

    *)
}
Sourceval context_ : string
Sourceval make : accountId:NonEmptyString.t -> roomId:NonEmptyString.t -> membershipItemList:MembershipItemList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.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