Show / Hide Table of Contents

Interface ICfnNetworkAclProps

Properties for defining a CfnNetworkAcl.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.AWS.EC2.dll
Syntax (csharp)
public interface ICfnNetworkAclProps
Syntax (vb)
Public Interface ICfnNetworkAclProps
Remarks

Link: 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;

CfnNetworkAclProps 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

The tags for the network ACL.

virtual ICfnTag[] Tags { get; }
Property Value

ICfnTag[]

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkacl.html#cfn-ec2-networkacl-tags

VpcId

The ID of the VPC for the network ACL.

string VpcId { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkacl.html#cfn-ec2-networkacl-vpcid

Back to top Generated by DocFX