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

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

Introduction

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

Prototype


public void setMode(String mode) 

Source Link

Document

The specific server-side encryption mode that you want Elastic Transcoder to use when decrypting your input files or encrypting your output files.

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;//www  . ja  v a 2  s . c o m
}