BotAlias

Provides an Amazon Lex Bot Alias resource. For more information see Amazon Lex: How It Works

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.lex.BotAlias;
import com.pulumi.aws.lex.BotAliasArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var orderFlowersProd = new BotAlias("orderFlowersProd", BotAliasArgs.builder()
.botName("OrderFlowers")
.botVersion("1")
.description("Production Version of the OrderFlowers Bot.")
.name("OrderFlowersProd")
.build());
}
}

Import

Bot aliases can be imported using an ID with the format bot_name:bot_alias_name.

$ pulumi import aws:lex/botAlias:BotAlias order_flowers_prod OrderFlowers:OrderFlowersProd

Properties

Link copied to clipboard
val arn: Output<String>

The ARN of the bot alias.

Link copied to clipboard
val botName: Output<String>

The name of the bot.

Link copied to clipboard
val botVersion: Output<String>

The name of the bot.

Link copied to clipboard
val checksum: Output<String>

Checksum of the bot alias.

Link copied to clipboard

The settings that determine how Amazon Lex uses conversation logs for the alias. Attributes are documented under conversation_logs.

Link copied to clipboard
val createdDate: Output<String>

The date that the bot alias was created.

Link copied to clipboard
val description: Output<String>?

A description of the alias. Must be less than or equal to 200 characters in length.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val lastUpdatedDate: Output<String>

The date that the bot alias was updated. When you create a resource, the creation date and the last updated date are the same.

Link copied to clipboard
val name: Output<String>

The name of the alias. The name is not case sensitive. Must be less than or equal to 100 characters in length.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val urn: Output<String>