CfnSecurityGroupIngressMixinProps
- class aws_cdk.mixins_preview.aws_elasticache.mixins.CfnSecurityGroupIngressMixinProps(*, cache_security_group_name=None, ec2_security_group_name=None, ec2_security_group_owner_id=None)
Bases:
objectProperties for CfnSecurityGroupIngressPropsMixin.
- Parameters:
cache_security_group_name (
Optional[str]) – The name of the Cache Security Group to authorize.ec2_security_group_name (
Optional[str]) – Name of the EC2 Security Group to include in the authorization.ec2_security_group_owner_id (
Optional[str]) – Specifies the Amazon Account ID of the owner of the EC2 security group specified in the EC2SecurityGroupName property. The Amazon access key ID is not an acceptable value.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_elasticache import mixins as elasticache_mixins cfn_security_group_ingress_mixin_props = elasticache_mixins.CfnSecurityGroupIngressMixinProps( cache_security_group_name="cacheSecurityGroupName", ec2_security_group_name="ec2SecurityGroupName", ec2_security_group_owner_id="ec2SecurityGroupOwnerId" )
Attributes
- cache_security_group_name
The name of the Cache Security Group to authorize.
- ec2_security_group_name
Name of the EC2 Security Group to include in the authorization.
- ec2_security_group_owner_id
Specifies the Amazon Account ID of the owner of the EC2 security group specified in the EC2SecurityGroupName property.
The Amazon access key ID is not an acceptable value.