Struct aws_sdk_appflow::model::Task [−][src]
#[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
The source fields to which a particular task is applied.
The operation to be performed on the provided source fields.
A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.
Specifies the particular task implementation that Amazon AppFlow performs.
A map used to store task-related information. The execution service looks for particular
information based on the TaskType
.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Task
impl UnwindSafe for Task
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