pub struct CreatePresetRequest {
pub audio: Option<AudioParameters>,
pub container: String,
pub description: Option<String>,
pub name: String,
pub thumbnails: Option<Thumbnails>,
pub video: Option<VideoParameters>,
}
Expand description
The CreatePresetRequest
structure.
Fields§
§audio: Option<AudioParameters>
A section of the request body that specifies the audio parameters.
container: String
The container type for the output file. Valid values include flac
, flv
, fmp4
, gif
, mp3
, mp4
, mpg
, mxf
, oga
, ogg
, ts
, and webm
.
description: Option<String>
A description of the preset.
name: String
The name of the preset. We recommend that the name be unique within the AWS account, but uniqueness is not enforced.
thumbnails: Option<Thumbnails>
A section of the request body that specifies the thumbnail parameters, if any.
video: Option<VideoParameters>
A section of the request body that specifies the video parameters.
Trait Implementations§
Source§impl Clone for CreatePresetRequest
impl Clone for CreatePresetRequest
Source§fn clone(&self) -> CreatePresetRequest
fn clone(&self) -> CreatePresetRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CreatePresetRequest
impl Debug for CreatePresetRequest
Source§impl Default for CreatePresetRequest
impl Default for CreatePresetRequest
Source§fn default() -> CreatePresetRequest
fn default() -> CreatePresetRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreatePresetRequest
impl PartialEq for CreatePresetRequest
Source§impl Serialize for CreatePresetRequest
impl Serialize for CreatePresetRequest
impl StructuralPartialEq for CreatePresetRequest
Auto Trait Implementations§
impl Freeze for CreatePresetRequest
impl RefUnwindSafe for CreatePresetRequest
impl Send for CreatePresetRequest
impl Sync for CreatePresetRequest
impl Unpin for CreatePresetRequest
impl UnwindSafe for CreatePresetRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more