pub struct AwsConfig {
pub region: String,
pub endpoint: String,
}Expand description
Runtime config for the AWS Secrets Manager client. Loaded from environment variables.
Fields§
§region: String§endpoint: StringEndpoint URL. Defaults to https://secretsmanager.{region}.amazonaws.com.
Can be overridden for testing or custom endpoints (e.g. LocalStack).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AwsConfig
impl RefUnwindSafe for AwsConfig
impl Send for AwsConfig
impl Sync for AwsConfig
impl Unpin for AwsConfig
impl UnsafeUnpin for AwsConfig
impl UnwindSafe for AwsConfig
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