Struct aws_sdk_appflow::input::UpdateFlowInput
source · [−]#[non_exhaustive]pub struct UpdateFlowInput {
pub flow_name: Option<String>,
pub description: Option<String>,
pub trigger_config: Option<TriggerConfig>,
pub source_flow_config: Option<SourceFlowConfig>,
pub destination_flow_config_list: Option<Vec<DestinationFlowConfig>>,
pub tasks: Option<Vec<Task>>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.flow_name: Option<String>
The specified name of the flow. Spaces are not allowed. Use underscores (_) or hyphens (-) only.
description: Option<String>
A description of the flow.
trigger_config: Option<TriggerConfig>
The trigger settings that determine how and when the flow runs.
source_flow_config: Option<SourceFlowConfig>
Contains information about the configuration of the source connector used in the flow.
destination_flow_config_list: Option<Vec<DestinationFlowConfig>>
The configuration that controls how Amazon AppFlow transfers data to the destination connector.
tasks: Option<Vec<Task>>
A list of tasks that Amazon AppFlow performs while transferring the data in the flow run.
Implementations
sourceimpl UpdateFlowInput
impl UpdateFlowInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateFlow, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateFlow, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateFlow
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateFlowInput
sourceimpl UpdateFlowInput
impl UpdateFlowInput
sourcepub fn flow_name(&self) -> Option<&str>
pub fn flow_name(&self) -> Option<&str>
The specified name of the flow. Spaces are not allowed. Use underscores (_) or hyphens (-) only.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the flow.
sourcepub fn trigger_config(&self) -> Option<&TriggerConfig>
pub fn trigger_config(&self) -> Option<&TriggerConfig>
The trigger settings that determine how and when the flow runs.
sourcepub fn source_flow_config(&self) -> Option<&SourceFlowConfig>
pub fn source_flow_config(&self) -> Option<&SourceFlowConfig>
Contains information about the configuration of the source connector used in the flow.
sourcepub fn destination_flow_config_list(&self) -> Option<&[DestinationFlowConfig]>
pub fn destination_flow_config_list(&self) -> Option<&[DestinationFlowConfig]>
The configuration that controls how Amazon AppFlow transfers data to the destination connector.
Trait Implementations
sourceimpl Clone for UpdateFlowInput
impl Clone for UpdateFlowInput
sourcefn clone(&self) -> UpdateFlowInput
fn clone(&self) -> UpdateFlowInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for UpdateFlowInput
impl Debug for UpdateFlowInput
sourceimpl PartialEq<UpdateFlowInput> for UpdateFlowInput
impl PartialEq<UpdateFlowInput> for UpdateFlowInput
sourcefn eq(&self, other: &UpdateFlowInput) -> bool
fn eq(&self, other: &UpdateFlowInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &UpdateFlowInput) -> bool
fn ne(&self, other: &UpdateFlowInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for UpdateFlowInput
Auto Trait Implementations
impl RefUnwindSafe for UpdateFlowInput
impl Send for UpdateFlowInput
impl Sync for UpdateFlowInput
impl Unpin for UpdateFlowInput
impl UnwindSafe for UpdateFlowInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more