Struct aws_sdk_elasticache::operation::revoke_cache_security_group_ingress::RevokeCacheSecurityGroupIngressInput
source · #[non_exhaustive]pub struct RevokeCacheSecurityGroupIngressInput { /* private fields */ }
Expand description
Represents the input of a RevokeCacheSecurityGroupIngress
operation.
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
.
source§impl RevokeCacheSecurityGroupIngressInput
impl RevokeCacheSecurityGroupIngressInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RevokeCacheSecurityGroupIngress, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<RevokeCacheSecurityGroupIngress, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<RevokeCacheSecurityGroupIngress
>
Trait Implementations§
source§impl Clone for RevokeCacheSecurityGroupIngressInput
impl Clone for RevokeCacheSecurityGroupIngressInput
source§fn clone(&self) -> RevokeCacheSecurityGroupIngressInput
fn clone(&self) -> RevokeCacheSecurityGroupIngressInput
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 PartialEq<RevokeCacheSecurityGroupIngressInput> for RevokeCacheSecurityGroupIngressInput
impl PartialEq<RevokeCacheSecurityGroupIngressInput> for RevokeCacheSecurityGroupIngressInput
source§fn eq(&self, other: &RevokeCacheSecurityGroupIngressInput) -> bool
fn eq(&self, other: &RevokeCacheSecurityGroupIngressInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RevokeCacheSecurityGroupIngressInput
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more