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

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

Introduction

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

Prototype

VolumeSpecification

Source Link

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}
 */// 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;
}