Struct rusoto_elastictranscoder::JobWatermark[][src]

pub struct JobWatermark {
    pub encryption: Option<Encryption>,
    pub input_key: Option<String>,
    pub preset_watermark_id: Option<String>,
}

Watermarks can be in .png or .jpg format. If you want to display a watermark that is not rectangular, use the .png format, which supports transparency.

Fields

The encryption settings, if any, that you want Elastic Transcoder to apply to your watermarks.

The name of the .png or .jpg file that you want to use for the watermark. To determine which Amazon S3 bucket contains the specified file, Elastic Transcoder checks the pipeline specified by Pipeline; the Input Bucket object in that pipeline identifies the bucket.

If the file name includes a prefix, for example, logos/128x64.png, include the prefix in the key. If the file isn't in the specified bucket, Elastic Transcoder returns an error.

The ID of the watermark settings that Elastic Transcoder uses to add watermarks to the video during transcoding. The settings are in the preset specified by Preset for the current output. In that preset, the value of Watermarks Id tells Elastic Transcoder which settings to use.

Trait Implementations

impl Default for JobWatermark
[src]

Returns the "default value" for a type. Read more

impl Debug for JobWatermark
[src]

Formats the value using the given formatter. Read more

impl Clone for JobWatermark
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for JobWatermark
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations