(v string)
| 390 | ) |
| 391 | |
| 392 | func MakeRef(v string) *yaml.Node { |
| 393 | n := MakeMapping() |
| 394 | n.Content = append(n.Content, MakeScalar(Ref)) |
| 395 | n.Content = append(n.Content, MakeScalar(v)) |
| 396 | return n |
| 397 | } |
| 398 | |
| 399 | func MakeGetAtt(v1 string, v2 string) *yaml.Node { |
| 400 | n := MakeMapping() |
no test coverage detected