()
| 55 | } |
| 56 | |
| 57 | func (c *Client) ECS() *ecs.Client { |
| 58 | if c.ecsClient == nil { |
| 59 | c.ecsClient = ecs.New(c.session, c.config) |
| 60 | } |
| 61 | return c.ecsClient |
| 62 | } |
| 63 | |
| 64 | func (c *Client) ELB() *elb.Client { |
| 65 | if c.elbClient == nil { |
no outgoing calls
no test coverage detected