Module store

Module store 

Source
Expand description

Store Module

This module provides the storage abstraction layer for WAMI. It defines the traits for different store types (IAM, STS, SSO Admin, Tenant) and provides implementations (currently in-memory).

The store layer is a pure persistence layer with no provider coupling. Resources themselves carry their provider-specific information.

Re-exports§

pub use traits::SsoAdminStore;
pub use traits::StsStore;
pub use traits::TenantStore;
pub use traits::WamiStore;

Modules§

memory
In-Memory Store Implementations
resource
Unified Resource Type for Store Operations
traits
Store Trait Definitions

Traits§

Store
Generic store trait that can be implemented by any backend