interface CfnSecurityGroupVpcAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnSecurityGroupVpcAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnSecurityGroupVpcAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnSecurityGroupVpcAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnSecurityGroupVpcAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnSecurityGroupVpcAssociationMixinProps |
Properties for CfnSecurityGroupVpcAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnSecurityGroupVpcAssociationMixinProps: ec2.CfnSecurityGroupVpcAssociationMixinProps = {
groupId: 'groupId',
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| group | string | The association's security group ID. |
| vpc | string | The association's VPC ID. |
groupId?
Type:
string
(optional)
The association's security group ID.
vpcId?
Type:
string
(optional)
The association's VPC ID.

.NET
Go
Java
Python
TypeScript