Cloudformation AWS Lex Bot Intent

0

How to declare an Intent in a CloudFormation file? When I try to use the type "AWS::Lex::Bot Intent" it doesn't work... Is it possible or I need to create the Intent with aws cli/console?

kaue
feita há 2 meses285 visualizações
1 Resposta
1
Resposta aceita

To create an Intent for an Amazon Lex bot using CloudFormation, you can use a combination of AWS::Lex::Bot and AWS::Lex::BotVersion resources. Here's an example CloudFormation template snippet that demonstrates creating a Lex bot with an Intent:

Resources: MyLexBot: Type: "AWS::Lex::Bot" Properties: Name: "MyLexBot" Description: "My Amazon Lex Bot" Intents: - IntentName: "MyIntent" IntentVersion: "1" FulfillmentActivity: Type: "ReturnIntent" SampleUtterances: - "Hello" - "Goodbye"

MyLexBotAlias: Type: "AWS::Lex::BotVersion" Properties: Name: "MyLexBotAlias" BotName: !Ref MyLexBot

profile picture
SOKHIM
respondido há 2 meses
profile picture
ESPECIALISTA
avaliado há um mês

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas