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

PutRecordRequest

import type { PutRecordRequest } from "https://aws-api.deno.dev/v0.3/services/sagemakerfeaturestoreruntime.ts?docs=full";
interface PutRecordRequest {
FeatureGroupName: string;
Record: FeatureValue[];
}

§Properties

§
FeatureGroupName: string
[src]

The name of the feature group that you want to insert the record into.

§

List of FeatureValues to be inserted. This will be a full over-write. If you only want to update few of the feature values, do the following:

  • Use GetRecord to retrieve the latest record.
  • Update the record returned from GetRecord.
  • Use PutRecord to update feature values.