CfnNetworkAclMixinProps
- class aws_cdk.cfn_property_mixins.aws_ec2.CfnNetworkAclMixinProps(*, tags=None, vpc_id=None)
Bases:
objectProperties for CfnNetworkAclPropsMixin.
- Parameters:
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkacl.html
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_ec2 as ec2 cfn_network_acl_mixin_props = ec2.CfnNetworkAclMixinProps( tags=[CfnTag( key="key", value="value" )], vpc_id="vpcId" )
Attributes
- tags
The tags for the network ACL.
- vpc_id
The ID of the VPC for the network ACL.