List of usage examples for com.amazonaws.services.elastictranscoder.model Job getId
public String getId()
The identifier that Elastic Transcoder assigned to the job.
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 ww w .j av a 2s .co m*/ }