Struct aws_sdk_quicksight::types::Ingestion
source · #[non_exhaustive]pub struct Ingestion {
pub arn: String,
pub ingestion_id: Option<String>,
pub ingestion_status: IngestionStatus,
pub error_info: Option<ErrorInfo>,
pub row_info: Option<RowInfo>,
pub queue_info: Option<QueueInfo>,
pub created_time: 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: StringThe Amazon Resource Name (ARN) of the resource.
ingestion_id: Option<String>Ingestion ID.
ingestion_status: IngestionStatusIngestion 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: DateTimeThe 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§
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) -> &IngestionStatus
pub fn ingestion_status(&self) -> &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) -> &DateTime
pub fn created_time(&self) -> &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 for Ingestion
impl PartialEq for Ingestion
impl StructuralPartialEq for Ingestion
Auto Trait Implementations§
impl Freeze for Ingestion
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more