Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GetDataQualityResultResponse

import type { GetDataQualityResultResponse } from "https://aws-api.deno.dev/v0.4/services/glue.ts?docs=full";
interface GetDataQualityResultResponse {
CompletedOn?: Date | number | null;
DataSource?: DataSource | null;
EvaluationContext?: string | null;
JobName?: string | null;
JobRunId?: string | null;
ResultId?: string | null;
RuleResults?: DataQualityRuleResult[] | null;
RulesetEvaluationRunId?: string | null;
RulesetName?: string | null;
Score?: number | null;
StartedOn?: Date | number | null;
}

§Properties

§
CompletedOn?: Date | number | null
[src]

The date and time when the run for this data quality result was completed.

§
DataSource?: DataSource | null
[src]

The table associated with the data quality result, if any.

§
EvaluationContext?: string | null
[src]

In the context of a job in Glue Studio, each node in the canvas is typically assigned some sort of name and data quality nodes will have names. In the case of multiple nodes, the evaluationContext can differentiate the nodes.

§
JobName?: string | null
[src]

The job name associated with the data quality result, if any.

§
JobRunId?: string | null
[src]

The job run ID associated with the data quality result, if any.

§
ResultId?: string | null
[src]

A unique result ID for the data quality result.

§
RuleResults?: DataQualityRuleResult[] | null
[src]

A list of DataQualityRuleResult objects representing the results for each rule.

§
RulesetEvaluationRunId?: string | null
[src]

The unique run ID associated with the ruleset evaluation.

§
RulesetName?: string | null
[src]

The name of the ruleset associated with the data quality result.

§
Score?: number | null
[src]

An aggregate data quality score. Represents the ratio of rules that passed to the total number of rules.

§
StartedOn?: Date | number | null
[src]

The date and time when the run for this data quality result started.