#[non_exhaustive]pub struct GetImportJobOutputBuilder { /* private fields */ }Expand description
A builder for GetImportJobOutput.
Implementations§
source§impl GetImportJobOutputBuilder
impl GetImportJobOutputBuilder
sourcepub fn job_id(self, input: impl Into<String>) -> Self
pub fn job_id(self, input: impl Into<String>) -> Self
A string that represents the import job ID.
sourcepub fn set_job_id(self, input: Option<String>) -> Self
pub fn set_job_id(self, input: Option<String>) -> Self
A string that represents the import job ID.
sourcepub fn import_destination(self, input: ImportDestination) -> Self
pub fn import_destination(self, input: ImportDestination) -> Self
The destination of the import job.
sourcepub fn set_import_destination(self, input: Option<ImportDestination>) -> Self
pub fn set_import_destination(self, input: Option<ImportDestination>) -> Self
The destination of the import job.
sourcepub fn import_data_source(self, input: ImportDataSource) -> Self
pub fn import_data_source(self, input: ImportDataSource) -> Self
The data source of the import job.
sourcepub fn set_import_data_source(self, input: Option<ImportDataSource>) -> Self
pub fn set_import_data_source(self, input: Option<ImportDataSource>) -> Self
The data source of the import job.
sourcepub fn failure_info(self, input: FailureInfo) -> Self
pub fn failure_info(self, input: FailureInfo) -> Self
The failure details about an import job.
sourcepub fn set_failure_info(self, input: Option<FailureInfo>) -> Self
pub fn set_failure_info(self, input: Option<FailureInfo>) -> Self
The failure details about an import job.
sourcepub fn job_status(self, input: JobStatus) -> Self
pub fn job_status(self, input: JobStatus) -> Self
The status of the import job.
sourcepub fn set_job_status(self, input: Option<JobStatus>) -> Self
pub fn set_job_status(self, input: Option<JobStatus>) -> Self
The status of the import job.
sourcepub fn created_timestamp(self, input: DateTime) -> Self
pub fn created_timestamp(self, input: DateTime) -> Self
The time stamp of when the import job was created.
sourcepub fn set_created_timestamp(self, input: Option<DateTime>) -> Self
pub fn set_created_timestamp(self, input: Option<DateTime>) -> Self
The time stamp of when the import job was created.
sourcepub fn completed_timestamp(self, input: DateTime) -> Self
pub fn completed_timestamp(self, input: DateTime) -> Self
The time stamp of when the import job was completed.
sourcepub fn set_completed_timestamp(self, input: Option<DateTime>) -> Self
pub fn set_completed_timestamp(self, input: Option<DateTime>) -> Self
The time stamp of when the import job was completed.
sourcepub fn processed_records_count(self, input: i32) -> Self
pub fn processed_records_count(self, input: i32) -> Self
The current number of records processed.
sourcepub fn set_processed_records_count(self, input: Option<i32>) -> Self
pub fn set_processed_records_count(self, input: Option<i32>) -> Self
The current number of records processed.
sourcepub fn failed_records_count(self, input: i32) -> Self
pub fn failed_records_count(self, input: i32) -> Self
The number of records that failed processing because of invalid input or other reasons.
sourcepub fn set_failed_records_count(self, input: Option<i32>) -> Self
pub fn set_failed_records_count(self, input: Option<i32>) -> Self
The number of records that failed processing because of invalid input or other reasons.
sourcepub fn build(self) -> GetImportJobOutput
pub fn build(self) -> GetImportJobOutput
Consumes the builder and constructs a GetImportJobOutput.
Trait Implementations§
source§impl Clone for GetImportJobOutputBuilder
impl Clone for GetImportJobOutputBuilder
source§fn clone(&self) -> GetImportJobOutputBuilder
fn clone(&self) -> GetImportJobOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetImportJobOutputBuilder
impl Debug for GetImportJobOutputBuilder
source§impl Default for GetImportJobOutputBuilder
impl Default for GetImportJobOutputBuilder
source§fn default() -> GetImportJobOutputBuilder
fn default() -> GetImportJobOutputBuilder
source§impl PartialEq<GetImportJobOutputBuilder> for GetImportJobOutputBuilder
impl PartialEq<GetImportJobOutputBuilder> for GetImportJobOutputBuilder
source§fn eq(&self, other: &GetImportJobOutputBuilder) -> bool
fn eq(&self, other: &GetImportJobOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.