Example usage for com.amazonaws.services.elastictranscoder.model Encryption setKey

List of usage examples for com.amazonaws.services.elastictranscoder.model Encryption setKey

Introduction

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

Prototype


public void setKey(String key) 

Source Link

Document

The data encryption key that you want Elastic Transcoder to use to encrypt your output file, or that was used to encrypt your input file.

Usage

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

License:Open Source License

private Encryption getEncryption(cfStructData es) throws dataNotSupportedException {
    Encryption e = new Encryption();

    if (es.containsKey("key"))
        e.setKey(es.getData("key").getString());

    if (es.containsKey("keymd5"))
        e.setKeyMd5(es.getData("keymd5").getString());

    if (es.containsKey("mode"))
        e.setMode(es.getData("mode").getString());

    if (es.containsKey("initializationvector"))
        e.setInitializationVector(es.getData("initializationvector").getString());

    return e;//from  w ww. j  a v a2 s .c o  m
}