Struct aws_sdk_elasticache::operation::revoke_cache_security_group_ingress::RevokeCacheSecurityGroupIngressInput
source · #[non_exhaustive]pub struct RevokeCacheSecurityGroupIngressInput {
pub cache_security_group_name: Option<String>,
pub ec2_security_group_name: Option<String>,
pub ec2_security_group_owner_id: Option<String>,
}
Expand description
Represents the input of a RevokeCacheSecurityGroupIngress
operation.
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_security_group_name: Option<String>
The name of the cache security group to revoke ingress from.
ec2_security_group_name: Option<String>
The name of the Amazon EC2 security group to revoke access from.
ec2_security_group_owner_id: Option<String>
The Amazon account number of the Amazon EC2 security group owner. Note that this is not the same thing as an Amazon access key ID - you must provide a valid Amazon account number for this parameter.
Implementations§
source§impl RevokeCacheSecurityGroupIngressInput
impl RevokeCacheSecurityGroupIngressInput
sourcepub fn cache_security_group_name(&self) -> Option<&str>
pub fn cache_security_group_name(&self) -> Option<&str>
The name of the cache security group to revoke ingress from.
sourcepub fn ec2_security_group_name(&self) -> Option<&str>
pub fn ec2_security_group_name(&self) -> Option<&str>
The name of the Amazon EC2 security group to revoke access from.
sourcepub fn ec2_security_group_owner_id(&self) -> Option<&str>
pub fn ec2_security_group_owner_id(&self) -> Option<&str>
The Amazon account number of the Amazon EC2 security group owner. Note that this is not the same thing as an Amazon access key ID - you must provide a valid Amazon account number for this parameter.
source§impl RevokeCacheSecurityGroupIngressInput
impl RevokeCacheSecurityGroupIngressInput
sourcepub fn builder() -> RevokeCacheSecurityGroupIngressInputBuilder
pub fn builder() -> RevokeCacheSecurityGroupIngressInputBuilder
Creates a new builder-style object to manufacture RevokeCacheSecurityGroupIngressInput
.
Trait Implementations§
source§impl Clone for RevokeCacheSecurityGroupIngressInput
impl Clone for RevokeCacheSecurityGroupIngressInput
source§fn clone(&self) -> RevokeCacheSecurityGroupIngressInput
fn clone(&self) -> RevokeCacheSecurityGroupIngressInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for RevokeCacheSecurityGroupIngressInput
impl PartialEq for RevokeCacheSecurityGroupIngressInput
source§fn eq(&self, other: &RevokeCacheSecurityGroupIngressInput) -> bool
fn eq(&self, other: &RevokeCacheSecurityGroupIngressInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RevokeCacheSecurityGroupIngressInput
Auto Trait Implementations§
impl Freeze for RevokeCacheSecurityGroupIngressInput
impl RefUnwindSafe for RevokeCacheSecurityGroupIngressInput
impl Send for RevokeCacheSecurityGroupIngressInput
impl Sync for RevokeCacheSecurityGroupIngressInput
impl Unpin for RevokeCacheSecurityGroupIngressInput
impl UnwindSafe for RevokeCacheSecurityGroupIngressInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more