#[non_exhaustive]pub struct UpdatePipeOutputBuilder { /* private fields */ }Expand description
A builder for UpdatePipeOutput.
Implementations§
source§impl UpdatePipeOutputBuilder
 
impl UpdatePipeOutputBuilder
sourcepub fn desired_state(self, input: RequestedPipeState) -> Self
 
pub fn desired_state(self, input: RequestedPipeState) -> Self
The state the pipe should be in.
sourcepub fn set_desired_state(self, input: Option<RequestedPipeState>) -> Self
 
pub fn set_desired_state(self, input: Option<RequestedPipeState>) -> Self
The state the pipe should be in.
sourcepub fn get_desired_state(&self) -> &Option<RequestedPipeState>
 
pub fn get_desired_state(&self) -> &Option<RequestedPipeState>
The state the pipe should be in.
sourcepub fn current_state(self, input: PipeState) -> Self
 
pub fn current_state(self, input: PipeState) -> Self
The state the pipe is in.
sourcepub fn set_current_state(self, input: Option<PipeState>) -> Self
 
pub fn set_current_state(self, input: Option<PipeState>) -> Self
The state the pipe is in.
sourcepub fn get_current_state(&self) -> &Option<PipeState>
 
pub fn get_current_state(&self) -> &Option<PipeState>
The state the pipe is in.
sourcepub fn creation_time(self, input: DateTime) -> Self
 
pub fn creation_time(self, input: DateTime) -> Self
The time the pipe was created.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
 
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The time the pipe was created.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
 
pub fn get_creation_time(&self) -> &Option<DateTime>
The time the pipe was created.
sourcepub fn last_modified_time(self, input: DateTime) -> Self
 
pub fn last_modified_time(self, input: DateTime) -> Self
When the pipe was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
sourcepub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
 
pub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
When the pipe was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
sourcepub fn get_last_modified_time(&self) -> &Option<DateTime>
 
pub fn get_last_modified_time(&self) -> &Option<DateTime>
When the pipe was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
sourcepub fn build(self) -> UpdatePipeOutput
 
pub fn build(self) -> UpdatePipeOutput
Consumes the builder and constructs a UpdatePipeOutput.
Trait Implementations§
source§impl Clone for UpdatePipeOutputBuilder
 
impl Clone for UpdatePipeOutputBuilder
source§fn clone(&self) -> UpdatePipeOutputBuilder
 
fn clone(&self) -> UpdatePipeOutputBuilder
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 UpdatePipeOutputBuilder
 
impl Debug for UpdatePipeOutputBuilder
source§impl Default for UpdatePipeOutputBuilder
 
impl Default for UpdatePipeOutputBuilder
source§fn default() -> UpdatePipeOutputBuilder
 
fn default() -> UpdatePipeOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UpdatePipeOutputBuilder
 
impl PartialEq for UpdatePipeOutputBuilder
source§fn eq(&self, other: &UpdatePipeOutputBuilder) -> bool
 
fn eq(&self, other: &UpdatePipeOutputBuilder) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdatePipeOutputBuilder
Auto Trait Implementations§
impl Freeze for UpdatePipeOutputBuilder
impl RefUnwindSafe for UpdatePipeOutputBuilder
impl Send for UpdatePipeOutputBuilder
impl Sync for UpdatePipeOutputBuilder
impl Unpin for UpdatePipeOutputBuilder
impl UnwindSafe for UpdatePipeOutputBuilder
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
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>
Creates a shared type from an unshared type.