()
| 48 | } |
| 49 | |
| 50 | func (c *Client) EC2() *ec2.Client { |
| 51 | if c.ec2Client == nil { |
| 52 | c.ec2Client = ec2.New(c.session, c.config) |
| 53 | } |
| 54 | return c.ec2Client |
| 55 | } |
| 56 | |
| 57 | func (c *Client) ECS() *ecs.Client { |
| 58 | if c.ecsClient == nil { |
no outgoing calls
no test coverage detected