Struct aws_sdk_appflow::model::Task
source · [−]#[non_exhaustive]pub struct Task {
pub source_fields: Option<Vec<String>>,
pub connector_operator: Option<ConnectorOperator>,
pub destination_field: Option<String>,
pub task_type: Option<TaskType>,
pub task_properties: Option<HashMap<OperatorPropertiesKeys, String>>,
}
Expand description
A class for modeling different type of tasks. Task implementation varies based on the TaskType
.
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.source_fields: Option<Vec<String>>
The source fields to which a particular task is applied.
connector_operator: Option<ConnectorOperator>
The operation to be performed on the provided source fields.
destination_field: Option<String>
A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.
task_type: Option<TaskType>
Specifies the particular task implementation that Amazon AppFlow performs.
task_properties: Option<HashMap<OperatorPropertiesKeys, String>>
A map used to store task-related information. The execution service looks for particular information based on the TaskType
.
Implementations
sourceimpl Task
impl Task
sourcepub fn source_fields(&self) -> Option<&[String]>
pub fn source_fields(&self) -> Option<&[String]>
The source fields to which a particular task is applied.
sourcepub fn connector_operator(&self) -> Option<&ConnectorOperator>
pub fn connector_operator(&self) -> Option<&ConnectorOperator>
The operation to be performed on the provided source fields.
sourcepub fn destination_field(&self) -> Option<&str>
pub fn destination_field(&self) -> Option<&str>
A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.
sourcepub fn task_type(&self) -> Option<&TaskType>
pub fn task_type(&self) -> Option<&TaskType>
Specifies the particular task implementation that Amazon AppFlow performs.
sourcepub fn task_properties(
&self
) -> Option<&HashMap<OperatorPropertiesKeys, String>>
pub fn task_properties(
&self
) -> Option<&HashMap<OperatorPropertiesKeys, String>>
A map used to store task-related information. The execution service looks for particular information based on the TaskType
.
Trait Implementations
impl StructuralPartialEq for Task
Auto Trait Implementations
impl RefUnwindSafe for Task
impl Send for Task
impl Sync for Task
impl Unpin for Task
impl UnwindSafe for Task
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