Struct aws_sdk_appflow::input::UpdateFlowInput [−][src]
#[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
pub 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
>
Creates a new builder-style object to manufacture UpdateFlowInput
The specified name of the flow. Spaces are not allowed. Use underscores (_) or hyphens (-) only.
A description of the flow.
The trigger settings that determine how and when the flow runs.
Contains information about the configuration of the source connector used in the flow.
The configuration that controls how Amazon AppFlow transfers data to the destination connector.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more