Module Values.BotSource

A resource that allows Enterprise account administrators to configure an interface to receive events from Amazon Chime.

Sourcetype nonrec t = {
  1. botId : String_.t option;
    (*

    The bot ID.

    *)
  2. userId : String_.t option;
    (*

    The unique ID for the bot user.

    *)
  3. displayName : SensitiveString.t option;
    (*

    The bot display name.

    *)
  4. botType : BotType.t option;
    (*

    The bot type.

    *)
  5. disabled : NullableBoolean.t option;
    (*

    When true, the bot is stopped from running in your account.

    *)
  6. createdTimestamp : Iso8601Timestamp.t option;
    (*

    The bot creation timestamp, in ISO 8601 format.

    *)
  7. updatedTimestamp : Iso8601Timestamp.t option;
    (*

    The updated bot timestamp, in ISO 8601 format.

    *)
  8. botEmail : SensitiveString.t option;
    (*

    The bot email address.

    *)
  9. securityToken : SensitiveString.t option;
    (*

    The security token used to authenticate Amazon Chime with the outgoing event endpoint.

    *)
}
Sourceval make : ?botId:??? -> ?userId:??? -> ?displayName:??? -> ?botType:??? -> ?disabled:??? -> ?createdTimestamp:??? -> ?updatedTimestamp:??? -> ?botEmail:??? -> ?securityToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `Enum of string | `String of String_.t | `Timestamp of Iso8601Timestamp.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