Struct aws_sdk_appflow::input::CreateFlowInput
source · [−]#[non_exhaustive]pub struct CreateFlowInput {
pub flow_name: Option<String>,
pub description: Option<String>,
pub kms_arn: 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>>,
pub tags: Option<HashMap<String, String>>,
}
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 you want to create.
kms_arn: Option<String>
The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don't provide anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key.
trigger_config: Option<TriggerConfig>
The trigger settings that determine how and when the flow runs.
source_flow_config: Option<SourceFlowConfig>
The configuration that controls how Amazon AppFlow retrieves data from the source connector.
destination_flow_config_list: Option<Vec<DestinationFlowConfig>>
The configuration that controls how Amazon AppFlow places data in the destination connector.
tasks: Option<Vec<Task>>
A list of tasks that Amazon AppFlow performs while transferring the data in the flow run.
The tags used to organize, track, or control access for your flow.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateFlow, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateFlow, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateFlow
>
Creates a new builder-style object to manufacture CreateFlowInput
The specified name of the flow. Spaces are not allowed. Use underscores (_) or hyphens (-) only.
A description of the flow you want to create.
The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don't provide anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key.
The trigger settings that determine how and when the flow runs.
The configuration that controls how Amazon AppFlow retrieves data from the source connector.
The configuration that controls how Amazon AppFlow places data in the destination connector.
A list of tasks that Amazon AppFlow performs while transferring the data in the flow run.
The tags used to organize, track, or control access for your flow.
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 CreateFlowInput
impl Send for CreateFlowInput
impl Sync for CreateFlowInput
impl Unpin for CreateFlowInput
impl UnwindSafe for CreateFlowInput
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