Module Values.CreateChimeWebhookConfigurationRequestSource

Creates an AWS Chatbot configuration for Amazon Chime.

Sourcetype nonrec t = {
  1. webhookDescription : ChimeWebhookDescription.t;
    (*

    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.

    *)
  2. webhookUrl : ChimeWebhookUrl.t;
    (*

    The URL for the Amazon Chime webhook.

    *)
  3. snsTopicArns : SnsTopicArnList.t;
    (*

    The Amazon Resource Names (ARNs) of the SNS topics that deliver notifications to AWS Chatbot.

    *)
  4. iamRoleArn : Arn.t;
    (*

    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.

    *)
  5. configurationName : ConfigurationName.t;
    (*

    The name of the configuration.

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

    Logging levels include ERROR, INFO, or NONE.

    *)
  7. tags : Tags.t option;
    (*

    A map of tags assigned to a resource. A tag is a string-to-string map of key-value pairs.

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