Struct aws_sdk_elastictranscoder::operation::update_pipeline::builders::UpdatePipelineOutputBuilder
source · #[non_exhaustive]pub struct UpdatePipelineOutputBuilder { /* private fields */ }
Expand description
A builder for UpdatePipelineOutput
.
Implementations§
source§impl UpdatePipelineOutputBuilder
impl UpdatePipelineOutputBuilder
sourcepub fn pipeline(self, input: Pipeline) -> Self
pub fn pipeline(self, input: Pipeline) -> Self
The pipeline updated by this UpdatePipelineResponse
call.
sourcepub fn set_pipeline(self, input: Option<Pipeline>) -> Self
pub fn set_pipeline(self, input: Option<Pipeline>) -> Self
The pipeline updated by this UpdatePipelineResponse
call.
sourcepub fn get_pipeline(&self) -> &Option<Pipeline>
pub fn get_pipeline(&self) -> &Option<Pipeline>
The pipeline updated by this UpdatePipelineResponse
call.
sourcepub fn warnings(self, input: Warning) -> Self
pub fn warnings(self, input: Warning) -> Self
Appends an item to warnings
.
To override the contents of this collection use set_warnings
.
Elastic Transcoder returns a warning if the resources used by your pipeline are not in the same region as the pipeline.
Using resources in the same region, such as your Amazon S3 buckets, Amazon SNS notification topics, and AWS KMS key, reduces processing time and prevents cross-regional charges.
sourcepub fn set_warnings(self, input: Option<Vec<Warning>>) -> Self
pub fn set_warnings(self, input: Option<Vec<Warning>>) -> Self
Elastic Transcoder returns a warning if the resources used by your pipeline are not in the same region as the pipeline.
Using resources in the same region, such as your Amazon S3 buckets, Amazon SNS notification topics, and AWS KMS key, reduces processing time and prevents cross-regional charges.
sourcepub fn get_warnings(&self) -> &Option<Vec<Warning>>
pub fn get_warnings(&self) -> &Option<Vec<Warning>>
Elastic Transcoder returns a warning if the resources used by your pipeline are not in the same region as the pipeline.
Using resources in the same region, such as your Amazon S3 buckets, Amazon SNS notification topics, and AWS KMS key, reduces processing time and prevents cross-regional charges.
sourcepub fn build(self) -> UpdatePipelineOutput
pub fn build(self) -> UpdatePipelineOutput
Consumes the builder and constructs a UpdatePipelineOutput
.
Trait Implementations§
source§impl Clone for UpdatePipelineOutputBuilder
impl Clone for UpdatePipelineOutputBuilder
source§fn clone(&self) -> UpdatePipelineOutputBuilder
fn clone(&self) -> UpdatePipelineOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdatePipelineOutputBuilder
impl Debug for UpdatePipelineOutputBuilder
source§impl Default for UpdatePipelineOutputBuilder
impl Default for UpdatePipelineOutputBuilder
source§fn default() -> UpdatePipelineOutputBuilder
fn default() -> UpdatePipelineOutputBuilder
source§impl PartialEq for UpdatePipelineOutputBuilder
impl PartialEq for UpdatePipelineOutputBuilder
source§fn eq(&self, other: &UpdatePipelineOutputBuilder) -> bool
fn eq(&self, other: &UpdatePipelineOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdatePipelineOutputBuilder
Auto Trait Implementations§
impl Freeze for UpdatePipelineOutputBuilder
impl RefUnwindSafe for UpdatePipelineOutputBuilder
impl Send for UpdatePipelineOutputBuilder
impl Sync for UpdatePipelineOutputBuilder
impl Unpin for UpdatePipelineOutputBuilder
impl UnwindSafe for UpdatePipelineOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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