Struct aws_sdk_sesv2::operation::get_import_job::GetImportJobOutput
source · #[non_exhaustive]pub struct GetImportJobOutput {
pub job_id: Option<String>,
pub import_destination: Option<ImportDestination>,
pub import_data_source: Option<ImportDataSource>,
pub failure_info: Option<FailureInfo>,
pub job_status: Option<JobStatus>,
pub created_timestamp: Option<DateTime>,
pub completed_timestamp: Option<DateTime>,
pub processed_records_count: Option<i32>,
pub failed_records_count: Option<i32>,
/* private fields */
}Expand description
An HTTP 200 response if the request succeeds, or an error message if the request fails.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.job_id: Option<String>A string that represents the import job ID.
import_destination: Option<ImportDestination>The destination of the import job.
import_data_source: Option<ImportDataSource>The data source of the import job.
failure_info: Option<FailureInfo>The failure details about an import job.
job_status: Option<JobStatus>The status of the import job.
created_timestamp: Option<DateTime>The time stamp of when the import job was created.
completed_timestamp: Option<DateTime>The time stamp of when the import job was completed.
processed_records_count: Option<i32>The current number of records processed.
failed_records_count: Option<i32>The number of records that failed processing because of invalid input or other reasons.
Implementations§
source§impl GetImportJobOutput
impl GetImportJobOutput
sourcepub fn import_destination(&self) -> Option<&ImportDestination>
pub fn import_destination(&self) -> Option<&ImportDestination>
The destination of the import job.
sourcepub fn import_data_source(&self) -> Option<&ImportDataSource>
pub fn import_data_source(&self) -> Option<&ImportDataSource>
The data source of the import job.
sourcepub fn failure_info(&self) -> Option<&FailureInfo>
pub fn failure_info(&self) -> Option<&FailureInfo>
The failure details about an import job.
sourcepub fn job_status(&self) -> Option<&JobStatus>
pub fn job_status(&self) -> Option<&JobStatus>
The status of the import job.
sourcepub fn created_timestamp(&self) -> Option<&DateTime>
pub fn created_timestamp(&self) -> Option<&DateTime>
The time stamp of when the import job was created.
sourcepub fn completed_timestamp(&self) -> Option<&DateTime>
pub fn completed_timestamp(&self) -> Option<&DateTime>
The time stamp of when the import job was completed.
sourcepub fn processed_records_count(&self) -> Option<i32>
pub fn processed_records_count(&self) -> Option<i32>
The current number of records processed.
sourcepub fn failed_records_count(&self) -> Option<i32>
pub fn failed_records_count(&self) -> Option<i32>
The number of records that failed processing because of invalid input or other reasons.
source§impl GetImportJobOutput
impl GetImportJobOutput
sourcepub fn builder() -> GetImportJobOutputBuilder
pub fn builder() -> GetImportJobOutputBuilder
Creates a new builder-style object to manufacture GetImportJobOutput.
Trait Implementations§
source§impl Clone for GetImportJobOutput
impl Clone for GetImportJobOutput
source§fn clone(&self) -> GetImportJobOutput
fn clone(&self) -> GetImportJobOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetImportJobOutput
impl Debug for GetImportJobOutput
source§impl PartialEq for GetImportJobOutput
impl PartialEq for GetImportJobOutput
source§fn eq(&self, other: &GetImportJobOutput) -> bool
fn eq(&self, other: &GetImportJobOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for GetImportJobOutput
impl RequestId for GetImportJobOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.