[][src]Struct rusoto_sesv2::GetImportJobResponse

pub struct GetImportJobResponse {
    pub completed_timestamp: Option<f64>,
    pub created_timestamp: Option<f64>,
    pub failed_records_count: Option<i64>,
    pub failure_info: Option<FailureInfo>,
    pub import_data_source: Option<ImportDataSource>,
    pub import_destination: Option<ImportDestination>,
    pub job_id: Option<String>,
    pub job_status: Option<String>,
    pub processed_records_count: Option<i64>,
}

An HTTP 200 response if the request succeeds, or an error message if the request fails.

Fields

completed_timestamp: Option<f64>

The time stamp of when the import job was completed.

created_timestamp: Option<f64>

The time stamp of when the import job was created.

failed_records_count: Option<i64>

The number of records that failed processing because of invalid input or other reasons.

failure_info: Option<FailureInfo>

The failure details about an import job.

import_data_source: Option<ImportDataSource>

The data source of the import job.

import_destination: Option<ImportDestination>

The destination of the import job.

job_id: Option<String>

A string that represents the import job ID.

job_status: Option<String>

The status of the import job.

processed_records_count: Option<i64>

The current number of records processed.

Trait Implementations

impl Clone for GetImportJobResponse[src]

impl Debug for GetImportJobResponse[src]

impl Default for GetImportJobResponse[src]

impl<'de> Deserialize<'de> for GetImportJobResponse[src]

impl PartialEq<GetImportJobResponse> for GetImportJobResponse[src]

impl StructuralPartialEq for GetImportJobResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.