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.

Describes a network interface attribute. You can specify only one attribute at a time.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to DescribeNetworkInterfaceAttributeAsync.

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

Syntax

C#
public virtual DescribeNetworkInterfaceAttributeResponse DescribeNetworkInterfaceAttribute(
         DescribeNetworkInterfaceAttributeRequest request
)

Parameters

request
Type: Amazon.EC2.Model.DescribeNetworkInterfaceAttributeRequest

Container for the necessary parameters to execute the DescribeNetworkInterfaceAttribute service method.

Return Value


The response from the DescribeNetworkInterfaceAttribute service method, as returned by EC2.

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 Framework:
Supported in: 4.5, 4.0, 3.5

See Also