Module Values.CreateTeamsChannelConfigurationRequestSource

Creates an AWS Chatbot configuration for Microsoft Teams.

Sourcetype nonrec t = {
  1. channelId : TeamsChannelId.t;
    (*

    The ID of the Microsoft Teams channel.

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

    The name of the Microsoft Teams channel.

    *)
  3. teamId : UUID.t;
    (*

    The ID of the Microsoft Teams authorized with AWS Chatbot. To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console. For more information, see Step 1: Configure a Microsoft Teams client in the AWS Chatbot Administrator Guide.

    *)
  4. teamName : TeamName.t option;
    (*

    The name of the Microsoft Teams Team.

    *)
  5. tenantId : UUID.t;
    (*

    The ID of the Microsoft Teams tenant.

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

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

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

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

    The name of the configuration.

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

    Logging levels include ERROR, INFO, or NONE.

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

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

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

    *)
  12. 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 : ?channelName:??? -> ?teamName:??? -> ?snsTopicArns:??? -> ?loggingLevel:??? -> ?guardrailPolicyArns:??? -> ?userAuthorizationRequired:??? -> ?tags:??? -> channelId:TeamsChannelId.t -> teamId:UUID.t -> tenantId:UUID.t -> iamRoleArn:Arn.t -> configurationName:ConfigurationName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanAccountPreference.t | `List of [> `String of Arn.t | `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of TeamsChannelId.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