Module Values.UpdateChimeWebhookConfigurationRequestSource

Updates a Amazon Chime webhook configuration.

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

    The Amazon Resource Name (ARN) of the ChimeWebhookConfiguration to update.

    *)
  2. webhookDescription : ChimeWebhookDescription.t option;
    (*

    A description of the webhook. We recommend using the convention RoomName/WebhookName. For more information, see Tutorial: Get started with Amazon Chime in the AWS Chatbot Administrator Guide.

    *)
  3. webhookUrl : ChimeWebhookUrl.t option;
    (*

    The URL for the Amazon Chime webhook.

    *)
  4. snsTopicArns : SnsTopicArnList.t option;
    (*

    The ARNs of the SNS topics that deliver notifications to AWS Chatbot.

    *)
  5. iamRoleArn : Arn.t option;
    (*

    A user-defined role that AWS Chatbot assumes. This is not the service-linked role. For more information, see IAM policies for AWS Chatbot in the AWS Chatbot Administrator Guide.

    *)
  6. loggingLevel : CustomerCwLogLevel.t option;
    (*

    Logging levels include ERROR, INFO, or NONE.

    *)
}
Sourceval context_ : string
Sourceval make : ?webhookDescription:??? -> ?webhookUrl:??? -> ?snsTopicArns:??? -> ?iamRoleArn:??? -> ?loggingLevel:??? -> chatConfigurationArn:ChatConfigurationArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Arn.t ] list | `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