# File lib/fog/aws/requests/compute/attach_network_interface.rb, line 22
        def attach_network_interface(nic_id, instance_id, device_index)
          request(
            'Action' => 'AttachNetworkInterface',
            'NetworkInterfaceId' => nic_id,
            'InstanceId'         => instance_id,
            'DeviceIndex'        => device_index,
            :parser => Fog::Parsers::Compute::AWS::AttachNetworkInterface.new
          )
        end