List of usage examples for com.amazonaws.services.elasticmapreduce.model VolumeSpecification VolumeSpecification
VolumeSpecification
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} */// w w w . j a v a 2 s. com 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; }