libZSservicesZSamazonka-sagemaker-featurestore-runtimeZSamazonka-sagemaker-featurestore-runtime
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

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
Eq GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Read GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Show GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Generic GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Associated Types

type Rep GetRecord :: Type -> Type #

NFData GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Methods

rnf :: GetRecord -> () #

Hashable GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

AWSRequest GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Associated Types

type AWSResponse GetRecord #

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

type Rep GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

type Rep GetRecord = D1 ('MetaData "GetRecord" "Amazonka.SageMakerFeatureStoreRuntime.GetRecord" "libZSservicesZSamazonka-sagemaker-featurestore-runtimeZSamazonka-sagemaker-featurestore-runtime" '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))))
type AWSResponse GetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

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:

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

$sel:featureGroupName:GetRecord', getRecord_featureGroupName - The name of the feature group in which you want to put the records.

$sel:recordIdentifierValueAsString: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 in which you want to put the records.

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
Eq GetRecordResponse Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Read GetRecordResponse Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Show GetRecordResponse Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Generic GetRecordResponse Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Associated Types

type Rep GetRecordResponse :: Type -> Type #

NFData GetRecordResponse Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

Methods

rnf :: GetRecordResponse -> () #

type Rep GetRecordResponse Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.GetRecord

type Rep GetRecordResponse = D1 ('MetaData "GetRecordResponse" "Amazonka.SageMakerFeatureStoreRuntime.GetRecord" "libZSservicesZSamazonka-sagemaker-featurestore-runtimeZSamazonka-sagemaker-featurestore-runtime" '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:

$sel:record: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.