Module Values.UpdateTeamsChannelConfigurationRequestSource

Updates an Microsoft Teams channel configuration.

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

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

    *)
  2. channelId : TeamsChannelId.t;
    (*

    The ID of the Microsoft Teams channel.

    *)
  3. channelName : TeamsChannelName.t option;
    (*

    The name of the Microsoft Teams 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 : ?channelName:??? -> ?snsTopicArns:??? -> ?iamRoleArn:??? -> ?loggingLevel:??? -> ?guardrailPolicyArns:??? -> ?userAuthorizationRequired:??? -> chatConfigurationArn:ChatConfigurationArn.t -> channelId:TeamsChannelId.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