Struct aws_sdk_omics::operation::start_variant_import_job::builders::StartVariantImportJobInputBuilder
source · #[non_exhaustive]pub struct StartVariantImportJobInputBuilder { /* private fields */ }
Expand description
A builder for StartVariantImportJobInput
.
Implementations§
source§impl StartVariantImportJobInputBuilder
impl StartVariantImportJobInputBuilder
sourcepub fn destination_name(self, input: impl Into<String>) -> Self
pub fn destination_name(self, input: impl Into<String>) -> Self
The destination variant store for the job.
sourcepub fn set_destination_name(self, input: Option<String>) -> Self
pub fn set_destination_name(self, input: Option<String>) -> Self
The destination variant 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: VariantImportItemSource) -> Self
pub fn items(self, input: VariantImportItemSource) -> 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<VariantImportItemSource>>) -> Self
pub fn set_items(self, input: Option<Vec<VariantImportItemSource>>) -> Self
Items to import.
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<StartVariantImportJobInput, BuildError>
pub fn build(self) -> Result<StartVariantImportJobInput, BuildError>
Consumes the builder and constructs a StartVariantImportJobInput
.
Trait Implementations§
source§impl Clone for StartVariantImportJobInputBuilder
impl Clone for StartVariantImportJobInputBuilder
source§fn clone(&self) -> StartVariantImportJobInputBuilder
fn clone(&self) -> StartVariantImportJobInputBuilder
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 StartVariantImportJobInputBuilder
impl Default for StartVariantImportJobInputBuilder
source§fn default() -> StartVariantImportJobInputBuilder
fn default() -> StartVariantImportJobInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<StartVariantImportJobInputBuilder> for StartVariantImportJobInputBuilder
impl PartialEq<StartVariantImportJobInputBuilder> for StartVariantImportJobInputBuilder
source§fn eq(&self, other: &StartVariantImportJobInputBuilder) -> bool
fn eq(&self, other: &StartVariantImportJobInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StartVariantImportJobInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for StartVariantImportJobInputBuilder
impl Send for StartVariantImportJobInputBuilder
impl Sync for StartVariantImportJobInputBuilder
impl Unpin for StartVariantImportJobInputBuilder
impl UnwindSafe for StartVariantImportJobInputBuilder
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