Module Values.DescribeChimeWebhookConfigurationsRequestSource

Lists Amazon Chime webhook configurations optionally filtered by ChatConfigurationArn

Sourcetype nonrec t = {
  1. 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.

    *)
  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. chatConfigurationArn : ChatConfigurationArn.t option;
    (*

    An optional Amazon Resource Name (ARN) of a ChimeWebhookConfiguration to describe.

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