Struct aws_sdk_elasticache::input::RevokeCacheSecurityGroupIngressInput [−][src]
#[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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RevokeCacheSecurityGroupIngress, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RevokeCacheSecurityGroupIngress, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<RevokeCacheSecurityGroupIngress
>
Creates a new builder-style object to manufacture RevokeCacheSecurityGroupIngressInput
The name of the cache security group to revoke ingress from.
The name of the Amazon EC2 security group to revoke access from.
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.
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 Send for RevokeCacheSecurityGroupIngressInput
impl Sync for RevokeCacheSecurityGroupIngressInput
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