Example usage for com.amazonaws.services.ec2.model StateReason StateReason

List of usage examples for com.amazonaws.services.ec2.model StateReason StateReason

Introduction

In this page you can find the example usage for com.amazonaws.services.ec2.model StateReason StateReason.

Prototype

StateReason

Source Link

Usage

From source file:com.carrotgarden.maven.aws.ecc.CarrotElasticCompute.java

License:BSD License

private Image newImageWithStatus(final String state, final String code, final String message) {

    final StateReason reason = new StateReason();
    reason.setCode(code);//from  w w w  .  j a  v  a2  s . c  om
    reason.setMessage(message);

    final Image image = new Image();
    image.setState(state);
    image.setStateReason(reason);

    return image;

}