Struct aws_sdk_elasticache::operation::authorize_cache_security_group_ingress::AuthorizeCacheSecurityGroupIngressInput
source · #[non_exhaustive]pub struct AuthorizeCacheSecurityGroupIngressInput {
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 an AuthorizeCacheSecurityGroupIngress 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 cache security group that allows network ingress.
ec2_security_group_name: Option<String>
The Amazon EC2 security group to be authorized for ingress to the cache security group.
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 AuthorizeCacheSecurityGroupIngressInput
impl AuthorizeCacheSecurityGroupIngressInput
sourcepub fn cache_security_group_name(&self) -> Option<&str>
pub fn cache_security_group_name(&self) -> Option<&str>
The cache security group that allows network ingress.
sourcepub fn ec2_security_group_name(&self) -> Option<&str>
pub fn ec2_security_group_name(&self) -> Option<&str>
The Amazon EC2 security group to be authorized for ingress to the cache security group.
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 AuthorizeCacheSecurityGroupIngressInput
impl AuthorizeCacheSecurityGroupIngressInput
sourcepub fn builder() -> AuthorizeCacheSecurityGroupIngressInputBuilder
pub fn builder() -> AuthorizeCacheSecurityGroupIngressInputBuilder
Creates a new builder-style object to manufacture AuthorizeCacheSecurityGroupIngressInput
.
Trait Implementations§
source§impl Clone for AuthorizeCacheSecurityGroupIngressInput
impl Clone for AuthorizeCacheSecurityGroupIngressInput
source§fn clone(&self) -> AuthorizeCacheSecurityGroupIngressInput
fn clone(&self) -> AuthorizeCacheSecurityGroupIngressInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for AuthorizeCacheSecurityGroupIngressInput
impl PartialEq for AuthorizeCacheSecurityGroupIngressInput
source§fn eq(&self, other: &AuthorizeCacheSecurityGroupIngressInput) -> bool
fn eq(&self, other: &AuthorizeCacheSecurityGroupIngressInput) -> bool
self
and other
values to be equal, and is used
by ==
.