-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlex_intents.tf
53 lines (42 loc) · 815 Bytes
/
lex_intents.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
resource "aws_lex_intent" "accept_offer_intent" {
name = "accept"
fulfillment_activity {
type = "ReturnIntent"
}
sample_utterances = [
"Accept",
"I accept",
"Yes"
]
}
resource "aws_lex_intent" "reject_offer_intent" {
name = "reject"
fulfillment_activity {
type = "ReturnIntent"
}
sample_utterances = [
"Reject",
"I Refuse",
"No"
]
}
resource "aws_lex_intent" "repeat_offer_details_intent" {
name = "repeatOfferDetails"
fulfillment_activity {
type = "ReturnIntent"
}
sample_utterances = [
"Repeat",
"Repeat offer details"
]
}
resource "aws_lex_intent" "repeat_options_intent" {
name = "repeatOptions"
fulfillment_activity {
type = "ReturnIntent"
}
sample_utterances = [
"Repeat options",
"Repeat choices"
]
}