Struct aws_sdk_quicksight::model::Ingestion
source · [−]#[non_exhaustive]pub struct Ingestion {
pub arn: Option<String>,
pub ingestion_id: Option<String>,
pub ingestion_status: Option<IngestionStatus>,
pub error_info: Option<ErrorInfo>,
pub row_info: Option<RowInfo>,
pub queue_info: Option<QueueInfo>,
pub created_time: Option<DateTime>,
pub ingestion_time_in_seconds: Option<i64>,
pub ingestion_size_in_bytes: Option<i64>,
pub request_source: Option<IngestionRequestSource>,
pub request_type: Option<IngestionRequestType>,
}Expand description
Information about the SPICE ingestion for a dataset.
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.arn: Option<String>The Amazon Resource Name (ARN) of the resource.
ingestion_id: Option<String>Ingestion ID.
ingestion_status: Option<IngestionStatus>Ingestion status.
error_info: Option<ErrorInfo>Error information for this ingestion.
row_info: Option<RowInfo>Information about rows for a data set SPICE ingestion.
queue_info: Option<QueueInfo>Information about a queued dataset SPICE ingestion.
created_time: Option<DateTime>The time that this ingestion started.
ingestion_time_in_seconds: Option<i64>The time that this ingestion took, measured in seconds.
ingestion_size_in_bytes: Option<i64>The size of the data ingested, in bytes.
request_source: Option<IngestionRequestSource>Event source for this ingestion.
request_type: Option<IngestionRequestType>Type of this ingestion.
Implementations
sourceimpl Ingestion
impl Ingestion
sourcepub fn ingestion_id(&self) -> Option<&str>
pub fn ingestion_id(&self) -> Option<&str>
Ingestion ID.
sourcepub fn ingestion_status(&self) -> Option<&IngestionStatus>
pub fn ingestion_status(&self) -> Option<&IngestionStatus>
Ingestion status.
sourcepub fn error_info(&self) -> Option<&ErrorInfo>
pub fn error_info(&self) -> Option<&ErrorInfo>
Error information for this ingestion.
sourcepub fn row_info(&self) -> Option<&RowInfo>
pub fn row_info(&self) -> Option<&RowInfo>
Information about rows for a data set SPICE ingestion.
sourcepub fn queue_info(&self) -> Option<&QueueInfo>
pub fn queue_info(&self) -> Option<&QueueInfo>
Information about a queued dataset SPICE ingestion.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
The time that this ingestion started.
sourcepub fn ingestion_time_in_seconds(&self) -> Option<i64>
pub fn ingestion_time_in_seconds(&self) -> Option<i64>
The time that this ingestion took, measured in seconds.
sourcepub fn ingestion_size_in_bytes(&self) -> Option<i64>
pub fn ingestion_size_in_bytes(&self) -> Option<i64>
The size of the data ingested, in bytes.
sourcepub fn request_source(&self) -> Option<&IngestionRequestSource>
pub fn request_source(&self) -> Option<&IngestionRequestSource>
Event source for this ingestion.
sourcepub fn request_type(&self) -> Option<&IngestionRequestType>
pub fn request_type(&self) -> Option<&IngestionRequestType>
Type of this ingestion.
Trait Implementations
impl StructuralPartialEq for Ingestion
Auto Trait Implementations
impl RefUnwindSafe for Ingestion
impl Send for Ingestion
impl Sync for Ingestion
impl Unpin for Ingestion
impl UnwindSafe for Ingestion
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more