Module Values.DescribeDataIngestionJobResponseSource

Provides information on a specific data ingestion job such as creation time, dataset ARN, and status.

Sourcetype nonrec t = {
  1. jobId : IngestionJobId.t option;
    (*

    Indicates the job ID of the data ingestion job.

    *)
  2. datasetArn : DatasetArn.t option;
    (*

    The Amazon Resource Name (ARN) of the dataset being used in the data ingestion job.

    *)
  3. ingestionInputConfiguration : IngestionInputConfiguration.t option;
    (*

    Specifies the S3 location configuration for the data input for the data ingestion job.

    *)
  4. roleArn : IamRoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of an IAM role with permission to access the data source being ingested.

    *)
  5. createdAt : Timestamp.t option;
    (*

    The time at which the data ingestion job was created.

    *)
  6. status : IngestionJobStatus.t option;
    (*

    Indicates the status of the DataIngestionJob operation.

    *)
  7. failedReason : BoundedLengthString.t option;
    (*

    Specifies the reason for failure when a data ingestion job has failed.

    *)
  8. dataQualitySummary : DataQualitySummary.t option;
    (*

    Gives statistics about a completed ingestion job. These statistics primarily relate to quantifying incorrect data such as MissingCompleteSensorData, MissingSensorData, UnsupportedDateFormats, InsufficientSensorData, and DuplicateTimeStamps.

    *)
  9. ingestedFilesSummary : IngestedFilesSummary.t option;
  10. statusDetail : BoundedLengthString.t option;
    (*

    Provides details about status of the ingestion job that is currently in progress.

    *)
  11. ingestedDataSize : DataSizeInBytes.t option;
    (*

    Indicates the size of the ingested dataset.

    *)
  12. dataStartTime : Timestamp.t option;
    (*

    Indicates the earliest timestamp corresponding to data that was successfully ingested during this specific ingestion job.

    *)
  13. dataEndTime : Timestamp.t option;
    (*

    Indicates the latest timestamp corresponding to data that was successfully ingested during this specific ingestion job.

    *)
  14. sourceDatasetArn : DatasetArn.t option;
    (*

    The Amazon Resource Name (ARN) of the source dataset from which the data used for the data ingestion job was imported from.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?jobId:??? -> ?datasetArn:??? -> ?ingestionInputConfiguration:??? -> ?roleArn:??? -> ?createdAt:??? -> ?status:??? -> ?failedReason:??? -> ?dataQualitySummary:??? -> ?ingestedFilesSummary:??? -> ?statusDetail:??? -> ?ingestedDataSize:??? -> ?dataStartTime:??? -> ?dataEndTime:??? -> ?sourceDatasetArn:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of DataSizeInBytes.t | `String of IngestionJobId.t | `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `String of S3Bucket.t ]) list ] list | `Structure of (string * [> `Integer of Integer.t | `String of S3Bucket.t | `Structure of (string * [> `Integer of Integer.t ]) list ]) list ]) list | `Timestamp of 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