pub struct AwsConfig {
pub region: String,
pub secrets_manager: AwsSecretsManagerConfig,
pub s3: AwsS3Config,
pub cloudwatch: AwsCloudWatchConfig,
pub xray: AwsXRayConfig,
}Expand description
AWS-specific configuration.
Fields§
§region: StringAWS region (e.g., “us-east-1”).
secrets_manager: AwsSecretsManagerConfigSecrets Manager configuration.
s3: AwsS3ConfigS3 storage configuration.
cloudwatch: AwsCloudWatchConfigCloudWatch configuration.
xray: AwsXRayConfigX-Ray tracing configuration.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AwsConfig
impl<'de> Deserialize<'de> for AwsConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AwsConfig
impl RefUnwindSafe for AwsConfig
impl Send for AwsConfig
impl Sync for AwsConfig
impl Unpin 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