Literals#
Index > SageMakerFeatureStoreRuntime > Literals
Auto-generated documentation for SageMakerFeatureStoreRuntime type annotations stubs module mypy-boto3-sagemaker-featurestore-runtime.
DeletionModeType#
# DeletionModeType usage example
from mypy_boto3_sagemaker_featurestore_runtime.literals import DeletionModeType
def get_value() -> DeletionModeType:
return "HardDelete"
# DeletionModeType definition
DeletionModeType = Literal[
"HardDelete",
"SoftDelete",
]
ExpirationTimeResponseType#
# ExpirationTimeResponseType usage example
from mypy_boto3_sagemaker_featurestore_runtime.literals import ExpirationTimeResponseType
def get_value() -> ExpirationTimeResponseType:
return "Disabled"
# ExpirationTimeResponseType definition
ExpirationTimeResponseType = Literal[
"Disabled",
"Enabled",
]
TargetStoreType#
# TargetStoreType usage example
from mypy_boto3_sagemaker_featurestore_runtime.literals import TargetStoreType
def get_value() -> TargetStoreType:
return "OfflineStore"
# TargetStoreType definition
TargetStoreType = Literal[
"OfflineStore",
"OnlineStore",
]