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

UpdateDetectorVersionRequest

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

§Properties

§
description?: string | null
[src]

The detector version description.

§
detectorId: string
[src]

The parent detector ID for the detector version you want to update.

§
detectorVersionId: string
[src]

The detector version ID.

§
externalModelEndpoints: string[]
[src]

The Amazon SageMaker model endpoints to include in the detector version.

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

The model versions to include in the detector version.

§
ruleExecutionMode?: RuleExecutionMode | null
[src]

The rule execution mode to add to the detector.

If you specify FIRST_MATCHED, 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.

If you specifiy ALL_MATCHED, 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.

The default behavior is FIRST_MATCHED.

§
rules: Rule[]
[src]

The rules to include in the detector version.