Module Values.DataIngestionJobSummarySource

Provides information about a specified data ingestion job, including dataset information, data ingestion configuration, and status.

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

    Indicates the job ID of the data ingestion job.

    *)
  2. datasetName : DatasetName.t option;
    (*

    The name of the dataset used for the data ingestion job.

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

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

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

    Specifies information for the input data for the data inference job, including data Amazon S3 location parameters.

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

    Indicates the status of the data ingestion job.

    *)
}
Sourceval make : ?jobId:??? -> ?datasetName:??? -> ?datasetArn:??? -> ?ingestionInputConfiguration:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of IngestionJobId.t | `Structure of (string * [> `Structure of (string * [> `String of S3Bucket.t ]) list ]) list ]) 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