pub struct VpcConfig {
pub security_group_ids: Option<Vec<String>>,
pub subnets: Option<Vec<String>>,
pub vpc_id: Option<String>,
}
Expand description
Information about the VPC configuration that AWS CodeBuild accesses.
Fields§
§security_group_ids: Option<Vec<String>>
A list of one or more security groups IDs in your Amazon VPC.
subnets: Option<Vec<String>>
A list of one or more subnet IDs in your Amazon VPC.
vpc_id: Option<String>
The ID of the Amazon VPC.
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