pub struct VpcConfig {
pub security_group_ids: Option<Vec<String>>,
pub subnet_ids: Option<Vec<String>>,
}
Expand description
The VPC security groups and subnets that are attached to a Lambda function. For more information, see VPC Settings.
Fields§
§security_group_ids: Option<Vec<String>>
A list of VPC security groups IDs.
subnet_ids: Option<Vec<String>>
A list of VPC subnet IDs.
Trait Implementations§
impl StructuralPartialEq for VpcConfig
Auto Trait Implementations§
impl Freeze for VpcConfig
impl RefUnwindSafe for VpcConfig
impl Send for VpcConfig
impl Sync for VpcConfig
impl Unpin for VpcConfig
impl UnwindSafe for VpcConfig
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