#[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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 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

The Amazon Resource Name (ARN) of the resource.

Ingestion ID.

Ingestion status.

Error information for this ingestion.

Information about rows for a data set SPICE ingestion.

Information about a queued dataset SPICE ingestion.

The time that this ingestion started.

The time that this ingestion took, measured in seconds.

The size of the data ingested, in bytes.

Event source for this ingestion.

Type of this ingestion.

Creates a new builder-style object to manufacture Ingestion

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more