Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Used for data ingestion into the FeatureStore
. The PutRecord
API
writes to both the OnlineStore
and OfflineStore
. If the record is
the latest record for the recordIdentifier
, the record is written to
both the OnlineStore
and OfflineStore
. If the record is a historic
record, it is written only to the OfflineStore
.
Synopsis
Creating a Request
See: newPutRecord
smart constructor.
PutRecord' | |
|
Instances
Create a value of PutRecord
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:featureGroupName:PutRecord'
, putRecord_featureGroupName
- The name of the feature group that you want to insert the record into.
$sel:record:PutRecord'
, putRecord_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.
Request Lenses
putRecord_featureGroupName :: Lens' PutRecord Text Source #
The name of the feature group that you want to insert the record into.
putRecord_record :: Lens' PutRecord (NonEmpty FeatureValue) Source #
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.
Destructuring the Response
data PutRecordResponse Source #
See: newPutRecordResponse
smart constructor.
Instances
Eq PutRecordResponse Source # | |
Defined in Amazonka.SageMakerFeatureStoreRuntime.PutRecord (==) :: PutRecordResponse -> PutRecordResponse -> Bool # (/=) :: PutRecordResponse -> PutRecordResponse -> Bool # | |
Read PutRecordResponse Source # | |
Show PutRecordResponse Source # | |
Defined in Amazonka.SageMakerFeatureStoreRuntime.PutRecord showsPrec :: Int -> PutRecordResponse -> ShowS # show :: PutRecordResponse -> String # showList :: [PutRecordResponse] -> ShowS # | |
Generic PutRecordResponse Source # | |
Defined in Amazonka.SageMakerFeatureStoreRuntime.PutRecord type Rep PutRecordResponse :: Type -> Type # from :: PutRecordResponse -> Rep PutRecordResponse x # to :: Rep PutRecordResponse x -> PutRecordResponse # | |
NFData PutRecordResponse Source # | |
Defined in Amazonka.SageMakerFeatureStoreRuntime.PutRecord rnf :: PutRecordResponse -> () # | |
type Rep PutRecordResponse Source # | |
newPutRecordResponse :: PutRecordResponse Source #
Create a value of PutRecordResponse
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.