pub struct ModifyDBSubnetGroupMessage {
pub db_subnet_group_description: Option<String>,
pub db_subnet_group_name: String,
pub subnet_ids: Vec<String>,
}
Expand description
Represents the input to ModifyDBSubnetGroup.
Fields§
§db_subnet_group_description: Option<String>
The description for the subnet group.
db_subnet_group_name: String
The name for the subnet group. This value is stored as a lowercase string. You can't modify the default subnet group.
Constraints: Must match the name of an existing DBSubnetGroup
. Must not be default.
Example: mySubnetgroup
subnet_ids: Vec<String>
The Amazon EC2 subnet IDs for the subnet group.
Trait Implementations§
Source§impl Clone for ModifyDBSubnetGroupMessage
impl Clone for ModifyDBSubnetGroupMessage
Source§fn clone(&self) -> ModifyDBSubnetGroupMessage
fn clone(&self) -> ModifyDBSubnetGroupMessage
Returns a duplicate 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 ModifyDBSubnetGroupMessage
impl Debug for ModifyDBSubnetGroupMessage
Source§impl Default for ModifyDBSubnetGroupMessage
impl Default for ModifyDBSubnetGroupMessage
Source§fn default() -> ModifyDBSubnetGroupMessage
fn default() -> ModifyDBSubnetGroupMessage
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ModifyDBSubnetGroupMessage
Auto Trait Implementations§
impl Freeze for ModifyDBSubnetGroupMessage
impl RefUnwindSafe for ModifyDBSubnetGroupMessage
impl Send for ModifyDBSubnetGroupMessage
impl Sync for ModifyDBSubnetGroupMessage
impl Unpin for ModifyDBSubnetGroupMessage
impl UnwindSafe for ModifyDBSubnetGroupMessage
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