pub struct SecretsManagerConfig {
pub audit_enabled: bool,
pub rotation_interval_secs: u64,
pub auto_rotation_check: bool,
}Expand description
密钥管理器配置
Fields§
§audit_enabled: bool是否启用审计日志
rotation_interval_secs: u64密钥轮换周期(秒)
auto_rotation_check: bool是否在读取时自动检查轮换
Trait Implementations§
Source§impl Clone for SecretsManagerConfig
impl Clone for SecretsManagerConfig
Source§fn clone(&self) -> SecretsManagerConfig
fn clone(&self) -> SecretsManagerConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SecretsManagerConfig
impl Debug for SecretsManagerConfig
Auto Trait Implementations§
impl Freeze for SecretsManagerConfig
impl RefUnwindSafe for SecretsManagerConfig
impl Send for SecretsManagerConfig
impl Sync for SecretsManagerConfig
impl Unpin for SecretsManagerConfig
impl UnsafeUnpin for SecretsManagerConfig
impl UnwindSafe for SecretsManagerConfig
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