pub struct StartVariantImportJob { /* private fields */ }
Expand description
Fluent builder constructing a request to StartVariantImportJob
.
Starts a variant import job.
Implementations§
source§impl StartVariantImportJob
impl StartVariantImportJob
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<StartVariantImportJob, AwsResponseRetryClassifier>, SdkError<StartVariantImportJobError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<StartVariantImportJob, AwsResponseRetryClassifier>, SdkError<StartVariantImportJobError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<StartVariantImportJobOutput, SdkError<StartVariantImportJobError>>
pub async fn send(
self
) -> Result<StartVariantImportJobOutput, SdkError<StartVariantImportJobError>>
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 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.
Trait Implementations§
source§impl Clone for StartVariantImportJob
impl Clone for StartVariantImportJob
source§fn clone(&self) -> StartVariantImportJob
fn clone(&self) -> StartVariantImportJob
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more