Module Values_2.IngestionSource

Information about the SPICE ingestion for a dataset.

Sourcetype nonrec t = {
  1. arn : Values_0.Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the resource.

    *)
  2. ingestionId : Values_1.IngestionId.t option;
    (*

    Ingestion ID.

    *)
  3. ingestionStatus : Values_1.IngestionStatus.t option;
    (*

    Ingestion status.

    *)
  4. errorInfo : ErrorInfo.t option;
    (*

    Error information for this ingestion.

    *)
  5. rowInfo : RowInfo.t option;
  6. queueInfo : QueueInfo.t option;
  7. createdTime : Values_0.Timestamp.t option;
    (*

    The time that this ingestion started.

    *)
  8. ingestionTimeInSeconds : Values_0.Long.t option;
    (*

    The time that this ingestion took, measured in seconds.

    *)
  9. ingestionSizeInBytes : Values_0.Long.t option;
    (*

    The size of the data ingested, in bytes.

    *)
  10. requestSource : IngestionRequestSource.t option;
    (*

    Event source for this ingestion.

    *)
  11. requestType : IngestionRequestType.t option;
    (*

    Type of this ingestion.

    *)
}
Sourceval make : ?arn:??? -> ?ingestionId:??? -> ?ingestionStatus:??? -> ?errorInfo:??? -> ?rowInfo:??? -> ?queueInfo:??? -> ?createdTime:??? -> ?ingestionTimeInSeconds:??? -> ?ingestionSizeInBytes:??? -> ?requestSource:??? -> ?requestType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Values_0.Long.t | `String of Values_0.Arn.t | `Structure of (string * [> `Enum of string | `Long of Values_0.Long.t | `String of Values_0.String_.t ]) list | `Timestamp of Values_0.Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t