GetFeatureGroupResult

data class GetFeatureGroupResult(val creationTime: String? = null, val featureDefinitions: List<FeatureGroupFeatureDefinition>? = null, val featureGroupStatus: String? = null, val onlineStoreConfig: OnlineStoreConfigProperties? = null, val throughputConfig: FeatureGroupThroughputConfig? = null)

Constructors

Link copied to clipboard
constructor(creationTime: String? = null, featureDefinitions: List<FeatureGroupFeatureDefinition>? = null, featureGroupStatus: String? = null, onlineStoreConfig: OnlineStoreConfigProperties? = null, throughputConfig: FeatureGroupThroughputConfig? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val creationTime: String? = null

A timestamp of FeatureGroup creation time.

Link copied to clipboard

An Array of Feature Definition

Link copied to clipboard

The status of the feature group.

Link copied to clipboard

The configuration of an OnlineStore .

Link copied to clipboard

Used to set feature group throughput configuration. There are two modes: ON_DEMAND and PROVISIONED . With on-demand mode, you are charged for data reads and writes that your application performs on your feature group. You do not need to specify read and write throughput because Feature Store accommodates your workloads as they ramp up and down. You can switch a feature group to on-demand only once in a 24 hour period. With provisioned throughput mode, you specify the read and write capacity per second that you expect your application to require, and you are billed based on those limits. Exceeding provisioned throughput will result in your requests being throttled. Note: PROVISIONED throughput mode is supported only for feature groups that are offline-only, or use the Standard tier online store.