FeatureViewDataKey

Lookup key for a feature view.

JSON representation
{

  // Union field key_oneof can be only one of the following:
  "key": string,
  "compositeKey": {
    object (CompositeKey)
  }
  // End of list of possible types for union field key_oneof.
}
Fields

Union field key_oneof.

key_oneof can be only one of the following:

key

string

String key to use for lookup.

compositeKey

object (CompositeKey)

The actual Entity ID will be composed from this struct. This should match with the way ID is defined in the FeatureView spec.

CompositeKey

ID that is comprised from several parts (columns).

JSON representation
{
  "parts": [
    string
  ]
}
Fields
parts[]

string

Parts to construct Entity ID. Should match with the same ID columns as defined in FeatureView in the same order.