Example usage for com.amazonaws.services.elastictranscoder.model Job getStatus

List of usage examples for com.amazonaws.services.elastictranscoder.model Job getStatus

Introduction

In this page you can find the example usage for com.amazonaws.services.elastictranscoder.model Job getStatus.

Prototype


public String getStatus() 

Source Link

Document

The status of the job: Submitted, Progressing, Complete, Canceled, or Error.

Usage

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 va  2s  . co  m
}