pub struct RevokeCacheSecurityGroupIngressMessage {
pub cache_security_group_name: String,
pub ec2_security_group_name: String,
pub ec2_security_group_owner_id: String,
}
Expand description
Represents the input of a RevokeCacheSecurityGroupIngress
operation.
Fields§
§cache_security_group_name: String
The name of the cache security group to revoke ingress from.
ec2_security_group_name: String
The name of the Amazon EC2 security group to revoke access from.
ec2_security_group_owner_id: String
The AWS account number of the Amazon EC2 security group owner. Note that this is not the same thing as an AWS access key ID - you must provide a valid AWS account number for this parameter.
Trait Implementations§
Source§impl Clone for RevokeCacheSecurityGroupIngressMessage
impl Clone for RevokeCacheSecurityGroupIngressMessage
Source§fn clone(&self) -> RevokeCacheSecurityGroupIngressMessage
fn clone(&self) -> RevokeCacheSecurityGroupIngressMessage
Returns a duplicate 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 RevokeCacheSecurityGroupIngressMessage
impl Default for RevokeCacheSecurityGroupIngressMessage
Source§fn default() -> RevokeCacheSecurityGroupIngressMessage
fn default() -> RevokeCacheSecurityGroupIngressMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for RevokeCacheSecurityGroupIngressMessage
impl PartialEq for RevokeCacheSecurityGroupIngressMessage
Source§fn eq(&self, other: &RevokeCacheSecurityGroupIngressMessage) -> bool
fn eq(&self, other: &RevokeCacheSecurityGroupIngressMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RevokeCacheSecurityGroupIngressMessage
Auto Trait Implementations§
impl Freeze for RevokeCacheSecurityGroupIngressMessage
impl RefUnwindSafe for RevokeCacheSecurityGroupIngressMessage
impl Send for RevokeCacheSecurityGroupIngressMessage
impl Sync for RevokeCacheSecurityGroupIngressMessage
impl Unpin for RevokeCacheSecurityGroupIngressMessage
impl UnwindSafe for RevokeCacheSecurityGroupIngressMessage
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