Struct aws_sdk_appflow::types::Task
source · #[non_exhaustive]pub struct Task { /* private fields */ }
Expand description
A class for modeling different type of tasks. Task implementation varies based on the TaskType
.
Implementations§
source§impl 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§
source§impl PartialEq<Task> for Task
impl PartialEq<Task> for Task
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more