/** *
A resource that allows Enterprise account administrators to configure an interface to receive events from Amazon Chime.
*/ export interface _Bot { /** *The bot ID.
*/ BotId?: string; /** *The unique ID for the bot user.
*/ UserId?: string; /** *The bot display name.
*/ DisplayName?: string; /** *The bot type.
*/ BotType?: "ChatBot" | string; /** *When true, the bot is stopped from running in your account.
*/ Disabled?: boolean; /** *The bot creation timestamp, in ISO 8601 format.
*/ CreatedTimestamp?: Date | string | number; /** *The updated bot timestamp, in ISO 8601 format.
*/ UpdatedTimestamp?: Date | string | number; /** *The bot email address.
*/ BotEmail?: string; /** *The security token used to authenticate Amazon Chime with the outgoing event endpoint.
*/ SecurityToken?: string; } export interface _UnmarshalledBot extends _Bot { /** *The bot creation timestamp, in ISO 8601 format.
*/ CreatedTimestamp?: Date; /** *The updated bot timestamp, in ISO 8601 format.
*/ UpdatedTimestamp?: Date; }