pub struct VpcConfigResponse {
pub security_group_ids: Option<Vec<String>>,
pub subnet_ids: Option<Vec<String>>,
pub vpc_id: Option<String>,
}
Expand description
The VPC security groups and subnets that are attached to a Lambda function.
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.
vpc_id: Option<String>
The ID of the VPC.
Trait Implementations§
Source§impl Clone for VpcConfigResponse
impl Clone for VpcConfigResponse
Source§fn clone(&self) -> VpcConfigResponse
fn clone(&self) -> VpcConfigResponse
Returns a copy of the value. Read more
1.0.0 · 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 VpcConfigResponse
impl Debug for VpcConfigResponse
Source§impl Default for VpcConfigResponse
impl Default for VpcConfigResponse
Source§fn default() -> VpcConfigResponse
fn default() -> VpcConfigResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VpcConfigResponse
impl<'de> Deserialize<'de> for VpcConfigResponse
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
Source§impl PartialEq for VpcConfigResponse
impl PartialEq for VpcConfigResponse
impl StructuralPartialEq for VpcConfigResponse
Auto Trait Implementations§
impl Freeze for VpcConfigResponse
impl RefUnwindSafe for VpcConfigResponse
impl Send for VpcConfigResponse
impl Sync for VpcConfigResponse
impl Unpin for VpcConfigResponse
impl UnwindSafe for VpcConfigResponse
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