use of com.amazonaws.services.ec2.model.VolumeState in project cloudbreak by hortonworks.
the class AwsLaunchTest method getCurrentVolumeState.
private VolumeState getCurrentVolumeState() {
VolumeState currentVolumeState = describeVolumeRequestFirstInvocation ? VolumeState.Available : VolumeState.InUse;
describeVolumeRequestFirstInvocation = false;
return currentVolumeState;
}
Aggregations