Online Store Config Properties
data class OnlineStoreConfigProperties(val enableOnlineStore: Boolean? = null, val securityConfig: FeatureGroupOnlineStoreSecurityConfig? = null, val storageType: FeatureGroupStorageType? = null, val ttlDuration: FeatureGroupTtlDuration? = null)
The configuration of an OnlineStore
.
Constructors
Link copied to clipboard
constructor(enableOnlineStore: Boolean? = null, securityConfig: FeatureGroupOnlineStoreSecurityConfig? = null, storageType: FeatureGroupStorageType? = null, ttlDuration: FeatureGroupTtlDuration? = null)
Properties
Link copied to clipboard
Turn OnlineStore
off by specifying False
for the EnableOnlineStore
flag. Turn OnlineStore
on by specifying True
for the EnableOnlineStore
flag. The default value is False
.
Link copied to clipboard
Use to specify KMS Key ID ( KMSKeyId
) for at-rest encryption of your OnlineStore
.
Link copied to clipboard
Option for different tiers of low latency storage for real-time data retrieval.
Link copied to clipboard
Time to live duration, where the record is hard deleted after the expiration time is reached; ExpiresAt
= EventTime
+ TtlDuration
. For information on HardDelete, see the DeleteRecord API in the Amazon SageMaker API Reference guide.