Struct aws_sdk_quicksight::types::Ingestion
source · #[non_exhaustive]pub struct Ingestion { /* private fields */ }Expand description
Information about the SPICE ingestion for a dataset.
Implementations§
source§impl 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§
source§impl PartialEq<Ingestion> for Ingestion
impl PartialEq<Ingestion> for Ingestion
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more