public static interface OnlineStoreConfig.Builder extends SdkPojo, CopyableBuilder<OnlineStoreConfig.Builder,OnlineStoreConfig>
| Modifier and Type | Method and Description |
|---|---|
OnlineStoreConfig.Builder |
enableOnlineStore(Boolean enableOnlineStore)
Turn
OnlineStore off by specifying False for the EnableOnlineStore
flag. |
default OnlineStoreConfig.Builder |
securityConfig(Consumer<OnlineStoreSecurityConfig.Builder> securityConfig)
Use to specify KMS Key ID (
KMSKeyId) for at-rest encryption of your OnlineStore. |
OnlineStoreConfig.Builder |
securityConfig(OnlineStoreSecurityConfig securityConfig)
Use to specify KMS Key ID (
KMSKeyId) for at-rest encryption of your OnlineStore. |
OnlineStoreConfig.Builder |
storageType(StorageType storageType)
Option for different tiers of low latency storage for real-time data retrieval.
|
OnlineStoreConfig.Builder |
storageType(String storageType)
Option for different tiers of low latency storage for real-time data retrieval.
|
default OnlineStoreConfig.Builder |
ttlDuration(Consumer<TtlDuration.Builder> ttlDuration)
Time to live duration, where the record is hard deleted after the expiration time is reached;
ExpiresAt = EventTime + TtlDuration. |
OnlineStoreConfig.Builder |
ttlDuration(TtlDuration ttlDuration)
Time to live duration, where the record is hard deleted after the expiration time is reached;
ExpiresAt = EventTime + TtlDuration. |
equalsBySdkFields, sdkFieldscopyapplyMutation, buildOnlineStoreConfig.Builder securityConfig(OnlineStoreSecurityConfig securityConfig)
Use to specify KMS Key ID (KMSKeyId) for at-rest encryption of your OnlineStore.
securityConfig - Use to specify KMS Key ID (KMSKeyId) for at-rest encryption of your
OnlineStore.default OnlineStoreConfig.Builder securityConfig(Consumer<OnlineStoreSecurityConfig.Builder> securityConfig)
Use to specify KMS Key ID (KMSKeyId) for at-rest encryption of your OnlineStore.
OnlineStoreSecurityConfig.Builder
avoiding the need to create one manually via OnlineStoreSecurityConfig.builder().
When the Consumer completes, SdkBuilder.build() is called immediately
and its result is passed to securityConfig(OnlineStoreSecurityConfig).
securityConfig - a consumer that will call methods on OnlineStoreSecurityConfig.BuildersecurityConfig(OnlineStoreSecurityConfig)OnlineStoreConfig.Builder enableOnlineStore(Boolean enableOnlineStore)
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.
enableOnlineStore - 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.
OnlineStoreConfig.Builder ttlDuration(TtlDuration ttlDuration)
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.
ttlDuration - 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.default OnlineStoreConfig.Builder ttlDuration(Consumer<TtlDuration.Builder> ttlDuration)
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.
TtlDuration.Builder avoiding the need to
create one manually via TtlDuration.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its result
is passed to ttlDuration(TtlDuration).
ttlDuration - a consumer that will call methods on TtlDuration.BuilderttlDuration(TtlDuration)OnlineStoreConfig.Builder storageType(String storageType)
Option for different tiers of low latency storage for real-time data retrieval.
Standard: A managed low latency data store for feature groups.
InMemory: A managed data store for feature groups that supports very low latency retrieval.
storageType - Option for different tiers of low latency storage for real-time data retrieval.
Standard: A managed low latency data store for feature groups.
InMemory: A managed data store for feature groups that supports very low latency
retrieval.
StorageType,
StorageTypeOnlineStoreConfig.Builder storageType(StorageType storageType)
Option for different tiers of low latency storage for real-time data retrieval.
Standard: A managed low latency data store for feature groups.
InMemory: A managed data store for feature groups that supports very low latency retrieval.
storageType - Option for different tiers of low latency storage for real-time data retrieval.
Standard: A managed low latency data store for feature groups.
InMemory: A managed data store for feature groups that supports very low latency
retrieval.
StorageType,
StorageTypeCopyright © 2023. All rights reserved.