Struct aws_sdk_devicefarm::types::TestGridVpcConfig
source · #[non_exhaustive]pub struct TestGridVpcConfig {
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 project.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.security_group_ids: Option<Vec<String>>
A list of VPC security group IDs in your Amazon VPC.
subnet_ids: Option<Vec<String>>
A list of VPC subnet IDs in your Amazon VPC.
vpc_id: Option<String>
The ID of the Amazon VPC.
Implementations§
source§impl TestGridVpcConfig
impl TestGridVpcConfig
sourcepub fn builder() -> TestGridVpcConfigBuilder
pub fn builder() -> TestGridVpcConfigBuilder
Creates a new builder-style object to manufacture TestGridVpcConfig
.
Trait Implementations§
source§impl Clone for TestGridVpcConfig
impl Clone for TestGridVpcConfig
source§fn clone(&self) -> TestGridVpcConfig
fn clone(&self) -> TestGridVpcConfig
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 TestGridVpcConfig
impl Debug for TestGridVpcConfig
source§impl PartialEq<TestGridVpcConfig> for TestGridVpcConfig
impl PartialEq<TestGridVpcConfig> for TestGridVpcConfig
source§fn eq(&self, other: &TestGridVpcConfig) -> bool
fn eq(&self, other: &TestGridVpcConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TestGridVpcConfig
Auto Trait Implementations§
impl RefUnwindSafe for TestGridVpcConfig
impl Send for TestGridVpcConfig
impl Sync for TestGridVpcConfig
impl Unpin for TestGridVpcConfig
impl UnwindSafe for TestGridVpcConfig
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