Module Values_1.GetDataQualityRulesetResponseSource

Returns the data quality ruleset response.

Sourcetype nonrec t = {
  1. name : Values_0.NameString.t option;
    (*

    The name of the ruleset.

    *)
  2. description : Values_0.DescriptionString.t option;
    (*

    A description of the ruleset.

    *)
  3. ruleset : DataQualityRulesetString.t option;
    (*

    A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.

    *)
  4. targetTable : DataQualityTargetTable.t option;
    (*

    The name and database name of the target table.

    *)
  5. createdOn : Values_0.Timestamp.t option;
    (*

    A timestamp. The time and date that this data quality ruleset was created.

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

    A timestamp. The last point in time when this data quality ruleset was modified.

    *)
  7. recommendationRunId : Values_0.HashString.t option;
    (*

    When a ruleset was created from a recommendation run, this run ID is generated to link the two together.

    *)
  8. 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 : ?name:??? -> ?description:??? -> ?ruleset:??? -> ?targetTable:??? -> ?createdOn:??? -> ?lastModifiedOn:??? -> ?recommendationRunId:??? -> ?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 * [> `String of Values_0.NameString.t | `Structure of (string * [> `String of Values_0.NameString.t ]) 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