Struct aws_sdk_elasticache::model::CacheSecurityGroup
source ·
[−]#[non_exhaustive]pub struct CacheSecurityGroup {
pub owner_id: Option<String>,
pub cache_security_group_name: Option<String>,
pub description: Option<String>,
pub ec2_security_groups: Option<Vec<Ec2SecurityGroup>>,
pub arn: Option<String>,
}
Expand description
Represents the output of one of the following operations:
-
AuthorizeCacheSecurityGroupIngress
-
CreateCacheSecurityGroup
-
RevokeCacheSecurityGroupIngress
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.owner_id: Option<String>
The Amazon account ID of the cache security group owner.
cache_security_group_name: Option<String>
The name of the cache security group.
description: Option<String>
The description of the cache security group.
ec2_security_groups: Option<Vec<Ec2SecurityGroup>>
A list of Amazon EC2 security groups that are associated with this cache security group.
arn: Option<String>
The ARN of the cache security group,
Implementations
The Amazon account ID of the cache security group owner.
The name of the cache security group.
The description of the cache security group.
A list of Amazon EC2 security groups that are associated with this cache security group.
Creates a new builder-style object to manufacture CacheSecurityGroup
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 CacheSecurityGroup
impl Send for CacheSecurityGroup
impl Sync for CacheSecurityGroup
impl Unpin for CacheSecurityGroup
impl UnwindSafe for CacheSecurityGroup
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