Struct aws_sdk_robomaker::types::VpcConfigResponse
source · #[non_exhaustive]pub struct VpcConfigResponse {
pub subnets: Option<Vec<String>>,
pub security_groups: Option<Vec<String>>,
pub vpc_id: Option<String>,
pub assign_public_ip: bool,
}Expand description
VPC configuration associated with your simulation job.
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.subnets: Option<Vec<String>>A list of subnet IDs associated with the simulation job.
security_groups: Option<Vec<String>>A list of security group IDs associated with the simulation job.
vpc_id: Option<String>The VPC ID associated with your simulation job.
assign_public_ip: boolA boolean indicating if a public IP was assigned.
Implementations§
source§impl VpcConfigResponse
impl VpcConfigResponse
sourcepub fn subnets(&self) -> Option<&[String]>
pub fn subnets(&self) -> Option<&[String]>
A list of subnet IDs associated with the simulation job.
sourcepub fn security_groups(&self) -> Option<&[String]>
pub fn security_groups(&self) -> Option<&[String]>
A list of security group IDs associated with the simulation job.
sourcepub fn assign_public_ip(&self) -> bool
pub fn assign_public_ip(&self) -> bool
A boolean indicating if a public IP was assigned.
source§impl VpcConfigResponse
impl VpcConfigResponse
sourcepub fn builder() -> VpcConfigResponseBuilder
pub fn builder() -> VpcConfigResponseBuilder
Creates a new builder-style object to manufacture VpcConfigResponse.
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 PartialEq for VpcConfigResponse
impl PartialEq for VpcConfigResponse
source§fn eq(&self, other: &VpcConfigResponse) -> bool
fn eq(&self, other: &VpcConfigResponse) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for VpcConfigResponse
Auto Trait Implementations§
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