Show / Hide Table of Contents

Class SubnetArgs

Inheritance
System.Object
InputArgs
ResourceArgs
SubnetArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Ec2
Assembly: Pulumi.Aws.dll
Syntax
public sealed class SubnetArgs : ResourceArgs

Constructors

View Source

SubnetArgs()

Declaration
public SubnetArgs()

Properties

View Source

AssignIpv6AddressOnCreation

Specify true to indicate that network interfaces created in the specified subnet should be assigned an IPv6 address. Default is false

Declaration
public Input<bool> AssignIpv6AddressOnCreation { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

AvailabilityZone

The AZ for the subnet.

Declaration
public Input<string> AvailabilityZone { get; set; }
Property Value
Type Description
Input<System.String>
View Source

AvailabilityZoneId

The AZ ID of the subnet.

Declaration
public Input<string> AvailabilityZoneId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

CidrBlock

The CIDR block for the subnet.

Declaration
public Input<string> CidrBlock { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Ipv6CidrBlock

The IPv6 network range for the subnet, in CIDR notation. The subnet size must use a /64 prefix length.

Declaration
public Input<string> Ipv6CidrBlock { get; set; }
Property Value
Type Description
Input<System.String>
View Source

MapPublicIpOnLaunch

Specify true to indicate that instances launched into the subnet should be assigned a public IP address. Default is false.

Declaration
public Input<bool> MapPublicIpOnLaunch { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

OutpostArn

The Amazon Resource Name (ARN) of the Outpost.

Declaration
public Input<string> OutpostArn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tags

A map of tags to assign to the resource.

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

VpcId

The VPC ID.

Declaration
public Input<string> VpcId { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.