Struct aws_sdk_omics::operation::start_variant_import_job::builders::StartVariantImportJobFluentBuilder
source · pub struct StartVariantImportJobFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to StartVariantImportJob
.
Starts a variant import job.
Implementations§
source§impl StartVariantImportJobFluentBuilder
impl StartVariantImportJobFluentBuilder
sourcepub fn as_input(&self) -> &StartVariantImportJobInputBuilder
pub fn as_input(&self) -> &StartVariantImportJobInputBuilder
Access the StartVariantImportJob as a reference.
sourcepub async fn send(
self
) -> Result<StartVariantImportJobOutput, SdkError<StartVariantImportJobError, HttpResponse>>
pub async fn send( self ) -> Result<StartVariantImportJobOutput, SdkError<StartVariantImportJobError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<StartVariantImportJobOutput, StartVariantImportJobError>, SdkError<StartVariantImportJobError>>
pub async fn customize( self ) -> Result<CustomizableOperation<StartVariantImportJobOutput, StartVariantImportJobError>, SdkError<StartVariantImportJobError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 get_destination_name(&self) -> &Option<String>
pub fn get_destination_name(&self) -> &Option<String>
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 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 annotationFields
.
To override the contents of this collection use set_annotation_fields
.
The annotation schema generated by the parsed annotation data.
Trait Implementations§
source§impl Clone for StartVariantImportJobFluentBuilder
impl Clone for StartVariantImportJobFluentBuilder
source§fn clone(&self) -> StartVariantImportJobFluentBuilder
fn clone(&self) -> StartVariantImportJobFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more