-
Notifications
You must be signed in to change notification settings - Fork 1
/
cf.json
35 lines (35 loc) · 792 Bytes
/
cf.json
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
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "Test",
"Parameters": {
"SleepTime": {
"Description": "The function sleep time",
"Type": "Number"
},
"DelayTime": {
"Description": "The function delay time",
"Type": "Number"
}
},
"Resources": {
"time": {
"Type": "Example::Time::Resource",
"Properties": {
"Sleep": {
"Ref": "SleepTime"
},
"Delay": {
"Ref": "DelayTime"
}
}
}
},
"Outputs" : {
"ID" : {
"Description" : "The key",
"Value" : {
"Ref": "time"
}
}
}
}