AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Contains the output of DescribeNetworkInterfaceAttribute.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.EC2.Model.DescribeNetworkInterfaceAttributeResponse

Namespace: Amazon.EC2.Model
Assembly: AWSSDK.EC2.dll
Version: 3.x.y.z

Syntax

C#
public class DescribeNetworkInterfaceAttributeResponse : AmazonWebServiceResponse

The DescribeNetworkInterfaceAttributeResponse type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property AssociatePublicIpAddress System.Boolean

Gets and sets the property AssociatePublicIpAddress.

Indicates whether to assign a public IPv4 address to a network interface. This option can be enabled for any network interface but will only apply to the primary network interface (eth0).

Public Property Attachment Amazon.EC2.Model.NetworkInterfaceAttachment

Gets and sets the property Attachment.

The attachment (if any) of the network interface.

Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property Description System.String

Gets and sets the property Description.

The description of the network interface.

Public Property Groups System.Collections.Generic.List<Amazon.EC2.Model.GroupIdentifier>

Gets and sets the property Groups.

The security groups associated with the network interface.

Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property NetworkInterfaceId System.String

Gets and sets the property NetworkInterfaceId.

The ID of the network interface.

Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property SourceDestCheck System.Boolean

Gets and sets the property SourceDestCheck.

Indicates whether source/destination checking is enabled.

Examples

This example describes the attachment attribute of the specified network interface.

To describe the attachment attribute of a network interface


var client = new AmazonEC2Client();
var response = client.DescribeNetworkInterfaceAttribute(new DescribeNetworkInterfaceAttributeRequest 
{
    Attribute = "attachment",
    NetworkInterfaceId = "eni-686ea200"
});

NetworkInterfaceAttachment attachment = response.Attachment;
string networkInterfaceId = response.NetworkInterfaceId;

            

This example describes the description attribute of the specified network interface.

To describe the description attribute of a network interface


var client = new AmazonEC2Client();
var response = client.DescribeNetworkInterfaceAttribute(new DescribeNetworkInterfaceAttributeRequest 
{
    Attribute = "description",
    NetworkInterfaceId = "eni-686ea200"
});

string description = response.Description;
string networkInterfaceId = response.NetworkInterfaceId;

            

This example describes the groupSet attribute of the specified network interface.

To describe the groupSet attribute of a network interface


var client = new AmazonEC2Client();
var response = client.DescribeNetworkInterfaceAttribute(new DescribeNetworkInterfaceAttributeRequest 
{
    Attribute = "groupSet",
    NetworkInterfaceId = "eni-686ea200"
});

List<GroupIdentifier> groups = response.Groups;
string networkInterfaceId = response.NetworkInterfaceId;

            

This example describes the sourceDestCheck attribute of the specified network interface.

To describe the sourceDestCheck attribute of a network interface


var client = new AmazonEC2Client();
var response = client.DescribeNetworkInterfaceAttribute(new DescribeNetworkInterfaceAttributeRequest 
{
    Attribute = "sourceDestCheck",
    NetworkInterfaceId = "eni-686ea200"
});

string networkInterfaceId = response.NetworkInterfaceId;
bool sourceDestCheck = response.SourceDestCheck;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5