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

QualityCheckStepMetadata

import type { QualityCheckStepMetadata } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";

Container for the metadata for a Quality check step. For more information, see the topic on QualityCheck step in the Amazon SageMaker Developer Guide.

interface QualityCheckStepMetadata {
BaselineUsedForDriftCheckConstraints?: string | null;
BaselineUsedForDriftCheckStatistics?: string | null;
CalculatedBaselineConstraints?: string | null;
CalculatedBaselineStatistics?: string | null;
CheckJobArn?: string | null;
CheckType?: string | null;
ModelPackageGroupName?: string | null;
RegisterNewBaseline?: boolean | null;
SkipCheck?: boolean | null;
ViolationReport?: string | null;
}

§Properties

§
BaselineUsedForDriftCheckConstraints?: string | null
[src]

The Amazon S3 URI of the baseline constraints file used for the drift check.

§
BaselineUsedForDriftCheckStatistics?: string | null
[src]

The Amazon S3 URI of the baseline statistics file used for the drift check.

§
CalculatedBaselineConstraints?: string | null
[src]

The Amazon S3 URI of the newly calculated baseline constraints file.

§
CalculatedBaselineStatistics?: string | null
[src]

The Amazon S3 URI of the newly calculated baseline statistics file.

§
CheckJobArn?: string | null
[src]

The Amazon Resource Name (ARN) of the Quality check processing job that was run by this step execution.

§
CheckType?: string | null
[src]

The type of the Quality check step.

§
ModelPackageGroupName?: string | null
[src]

The model package group name.

§
RegisterNewBaseline?: boolean | null
[src]

This flag indicates if a newly calculated baseline can be accessed through step properties BaselineUsedForDriftCheckConstraints and BaselineUsedForDriftCheckStatistics. If it is set to False, the previous baseline of the configured check type must also be available. These can be accessed through the BaselineUsedForDriftCheckConstraints and BaselineUsedForDriftCheckStatistics properties.

§
SkipCheck?: boolean | null
[src]

This flag indicates if the drift check against the previous baseline will be skipped or not. If it is set to False, the previous baseline of the configured check type must be available.

§
ViolationReport?: string | null
[src]

The Amazon S3 URI of violation report if violations are detected.