in Java/src/main/java/com/example/customername/FeatureGroupOperations.java [148:156]
public static List < FeatureValue > getRecord(SageMakerFeatureStoreRuntimeClient sageMakerFeatureStoreRuntimeClient, String featureGroupName, String record_identifier_value) {
GetRecordRequest get_record_request = GetRecordRequest.builder()
.featureGroupName(featureGroupName)
.recordIdentifierValueAsString(record_identifier_value)
.build();
GetRecordResponse response = sageMakerFeatureStoreRuntimeClient.getRecord(get_record_request);
return response.record();
}