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

FeatureValue

import type { FeatureValue } from "https://aws-api.deno.dev/v0.3/services/sagemakerfeaturestoreruntime.ts?docs=full";

The value associated with a feature.

interface FeatureValue {
FeatureName: string;
ValueAsString: string;
}

§Properties

§
FeatureName: string
[src]

The name of a feature that a feature value corresponds to.

§
ValueAsString: string
[src]

The value associated with a feature, in string format. Note that features types can be String, Integral, or Fractional. This value represents all three types as a string.