Struct aws_sdk_omics::operation::start_annotation_import_job::builders::StartAnnotationImportJobInputBuilder
source · #[non_exhaustive]pub struct StartAnnotationImportJobInputBuilder { /* private fields */ }
Expand description
A builder for StartAnnotationImportJobInput
.
Implementations§
source§impl StartAnnotationImportJobInputBuilder
impl StartAnnotationImportJobInputBuilder
sourcepub fn destination_name(self, input: impl Into<String>) -> Self
pub fn destination_name(self, input: impl Into<String>) -> Self
A destination annotation store for the job.
sourcepub fn set_destination_name(self, input: Option<String>) -> Self
pub fn set_destination_name(self, input: Option<String>) -> Self
A destination annotation store for the job.
sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
A service role for the job.
sourcepub fn items(self, input: AnnotationImportItemSource) -> Self
pub fn items(self, input: AnnotationImportItemSource) -> Self
Appends an item to items
.
To override the contents of this collection use set_items
.
Items to import.
sourcepub fn set_items(self, input: Option<Vec<AnnotationImportItemSource>>) -> Self
pub fn set_items(self, input: Option<Vec<AnnotationImportItemSource>>) -> Self
Items to import.
sourcepub fn format_options(self, input: FormatOptions) -> Self
pub fn format_options(self, input: FormatOptions) -> Self
Formatting options for the annotation file.
sourcepub fn set_format_options(self, input: Option<FormatOptions>) -> Self
pub fn set_format_options(self, input: Option<FormatOptions>) -> Self
Formatting options for the annotation file.
sourcepub fn run_left_normalization(self, input: bool) -> Self
pub fn run_left_normalization(self, input: bool) -> Self
The job's left normalization setting.
sourcepub fn set_run_left_normalization(self, input: Option<bool>) -> Self
pub fn set_run_left_normalization(self, input: Option<bool>) -> Self
The job's left normalization setting.
sourcepub fn annotation_fields(
self,
k: impl Into<String>,
v: impl Into<String>
) -> Self
pub fn annotation_fields( self, k: impl Into<String>, v: impl Into<String> ) -> Self
Adds a key-value pair to annotation_fields
.
To override the contents of this collection use set_annotation_fields
.
The annotation schema generated by the parsed annotation data.
sourcepub fn set_annotation_fields(
self,
input: Option<HashMap<String, String>>
) -> Self
pub fn set_annotation_fields( self, input: Option<HashMap<String, String>> ) -> Self
The annotation schema generated by the parsed annotation data.
sourcepub fn build(self) -> Result<StartAnnotationImportJobInput, BuildError>
pub fn build(self) -> Result<StartAnnotationImportJobInput, BuildError>
Consumes the builder and constructs a StartAnnotationImportJobInput
.
Trait Implementations§
source§impl Clone for StartAnnotationImportJobInputBuilder
impl Clone for StartAnnotationImportJobInputBuilder
source§fn clone(&self) -> StartAnnotationImportJobInputBuilder
fn clone(&self) -> StartAnnotationImportJobInputBuilder
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 Default for StartAnnotationImportJobInputBuilder
impl Default for StartAnnotationImportJobInputBuilder
source§fn default() -> StartAnnotationImportJobInputBuilder
fn default() -> StartAnnotationImportJobInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<StartAnnotationImportJobInputBuilder> for StartAnnotationImportJobInputBuilder
impl PartialEq<StartAnnotationImportJobInputBuilder> for StartAnnotationImportJobInputBuilder
source§fn eq(&self, other: &StartAnnotationImportJobInputBuilder) -> bool
fn eq(&self, other: &StartAnnotationImportJobInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StartAnnotationImportJobInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for StartAnnotationImportJobInputBuilder
impl Send for StartAnnotationImportJobInputBuilder
impl Sync for StartAnnotationImportJobInputBuilder
impl Unpin for StartAnnotationImportJobInputBuilder
impl UnwindSafe for StartAnnotationImportJobInputBuilder
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