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

GetDetectorVersionResult

import type { GetDetectorVersionResult } from "https://aws-api.deno.dev/v0.3/services/frauddetector.ts?docs=full";
interface GetDetectorVersionResult {
arn?: string | null;
createdTime?: string | null;
description?: string | null;
detectorId?: string | null;
detectorVersionId?: string | null;
externalModelEndpoints?: string[] | null;
lastUpdatedTime?: string | null;
modelVersions?: ModelVersion[] | null;
ruleExecutionMode?: RuleExecutionMode | null;
rules?: Rule[] | null;
status?: DetectorVersionStatus | null;
}

§Properties

§
arn?: string | null
[src]

The detector version ARN.

§
createdTime?: string | null
[src]

The timestamp when the detector version was created.

§
description?: string | null
[src]

The detector version description.

§
detectorId?: string | null
[src]

The detector ID.

§
detectorVersionId?: string | null
[src]

The detector version ID.

§
externalModelEndpoints?: string[] | null
[src]

The Amazon SageMaker model endpoints included in the detector version.

§
lastUpdatedTime?: string | null
[src]

The timestamp when the detector version was last updated.

§
modelVersions?: ModelVersion[] | null
[src]

The model versions included in the detector version.

§
ruleExecutionMode?: RuleExecutionMode | null
[src]

The execution mode of the rule in the dectector

FIRST_MATCHED indicates that Amazon Fraud Detector evaluates rules sequentially, first to last, stopping at the first matched rule. Amazon Fraud dectector then provides the outcomes for that single rule.

ALL_MATCHED indicates that Amazon Fraud Detector evaluates all rules and returns the outcomes for all matched rules. You can define and edit the rule mode at the detector version level, when it is in draft status.

§
rules?: Rule[] | null
[src]

The rules included in the detector version.

§

The status of the detector version.