Ingestion constructor

Ingestion({
  1. required String arn,
  2. required DateTime createdTime,
  3. required IngestionStatus ingestionStatus,
  4. ErrorInfo? errorInfo,
  5. String? ingestionId,
  6. int? ingestionSizeInBytes,
  7. int? ingestionTimeInSeconds,
  8. QueueInfo? queueInfo,
  9. IngestionRequestSource? requestSource,
  10. IngestionRequestType? requestType,
  11. RowInfo? rowInfo,
})

Implementation

Ingestion({
  required this.arn,
  required this.createdTime,
  required this.ingestionStatus,
  this.errorInfo,
  this.ingestionId,
  this.ingestionSizeInBytes,
  this.ingestionTimeInSeconds,
  this.queueInfo,
  this.requestSource,
  this.requestType,
  this.rowInfo,
});