Skip to main content

network_interface_attachments

Creates, updates, deletes or gets a network_interface_attachment resource or lists network_interface_attachments in a region

Overview

Namenetwork_interface_attachments
TypeResource
DescriptionResource Type definition for AWS::EC2::NetworkInterfaceAttachment
Idaws.ec2.network_interface_attachments

Fields

NameDatatypeDescription
attachment_idstringThe ID of the network interface attachment.
delete_on_terminationbooleanWhether to delete the network interface when the instance terminates. By default, this value is set to true.
device_indexstringThe network interface's position in the attachment order. For example, the first attached network interface has a DeviceIndex of 0.
instance_idstringThe ID of the instance to which you will attach the ENI.
network_interface_idstringThe ID of the ENI that you want to attach.
ena_srd_specificationobject
regionstringAWS region.

Methods

NameAccessible byRequired Params
create_resourceINSERTDeviceIndex, InstanceId, NetworkInterfaceId, region
delete_resourceDELETEdata__Identifier, region
update_resourceUPDATEdata__Identifier, data__PatchDocument, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all network_interface_attachments in a region.

SELECT
region,
attachment_id,
delete_on_termination,
device_index,
instance_id,
network_interface_id,
ena_srd_specification
FROM aws.ec2.network_interface_attachments
WHERE region = 'us-east-1';

Gets all properties from an individual network_interface_attachment.

SELECT
region,
attachment_id,
delete_on_termination,
device_index,
instance_id,
network_interface_id,
ena_srd_specification
FROM aws.ec2.network_interface_attachments
WHERE region = 'us-east-1' AND data__Identifier = '<AttachmentId>';

INSERT example

Use the following StackQL query and manifest file to create a new network_interface_attachment resource, using stack-deploy.

/*+ create */
INSERT INTO aws.ec2.network_interface_attachments (
DeviceIndex,
InstanceId,
NetworkInterfaceId,
region
)
SELECT
'{{ DeviceIndex }}',
'{{ InstanceId }}',
'{{ NetworkInterfaceId }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM aws.ec2.network_interface_attachments
WHERE data__Identifier = '<AttachmentId>'
AND region = 'us-east-1';

Permissions

To operate on the network_interface_attachments resource, the following permissions are required:

Create

ec2:AttachNetworkInterface,
ec2:DescribeNetworkInterfaces,
ec2:ModifyNetworkInterfaceAttribute

Read

ec2:DescribeNetworkInterfaces

List

ec2:DescribeNetworkInterfaces

Update

ec2:ModifyNetworkInterfaceAttribute,
ec2:DescribeNetworkInterfaces,
ec2:AttachNetworkInterface,
ec2:DetachNetworkInterface

Delete

ec2:DetachNetworkInterface,
ec2:DescribeNetworkInterfaces