Example usage for com.amazonaws.services.elasticmapreduce.model VolumeSpecification setVolumeType

List of usage examples for com.amazonaws.services.elasticmapreduce.model VolumeSpecification setVolumeType

Introduction

In this page you can find the example usage for com.amazonaws.services.elasticmapreduce.model VolumeSpecification setVolumeType.

Prototype


public void setVolumeType(String volumeType) 

Source Link

Document

The volume type.

Usage

From source file:org.finra.herd.dao.impl.EmrDaoImpl.java

License:Apache License

/**
 * Creates an instance of {@link VolumeSpecification} from a given instance of {@link EmrClusterDefinitionVolumeSpecification}.
 *
 * @param emrClusterDefinitionVolumeSpecification the instance of {@link EmrClusterDefinitionVolumeSpecification}
 *
 * @return the instance of {@link VolumeSpecification}
 *//*from  w  w  w.  ja  va  2 s  . c o m*/
protected VolumeSpecification getVolumeSpecification(
        EmrClusterDefinitionVolumeSpecification emrClusterDefinitionVolumeSpecification) {
    VolumeSpecification volumeSpecification = null;

    if (emrClusterDefinitionVolumeSpecification != null) {
        volumeSpecification = new VolumeSpecification();
        volumeSpecification.setVolumeType(emrClusterDefinitionVolumeSpecification.getVolumeType());
        volumeSpecification.setIops(emrClusterDefinitionVolumeSpecification.getIops());
        volumeSpecification.setSizeInGB(emrClusterDefinitionVolumeSpecification.getSizeInGB());
    }

    return volumeSpecification;
}