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

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

Introduction

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

Prototype

DeletePipelineRequest

Source Link

Usage

From source file:org.alanwilliamson.amazon.transcoder.pipeline.Delete.java

License:Open Source License

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

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

    try {//from w  ww. j a  v  a 2s  .co m
        et.deletePipeline(new DeletePipelineRequest().withId(pipelineid));
    } catch (Exception e) {
        throwException(_session, "AmazonElasticTranscoder: " + e.getMessage());
    }

    return cfBooleanData.TRUE;
}