Show / Hide Table of Contents

Class NetworkInterfaceState

Inheritance
System.Object
InputArgs
ResourceArgs
NetworkInterfaceState
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 NetworkInterfaceState : ResourceArgs

Constructors

View Source

NetworkInterfaceState()

Declaration
public NetworkInterfaceState()

Properties

View Source

Attachments

Block to define the attachment of the ENI. Documented below.

Declaration
public InputList<NetworkInterfaceAttachmentGetArgs> Attachments { get; set; }
Property Value
Type Description
InputList<NetworkInterfaceAttachmentGetArgs>
View Source

Description

A description for the network interface.

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

MacAddress

The MAC address of the network interface.

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

OutpostArn

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

PrivateDnsName

The private DNS name of the network interface (IPv4).

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

PrivateIp

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

PrivateIps

List of private IPs to assign to the ENI.

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

PrivateIpsCount

Number of secondary private IPs to assign to the ENI. The total number of private IPs will be 1 + private_ips_count, as a primary private IP will be assiged to an ENI by default.

Declaration
public Input<int> PrivateIpsCount { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

SecurityGroups

List of security group IDs to assign to the ENI.

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

SourceDestCheck

Whether to enable source destination checking for the ENI. Default true.

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

SubnetId

Subnet ID to create the ENI in.

Declaration
public Input<string> SubnetId { 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
Back to top Copyright 2016-2020, Pulumi Corporation.