Module Values.UpdateSlackChannelConfigurationRequestSource

Updates a Slack channel configuration.

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

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

    *)
  2. slackChannelId : SlackChannelId.t;
    (*

    The ID of the Slack channel. To get this ID, open Slack, right click on the channel name in the left pane, then choose Copy Link. The channel ID is the 9-character string at the end of the URL. For example, ABCBBLZZZ.

    *)
  3. slackChannelName : SlackChannelDisplayName.t option;
    (*

    The name of the Slack channel.

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

    The Amazon Resource Names (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.

    *)
  7. guardrailPolicyArns : GuardrailPolicyArnList.t option;
    (*

    The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed AdministratorAccess policy is applied by default if this is not set.

    *)
  8. userAuthorizationRequired : BooleanAccountPreference.t option;
    (*

    Enables use of a user role requirement in your chat configuration.

    *)
}
Sourceval context_ : string
Sourceval make : ?slackChannelName:??? -> ?snsTopicArns:??? -> ?iamRoleArn:??? -> ?loggingLevel:??? -> ?guardrailPolicyArns:??? -> ?userAuthorizationRequired:??? -> chatConfigurationArn:ChatConfigurationArn.t -> slackChannelId:SlackChannelId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanAccountPreference.t | `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