#[non_exhaustive]pub struct StartFlowOutputBuilder { /* private fields */ }
Expand description
A builder for StartFlowOutput
.
Implementations§
source§impl StartFlowOutputBuilder
impl StartFlowOutputBuilder
sourcepub fn flow_arn(self, input: impl Into<String>) -> Self
pub fn flow_arn(self, input: impl Into<String>) -> Self
The flow's Amazon Resource Name (ARN).
sourcepub fn set_flow_arn(self, input: Option<String>) -> Self
pub fn set_flow_arn(self, input: Option<String>) -> Self
The flow's Amazon Resource Name (ARN).
sourcepub fn flow_status(self, input: FlowStatus) -> Self
pub fn flow_status(self, input: FlowStatus) -> Self
Indicates the current status of the flow.
sourcepub fn set_flow_status(self, input: Option<FlowStatus>) -> Self
pub fn set_flow_status(self, input: Option<FlowStatus>) -> Self
Indicates the current status of the flow.
sourcepub fn execution_id(self, input: impl Into<String>) -> Self
pub fn execution_id(self, input: impl Into<String>) -> Self
Returns the internal execution ID of an on-demand flow when the flow is started. For scheduled or event-triggered flows, this value is null.
sourcepub fn set_execution_id(self, input: Option<String>) -> Self
pub fn set_execution_id(self, input: Option<String>) -> Self
Returns the internal execution ID of an on-demand flow when the flow is started. For scheduled or event-triggered flows, this value is null.
sourcepub fn build(self) -> StartFlowOutput
pub fn build(self) -> StartFlowOutput
Consumes the builder and constructs a StartFlowOutput
.
Trait Implementations§
source§impl Clone for StartFlowOutputBuilder
impl Clone for StartFlowOutputBuilder
source§fn clone(&self) -> StartFlowOutputBuilder
fn clone(&self) -> StartFlowOutputBuilder
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 StartFlowOutputBuilder
impl Debug for StartFlowOutputBuilder
source§impl Default for StartFlowOutputBuilder
impl Default for StartFlowOutputBuilder
source§fn default() -> StartFlowOutputBuilder
fn default() -> StartFlowOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<StartFlowOutputBuilder> for StartFlowOutputBuilder
impl PartialEq<StartFlowOutputBuilder> for StartFlowOutputBuilder
source§fn eq(&self, other: &StartFlowOutputBuilder) -> bool
fn eq(&self, other: &StartFlowOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StartFlowOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for StartFlowOutputBuilder
impl Send for StartFlowOutputBuilder
impl Sync for StartFlowOutputBuilder
impl Unpin for StartFlowOutputBuilder
impl UnwindSafe for StartFlowOutputBuilder
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