Example usage for com.amazonaws.services.elastictranscoder.model CancelJobRequest CancelJobRequest

List of usage examples for com.amazonaws.services.elastictranscoder.model CancelJobRequest CancelJobRequest

Introduction

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

Prototype

CancelJobRequest

Source Link

Usage

From source file:org.alanwilliamson.amazon.transcoder.job.Cancel.java

License:Open Source License

public cfData execute(cfSession _session, cfArgStructData argStruct) throws cfmRunTimeException {
    AmazonKey amazonKey = getAmazonKey(_session, argStruct);
    AmazonElasticTranscoder et = getAmazonElasticTranscoder(amazonKey);

    String jobid = getNamedStringParam(argStruct, "jobid", null);
    if (jobid == null)
        throwException(_session, "Please specify a jobid");

    try {/*from   w w w  .  ja  va 2 s  . com*/
        et.cancelJob(new CancelJobRequest().withId(jobid));
    } catch (Exception e) {
        throwException(_session, "AmazonElasticTranscoder: " + e.getMessage());
    }

    return cfBooleanData.TRUE;
}