Module Values.DeleteBotAliasRequestSource

Deletes the specified bot alias.

Sourcetype nonrec t = {
  1. botAliasId : BotAliasId.t;
    (*

    The unique identifier of the bot alias to delete.

    *)
  2. botId : Id.t;
    (*

    The unique identifier of the bot associated with the alias to delete.

    *)
  3. skipResourceInUseCheck : SkipResourceInUseCheck.t option;
    (*

    By default, Amazon Lex checks if any other resource, such as a bot network, is using the bot alias before it is deleted and throws a ResourceInUseException exception if the alias is being used by another resource. Set this parameter to true to skip this check and remove the alias even if it is being used by another resource.

    *)
}
Sourceval context_ : string
Sourceval make : ?skipResourceInUseCheck:??? -> botAliasId:BotAliasId.t -> botId:Id.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of SkipResourceInUseCheck.t | `String of BotAliasId.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