Module Values_1.GetDataQualityRulesetEvaluationRunResponseSource

Retrieves a specific run where a ruleset is evaluated against a data source.

Sourcetype nonrec t = {
  1. runId : Values_0.HashString.t option;
    (*

    The unique run identifier associated with this run.

    *)
  2. dataSource : Values_0.DataSource.t option;
    (*

    The data source (an Glue table) associated with this evaluation run.

    *)
  3. role : Values_0.RoleString.t option;
    (*

    An IAM role supplied to encrypt the results of the run.

    *)
  4. numberOfWorkers : Values_0.NullableInteger.t option;
    (*

    The number of G.1X workers to be used in the run. The default is 5.

    *)
  5. timeout : Values_0.Timeout.t option;
    (*

    The timeout for a run in minutes. This is the maximum time that a run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours).

    *)
  6. additionalRunOptions : DataQualityEvaluationRunAdditionalRunOptions.t option;
    (*

    Additional run options you can specify for an evaluation run.

    *)
  7. status : Values_0.TaskStatusType.t option;
    (*

    The status for this run.

    *)
  8. errorString : Values_0.GenericString.t option;
    (*

    The error strings that are associated with the run.

    *)
  9. startedOn : Values_0.Timestamp.t option;
    (*

    The date and time when this run started.

    *)
  10. lastModifiedOn : Values_0.Timestamp.t option;
    (*

    A timestamp. The last point in time when this data quality rule recommendation run was modified.

    *)
  11. completedOn : Values_0.Timestamp.t option;
    (*

    The date and time when this run was completed.

    *)
  12. executionTime : Values_0.ExecutionTime.t option;
    (*

    The amount of time (in seconds) that the run consumed resources.

    *)
  13. rulesetNames : RulesetNames.t option;
    (*

    A list of ruleset names for the run. Currently, this parameter takes only one Ruleset name.

    *)
  14. resultIds : DataQualityResultIdList.t option;
    (*

    A list of result IDs for the data quality results for the run.

    *)
  15. additionalDataSources : DataSourceMap.t option;
    (*

    A map of reference strings to additional data sources you can specify for an evaluation run.

    *)
}
Sourcetype nonrec error = [
  1. | `EntityNotFoundException of Values_0.EntityNotFoundException.t
  2. | `InternalServiceException of Values_0.InternalServiceException.t
  3. | `InvalidInputException of Values_0.InvalidInputException.t
  4. | `OperationTimeoutException of Values_0.OperationTimeoutException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?runId:??? -> ?dataSource:??? -> ?role:??? -> ?numberOfWorkers:??? -> ?timeout:??? -> ?additionalRunOptions:??? -> ?status:??? -> ?errorString:??? -> ?startedOn:??? -> ?lastModifiedOn:??? -> ?completedOn:??? -> ?executionTime:??? -> ?rulesetNames:??? -> ?resultIds:??? -> ?additionalDataSources:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `EntityNotFoundException of Values_0.EntityNotFoundException.t | `InternalServiceException of Values_0.InternalServiceException.t | `InvalidInputException of Values_0.InvalidInputException.t | `OperationTimeoutException of Values_0.OperationTimeoutException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `EntityNotFoundException of Values_0.EntityNotFoundException.t | `InternalServiceException of Values_0.InternalServiceException.t | `InvalidInputException of Values_0.InvalidInputException.t | `OperationTimeoutException of Values_0.OperationTimeoutException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.NullableInteger.t | `List of [> `String of Values_0.NameString.t ] list | `Map of ([> `String of Values_0.NameString.t ] * [> `Structure of (string * [> `Structure of (string * [> `Map of ([> `String of string ] * [> `String of string ]) list | `String of string ]) list ]) list ]) list | `String of Values_0.HashString.t | `Structure of (string * [> `Boolean of Values_0.NullableBoolean.t | `Enum of string | `String of Values_0.UriString.t | `Structure of (string * [> `Map of ([> `String of string ] * [> `String of string ]) list | `String of string ]) list ]) 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