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.BatchGetRecord

Description

Retrieves a batch of Records from a FeatureGroup.

Synopsis

Creating a Request

data BatchGetRecord Source #

See: newBatchGetRecord smart constructor.

Constructors

BatchGetRecord' 

Fields

Instances

Instances details
ToJSON BatchGetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

ToHeaders BatchGetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

ToPath BatchGetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

ToQuery BatchGetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

AWSRequest BatchGetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

Associated Types

type AWSResponse BatchGetRecord #

Generic BatchGetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

Associated Types

type Rep BatchGetRecord :: Type -> Type #

Read BatchGetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

Show BatchGetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

NFData BatchGetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

Methods

rnf :: BatchGetRecord -> () #

Eq BatchGetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

Hashable BatchGetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

type AWSResponse BatchGetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

type Rep BatchGetRecord Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

type Rep BatchGetRecord = D1 ('MetaData "BatchGetRecord" "Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord" "amazonka-sagemaker-featurestore-runtime-2.0-Ge8ickTqcVaBGzrkCd8wM0" 'False) (C1 ('MetaCons "BatchGetRecord'" 'PrefixI 'True) (S1 ('MetaSel ('Just "identifiers") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty BatchGetRecordIdentifier))))

newBatchGetRecord Source #

Create a value of BatchGetRecord 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:identifiers:BatchGetRecord', batchGetRecord_identifiers - A list of FeatureGroup names, with their corresponding RecordIdentifier value, and Feature name that have been requested to be retrieved in batch.

Request Lenses

batchGetRecord_identifiers :: Lens' BatchGetRecord (NonEmpty BatchGetRecordIdentifier) Source #

A list of FeatureGroup names, with their corresponding RecordIdentifier value, and Feature name that have been requested to be retrieved in batch.

Destructuring the Response

data BatchGetRecordResponse Source #

See: newBatchGetRecordResponse smart constructor.

Constructors

BatchGetRecordResponse' 

Fields

Instances

Instances details
Generic BatchGetRecordResponse Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

Associated Types

type Rep BatchGetRecordResponse :: Type -> Type #

Read BatchGetRecordResponse Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

Show BatchGetRecordResponse Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

NFData BatchGetRecordResponse Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

Methods

rnf :: BatchGetRecordResponse -> () #

Eq BatchGetRecordResponse Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

type Rep BatchGetRecordResponse Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord

type Rep BatchGetRecordResponse = D1 ('MetaData "BatchGetRecordResponse" "Amazonka.SageMakerFeatureStoreRuntime.BatchGetRecord" "amazonka-sagemaker-featurestore-runtime-2.0-Ge8ickTqcVaBGzrkCd8wM0" 'False) (C1 ('MetaCons "BatchGetRecordResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "records") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [BatchGetRecordResultDetail])) :*: (S1 ('MetaSel ('Just "errors") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [BatchGetRecordError]) :*: S1 ('MetaSel ('Just "unprocessedIdentifiers") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [BatchGetRecordIdentifier]))))

newBatchGetRecordResponse Source #

Create a value of BatchGetRecordResponse 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:httpStatus:BatchGetRecordResponse', batchGetRecordResponse_httpStatus - The response's http status code.

$sel:records:BatchGetRecordResponse', batchGetRecordResponse_records - A list of Records you requested to be retrieved in batch.

$sel:errors:BatchGetRecordResponse', batchGetRecordResponse_errors - A list of errors that have occurred when retrieving a batch of Records.

$sel:unprocessedIdentifiers:BatchGetRecordResponse', batchGetRecordResponse_unprocessedIdentifiers - A unprocessed list of FeatureGroup names, with their corresponding RecordIdentifier value, and Feature name.

Response Lenses

batchGetRecordResponse_records :: Lens' BatchGetRecordResponse [BatchGetRecordResultDetail] Source #

A list of Records you requested to be retrieved in batch.

batchGetRecordResponse_errors :: Lens' BatchGetRecordResponse [BatchGetRecordError] Source #

A list of errors that have occurred when retrieving a batch of Records.

batchGetRecordResponse_unprocessedIdentifiers :: Lens' BatchGetRecordResponse [BatchGetRecordIdentifier] Source #

A unprocessed list of FeatureGroup names, with their corresponding RecordIdentifier value, and Feature name.