Module Values.DescribeJobRunResponseSource

Represents one run of a DataBrew job.

Sourcetype nonrec t = {
  1. attempt : Attempt.t option;
    (*

    The number of times that DataBrew has attempted to run the job.

    *)
  2. completedOn : Date.t option;
    (*

    The date and time when the job completed processing.

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

    The name of the dataset for the job to process.

    *)
  4. errorMessage : JobRunErrorMessage.t option;
    (*

    A message indicating an error (if any) that was encountered when the job ran.

    *)
  5. executionTime : ExecutionTime.t option;
    (*

    The amount of time, in seconds, during which the job run consumed resources.

    *)
  6. jobName : JobName.t option;
    (*

    The name of the job being processed during this run.

    *)
  7. profileConfiguration : ProfileConfiguration.t option;
    (*

    Configuration for profile jobs. Used to select columns, do evaluations, and override default parameters of evaluations. When configuration is null, the profile job will run with default settings.

    *)
  8. validationConfigurations : ValidationConfigurationList.t option;
    (*

    List of validation configurations that are applied to the profile job.

    *)
  9. runId : JobRunId.t option;
    (*

    The unique identifier of the job run.

    *)
  10. state : JobRunState.t option;
    (*

    The current state of the job run entity itself.

    *)
  11. logSubscription : LogSubscription.t option;
    (*

    The current status of Amazon CloudWatch logging for the job run.

    *)
  12. logGroupName : LogGroupName.t option;
    (*

    The name of an Amazon CloudWatch log group, where the job writes diagnostic messages when it runs.

    *)
  13. outputs : OutputList.t option;
    (*

    One or more output artifacts from a job run.

    *)
  14. dataCatalogOutputs : DataCatalogOutputList.t option;
    (*

    One or more artifacts that represent the Glue Data Catalog output from running the job.

    *)
  15. databaseOutputs : DatabaseOutputList.t option;
    (*

    Represents a list of JDBC database output objects which defines the output destination for a DataBrew recipe job to write into.

    *)
  16. recipeReference : RecipeReference.t option;
  17. startedBy : StartedBy.t option;
    (*

    The Amazon Resource Name (ARN) of the user who started the job run.

    *)
  18. startedOn : Date.t option;
    (*

    The date and time when the job run began.

    *)
  19. jobSample : JobSample.t option;
    (*

    Sample configuration for profile jobs only. Determines the number of rows on which the profile job will be executed. If a JobSample value is not provided, the default value will be used. The default value is CUSTOM_ROWS for the mode parameter and 20000 for the size parameter.

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceNotFoundException of ResourceNotFoundException.t
  2. | `ValidationException of ValidationException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?attempt:??? -> ?completedOn:??? -> ?datasetName:??? -> ?errorMessage:??? -> ?executionTime:??? -> ?jobName:??? -> ?profileConfiguration:??? -> ?validationConfigurations:??? -> ?runId:??? -> ?state:??? -> ?logSubscription:??? -> ?logGroupName:??? -> ?outputs:??? -> ?dataCatalogOutputs:??? -> ?databaseOutputs:??? -> ?recipeReference:??? -> ?startedBy:??? -> ?startedOn:??? -> ?jobSample:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ResourceNotFoundException of ResourceNotFoundException.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 | `Integer of Attempt.t | `List of [> `Structure of (string * [> `Boolean of OverwriteOutput.t | `Enum of string | `Integer of MaxOutputFiles.t | `List of [> `String of ColumnName.t ] list | `String of Arn.t | `Structure of (string * [> `String of Bucket.t | `Structure of (string * [> `String of Delimiter.t ]) list ]) list ]) list ] list | `String of DatasetName.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ColumnName.t ]) list ] list | `String of ColumnName.t | `Structure of (string * [> `List of [> `String of Statistic.t | `Structure of (string * [> `Map of ([> `String of ParameterName.t ] * [> `String of ParameterValue.t ]) list | `String of Statistic.t ]) list ] list ]) list ]) list ] list | `Long of JobSize.t | `String of RecipeName.t | `Structure of (string * [> `List of [> `String of Statistic.t | `Structure of (string * [> `List of [> `String of Statistic.t ] list | `Map of ([> `String of ParameterName.t ] * [> `String of ParameterValue.t ]) list | `String of Statistic.t ]) list ] list ]) list ]) list | `Timestamp of Date.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