#[non_exhaustive]
pub struct Preset { pub id: Option<String>, pub arn: Option<String>, pub name: Option<String>, pub description: Option<String>, pub container: Option<String>, pub audio: Option<AudioParameters>, pub video: Option<VideoParameters>, pub thumbnails: Option<Thumbnails>, pub type: Option<String>, }
Expand description

Presets are templates that contain most of the settings for transcoding media files from one format to another. Elastic Transcoder includes some default presets for common formats, for example, several iPod and iPhone versions. You can also create your own presets for formats that aren't included among the default presets. You specify which preset you want to use when you create a job.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
id: Option<String>

Identifier for the new preset. You use this value to get settings for the preset or to delete it.

arn: Option<String>

The Amazon Resource Name (ARN) for the preset.

name: Option<String>

The name of the preset.

description: Option<String>

A description of the preset.

container: Option<String>

The container type for the output file. Valid values include flac, flv, fmp4, gif, mp3, mp4, mpg, mxf, oga, ogg, ts, and webm.

audio: Option<AudioParameters>

A section of the response body that provides information about the audio preset values.

video: Option<VideoParameters>

A section of the response body that provides information about the video preset values.

thumbnails: Option<Thumbnails>

A section of the response body that provides information about the thumbnail preset values, if any.

type: Option<String>

Whether the preset is a default preset provided by Elastic Transcoder (System) or a preset that you have defined (Custom).

Implementations

Identifier for the new preset. You use this value to get settings for the preset or to delete it.

The Amazon Resource Name (ARN) for the preset.

The name of the preset.

A description of the preset.

The container type for the output file. Valid values include flac, flv, fmp4, gif, mp3, mp4, mpg, mxf, oga, ogg, ts, and webm.

A section of the response body that provides information about the audio preset values.

A section of the response body that provides information about the video preset values.

A section of the response body that provides information about the thumbnail preset values, if any.

Whether the preset is a default preset provided by Elastic Transcoder (System) or a preset that you have defined (Custom).

Creates a new builder-style object to manufacture Preset

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more