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.

Container for the parameters to the DetachNetworkInterface operation. Detaches a network interface from an instance.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.EC2.AmazonEC2Request
      Amazon.EC2.Model.DetachNetworkInterfaceRequest

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

Syntax

C#
public class DetachNetworkInterfaceRequest : AmazonEC2Request
         IAmazonWebServiceRequest

The DetachNetworkInterfaceRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property AttachmentId System.String

Gets and sets the property AttachmentId.

The ID of the attachment.

Public Property Force System.Boolean

Gets and sets the property Force.

Specifies whether to force a detachment.

  • Use the Force parameter only as a last resort to detach a network interface from a failed instance.

  • If you use the Force parameter to detach a network interface, you might not be able to attach a different network interface to the same index on the instance without first stopping and starting the instance.

  • If you force the detachment of a network interface, the instance metadata might not get updated. This means that the attributes associated with the detached network interface might still be visible. The instance metadata will get updated when you stop and start the instance.

Examples

This example detaches the specified network interface from its attached instance.

To detach a network interface from an instance


var client = new AmazonEC2Client();
var response = client.DetachNetworkInterface(new DetachNetworkInterfaceRequest 
{
    AttachmentId = "eni-attach-66c4350a"
});


            

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