pub struct CacheSecurityGroup {
pub arn: Option<String>,
pub cache_security_group_name: Option<String>,
pub description: Option<String>,
pub ec2_security_groups: Option<Vec<EC2SecurityGroup>>,
pub owner_id: Option<String>,
}
Expand description
Represents the output of one of the following operations:
-
AuthorizeCacheSecurityGroupIngress
-
CreateCacheSecurityGroup
-
RevokeCacheSecurityGroupIngress
Fields§
§arn: Option<String>
The ARN (Amazon Resource Name) of the cache security group.
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.
owner_id: Option<String>
The AWS account ID of the cache security group owner.
Trait Implementations§
Source§impl Clone for CacheSecurityGroup
impl Clone for CacheSecurityGroup
Source§fn clone(&self) -> CacheSecurityGroup
fn clone(&self) -> CacheSecurityGroup
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 CacheSecurityGroup
impl Debug for CacheSecurityGroup
Source§impl Default for CacheSecurityGroup
impl Default for CacheSecurityGroup
Source§fn default() -> CacheSecurityGroup
fn default() -> CacheSecurityGroup
Returns the “default value” for a type. Read more
Source§impl PartialEq for CacheSecurityGroup
impl PartialEq for CacheSecurityGroup
impl StructuralPartialEq for CacheSecurityGroup
Auto Trait Implementations§
impl Freeze for CacheSecurityGroup
impl RefUnwindSafe for CacheSecurityGroup
impl Send for CacheSecurityGroup
impl Sync for CacheSecurityGroup
impl Unpin for CacheSecurityGroup
impl UnwindSafe for CacheSecurityGroup
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