[][src]Struct rusoto_quicksight::Ingestion

pub struct Ingestion {
    pub arn: String,
    pub created_time: f64,
    pub error_info: Option<ErrorInfo>,
    pub ingestion_id: Option<String>,
    pub ingestion_size_in_bytes: Option<i64>,
    pub ingestion_status: String,
    pub ingestion_time_in_seconds: Option<i64>,
    pub queue_info: Option<QueueInfo>,
    pub request_source: Option<String>,
    pub request_type: Option<String>,
    pub row_info: Option<RowInfo>,
}

Information about the SPICE ingestion for a dataset.

Fields

arn: String

The Amazon Resource Name (ARN) of the resource.

created_time: f64

The time that this ingestion started.

error_info: Option<ErrorInfo>

Error information for this ingestion.

ingestion_id: Option<String>

Ingestion ID.

ingestion_size_in_bytes: Option<i64>

The size of the data ingested, in bytes.

ingestion_status: String

Ingestion status.

ingestion_time_in_seconds: Option<i64>

The time that this ingestion took, measured in seconds.

queue_info: Option<QueueInfo>request_source: Option<String>

Event source for this ingestion.

request_type: Option<String>

Type of this ingestion.

row_info: Option<RowInfo>

Trait Implementations

impl Clone for Ingestion[src]

impl Debug for Ingestion[src]

impl Default for Ingestion[src]

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

impl PartialEq<Ingestion> for Ingestion[src]

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