Struct aws_sdk_securityhub::types::AwsEc2VpcDetails
source · #[non_exhaustive]pub struct AwsEc2VpcDetails {
pub cidr_block_association_set: Option<Vec<CidrBlockAssociation>>,
pub ipv6_cidr_block_association_set: Option<Vec<Ipv6CidrBlockAssociation>>,
pub dhcp_options_id: Option<String>,
pub state: Option<String>,
}
Expand description
Details about an EC2 VPC.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.cidr_block_association_set: Option<Vec<CidrBlockAssociation>>
Information about the IPv4 CIDR blocks associated with the VPC.
ipv6_cidr_block_association_set: Option<Vec<Ipv6CidrBlockAssociation>>
Information about the IPv6 CIDR blocks associated with the VPC.
dhcp_options_id: Option<String>
The identifier of the set of Dynamic Host Configuration Protocol (DHCP) options that are associated with the VPC. If the default options are associated with the VPC, then this is default.
state: Option<String>
The current state of the VPC. Valid values are available
or pending
.
Implementations§
source§impl AwsEc2VpcDetails
impl AwsEc2VpcDetails
sourcepub fn cidr_block_association_set(&self) -> Option<&[CidrBlockAssociation]>
pub fn cidr_block_association_set(&self) -> Option<&[CidrBlockAssociation]>
Information about the IPv4 CIDR blocks associated with the VPC.
sourcepub fn ipv6_cidr_block_association_set(
&self
) -> Option<&[Ipv6CidrBlockAssociation]>
pub fn ipv6_cidr_block_association_set( &self ) -> Option<&[Ipv6CidrBlockAssociation]>
Information about the IPv6 CIDR blocks associated with the VPC.
sourcepub fn dhcp_options_id(&self) -> Option<&str>
pub fn dhcp_options_id(&self) -> Option<&str>
The identifier of the set of Dynamic Host Configuration Protocol (DHCP) options that are associated with the VPC. If the default options are associated with the VPC, then this is default.
source§impl AwsEc2VpcDetails
impl AwsEc2VpcDetails
sourcepub fn builder() -> AwsEc2VpcDetailsBuilder
pub fn builder() -> AwsEc2VpcDetailsBuilder
Creates a new builder-style object to manufacture AwsEc2VpcDetails
.
Trait Implementations§
source§impl Clone for AwsEc2VpcDetails
impl Clone for AwsEc2VpcDetails
source§fn clone(&self) -> AwsEc2VpcDetails
fn clone(&self) -> AwsEc2VpcDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AwsEc2VpcDetails
impl Debug for AwsEc2VpcDetails
source§impl PartialEq<AwsEc2VpcDetails> for AwsEc2VpcDetails
impl PartialEq<AwsEc2VpcDetails> for AwsEc2VpcDetails
source§fn eq(&self, other: &AwsEc2VpcDetails) -> bool
fn eq(&self, other: &AwsEc2VpcDetails) -> bool
self
and other
values to be equal, and is used
by ==
.