pub struct UpdateSubnetGroupRequest {
pub description: Option<String>,
pub subnet_group_name: String,
pub subnet_ids: Option<Vec<String>>,
}
Fields§
§description: Option<String>
A description of the subnet group.
subnet_group_name: String
The name of the subnet group.
subnet_ids: Option<Vec<String>>
A list of subnet IDs in the subnet group.
Trait Implementations§
Source§impl Clone for UpdateSubnetGroupRequest
impl Clone for UpdateSubnetGroupRequest
Source§fn clone(&self) -> UpdateSubnetGroupRequest
fn clone(&self) -> UpdateSubnetGroupRequest
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 Debug for UpdateSubnetGroupRequest
impl Debug for UpdateSubnetGroupRequest
Source§impl Default for UpdateSubnetGroupRequest
impl Default for UpdateSubnetGroupRequest
Source§fn default() -> UpdateSubnetGroupRequest
fn default() -> UpdateSubnetGroupRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateSubnetGroupRequest
impl PartialEq for UpdateSubnetGroupRequest
Source§impl Serialize for UpdateSubnetGroupRequest
impl Serialize for UpdateSubnetGroupRequest
impl StructuralPartialEq for UpdateSubnetGroupRequest
Auto Trait Implementations§
impl Freeze for UpdateSubnetGroupRequest
impl RefUnwindSafe for UpdateSubnetGroupRequest
impl Send for UpdateSubnetGroupRequest
impl Sync for UpdateSubnetGroupRequest
impl Unpin for UpdateSubnetGroupRequest
impl UnwindSafe for UpdateSubnetGroupRequest
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