Example usage for com.amazonaws.services.ec2.model EbsBlockDevice getVolumeType

List of usage examples for com.amazonaws.services.ec2.model EbsBlockDevice getVolumeType

Introduction

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

Prototype


public String getVolumeType() 

Source Link

Document

The volume type.

Usage

From source file:org.xmlsh.aws.util.AWSEC2Command.java

License:BSD License

private void writeBlockDeviceMapping(BlockDeviceMapping device) throws XMLStreamException {
    startElement("device");

    attribute("name", device.getDeviceName());

    EbsBlockDevice ebs = device.getEbs();
    if (ebs != null) {

        attribute("shapshot-id", ebs.getSnapshotId());
        attribute("delete-on-termination", ebs.getDeleteOnTermination());
        attribute("volume-size", ebs.getVolumeSize());
        attribute("volume-type", ebs.getVolumeType());
        attribute("encrypted", ebs.getEncrypted());
        attribute("iops", ebs.getIops());
    }/*from   w  w w  .ja  v a2 s  . c o m*/

    endElement();

}