interface CfnSecurityGroupIngressMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins.CfnSecurityGroupIngressMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticache/mixins#CfnSecurityGroupIngressMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.elasticache.mixins.CfnSecurityGroupIngressMixinProps |
Python | aws_cdk.mixins_preview.aws_elasticache.mixins.CfnSecurityGroupIngressMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_elasticache » mixins » CfnSecurityGroupIngressMixinProps |
Properties for CfnSecurityGroupIngressPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as elasticache_mixins } from '@aws-cdk/mixins-preview/aws-elasticache';
const cfnSecurityGroupIngressMixinProps: elasticache_mixins.CfnSecurityGroupIngressMixinProps = {
cacheSecurityGroupName: 'cacheSecurityGroupName',
ec2SecurityGroupName: 'ec2SecurityGroupName',
ec2SecurityGroupOwnerId: 'ec2SecurityGroupOwnerId',
};
Properties
| Name | Type | Description |
|---|---|---|
| cache | string | The name of the Cache Security Group to authorize. |
| ec2 | string | Name of the EC2 Security Group to include in the authorization. |
| ec2 | string | Specifies the Amazon Account ID of the owner of the EC2 security group specified in the EC2SecurityGroupName property. |
cacheSecurityGroupName?
Type:
string
(optional)
The name of the Cache Security Group to authorize.
ec2SecurityGroupName?
Type:
string
(optional)
Name of the EC2 Security Group to include in the authorization.
ec2SecurityGroupOwnerId?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript