Struct aws_sdk_elasticache::model::CacheSubnetGroup
source ·
[−]#[non_exhaustive]pub struct CacheSubnetGroup {
pub cache_subnet_group_name: Option<String>,
pub cache_subnet_group_description: Option<String>,
pub vpc_id: Option<String>,
pub subnets: Option<Vec<Subnet>>,
pub arn: Option<String>,
}
Expand description
Represents the output of one of the following operations:
-
CreateCacheSubnetGroup
-
ModifyCacheSubnetGroup
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.cache_subnet_group_name: Option<String>
The name of the cache subnet group.
cache_subnet_group_description: Option<String>
The description of the cache subnet group.
vpc_id: Option<String>
The Amazon Virtual Private Cloud identifier (VPC ID) of the cache subnet group.
subnets: Option<Vec<Subnet>>
A list of subnets associated with the cache subnet group.
arn: Option<String>
The ARN (Amazon Resource Name) of the cache subnet group.
Implementations
The name of the cache subnet group.
The description of the cache subnet group.
The Amazon Virtual Private Cloud identifier (VPC ID) of the cache subnet group.
A list of subnets associated with the cache subnet group.
Creates a new builder-style object to manufacture CacheSubnetGroup
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CacheSubnetGroup
impl Send for CacheSubnetGroup
impl Sync for CacheSubnetGroup
impl Unpin for CacheSubnetGroup
impl UnwindSafe for CacheSubnetGroup
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more