pub struct VpcConfig {
pub security_group_ids: Option<Vec<String>>,
pub subnet_ids: Option<Vec<String>>,
}
Expand description
Describes VPC configuration information for fleets and image builders.
Fields§
§security_group_ids: Option<Vec<String>>
The identifiers of the security groups for the fleet or image builder.
subnet_ids: Option<Vec<String>>
The identifiers of the subnets to which a network interface is attached from the fleet instance or image builder instance. Fleet instances use one or more subnets. Image builder instances use one subnet.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for VpcConfig
impl<'de> Deserialize<'de> for VpcConfig
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
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