Module Values_1.GetDataQualityRuleRecommendationRunResponseSource

The response for the Data Quality rule recommendation run.

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 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. status : Values_0.TaskStatusType.t option;
    (*

    The status for this run.

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

    The error strings that are associated with the run.

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

    The date and time when this run started.

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

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

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

    The date and time when this run was completed.

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

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

    *)
  12. recommendedRuleset : DataQualityRulesetString.t option;
    (*

    When a start rule recommendation run completes, it creates a recommended ruleset (a set of rules). This member has those rules in Data Quality Definition Language (DQDL) format.

    *)
  13. createdRulesetName : Values_0.NameString.t option;
    (*

    The name of the ruleset that was created by the run.

    *)
  14. dataQualitySecurityConfiguration : Values_0.NameString.t option;
    (*

    The name of the security configuration created with the data quality encryption option.

    *)
}
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:??? -> ?status:??? -> ?errorString:??? -> ?startedOn:??? -> ?lastModifiedOn:??? -> ?completedOn:??? -> ?executionTime:??? -> ?recommendedRuleset:??? -> ?createdRulesetName:??? -> ?dataQualitySecurityConfiguration:??? -> 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 | `String of Values_0.HashString.t | `Structure of (string * [> `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