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

ClarifyCheckStepMetadata

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

The container for the metadata for the ClarifyCheck step. For more information, see the topic on ClarifyCheck step in the Amazon SageMaker Developer Guide.

interface ClarifyCheckStepMetadata {
BaselineUsedForDriftCheckConstraints?: string | null;
CalculatedBaselineConstraints?: 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 baseline constraints file to be used for the drift check.

§
CalculatedBaselineConstraints?: string | null
[src]

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

§
CheckJobArn?: string | null
[src]

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

§
CheckType?: string | null
[src]

The type of the Clarify 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 property.

§
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 the violation report if violations are detected.