pub struct CacheSubnetGroup {
pub arn: Option<String>,
pub cache_subnet_group_description: Option<String>,
pub cache_subnet_group_name: Option<String>,
pub subnets: Option<Vec<Subnet>>,
pub vpc_id: Option<String>,
}
Expand description
Represents the output of one of the following operations:
-
CreateCacheSubnetGroup
-
ModifyCacheSubnetGroup
Fields§
§arn: Option<String>
The ARN (Amazon Resource Name) of the cache subnet group.
cache_subnet_group_description: Option<String>
The description of the cache subnet group.
cache_subnet_group_name: Option<String>
The name of the cache subnet group.
subnets: Option<Vec<Subnet>>
A list of subnets associated with the cache subnet group.
vpc_id: Option<String>
The Amazon Virtual Private Cloud identifier (VPC ID) of the cache subnet group.
Trait Implementations§
Source§impl Clone for CacheSubnetGroup
impl Clone for CacheSubnetGroup
Source§fn clone(&self) -> CacheSubnetGroup
fn clone(&self) -> CacheSubnetGroup
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 CacheSubnetGroup
impl Debug for CacheSubnetGroup
Source§impl Default for CacheSubnetGroup
impl Default for CacheSubnetGroup
Source§fn default() -> CacheSubnetGroup
fn default() -> CacheSubnetGroup
Returns the “default value” for a type. Read more
Source§impl PartialEq for CacheSubnetGroup
impl PartialEq for CacheSubnetGroup
impl StructuralPartialEq for CacheSubnetGroup
Auto Trait Implementations§
impl Freeze for CacheSubnetGroup
impl RefUnwindSafe for CacheSubnetGroup
impl Send for CacheSubnetGroup
impl Sync for CacheSubnetGroup
impl Unpin for CacheSubnetGroup
impl UnwindSafe for CacheSubnetGroup
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