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

ModelInputConfiguration

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

The Amazon SageMaker model input configuration.

interface ModelInputConfiguration {
csvInputTemplate?: string | null;
eventTypeName?: string | null;
format?: ModelInputDataFormat | null;
jsonInputTemplate?: string | null;
useEventVariables: boolean;
}

§Properties

§
csvInputTemplate?: string | null
[src]

Template for constructing the CSV input-data sent to SageMaker. At event-evaluation, the placeholders for variable-names in the template will be replaced with the variable values before being sent to SageMaker.

§
eventTypeName?: string | null
[src]

The event type name.

§

The format of the model input configuration. The format differs depending on if it is passed through to SageMaker or constructed by Amazon Fraud Detector.

§
jsonInputTemplate?: string | null
[src]

Template for constructing the JSON input-data sent to SageMaker. At event-evaluation, the placeholders for variable names in the template will be replaced with the variable values before being sent to SageMaker.

§
useEventVariables: boolean
[src]

The event variables.