Show / Hide Table of Contents

Interface IPublicSubnetProps

Inherited Members
ISubnetProps.AvailabilityZone
ISubnetProps.CidrBlock
ISubnetProps.VpcId
ISubnetProps.MapPublicIpOnLaunch
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.AWS.EC2.dll
Syntax (csharp)
public interface IPublicSubnetProps : ISubnetProps
Syntax (vb)
Public Interface IPublicSubnetProps
    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;

PublicSubnetProps publicSubnetProps = new PublicSubnetProps {
    AvailabilityZone = "availabilityZone",
    CidrBlock = "cidrBlock",
    VpcId = "vpcId",

    // the properties below are optional
    MapPublicIpOnLaunch = false
};

Synopsis

Back to top Generated by DocFX