Struct aws_sdk_elastictranscoder::operation::read_pipeline::builders::ReadPipelineOutputBuilder
source · #[non_exhaustive]pub struct ReadPipelineOutputBuilder { /* private fields */ }
Expand description
A builder for ReadPipelineOutput
.
Implementations§
source§impl ReadPipelineOutputBuilder
impl ReadPipelineOutputBuilder
sourcepub fn pipeline(self, input: Pipeline) -> Self
pub fn pipeline(self, input: Pipeline) -> Self
A section of the response body that provides information about the pipeline.
sourcepub fn set_pipeline(self, input: Option<Pipeline>) -> Self
pub fn set_pipeline(self, input: Option<Pipeline>) -> Self
A section of the response body that provides information about the pipeline.
sourcepub fn get_pipeline(&self) -> &Option<Pipeline>
pub fn get_pipeline(&self) -> &Option<Pipeline>
A section of the response body that provides information about the pipeline.
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) -> ReadPipelineOutput
pub fn build(self) -> ReadPipelineOutput
Consumes the builder and constructs a ReadPipelineOutput
.
Trait Implementations§
source§impl Clone for ReadPipelineOutputBuilder
impl Clone for ReadPipelineOutputBuilder
source§fn clone(&self) -> ReadPipelineOutputBuilder
fn clone(&self) -> ReadPipelineOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ReadPipelineOutputBuilder
impl Debug for ReadPipelineOutputBuilder
source§impl Default for ReadPipelineOutputBuilder
impl Default for ReadPipelineOutputBuilder
source§fn default() -> ReadPipelineOutputBuilder
fn default() -> ReadPipelineOutputBuilder
source§impl PartialEq for ReadPipelineOutputBuilder
impl PartialEq for ReadPipelineOutputBuilder
source§fn eq(&self, other: &ReadPipelineOutputBuilder) -> bool
fn eq(&self, other: &ReadPipelineOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ReadPipelineOutputBuilder
Auto Trait Implementations§
impl Freeze for ReadPipelineOutputBuilder
impl RefUnwindSafe for ReadPipelineOutputBuilder
impl Send for ReadPipelineOutputBuilder
impl Sync for ReadPipelineOutputBuilder
impl Unpin for ReadPipelineOutputBuilder
impl UnwindSafe for ReadPipelineOutputBuilder
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