pub type DynamoDbStoreConfig = LruCachingConfig<DynamoDbStoreInternalConfig>;
Expand description
The config type for DynamoDbStore
`
Aliased Type§
struct DynamoDbStoreConfig {
pub inner_config: DynamoDbStoreInternalConfig,
pub storage_cache_config: StorageCacheConfig,
}
Fields§
§inner_config: DynamoDbStoreInternalConfig
The inner configuration of the LruCachingStore
.
storage_cache_config: StorageCacheConfig
The cache size being used
Implementations§
Source§impl DynamoDbStoreConfig
impl DynamoDbStoreConfig
Sourcepub fn new(
use_dynamodb_local: bool,
common_config: CommonStoreConfig,
) -> DynamoDbStoreConfig
pub fn new( use_dynamodb_local: bool, common_config: CommonStoreConfig, ) -> DynamoDbStoreConfig
Creates a DynamoDbStoreConfig
from the input.