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