Struct aws_sdk_glue::types::TaskRunProperties
source · #[non_exhaustive]pub struct TaskRunProperties {
pub task_type: Option<TaskType>,
pub import_labels_task_run_properties: Option<ImportLabelsTaskRunProperties>,
pub export_labels_task_run_properties: Option<ExportLabelsTaskRunProperties>,
pub labeling_set_generation_task_run_properties: Option<LabelingSetGenerationTaskRunProperties>,
pub find_matches_task_run_properties: Option<FindMatchesTaskRunProperties>,
}Expand description
The configuration properties for the task run.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.task_type: Option<TaskType>The type of task run.
import_labels_task_run_properties: Option<ImportLabelsTaskRunProperties>The configuration properties for an importing labels task run.
export_labels_task_run_properties: Option<ExportLabelsTaskRunProperties>The configuration properties for an exporting labels task run.
labeling_set_generation_task_run_properties: Option<LabelingSetGenerationTaskRunProperties>The configuration properties for a labeling set generation task run.
find_matches_task_run_properties: Option<FindMatchesTaskRunProperties>The configuration properties for a find matches task run.
Implementations§
source§impl TaskRunProperties
impl TaskRunProperties
sourcepub fn import_labels_task_run_properties(
&self,
) -> Option<&ImportLabelsTaskRunProperties>
pub fn import_labels_task_run_properties( &self, ) -> Option<&ImportLabelsTaskRunProperties>
The configuration properties for an importing labels task run.
sourcepub fn export_labels_task_run_properties(
&self,
) -> Option<&ExportLabelsTaskRunProperties>
pub fn export_labels_task_run_properties( &self, ) -> Option<&ExportLabelsTaskRunProperties>
The configuration properties for an exporting labels task run.
sourcepub fn labeling_set_generation_task_run_properties(
&self,
) -> Option<&LabelingSetGenerationTaskRunProperties>
pub fn labeling_set_generation_task_run_properties( &self, ) -> Option<&LabelingSetGenerationTaskRunProperties>
The configuration properties for a labeling set generation task run.
sourcepub fn find_matches_task_run_properties(
&self,
) -> Option<&FindMatchesTaskRunProperties>
pub fn find_matches_task_run_properties( &self, ) -> Option<&FindMatchesTaskRunProperties>
The configuration properties for a find matches task run.
source§impl TaskRunProperties
impl TaskRunProperties
sourcepub fn builder() -> TaskRunPropertiesBuilder
pub fn builder() -> TaskRunPropertiesBuilder
Creates a new builder-style object to manufacture TaskRunProperties.
Trait Implementations§
source§impl Clone for TaskRunProperties
impl Clone for TaskRunProperties
source§fn clone(&self) -> TaskRunProperties
fn clone(&self) -> TaskRunProperties
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for TaskRunProperties
impl Debug for TaskRunProperties
source§impl PartialEq for TaskRunProperties
impl PartialEq for TaskRunProperties
source§fn eq(&self, other: &TaskRunProperties) -> bool
fn eq(&self, other: &TaskRunProperties) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TaskRunProperties
Auto Trait Implementations§
impl Freeze for TaskRunProperties
impl RefUnwindSafe for TaskRunProperties
impl Send for TaskRunProperties
impl Sync for TaskRunProperties
impl Unpin for TaskRunProperties
impl UnwindSafe for TaskRunProperties
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.