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.
This field is required.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 get_destination_name(&self) -> &Option<String>
pub fn get_destination_name(&self) -> &Option<String>
The destination variant store for the job.
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
A service role for the job.
This field is required.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 get_role_arn(&self) -> &Option<String>
pub fn get_role_arn(&self) -> &Option<String>
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 get_items(&self) -> &Option<Vec<VariantImportItemSource>>
pub fn get_items(&self) -> &Option<Vec<VariantImportItemSource>>
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 get_run_left_normalization(&self) -> &Option<bool>
pub fn get_run_left_normalization(&self) -> &Option<bool>
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 get_annotation_fields(&self) -> &Option<HashMap<String, String>>
pub fn get_annotation_fields(&self) -> &Option<HashMap<String, String>>
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.
source§impl StartVariantImportJobInputBuilder
impl StartVariantImportJobInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<StartVariantImportJobOutput, SdkError<StartVariantImportJobError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<StartVariantImportJobOutput, SdkError<StartVariantImportJobError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for StartVariantImportJobInputBuilder
impl Clone for StartVariantImportJobInputBuilder
source§fn clone(&self) -> StartVariantImportJobInputBuilder
fn clone(&self) -> StartVariantImportJobInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for StartVariantImportJobInputBuilder
impl Default for StartVariantImportJobInputBuilder
source§fn default() -> StartVariantImportJobInputBuilder
fn default() -> StartVariantImportJobInputBuilder
source§impl PartialEq for StartVariantImportJobInputBuilder
impl PartialEq for StartVariantImportJobInputBuilder
source§fn eq(&self, other: &StartVariantImportJobInputBuilder) -> bool
fn eq(&self, other: &StartVariantImportJobInputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StartVariantImportJobInputBuilder
Auto Trait Implementations§
impl Freeze for StartVariantImportJobInputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
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