Example usage for com.amazonaws.services.ec2.model InstanceStateChange setCurrentState

List of usage examples for com.amazonaws.services.ec2.model InstanceStateChange setCurrentState

Introduction

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

Prototype


public void setCurrentState(InstanceState currentState) 

Source Link

Document

The current state of the instance.

Usage

From source file:jp.primecloud.auto.aws.typica.converter.InstanceStateChangeTerminateConverter.java

License:Open Source License

@Override
protected InstanceStateChange convertObject(TerminatingInstanceDescription from) {
    InstanceStateChange to = new InstanceStateChange();

    to.setInstanceId(from.getInstanceId());

    InstanceState previousState = new InstanceState();
    previousState.setCode(from.getPreviousStateCode());
    previousState.setName(from.getPreviousState());
    to.setPreviousState(previousState);//w w w .  j a va 2s .  com

    InstanceState currentState = new InstanceState();
    currentState.setCode(from.getShutdownStateCode());
    currentState.setName(from.getShutdownState());
    to.setCurrentState(currentState);

    return to;
}