Module Values.ConfiguredTeamSource

A Microsoft Teams team that is authorized with AWS Chatbot.

Sourcetype nonrec t = {
  1. tenantId : UUID.t option;
    (*

    The ID of the Microsoft Teams tenant.

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

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

    The name of the Microsoft Teams Team.

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

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

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

    *)
}
Sourceval make : ?tenantId:??? -> ?teamId:??? -> ?teamName:??? -> ?state:??? -> ?stateReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UUID.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