pub struct CreateDBSubnetGroupMessage {
pub db_subnet_group_description: String,
pub db_subnet_group_name: String,
pub subnet_ids: Vec<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Represents the input to CreateDBSubnetGroup.
Fields§
§db_subnet_group_description: 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.
Constraints: Must contain no more than 255 letters, numbers, periods, underscores, spaces, or hyphens. Must not be default.
Example: mySubnetgroup
subnet_ids: Vec<String>
The Amazon EC2 subnet IDs for the subnet group.
The tags to be assigned to the subnet group.
Trait Implementations§
Source§impl Clone for CreateDBSubnetGroupMessage
impl Clone for CreateDBSubnetGroupMessage
Source§fn clone(&self) -> CreateDBSubnetGroupMessage
fn clone(&self) -> CreateDBSubnetGroupMessage
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 CreateDBSubnetGroupMessage
impl Debug for CreateDBSubnetGroupMessage
Source§impl Default for CreateDBSubnetGroupMessage
impl Default for CreateDBSubnetGroupMessage
Source§fn default() -> CreateDBSubnetGroupMessage
fn default() -> CreateDBSubnetGroupMessage
Returns the “default value” for a type. Read more
impl StructuralPartialEq for CreateDBSubnetGroupMessage
Auto Trait Implementations§
impl Freeze for CreateDBSubnetGroupMessage
impl RefUnwindSafe for CreateDBSubnetGroupMessage
impl Send for CreateDBSubnetGroupMessage
impl Sync for CreateDBSubnetGroupMessage
impl Unpin for CreateDBSubnetGroupMessage
impl UnwindSafe for CreateDBSubnetGroupMessage
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