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

CreateDetectorVersionRequest

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

§Properties

§
description?: string | null
[src]

The description of the detector version.

§
detectorId: string
[src]

The ID of the detector under which you want to create a new version.

§
externalModelEndpoints?: string[] | null
[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 for the rules included in the detector version.

You can define and edit the rule mode at the detector version level, when it is in draft status.

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.

The default behavior is FIRST_MATCHED.

§
rules: Rule[]
[src]

The rules to include in the detector version.

§
tags?: Tag[] | null
[src]

A collection of key and value pairs.