Module Values.TeamsChannelConfigurationSource

An AWS Chatbot configuration for Microsoft Teams.

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

    The ID of the Microsoft Teams channel.

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

    The name of the Microsoft Teams channel.

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

    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 option;
    (*

    The ID of the Microsoft Teams tenant.

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

    The Amazon Resource Name (ARN) of the MicrosoftTeamsChannelConfiguration associated with the user identity to delete.

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

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

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

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

    The name of the configuration.

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

    Logging levels include ERROR, INFO, or NONE.

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

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

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

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

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

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

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

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

    *)
}
Sourceval make : ?channelId:??? -> ?channelName:??? -> ?teamId:??? -> ?teamName:??? -> ?tenantId:??? -> ?chatConfigurationArn:??? -> ?iamRoleArn:??? -> ?snsTopicArns:??? -> ?configurationName:??? -> ?loggingLevel:??? -> ?guardrailPolicyArns:??? -> ?userAuthorizationRequired:??? -> ?tags:??? -> ?state:??? -> ?stateReason:??? -> 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