Module Values.ChimeWebhookConfigurationSource

An AWS Chatbot configuration for Amazon Chime.

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

    *)
  2. chatConfigurationArn : ChatConfigurationArn.t option;
    (*

    The Amazon Resource Name (ARN) of the ChimeWebhookConfiguration.

    *)
  3. 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.

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

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

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

    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.

    *)
  8. state : ResourceState.t option;
    (*

    Either ENABLED or DISABLED. The resource returns DISABLED if the organization's AWS Chatbot policy has explicitly denied that configuration. For example, if Amazon Chime is disabled.

    *)
  9. stateReason : String_.t option;
    (*

    Provided if State is DISABLED. Provides context as to why the resource is disabled.

    *)
}
Sourceval make : ?webhookDescription:??? -> ?chatConfigurationArn:??? -> ?iamRoleArn:??? -> ?snsTopicArns:??? -> ?configurationName:??? -> ?loggingLevel:??? -> ?tags:??? -> ?state:??? -> ?stateReason:??? -> 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