Interface IPrivateSubnetProps
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.AWS.EC2.dll
Syntax (csharp)
public interface IPrivateSubnetProps : ISubnetProps
Syntax (vb)
Public Interface IPrivateSubnetProps
Inherits ISubnetProps
Remarks
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 privateSubnetProps = new PrivateSubnetProps {
AvailabilityZone = "availabilityZone",
CidrBlock = "cidrBlock",
VpcId = "vpcId",
// the properties below are optional
MapPublicIpOnLaunch = false
};