Guest User

Untitled

a guest
Oct 21st, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. def instanceState(id: String)(implicit c: AWSEC2Client, region: String = null) = {
  2. for {
  3. instance <- c.getInstanceServices.describeInstancesInRegion(region, id).headOption
  4. runningInstance <- instance.headOption
  5. } yield runningInstance.getInstanceState
  6. }
Add Comment
Please, Sign In to add comment