MCPcopy Create free account
hub / github.com/convox/rack / UpdateMathMax

Function UpdateMathMax

provider/aws/lambda/formation/handler/math.go:62–71  ·  view source on GitHub ↗
(req Request)

Source from the content-addressed store, hash-verified

60}
61
62func UpdateMathMax(req Request) (string, map[string]string, error) {
63 val, err := mathMax(req)
64 if err != nil {
65 return "invalid", nil, err
66 }
67
68 return req.PhysicalResourceId, map[string]string{
69 "Value": val,
70 }, nil
71}
72
73func CreateMathMin(req Request) (string, map[string]string, error) {
74 val, err := mathMin(req)

Callers 1

HandleMathMaxFunction · 0.85

Calls 1

mathMaxFunction · 0.85

Tested by

no test coverage detected