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

FeatureDefinition

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

A list of features. You must include FeatureName and FeatureType. Valid feature FeatureTypes are Integral, Fractional and String.

interface FeatureDefinition {
FeatureName?: string | null;
FeatureType?: FeatureType | null;
}

§Properties

§
FeatureName?: string | null
[src]

The name of a feature. The type must be a string. FeatureName cannot be any of the following: is_deleted, write_time, api_invocation_time.

§
FeatureType?: FeatureType | null
[src]

The value type of a feature. Valid values are Integral, Fractional, or String.