pub struct SecretsState {
pub secrets: DashMap<String, Secret>,
pub resource_policies: DashMap<String, String>,
}Expand description
Per-account/region Secrets Manager state.
Fields§
§secrets: DashMap<String, Secret>name → Secret (primary index)
resource_policies: DashMap<String, String>secret name → JSON resource policy string
Trait Implementations§
Source§impl Debug for SecretsState
impl Debug for SecretsState
Source§impl Default for SecretsState
impl Default for SecretsState
Source§fn default() -> SecretsState
fn default() -> SecretsState
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SecretsState
impl !RefUnwindSafe for SecretsState
impl Send for SecretsState
impl Sync for SecretsState
impl Unpin for SecretsState
impl UnsafeUnpin for SecretsState
impl UnwindSafe for SecretsState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more