Interface ICfnNetworkAclProps
Properties for defining a CfnNetworkAcl
.
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnNetworkAclProps
Syntax (vb)
Public Interface ICfnNetworkAclProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkacl.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var cfnNetworkAclProps = new CfnNetworkAclProps {
VpcId = "vpcId",
// the properties below are optional
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
Tags | The tags for the network ACL. |
VpcId | The ID of the VPC for the network ACL. |
Properties
Tags
VpcId
The ID of the VPC for the network ACL.
string VpcId { get; }
Property Value
System.String