#[non_exhaustive]pub struct CreatePipeOutputBuilder { /* private fields */ }
Expand description
A builder for CreatePipeOutput
.
Implementations§
source§impl CreatePipeOutputBuilder
impl CreatePipeOutputBuilder
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 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 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 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 build(self) -> CreatePipeOutput
pub fn build(self) -> CreatePipeOutput
Consumes the builder and constructs a CreatePipeOutput
.
Trait Implementations§
source§impl Clone for CreatePipeOutputBuilder
impl Clone for CreatePipeOutputBuilder
source§fn clone(&self) -> CreatePipeOutputBuilder
fn clone(&self) -> CreatePipeOutputBuilder
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 CreatePipeOutputBuilder
impl Debug for CreatePipeOutputBuilder
source§impl Default for CreatePipeOutputBuilder
impl Default for CreatePipeOutputBuilder
source§fn default() -> CreatePipeOutputBuilder
fn default() -> CreatePipeOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<CreatePipeOutputBuilder> for CreatePipeOutputBuilder
impl PartialEq<CreatePipeOutputBuilder> for CreatePipeOutputBuilder
source§fn eq(&self, other: &CreatePipeOutputBuilder) -> bool
fn eq(&self, other: &CreatePipeOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreatePipeOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for CreatePipeOutputBuilder
impl Send for CreatePipeOutputBuilder
impl Sync for CreatePipeOutputBuilder
impl Unpin for CreatePipeOutputBuilder
impl UnwindSafe for CreatePipeOutputBuilder
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