Module Values.SlackWorkspaceSource

A Slack workspace.

Sourcetype nonrec t = {
  1. slackTeamId : SlackTeamId.t option;
    (*

    The ID of the Slack workspace authorized with AWS Chatbot.

    *)
  2. slackTeamName : SlackTeamName.t option;
    (*

    The name of the Slack workspace.

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

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

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

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