import type * as featurestore from "@distilled.cloud/aws/sagemaker-featurestore-runtime"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { FeatureGroup } from "./FeatureGroup.ts"; export interface DeleteRecordRequest extends Omit { } /** * Runtime binding for `sagemaker:DeleteRecord` — delete a record from a * `FeatureGroup`'s online store. * * Bind this operation to a `FeatureGroup` inside a function runtime to get a * callable that automatically injects the feature group name. The default * `SoftDelete` mode nulls the feature columns; `HardDelete` removes the * record entirely. `EventTime` must be later than the stored record's event * time for the deletion to take effect. * ### Deleting Records * **Example:** Soft-Delete a Record * ```typescript * // init * const deleteRecord = yield* AWS.SageMaker.DeleteRecord(featureGroup); * * // runtime * yield* deleteRecord({ * RecordIdentifierValueAsString: "user-123", * EventTime: new Date().toISOString(), * }); * ``` * * @binding */ export interface DeleteRecord extends Binding.Service(featureGroup: F) => Effect.Effect<(request: DeleteRecordRequest) => Effect.Effect>> { } export declare const DeleteRecord: DeleteRecord; //# sourceMappingURL=DeleteRecord.d.ts.map