.processors(ImmutableList.of(new Processor(2, 1)))
.volumes(ImmutableList.<Volume>of(new VolumeImpl(80.0f, true, true)));
}
public EC2HardwareBuilder m1_medium() {
return new EC2HardwareBuilder("m1.medium")
.ram(4096)
.processors(ImmutableList.of(new Processor(4, 1)))
.volumes(ImmutableList.<Volume>of(new VolumeImpl(160.0f, true, true)));
}