#[non_exhaustive]pub struct VpcConfigurationUpdate {
pub vpc_configuration_id: String,
pub subnet_id_updates: Option<Vec<String>>,
pub security_group_id_updates: Option<Vec<String>>,
}Expand description
Describes updates to the VPC configuration used by the application.
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.vpc_configuration_id: StringDescribes an update to the ID of the VPC configuration.
subnet_id_updates: Option<Vec<String>>Describes updates to the array of Subnet IDs used by the VPC configuration.
security_group_id_updates: Option<Vec<String>>Describes updates to the array of SecurityGroup IDs used by the VPC configuration.
Implementations§
source§impl VpcConfigurationUpdate
impl VpcConfigurationUpdate
sourcepub fn vpc_configuration_id(&self) -> &str
pub fn vpc_configuration_id(&self) -> &str
Describes an update to the ID of the VPC configuration.
sourcepub fn subnet_id_updates(&self) -> &[String]
pub fn subnet_id_updates(&self) -> &[String]
Describes updates to the array of Subnet IDs used by the VPC configuration.
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_id_updates.is_none().
sourcepub fn security_group_id_updates(&self) -> &[String]
pub fn security_group_id_updates(&self) -> &[String]
Describes updates to the array of SecurityGroup IDs used by the VPC configuration.
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_id_updates.is_none().
source§impl VpcConfigurationUpdate
impl VpcConfigurationUpdate
sourcepub fn builder() -> VpcConfigurationUpdateBuilder
pub fn builder() -> VpcConfigurationUpdateBuilder
Creates a new builder-style object to manufacture VpcConfigurationUpdate.
Trait Implementations§
source§impl Clone for VpcConfigurationUpdate
impl Clone for VpcConfigurationUpdate
source§fn clone(&self) -> VpcConfigurationUpdate
fn clone(&self) -> VpcConfigurationUpdate
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for VpcConfigurationUpdate
impl Debug for VpcConfigurationUpdate
source§impl PartialEq for VpcConfigurationUpdate
impl PartialEq for VpcConfigurationUpdate
source§fn eq(&self, other: &VpcConfigurationUpdate) -> bool
fn eq(&self, other: &VpcConfigurationUpdate) -> bool
self and other values to be equal, and is used
by ==.