pub struct ModifyCacheSubnetGroupMessage {
pub cache_subnet_group_description: Option<String>,
pub cache_subnet_group_name: String,
pub subnet_ids: Option<Vec<String>>,
}
Expand description
Represents the input of a ModifyCacheSubnetGroup
operation.
Fields§
§cache_subnet_group_description: Option<String>
A description of the cache subnet group.
cache_subnet_group_name: String
The name for the cache subnet group. This value is stored as a lowercase string.
Constraints: Must contain no more than 255 alphanumeric characters or hyphens.
Example: mysubnetgroup
subnet_ids: Option<Vec<String>>
The EC2 subnet IDs for the cache subnet group.
Trait Implementations§
Source§impl Clone for ModifyCacheSubnetGroupMessage
impl Clone for ModifyCacheSubnetGroupMessage
Source§fn clone(&self) -> ModifyCacheSubnetGroupMessage
fn clone(&self) -> ModifyCacheSubnetGroupMessage
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 ModifyCacheSubnetGroupMessage
impl Default for ModifyCacheSubnetGroupMessage
Source§fn default() -> ModifyCacheSubnetGroupMessage
fn default() -> ModifyCacheSubnetGroupMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for ModifyCacheSubnetGroupMessage
impl PartialEq for ModifyCacheSubnetGroupMessage
Source§fn eq(&self, other: &ModifyCacheSubnetGroupMessage) -> bool
fn eq(&self, other: &ModifyCacheSubnetGroupMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyCacheSubnetGroupMessage
Auto Trait Implementations§
impl Freeze for ModifyCacheSubnetGroupMessage
impl RefUnwindSafe for ModifyCacheSubnetGroupMessage
impl Send for ModifyCacheSubnetGroupMessage
impl Sync for ModifyCacheSubnetGroupMessage
impl Unpin for ModifyCacheSubnetGroupMessage
impl UnwindSafe for ModifyCacheSubnetGroupMessage
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