Module Values.SlackUserIdentitySource

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 SlackChannelConfiguration associated with the user identity to delete.

    *)
  3. slackTeamId : SlackTeamId.t option;
    (*

    The ID of the Slack workspace authorized with AWS Chatbot.

    *)
  4. slackUserId : SlackUserId.t option;
    (*

    The ID of the user in Slack

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

    The AWS user identity ARN used to associate a Slack user ID with an IAM Role.

    *)
}
Sourceval make : ?iamRoleArn:??? -> ?chatConfigurationArn:??? -> ?slackTeamId:??? -> ?slackUserId:??? -> ?awsUserIdentity:??? -> 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