[][src]Struct rusoto_dataexchange::JobEntry

pub struct JobEntry {
    pub arn: String,
    pub created_at: f64,
    pub details: ResponseDetails,
    pub errors: Option<Vec<JobError>>,
    pub id: String,
    pub state: String,
    pub type_: String,
    pub updated_at: f64,
}

AWS Data Exchange Jobs are asynchronous import or export operations used to create or copy assets. A data set owner can both import and export as they see fit. Someone with an entitlement to a data set can only export. Jobs are deleted 90 days after they are created.

Fields

arn: String

The ARN for the job.

created_at: f64

The date and time that the job was created, in ISO 8601 format.

details: ResponseDetails

Details of the operation to be performed by the job, such as export destination details or import source details.

errors: Option<Vec<JobError>>

Errors for jobs.

id: String

The unique identifier for the job.

state: String

The state of the job.

type_: String

The job type.

updated_at: f64

The date and time that the job was last updated, in ISO 8601 format.

Trait Implementations

impl Clone for JobEntry[src]

impl Debug for JobEntry[src]

impl Default for JobEntry[src]

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

impl PartialEq<JobEntry> for JobEntry[src]

impl StructuralPartialEq for JobEntry[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> 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.