| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.SageMakerFeatureStoreRuntime.DeleteRecord
Description
Deletes a Record from a FeatureGroup. When the DeleteRecord API is
called a new record will be added to the OfflineStore and the Record
will be removed from the OnlineStore. This record will have a value of
True in the is_deleted column.
Synopsis
- data DeleteRecord = DeleteRecord' {}
- newDeleteRecord :: Text -> Text -> Text -> DeleteRecord
- deleteRecord_targetStores :: Lens' DeleteRecord (Maybe (NonEmpty TargetStore))
- deleteRecord_featureGroupName :: Lens' DeleteRecord Text
- deleteRecord_recordIdentifierValueAsString :: Lens' DeleteRecord Text
- deleteRecord_eventTime :: Lens' DeleteRecord Text
- data DeleteRecordResponse = DeleteRecordResponse' {
- newDeleteRecordResponse :: DeleteRecordResponse
Creating a Request
data DeleteRecord Source #
See: newDeleteRecord smart constructor.
Constructors
| DeleteRecord' | |
Fields
| |
Instances
Arguments
| :: Text | |
| -> Text | |
| -> Text | |
| -> DeleteRecord |
Create a value of DeleteRecord with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:targetStores:DeleteRecord', deleteRecord_targetStores - A list of stores from which you're deleting the record. By default,
Feature Store deletes the record from all of the stores that you're
using for the FeatureGroup.
DeleteRecord, deleteRecord_featureGroupName - The name of the feature group to delete the record from.
DeleteRecord, deleteRecord_recordIdentifierValueAsString - The value for the RecordIdentifier that uniquely identifies the
record, in string format.
$sel:eventTime:DeleteRecord', deleteRecord_eventTime - Timestamp indicating when the deletion event occurred. EventTime can
be used to query data at a certain point in time.
Request Lenses
deleteRecord_targetStores :: Lens' DeleteRecord (Maybe (NonEmpty TargetStore)) Source #
A list of stores from which you're deleting the record. By default,
Feature Store deletes the record from all of the stores that you're
using for the FeatureGroup.
deleteRecord_featureGroupName :: Lens' DeleteRecord Text Source #
The name of the feature group to delete the record from.
deleteRecord_recordIdentifierValueAsString :: Lens' DeleteRecord Text Source #
The value for the RecordIdentifier that uniquely identifies the
record, in string format.
deleteRecord_eventTime :: Lens' DeleteRecord Text Source #
Timestamp indicating when the deletion event occurred. EventTime can
be used to query data at a certain point in time.
Destructuring the Response
data DeleteRecordResponse Source #
See: newDeleteRecordResponse smart constructor.
Constructors
| DeleteRecordResponse' | |
Instances
newDeleteRecordResponse :: DeleteRecordResponse Source #
Create a value of DeleteRecordResponse with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.