Struct aws_sdk_elastictranscoder::operation::create_preset::builders::CreatePresetOutputBuilder
source · #[non_exhaustive]pub struct CreatePresetOutputBuilder { /* private fields */ }
Expand description
A builder for CreatePresetOutput
.
Implementations§
source§impl CreatePresetOutputBuilder
impl CreatePresetOutputBuilder
sourcepub fn preset(self, input: Preset) -> Self
pub fn preset(self, input: Preset) -> Self
A section of the response body that provides information about the preset that is created.
sourcepub fn set_preset(self, input: Option<Preset>) -> Self
pub fn set_preset(self, input: Option<Preset>) -> Self
A section of the response body that provides information about the preset that is created.
sourcepub fn get_preset(&self) -> &Option<Preset>
pub fn get_preset(&self) -> &Option<Preset>
A section of the response body that provides information about the preset that is created.
sourcepub fn warning(self, input: impl Into<String>) -> Self
pub fn warning(self, input: impl Into<String>) -> Self
If the preset settings don't comply with the standards for the video codec but Elastic Transcoder created the preset, this message explains the reason the preset settings don't meet the standard. Elastic Transcoder created the preset because the settings might produce acceptable output.
sourcepub fn set_warning(self, input: Option<String>) -> Self
pub fn set_warning(self, input: Option<String>) -> Self
If the preset settings don't comply with the standards for the video codec but Elastic Transcoder created the preset, this message explains the reason the preset settings don't meet the standard. Elastic Transcoder created the preset because the settings might produce acceptable output.
sourcepub fn get_warning(&self) -> &Option<String>
pub fn get_warning(&self) -> &Option<String>
If the preset settings don't comply with the standards for the video codec but Elastic Transcoder created the preset, this message explains the reason the preset settings don't meet the standard. Elastic Transcoder created the preset because the settings might produce acceptable output.
sourcepub fn build(self) -> CreatePresetOutput
pub fn build(self) -> CreatePresetOutput
Consumes the builder and constructs a CreatePresetOutput
.
Trait Implementations§
source§impl Clone for CreatePresetOutputBuilder
impl Clone for CreatePresetOutputBuilder
source§fn clone(&self) -> CreatePresetOutputBuilder
fn clone(&self) -> CreatePresetOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreatePresetOutputBuilder
impl Debug for CreatePresetOutputBuilder
source§impl Default for CreatePresetOutputBuilder
impl Default for CreatePresetOutputBuilder
source§fn default() -> CreatePresetOutputBuilder
fn default() -> CreatePresetOutputBuilder
source§impl PartialEq for CreatePresetOutputBuilder
impl PartialEq for CreatePresetOutputBuilder
source§fn eq(&self, other: &CreatePresetOutputBuilder) -> bool
fn eq(&self, other: &CreatePresetOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreatePresetOutputBuilder
Auto Trait Implementations§
impl Freeze for CreatePresetOutputBuilder
impl RefUnwindSafe for CreatePresetOutputBuilder
impl Send for CreatePresetOutputBuilder
impl Sync for CreatePresetOutputBuilder
impl Unpin for CreatePresetOutputBuilder
impl UnwindSafe for CreatePresetOutputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more