#[non_exhaustive]pub struct UpdateNetworkConfigurationInput {
pub security_group_ids: Option<Vec<String>>,
}Expand description
Defines 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
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 security group IDs. A security group must be attached to the same VPC as the subnets. For more information, see Security in your VPC on Amazon MWAA.
Implementations§
source§impl UpdateNetworkConfigurationInput
impl UpdateNetworkConfigurationInput
sourcepub fn security_group_ids(&self) -> Option<&[String]>
pub fn security_group_ids(&self) -> Option<&[String]>
A list of security group IDs. A security group must be attached to the same VPC as the subnets. For more information, see Security in your VPC on Amazon MWAA.
source§impl UpdateNetworkConfigurationInput
impl UpdateNetworkConfigurationInput
sourcepub fn builder() -> UpdateNetworkConfigurationInputBuilder
pub fn builder() -> UpdateNetworkConfigurationInputBuilder
Creates a new builder-style object to manufacture UpdateNetworkConfigurationInput.
Trait Implementations§
source§impl Clone for UpdateNetworkConfigurationInput
impl Clone for UpdateNetworkConfigurationInput
source§fn clone(&self) -> UpdateNetworkConfigurationInput
fn clone(&self) -> UpdateNetworkConfigurationInput
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 PartialEq<UpdateNetworkConfigurationInput> for UpdateNetworkConfigurationInput
impl PartialEq<UpdateNetworkConfigurationInput> for UpdateNetworkConfigurationInput
source§fn eq(&self, other: &UpdateNetworkConfigurationInput) -> bool
fn eq(&self, other: &UpdateNetworkConfigurationInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateNetworkConfigurationInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateNetworkConfigurationInput
impl Send for UpdateNetworkConfigurationInput
impl Sync for UpdateNetworkConfigurationInput
impl Unpin for UpdateNetworkConfigurationInput
impl UnwindSafe for UpdateNetworkConfigurationInput
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