(v1 string, v2 string)
| 397 | } |
| 398 | |
| 399 | func MakeGetAtt(v1 string, v2 string) *yaml.Node { |
| 400 | n := MakeMapping() |
| 401 | n.Content = append(n.Content, MakeScalar(GetAtt)) |
| 402 | n.Content = append(n.Content, MakeSequence([]string{v1, v2})) |
| 403 | return n |
| 404 | } |
| 405 | |
| 406 | func MakeScalar(v string) *yaml.Node { |
| 407 | return &yaml.Node{ |
no test coverage detected