pub struct ModifyClusterSubnetGroupMessage {
pub cluster_subnet_group_name: String,
pub description: Option<String>,
pub subnet_ids: Vec<String>,
}
Expand description
Fields§
§cluster_subnet_group_name: String
The name of the subnet group to be modified.
description: Option<String>
A text description of the subnet group to be modified.
subnet_ids: Vec<String>
An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a single request.
Trait Implementations§
Source§impl Clone for ModifyClusterSubnetGroupMessage
impl Clone for ModifyClusterSubnetGroupMessage
Source§fn clone(&self) -> ModifyClusterSubnetGroupMessage
fn clone(&self) -> ModifyClusterSubnetGroupMessage
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 Default for ModifyClusterSubnetGroupMessage
impl Default for ModifyClusterSubnetGroupMessage
Source§fn default() -> ModifyClusterSubnetGroupMessage
fn default() -> ModifyClusterSubnetGroupMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for ModifyClusterSubnetGroupMessage
impl PartialEq for ModifyClusterSubnetGroupMessage
Source§fn eq(&self, other: &ModifyClusterSubnetGroupMessage) -> bool
fn eq(&self, other: &ModifyClusterSubnetGroupMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyClusterSubnetGroupMessage
Auto Trait Implementations§
impl Freeze for ModifyClusterSubnetGroupMessage
impl RefUnwindSafe for ModifyClusterSubnetGroupMessage
impl Send for ModifyClusterSubnetGroupMessage
impl Sync for ModifyClusterSubnetGroupMessage
impl Unpin for ModifyClusterSubnetGroupMessage
impl UnwindSafe for ModifyClusterSubnetGroupMessage
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