amazonka-sagemaker-featurestore-runtime-2.0: Amazon SageMaker Feature Store Runtime SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Description

Use for OnlineStore serving from a FeatureStore. Only the latest records stored in the OnlineStore can be retrieved. If no Record with RecordIdentifierValue is found, then an empty result is returned.

Synopsis

Creating a Request

data GetRecord Source #

See: newGetRecord smart constructor.

Constructors

GetRecord' 

Fields

Instances

Instances details
ToHeaders GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Methods

toHeaders :: GetRecord -> [Header] #

ToPath GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

ToQuery GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

AWSRequest GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Associated Types

type AWSResponse GetRecord #

Generic GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Associated Types

type Rep GetRecord :: Type -> Type #

Read GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Show GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

NFData GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Methods

rnf :: GetRecord -> () #

Eq GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Hashable GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

type AWSResponse GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

type Rep GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

type Rep GetRecord = D1 ('MetaData "GetRecord" "Amazonka.SageMakerFeatureStoreRuntime.GetRecord" "amazonka-sagemaker-featurestore-runtime-2.0-Ge8ickTqcVaBGzrkCd8wM0" 'False) (C1 ('MetaCons "GetRecord'" 'PrefixI 'True) (S1 ('MetaSel ('Just "featureNames") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Text))) :*: (S1 ('MetaSel ('Just "featureGroupName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "recordIdentifierValueAsString") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newGetRecord Source #

Create a value of GetRecord 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:

GetRecord, getRecord_featureNames - List of names of Features to be retrieved. If not specified, the latest value for all the Features are returned.

GetRecord, getRecord_featureGroupName - The name of the feature group from which you want to retrieve a record.

GetRecord, getRecord_recordIdentifierValueAsString - The value that corresponds to RecordIdentifier type and uniquely identifies the record in the FeatureGroup.

Request Lenses

getRecord_featureNames :: Lens' GetRecord (Maybe (NonEmpty Text)) Source #

List of names of Features to be retrieved. If not specified, the latest value for all the Features are returned.

getRecord_featureGroupName :: Lens' GetRecord Text Source #

The name of the feature group from which you want to retrieve a record.

getRecord_recordIdentifierValueAsString :: Lens' GetRecord Text Source #

The value that corresponds to RecordIdentifier type and uniquely identifies the record in the FeatureGroup.

Destructuring the Response

data GetRecordResponse Source #

See: newGetRecordResponse smart constructor.

Constructors

GetRecordResponse' 

Fields

Instances

Instances details
Generic GetRecordResponse Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Associated Types

type Rep GetRecordResponse :: Type -> Type #

Read GetRecordResponse Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Show GetRecordResponse Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

NFData GetRecordResponse Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Methods

rnf :: GetRecordResponse -> () #

Eq GetRecordResponse Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

type Rep GetRecordResponse Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

type Rep GetRecordResponse = D1 ('MetaData "GetRecordResponse" "Amazonka.SageMakerFeatureStoreRuntime.GetRecord" "amazonka-sagemaker-featurestore-runtime-2.0-Ge8ickTqcVaBGzrkCd8wM0" 'False) (C1 ('MetaCons "GetRecordResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "record") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty FeatureValue))) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetRecordResponse Source #

Create a value of GetRecordResponse 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:

GetRecordResponse, getRecordResponse_record - The record you requested. A list of FeatureValues.

$sel:httpStatus:GetRecordResponse', getRecordResponse_httpStatus - The response's http status code.

Response Lenses

getRecordResponse_record :: Lens' GetRecordResponse (Maybe (NonEmpty FeatureValue)) Source #

The record you requested. A list of FeatureValues.

getRecordResponse_httpStatus :: Lens' GetRecordResponse Int Source #

The response's http status code.