Struct aws_sdk_mwaa::types::NetworkConfiguration
source · #[non_exhaustive]pub struct NetworkConfiguration {
pub subnet_ids: Option<Vec<String>>,
pub security_group_ids: Option<Vec<String>>,
}Expand description
Describes the VPC networking components used to secure and enable network traffic between the Amazon Web Services resources for your environment. For more information, see About networking on Amazon MWAA.
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.subnet_ids: Option<Vec<String>>A list of subnet IDs. For more information, see About networking on Amazon MWAA.
security_group_ids: Option<Vec<String>>A list of security group IDs. For more information, see Security in your VPC on Amazon MWAA.
Implementations§
source§impl NetworkConfiguration
impl NetworkConfiguration
sourcepub fn subnet_ids(&self) -> &[String]
pub fn subnet_ids(&self) -> &[String]
A list of subnet IDs. For more information, see About networking on Amazon MWAA.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .subnet_ids.is_none().
sourcepub fn security_group_ids(&self) -> &[String]
pub fn security_group_ids(&self) -> &[String]
A list of security group IDs. For more information, see Security in your VPC on Amazon MWAA.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .security_group_ids.is_none().
source§impl NetworkConfiguration
impl NetworkConfiguration
sourcepub fn builder() -> NetworkConfigurationBuilder
pub fn builder() -> NetworkConfigurationBuilder
Creates a new builder-style object to manufacture NetworkConfiguration.
Trait Implementations§
source§impl Clone for NetworkConfiguration
impl Clone for NetworkConfiguration
source§fn clone(&self) -> NetworkConfiguration
fn clone(&self) -> NetworkConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for NetworkConfiguration
impl Debug for NetworkConfiguration
source§impl PartialEq for NetworkConfiguration
impl PartialEq for NetworkConfiguration
source§fn eq(&self, other: &NetworkConfiguration) -> bool
fn eq(&self, other: &NetworkConfiguration) -> bool
self and other values to be equal, and is used
by ==.