Struct aws_sdk_glue::types::builders::TaskRunPropertiesBuilder
source · #[non_exhaustive]pub struct TaskRunPropertiesBuilder { /* private fields */ }Expand description
A builder for TaskRunProperties.
Implementations§
source§impl TaskRunPropertiesBuilder
impl TaskRunPropertiesBuilder
sourcepub fn set_task_type(self, input: Option<TaskType>) -> Self
pub fn set_task_type(self, input: Option<TaskType>) -> Self
The type of task run.
sourcepub fn get_task_type(&self) -> &Option<TaskType>
pub fn get_task_type(&self) -> &Option<TaskType>
The type of task run.
sourcepub fn import_labels_task_run_properties(
self,
input: ImportLabelsTaskRunProperties,
) -> Self
pub fn import_labels_task_run_properties( self, input: ImportLabelsTaskRunProperties, ) -> Self
The configuration properties for an importing labels task run.
sourcepub fn set_import_labels_task_run_properties(
self,
input: Option<ImportLabelsTaskRunProperties>,
) -> Self
pub fn set_import_labels_task_run_properties( self, input: Option<ImportLabelsTaskRunProperties>, ) -> Self
The configuration properties for an importing labels task run.
sourcepub fn get_import_labels_task_run_properties(
&self,
) -> &Option<ImportLabelsTaskRunProperties>
pub fn get_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,
input: ExportLabelsTaskRunProperties,
) -> Self
pub fn export_labels_task_run_properties( self, input: ExportLabelsTaskRunProperties, ) -> Self
The configuration properties for an exporting labels task run.
sourcepub fn set_export_labels_task_run_properties(
self,
input: Option<ExportLabelsTaskRunProperties>,
) -> Self
pub fn set_export_labels_task_run_properties( self, input: Option<ExportLabelsTaskRunProperties>, ) -> Self
The configuration properties for an exporting labels task run.
sourcepub fn get_export_labels_task_run_properties(
&self,
) -> &Option<ExportLabelsTaskRunProperties>
pub fn get_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,
input: LabelingSetGenerationTaskRunProperties,
) -> Self
pub fn labeling_set_generation_task_run_properties( self, input: LabelingSetGenerationTaskRunProperties, ) -> Self
The configuration properties for a labeling set generation task run.
sourcepub fn set_labeling_set_generation_task_run_properties(
self,
input: Option<LabelingSetGenerationTaskRunProperties>,
) -> Self
pub fn set_labeling_set_generation_task_run_properties( self, input: Option<LabelingSetGenerationTaskRunProperties>, ) -> Self
The configuration properties for a labeling set generation task run.
sourcepub fn get_labeling_set_generation_task_run_properties(
&self,
) -> &Option<LabelingSetGenerationTaskRunProperties>
pub fn get_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,
input: FindMatchesTaskRunProperties,
) -> Self
pub fn find_matches_task_run_properties( self, input: FindMatchesTaskRunProperties, ) -> Self
The configuration properties for a find matches task run.
sourcepub fn set_find_matches_task_run_properties(
self,
input: Option<FindMatchesTaskRunProperties>,
) -> Self
pub fn set_find_matches_task_run_properties( self, input: Option<FindMatchesTaskRunProperties>, ) -> Self
The configuration properties for a find matches task run.
sourcepub fn get_find_matches_task_run_properties(
&self,
) -> &Option<FindMatchesTaskRunProperties>
pub fn get_find_matches_task_run_properties( &self, ) -> &Option<FindMatchesTaskRunProperties>
The configuration properties for a find matches task run.
sourcepub fn build(self) -> TaskRunProperties
pub fn build(self) -> TaskRunProperties
Consumes the builder and constructs a TaskRunProperties.
Trait Implementations§
source§impl Clone for TaskRunPropertiesBuilder
impl Clone for TaskRunPropertiesBuilder
source§fn clone(&self) -> TaskRunPropertiesBuilder
fn clone(&self) -> TaskRunPropertiesBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for TaskRunPropertiesBuilder
impl Debug for TaskRunPropertiesBuilder
source§impl Default for TaskRunPropertiesBuilder
impl Default for TaskRunPropertiesBuilder
source§fn default() -> TaskRunPropertiesBuilder
fn default() -> TaskRunPropertiesBuilder
source§impl PartialEq for TaskRunPropertiesBuilder
impl PartialEq for TaskRunPropertiesBuilder
source§fn eq(&self, other: &TaskRunPropertiesBuilder) -> bool
fn eq(&self, other: &TaskRunPropertiesBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TaskRunPropertiesBuilder
Auto Trait Implementations§
impl Freeze for TaskRunPropertiesBuilder
impl RefUnwindSafe for TaskRunPropertiesBuilder
impl Send for TaskRunPropertiesBuilder
impl Sync for TaskRunPropertiesBuilder
impl Unpin for TaskRunPropertiesBuilder
impl UnwindSafe for TaskRunPropertiesBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
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>
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 more