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
sourceimpl CreateFlowInput
impl CreateFlowInput
sourcepub 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
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateFlowInput
sourceimpl CreateFlowInput
impl CreateFlowInput
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 you want to create.
sourcepub fn kms_arn(&self) -> Option<&str>
pub fn kms_arn(&self) -> Option<&str>
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.
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>
The configuration that controls how Amazon AppFlow retrieves data from the source connector.
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 places data in the destination connector.
sourcepub fn tasks(&self) -> Option<&[Task]>
pub fn tasks(&self) -> Option<&[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.
Trait Implementations
sourceimpl Clone for CreateFlowInput
impl Clone for CreateFlowInput
sourcefn clone(&self) -> CreateFlowInput
fn clone(&self) -> CreateFlowInput
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 CreateFlowInput
impl Debug for CreateFlowInput
sourceimpl PartialEq<CreateFlowInput> for CreateFlowInput
impl PartialEq<CreateFlowInput> for CreateFlowInput
sourcefn eq(&self, other: &CreateFlowInput) -> bool
fn eq(&self, other: &CreateFlowInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreateFlowInput) -> bool
fn ne(&self, other: &CreateFlowInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for CreateFlowInput
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
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