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