Module Values.TeamsUserIdentitySource

Identifes a user level permission for a channel configuration.

Sourcetype nonrec t = {
  1. 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.

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

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

    *)
  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. userId : UUID.t option;
    (*

    The Microsoft Teams user ID.

    *)
  5. awsUserIdentity : AwsUserIdentity.t option;
    (*

    The AWS user identity ARN used to associate a Microsoft Teams user Identity with an IAM Role.

    *)
  6. teamsChannelId : TeamsChannelId.t option;
    (*

    The ID of the Microsoft Teams channel.

    *)
  7. teamsTenantId : UUID.t option;
    (*

    The ID of the Microsoft Teams tenant.

    *)
}
Sourceval make : ?iamRoleArn:??? -> ?chatConfigurationArn:??? -> ?teamId:??? -> ?userId:??? -> ?awsUserIdentity:??? -> ?teamsChannelId:??? -> ?teamsTenantId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Arn.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