List of usage examples for com.amazonaws.services.elastictranscoder.model Job getPipelineId
public String getPipelineId()
The Id of the pipeline that you want Elastic Transcoder to use for transcoding.
From source file:org.alanwilliamson.amazon.transcoder.job.List.java
License:Open Source License
protected cfStructData getJob(Job job) throws cfmRunTimeException { cfStructData s = new cfStructData(); s.setData("id", new cfStringData(job.getId())); s.setData("pipelineid", new cfStringData(job.getPipelineId())); s.setData("status", new cfStringData(job.getStatus())); return s;/*from w w w. j a v a2 s. com*/ }