Module Values.DescribeSlackUserIdentitiesRequestSource

Lists all Slack user identities with a mapped role.

Sourcetype nonrec t = {
  1. chatConfigurationArn : ChatConfigurationArn.t option;
    (*

    The Amazon Resource Name (ARN) of the SlackChannelConfiguration associated with the user identities to describe.

    *)
  2. nextToken : PaginationToken.t option;
    (*

    An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults.

    *)
  3. maxResults : MaxResults.t option;
    (*

    The maximum number of results to include in the response. If more results exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.

    *)
}
Sourceval make : ?chatConfigurationArn:??? -> ?nextToken:??? -> ?maxResults:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `String of ChatConfigurationArn.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