AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the PutRecord operation. The PutRecord API is used to ingest a list of Records into your feature group.

If a new record’s EventTime is greater, the new record is written to both the OnlineStore and OfflineStore. Otherwise, the record is a historic record and it is written only to the OfflineStore.

You can specify the ingestion to be applied to the OnlineStore, OfflineStore, or both by using the TargetStores request parameter.

You can set the ingested record to expire at a given time to live (TTL) duration after the record’s event time, ExpiresAt = EventTime + TtlDuration, by specifying the TtlDuration parameter. A record level TtlDuration is set when specifying the TtlDuration parameter using the PutRecord API call. If the input TtlDuration is null or unspecified, TtlDuration is set to the default feature group level TtlDuration. A record level TtlDuration supersedes the group level TtlDuration.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.SageMakerFeatureStoreRuntime.AmazonSageMakerFeatureStoreRuntimeRequest
      Amazon.SageMakerFeatureStoreRuntime.Model.PutRecordRequest

Namespace: Amazon.SageMakerFeatureStoreRuntime.Model
Assembly: AWSSDK.SageMakerFeatureStoreRuntime.dll
Version: 3.x.y.z

Syntax

C#
public class PutRecordRequest : AmazonSageMakerFeatureStoreRuntimeRequest
         IAmazonWebServiceRequest

The PutRecordRequest type exposes the following members

Constructors

NameDescription
Public Method PutRecordRequest()

Properties

NameTypeDescription
Public Property FeatureGroupName System.String

Gets and sets the property FeatureGroupName.

The name or Amazon Resource Name (ARN) of the feature group that you want to insert the record into.

Public Property Record System.Collections.Generic.List<Amazon.SageMakerFeatureStoreRuntime.Model.FeatureValue>

Gets and sets the property Record.

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.

Public Property TargetStores System.Collections.Generic.List<System.String>

Gets and sets the property TargetStores.

A list of stores to which you're adding the record. By default, Feature Store adds the record to all of the stores that you're using for the FeatureGroup.

Public Property TtlDuration Amazon.SageMakerFeatureStoreRuntime.Model.TtlDuration

Gets and sets the property TtlDuration.

Time to live duration, where the record is hard deleted after the expiration time is reached; ExpiresAt = EventTime + TtlDuration. For information on HardDelete, see the DeleteRecord API in the Amazon SageMaker API Reference guide.

Version Information

.NET:
Supported in: 8.0 and newer, Core 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5 and newer, 3.5