#[non_exhaustive]pub struct UpdateFlowInputBuilder { /* private fields */ }Expand description
A builder for UpdateFlowInput.
Implementations§
source§impl UpdateFlowInputBuilder
impl UpdateFlowInputBuilder
sourcepub fn flow_arn(self, input: impl Into<String>) -> Self
pub fn flow_arn(self, input: impl Into<String>) -> Self
The flow that you want to update. This field is required.
sourcepub fn set_flow_arn(self, input: Option<String>) -> Self
pub fn set_flow_arn(self, input: Option<String>) -> Self
The flow that you want to update.
sourcepub fn get_flow_arn(&self) -> &Option<String>
pub fn get_flow_arn(&self) -> &Option<String>
The flow that you want to update.
sourcepub fn source_failover_config(self, input: UpdateFailoverConfig) -> Self
pub fn source_failover_config(self, input: UpdateFailoverConfig) -> Self
The settings for source failover.
sourcepub fn set_source_failover_config(
self,
input: Option<UpdateFailoverConfig>
) -> Self
pub fn set_source_failover_config( self, input: Option<UpdateFailoverConfig> ) -> Self
The settings for source failover.
sourcepub fn get_source_failover_config(&self) -> &Option<UpdateFailoverConfig>
pub fn get_source_failover_config(&self) -> &Option<UpdateFailoverConfig>
The settings for source failover.
sourcepub fn maintenance(self, input: UpdateMaintenance) -> Self
pub fn maintenance(self, input: UpdateMaintenance) -> Self
Update maintenance setting for a flow
sourcepub fn set_maintenance(self, input: Option<UpdateMaintenance>) -> Self
pub fn set_maintenance(self, input: Option<UpdateMaintenance>) -> Self
Update maintenance setting for a flow
sourcepub fn get_maintenance(&self) -> &Option<UpdateMaintenance>
pub fn get_maintenance(&self) -> &Option<UpdateMaintenance>
Update maintenance setting for a flow
sourcepub fn build(self) -> Result<UpdateFlowInput, BuildError>
pub fn build(self) -> Result<UpdateFlowInput, BuildError>
Consumes the builder and constructs a UpdateFlowInput.
source§impl UpdateFlowInputBuilder
impl UpdateFlowInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateFlowOutput, SdkError<UpdateFlowError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateFlowOutput, SdkError<UpdateFlowError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateFlowInputBuilder
impl Clone for UpdateFlowInputBuilder
source§fn clone(&self) -> UpdateFlowInputBuilder
fn clone(&self) -> UpdateFlowInputBuilder
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 UpdateFlowInputBuilder
impl Debug for UpdateFlowInputBuilder
source§impl Default for UpdateFlowInputBuilder
impl Default for UpdateFlowInputBuilder
source§fn default() -> UpdateFlowInputBuilder
fn default() -> UpdateFlowInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UpdateFlowInputBuilder
impl PartialEq for UpdateFlowInputBuilder
source§fn eq(&self, other: &UpdateFlowInputBuilder) -> bool
fn eq(&self, other: &UpdateFlowInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateFlowInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for UpdateFlowInputBuilder
impl Send for UpdateFlowInputBuilder
impl Sync for UpdateFlowInputBuilder
impl Unpin for UpdateFlowInputBuilder
impl UnwindSafe for UpdateFlowInputBuilder
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.