pub struct CreateCacheSubnetGroupMessage {
pub cache_subnet_group_description: String,
pub cache_subnet_group_name: String,
pub subnet_ids: Vec<String>,
}
Expand description
Represents the input of a CreateCacheSubnetGroup
operation.
Fields§
§cache_subnet_group_description: String
A description for the cache subnet group.
cache_subnet_group_name: String
A 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: Vec<String>
A list of VPC subnet IDs for the cache subnet group.
Trait Implementations§
Source§impl Clone for CreateCacheSubnetGroupMessage
impl Clone for CreateCacheSubnetGroupMessage
Source§fn clone(&self) -> CreateCacheSubnetGroupMessage
fn clone(&self) -> CreateCacheSubnetGroupMessage
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 CreateCacheSubnetGroupMessage
impl Default for CreateCacheSubnetGroupMessage
Source§fn default() -> CreateCacheSubnetGroupMessage
fn default() -> CreateCacheSubnetGroupMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateCacheSubnetGroupMessage
impl PartialEq for CreateCacheSubnetGroupMessage
Source§fn eq(&self, other: &CreateCacheSubnetGroupMessage) -> bool
fn eq(&self, other: &CreateCacheSubnetGroupMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateCacheSubnetGroupMessage
Auto Trait Implementations§
impl Freeze for CreateCacheSubnetGroupMessage
impl RefUnwindSafe for CreateCacheSubnetGroupMessage
impl Send for CreateCacheSubnetGroupMessage
impl Sync for CreateCacheSubnetGroupMessage
impl Unpin for CreateCacheSubnetGroupMessage
impl UnwindSafe for CreateCacheSubnetGroupMessage
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